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

FieldTypeRequiredNotes
linkedin_urlstringYesLinkedIn 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

FieldTypeNotes
foundbooleanWhether a mapping was found.
domainstring | nullResolved company domain.
linkedin_urlstringEchoed input.
companystring | nullCompany name when known.
sourcestring | nullOpaque identifier; null on miss.