GET
/
v0
/
persons
curl --request GET \
  --url https://api.stardex.ai/v0/persons \
  --header 'Authorization: Bearer <token>'
{
  "error": null,
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "John Doe",
    "linkedin_public_id": "johndoe",
    "first_name": "John",
    "last_name": "Doe",
    "current_job_title": "Software Engineer",
    "external_source_id": "ext123",
    "emails": [
      {
        "contact_data_type": "work",
        "value": "john@company.com"
      }
    ],
    "phones": [
      {
        "contact_data_type": "mobile",
        "value": "+1234567890"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Query Parameters

linkedin_url
string

The LinkedIn URL of the person

person_id
string

The ID of the person

Response

200
application/json
Successful response
error
string | null
required

Error message, if any

data
object
required