curl --request GET \
--url https://api.stardex.ai/v1/companies/{id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "456e7890-e12b-34d5-a678-901234567890",
"name": "Acme Corp",
"domain": "acme.com",
"linkedin_url": "https://www.linkedin.com/company/acme",
"linkedin_id": 12345678,
"location": "San Francisco, CA",
"phone": "+1-555-0100",
"description": "Leading technology solutions provider specializing in enterprise SaaS.",
"is_client": true,
"do_not_contact": false,
"do_not_contact_metadata": null,
"created_at": "2024-01-05T10:00:00Z",
"date_of_last_engagement": "2024-06-15T14:30:00Z",
"client_status": {
"id": "789e0123-e45f-67a8-b901-234567890123",
"name": "Active"
},
"enriched_company": {
"id": "ec123456-7890-abcd-ef01-234567890abc",
"name": "Acme Corp",
"domain": "acme.com",
"linkedin_url": "https://www.linkedin.com/company/acme"
},
"owners": [
{
"id": "234e5678-e90a-12b3-c456-789012345678",
"first_name": "Jane",
"last_name": "Smith",
"image_url": null
}
],
"custom_fields": [
{
"attribute_id": "e5f6a7b8-c9d0-1234-efab-567890123456",
"attribute_name": "Industry",
"data_type": "single-select",
"value": null,
"tag": {
"id": "f6a7b8c9-d0e1-2345-fabc-678901234567",
"name": "Technology"
},
"team_member": null
},
{
"attribute_id": "a7b8c9d0-e1f2-3456-abcd-789012345678",
"attribute_name": "Account Owner",
"data_type": "multi-team-member",
"value": null,
"tag": null,
"team_member": {
"id": "234e5678-e90a-12b3-c456-789012345678",
"name": "Jane Smith"
}
}
]
}
}Retrieve detailed information about a specific company including client status, owners, enriched data, and custom field values. Custom fields are included by default; pass include= (empty) for base fields only.
curl --request GET \
--url https://api.stardex.ai/v1/companies/{id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "456e7890-e12b-34d5-a678-901234567890",
"name": "Acme Corp",
"domain": "acme.com",
"linkedin_url": "https://www.linkedin.com/company/acme",
"linkedin_id": 12345678,
"location": "San Francisco, CA",
"phone": "+1-555-0100",
"description": "Leading technology solutions provider specializing in enterprise SaaS.",
"is_client": true,
"do_not_contact": false,
"do_not_contact_metadata": null,
"created_at": "2024-01-05T10:00:00Z",
"date_of_last_engagement": "2024-06-15T14:30:00Z",
"client_status": {
"id": "789e0123-e45f-67a8-b901-234567890123",
"name": "Active"
},
"enriched_company": {
"id": "ec123456-7890-abcd-ef01-234567890abc",
"name": "Acme Corp",
"domain": "acme.com",
"linkedin_url": "https://www.linkedin.com/company/acme"
},
"owners": [
{
"id": "234e5678-e90a-12b3-c456-789012345678",
"first_name": "Jane",
"last_name": "Smith",
"image_url": null
}
],
"custom_fields": [
{
"attribute_id": "e5f6a7b8-c9d0-1234-efab-567890123456",
"attribute_name": "Industry",
"data_type": "single-select",
"value": null,
"tag": {
"id": "f6a7b8c9-d0e1-2345-fabc-678901234567",
"name": "Technology"
},
"team_member": null
},
{
"attribute_id": "a7b8c9d0-e1f2-3456-abcd-789012345678",
"attribute_name": "Account Owner",
"data_type": "multi-team-member",
"value": null,
"tag": null,
"team_member": {
"id": "234e5678-e90a-12b3-c456-789012345678",
"name": "Jane Smith"
}
}
]
}
}Authenticate with a Bearer token: API key, OAuth token, or session token.
Company ID
Comma-separated extra sections. Values: custom_fields. Default: custom_fields. Pass empty string for base fields only.
Was this page helpful?