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
Enter your API key as: Bearer your_api_key_here
Bearer your_api_key_here
The LinkedIn URL of the person
The ID of the person
Successful response
The response is of type object.
object
Was this page helpful?