GET
/
v0
/
persons
/
search
curl --request GET \
  --url https://api.stardex.ai/v0/persons/search \
  --header 'Authorization: Bearer <token>'
{
  "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": "personal",
          "value": "+1234567890"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Query Parameters

email
string

Email address to search for

phone
string

Phone number to search for

name
string

Name to search for

Response

200
application/json
Successfully retrieved search results
error
string | null
required
data
object[] | null
required