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": "personal", "value": "+1234567890" } ] } ] }
Search for persons using various criteria:
Enter your API key as: Bearer your_api_key_here
Bearer your_api_key_here
Email address to search for
Phone number to search for
Name to search for
Successfully retrieved search results
The response is of type object.
object
Was this page helpful?