LinkedIn to Domain
Resolve a LinkedIn company URL to a domain.
Endpoint
POST /api/v1/companies/linkedin-to-domain
Authentication
All requests require the X-Satellyte-API-Key header. See Quickstart.
Request body
| Field | Type | Required | Notes |
|---|---|---|---|
linkedin_url | string | Yes | LinkedIn company URL. |
cURL
curl -i -X POST "https://api-staging.satellyte.ai/api/v1/companies/linkedin-to-domain" \
-H "X-Satellyte-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{ "linkedin_url": "https://www.linkedin.com/company/stripe" }'
Response (200): hit
{
"data": {
"found": true,
"domain": "stripe.com",
"linkedin_url": "https://www.linkedin.com/company/stripe",
"company": "Stripe",
"source": "satellyte"
}
}
Response fields
| Field | Type | Notes |
|---|---|---|
found | boolean | Whether a mapping was found. |
domain | string | null | Resolved company domain. |
linkedin_url | string | Echoed input. |
company | string | null | Company name when known. |
source | string | null | Opaque identifier; null on miss. |