Skip to main content
GET
Get enrichment results
Poll on status, not on the HTTP status code.While the enrichment is running this endpoint answers 202 Accepted with a body that has no data and no summary. Once it is done it answers 200 OK with status: "terminated".Some HTTP clients treat any 2xx as success, so a naive integration reads an empty data and concludes the lead could not be enriched. Always branch on body.status === "terminated".See Request statuses for the full lifecycle and a polling recipe.
Prefer the webhook attribute of POST /async over polling. Results are pushed as soon as they are ready, with no rate limit spent. See Webhooks.

Authorizations

X-API-Key
string
header
required

Path Parameters

request_id
string
required

Response

Request finished. status is terminated and data holds the enriched leads.

id
string

The request_id of this enrichment.

Example:

"fefbc2203558eb3adcea"

status
enum<string>

See Request statuses. Only terminated guarantees data and summary are present.

Available options:
processing,
on_hold,
terminated
Example:

"terminated"

message
string

Human readable hint. Only present while the request is not terminated.

Example:

"Enrichment is not terminated yet. Please try later"

credits_consumed
integer

Credits spent by this request so far.

Example:

1

credits_left
integer

Credits remaining on the account.

Example:

331

summary
object

Only present once status is terminated.

data
object[]

Only present once status is terminated.