Search for persons by email, phone, or name
curl --request GET \
--url https://api.stardex.ai/v0/persons/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v0/persons/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.stardex.ai/v0/persons/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v0/persons/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v0/persons/search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.stardex.ai/v0/persons/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v0/persons/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "John Smith",
"linkedin_public_id": "john-smith-123",
"first_name": "John",
"last_name": "Smith",
"current_job_title": "Software Engineer",
"emails": [
{
"contact_data_type": "work",
"value": "john.smith@company.com"
}
],
"phones": [
{
"contact_data_type": "mobile",
"value": "+1234567890"
}
]
}
]
}{
"error": "Invalid request parameters",
"data": null
}{
"error": "Internal server error",
"data": null
}Person Endpoints
Search for persons
Search for persons using various criteria:
- Email/Phone search: Exact match, returns all matching persons
- Name search: Partial match (case-insensitive), returns up to 20 results
- At least one search parameter (email, phone, or name) must be provided
- Results include basic person details and all associated contact information
GET
/
v0
/
persons
/
search
Search for persons by email, phone, or name
curl --request GET \
--url https://api.stardex.ai/v0/persons/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v0/persons/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.stardex.ai/v0/persons/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v0/persons/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v0/persons/search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.stardex.ai/v0/persons/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v0/persons/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "John Smith",
"linkedin_public_id": "john-smith-123",
"first_name": "John",
"last_name": "Smith",
"current_job_title": "Software Engineer",
"emails": [
{
"contact_data_type": "work",
"value": "john.smith@company.com"
}
],
"phones": [
{
"contact_data_type": "mobile",
"value": "+1234567890"
}
]
}
]
}{
"error": "Invalid request parameters",
"data": null
}{
"error": "Internal server error",
"data": null
}Authorizations
Authenticate with a Bearer token: API key, OAuth token, or session token.
Query Parameters
Email address to search for
Phone number to search for
Name to search for
Was this page helpful?
⌘I