Authorizations
Enter your API key as: Bearer your_api_key_here
Path Parameters
Person ID
Response
Person found
The response is of type object
.
curl --request GET \
--url https://api.stardex.ai/v1/persons/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"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",
"current_company_name": "Tech Corp",
"current_company_id": "456e7890-e12b-34d5-a678-901234567890",
"external_source_id": null,
"emails": [
{
"contact_data_type": "work",
"value": "john@company.com"
}
],
"phones": [
{
"contact_data_type": "mobile",
"value": "+1234567890"
}
],
"work_experience": [
{
"positions": [
{
"title": "Software Engineer",
"start_date": "2021-01-01",
"end_date": null,
"duration_in_months": 36,
"description": "Full-stack development",
"location": "San Francisco, CA",
"position_type": "Full-time"
}
],
"duration_in_months": 36,
"company_name": "Tech Corp",
"company_linkedin_url": "https://www.linkedin.com/company/tech-corp",
"company_linkedin_id": 123456,
"company_id": "456e7890-e12b-34d5-a678-901234567890"
}
],
"education_experience": [
{
"company_name": "University of Somewhere",
"start_date": "2014-09-01",
"end_date": "2018-06-01",
"description": "BSc in Computer Science",
"degree": "BSc Computer Science",
"company_linkedin_url": "https://www.linkedin.com/school/university-of-somewhere",
"company_linkedin_id": 987654,
"company_id": null
}
],
"certifications": [
{
"name": "AWS Certified Solutions Architect",
"credential_id": "ABC-123",
"start_date": "2022-01-01",
"end_date": "2025-01-01",
"company_name": "Amazon Web Services",
"company_linkedin_url": "https://www.linkedin.com/company/amazon-web-services",
"company_linkedin_id": 1586,
"company_id": null
}
],
"jobs": [
{
"candidate_id": "789e0123-e45f-67g8-h901-234567890123",
"job_name": "Senior Software Engineer",
"job_id": "345e6789-e01b-23c4-d567-890123456789",
"job_client_company_name": "StartupXYZ",
"current_pipeline_stage_name": "Technical Interview",
"current_pipeline_stage_id": "567e8901-e23c-45d6-e789-012345678901"
}
]
}
}
Retrieve detailed information about a specific person including contact details and job associations
curl --request GET \
--url https://api.stardex.ai/v1/persons/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"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",
"current_company_name": "Tech Corp",
"current_company_id": "456e7890-e12b-34d5-a678-901234567890",
"external_source_id": null,
"emails": [
{
"contact_data_type": "work",
"value": "john@company.com"
}
],
"phones": [
{
"contact_data_type": "mobile",
"value": "+1234567890"
}
],
"work_experience": [
{
"positions": [
{
"title": "Software Engineer",
"start_date": "2021-01-01",
"end_date": null,
"duration_in_months": 36,
"description": "Full-stack development",
"location": "San Francisco, CA",
"position_type": "Full-time"
}
],
"duration_in_months": 36,
"company_name": "Tech Corp",
"company_linkedin_url": "https://www.linkedin.com/company/tech-corp",
"company_linkedin_id": 123456,
"company_id": "456e7890-e12b-34d5-a678-901234567890"
}
],
"education_experience": [
{
"company_name": "University of Somewhere",
"start_date": "2014-09-01",
"end_date": "2018-06-01",
"description": "BSc in Computer Science",
"degree": "BSc Computer Science",
"company_linkedin_url": "https://www.linkedin.com/school/university-of-somewhere",
"company_linkedin_id": 987654,
"company_id": null
}
],
"certifications": [
{
"name": "AWS Certified Solutions Architect",
"credential_id": "ABC-123",
"start_date": "2022-01-01",
"end_date": "2025-01-01",
"company_name": "Amazon Web Services",
"company_linkedin_url": "https://www.linkedin.com/company/amazon-web-services",
"company_linkedin_id": 1586,
"company_id": null
}
],
"jobs": [
{
"candidate_id": "789e0123-e45f-67g8-h901-234567890123",
"job_name": "Senior Software Engineer",
"job_id": "345e6789-e01b-23c4-d567-890123456789",
"job_client_company_name": "StartupXYZ",
"current_pipeline_stage_name": "Technical Interview",
"current_pipeline_stage_id": "567e8901-e23c-45d6-e789-012345678901"
}
]
}
}
Enter your API key as: Bearer your_api_key_here
Person ID
Person found
The response is of type object
.
Was this page helpful?