Domain to LinkedIn

Resolve a company domain to a LinkedIn company URL when one is known.

Endpoint

POST /api/v1/companies/domain-to-linkedin

Authentication

All requests require the X-Satellyte-API-Key header. See Quickstart.

Request body

FieldTypeRequiredNotes
domainstringYesCompany domain, for example openai.com.

cURL

curl -i -X POST "https://api-staging.satellyte.ai/api/v1/companies/domain-to-linkedin" \
  -H "X-Satellyte-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "domain": "stripe.com" }'

Response (200): hit

{
  "data": {
    "found": true,
    "domain": "stripe.com",
    "linkedin_url": "https://www.linkedin.com/company/stripe",
    "company": null,
    "source": "satellyte"
  }
}

Response (200): miss

{
  "data": {
    "found": false,
    "domain": "unknown.example",
    "linkedin_url": null,
    "company": null,
    "source": null
  }
}

Response fields

FieldTypeNotes
foundbooleanWhether a mapping was found.
domainstringEchoed input.
linkedin_urlstring | nullResolved LinkedIn company URL.
companystring | nullCompany name when known.
sourcestring | null"satellyte" for found, null for miss. Opaque identifier; do not branch on specific values.