Get Enrichment Results
Returns the current state of an enrichment run. Responds with 202 and status ‘processing’ while the run is in progress, or 200 with full per-profile results when it has completed.
Returns the current state of an enrichment run. While the run is in progress the response isDocumentation Index
Fetch the complete documentation index at: https://docs.instaview.sk/llms.txt
Use this file to discover all available pages before exploring further.
202 Accepted with status: "processing". Once finished it becomes 200 OK with per-profile results.
Overview
Use this endpoint to poll for enrichment results when you do not have a webhook configured. Theid path parameter is the requestId returned by POST /sourcing/enrich.
Response Examples
Still Processing (202 Accepted)
Completed (200 OK)
Completed with Partial Failure (200 OK)
Failed (200 OK with status: "failed")
Partial Success vs. Run Failure
Astatus: "completed" response can include individual per-profile failures — those profiles have success: false in the data array and are not billed. A status: "failed" response indicates the entire run encountered an unrecoverable error before any profile could be processed.Authorizations
API key for authentication using Bearer scheme
Path Parameters
The requestId returned by POST /sourcing/enrich (e.g. enr_550e8400-…).
Response
Enrichment results (completed or failed)
Whether the request succeeded.
true
The enrichment run request ID.
"enr_550e8400-e29b-41d4-a716-446655440000"
Current status of the enrichment run.
processing, completed, failed "processing"
Human-readable message. Present while the run is still processing.
"Enrichment is in progress. Please poll again in a few seconds."
ISO 8601 timestamp when the run was created.
"2025-01-01T00:00:00.000Z"
ISO 8601 timestamp when the run completed or failed.
"2025-01-01T00:00:05.000Z"
Number of profiles successfully enriched.
3
Number of profiles that failed enrichment.
1
Credits consumed by this enrichment run.
3
Per-profile enrichment results. Present when status = 'completed'.
Machine-readable error code when status = 'failed'.
"INTERNAL_ERROR"
Human-readable error message when status = 'failed'.
"An unexpected error occurred during enrichment."