cURL
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" } ] } }
Returns person details by LinkedIn URL or ID
Authenticate with a Bearer token: API key, OAuth token, or session token.
The LinkedIn URL of the person
The ID of the person
Successful response
Error message, if any
Show child attributes
Was this page helpful?