Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.descovo.com/llms.txt

Use this file to discover all available pages before exploring further.

Live enrichment fetches the latest data directly from LinkedIn for a specific company or person, rather than returning what Descovo has stored in its database. Use it when you need fresh details for a small number of high-value accounts or prospects — for example, to confirm current headcount, recent funding, or an executive’s latest role. Credits are charged at 2 credits per successful live fetch. If the live fetch fails, the API automatically falls back to a cached database result at no charge.

Company live enrichment

Fetch the latest LinkedIn data for a specific company using its LinkedIn slug, URL, or organization ID.Endpoint: POST https://api.descovo.com/v1/linkedin-live-fetch/company/single
Auth: apiKey in the request body
Credit cost: 2 credits per live fetch (operation: liveEnrichCompany)

Request parameters

apiKey
string
required
Your Descovo API key.
type
string
required
The type of identifier you are providing. One of:
  • "slug" — LinkedIn company slug (e.g. "microsoft" from linkedin.com/company/microsoft/)
  • "liUrl" — Full LinkedIn company URL (e.g. "https://www.linkedin.com/company/microsoft/")
  • "orgId" — LinkedIn organization ID (numeric string, e.g. "1441") or a Descovo company ID that maps to an org ID
value
string
required
The identifier value corresponding to the type you specified.

Response fields

output
object
chargeInfo
object

Example

Request using a LinkedIn slug:
{
  "apiKey": "sk_live_xxx",
  "type": "slug",
  "value": "microsoft"
}
Request using a full LinkedIn URL:
{
  "apiKey": "sk_live_xxx",
  "type": "liUrl",
  "value": "https://www.linkedin.com/company/microsoft/"
}
Response:
{
  "output": {
    "company": {
      "preferred_name": "Microsoft",
      "linkedin_slug": "microsoft",
      "employee_count": 221000,
      "location": {
        "city": "Redmond",
        "country_code": "US"
      }
    }
  },
  "chargeInfo": {
    "method": "charged-now",
    "creditsCharged": 2
  }
}

Fallback behavior

If the live fetch fails — for example, due to a LinkedIn availability issue — the API returns a cached version of the company from Descovo’s database. In this case, creditsCharged is 0. The response structure is identical; check creditsCharged to determine whether you received live or cached data.
If the company cannot be found at all, the API returns a 404. This usually means the identifier is incorrect or the company page no longer exists on LinkedIn.

When to use company live enrichment

  • You have a specific LinkedIn URL or slug for a high-value account and need the most current data.
  • You want to verify that headcount, funding, or location data is still accurate for a key prospect.
  • For bulk company data, use company search or audiences instead.