cURL
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": "mobile", "value": "+1234567890" } ] } ] }
Search for persons using various criteria:
Authenticate with a Bearer token: API key, OAuth token, or session token.
Email address to search for
Phone number to search for
Name to search for
Successfully retrieved search results
Show child attributes
Was this page helpful?