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.

Contact enrichment lets you retrieve verified work emails, personal emails, and phone numbers for people in your prospect list. Descovo offers three patterns depending on the scale of your use case: a synchronous single-profile endpoint for quick lookups, an async batch endpoint for large lists, and audience-based enrichment when you want to process an entire saved segment. Credits are charged per data point successfully returned — if no email or phone is found for a profile, you are not charged.

Sync contact enrichment

Use the sync endpoint when you need contact data for a single LinkedIn profile and want the result immediately in the response.Endpoint: POST https://api.descovo.com/v1/individual-reveal/sync
Auth: apiKey in the request body
Credit behavior: Charged immediately per data type found

Request parameters

apiKey
string
required
Your Descovo API key.
linkedinUrl
string
required
The full LinkedIn profile URL of the person to enrich. Example: "https://www.linkedin.com/in/example-profile/".
enrichmentTypes
object
required
Which contact data types to request. Set each to true or false.

Response fields

output
object
chargeInfo
object

Example

Request:
{
  "apiKey": "sk_live_xxx",
  "linkedinUrl": "https://www.linkedin.com/in/example-profile/",
  "enrichmentTypes": {
    "getWorkEmails": true,
    "getPersonalEmails": false,
    "getPhoneNumbers": true
  }
}
Response:
{
  "output": {
    "linkedinUrl": "https://www.linkedin.com/in/example-profile/",
    "workEmails": ["person@company.com"],
    "personalEmails": [],
    "phoneNumbers": ["+1-555-123-4567"]
  },
  "chargeInfo": {
    "method": "charged-now",
    "creditsCharged": 5
  }
}
Use sync enrichment for 1–5 profiles where you need results inline. For more than ~10 profiles, use the batch endpoint instead.

Enriching contacts within an audience

For full-scale workflows — finding, filtering, enriching, and exporting a large segment — use audience-based enrichment rather than the batch endpoint. The audience workflow gives you search filters, cost estimation, and CSV export in a single pipeline. See Audiences for the complete endpoint sequence.

Credit costs

Data typeTypical cost
Work email found2 credits
Personal email found2 credits
Phone number found3 credits
Credits are charged only for data that is successfully found. Profiles where no contact data is available do not consume credits for those data types.