Retrieve the final result for a background enrichment task after the batch has produced task IDs.
GET https://api.openmart.ai/api/v1/task/:task_idUse this endpoint to retrieve the final result for a single task (for example a people enrichment or tech detection task) once it reaches COMPLETED.
Authentication. We recommend sending your API key as Authorization: Bearer <your_api_key>. If your current integration already uses X-API-Key: <your_api_key>, it will continue to work.
task_id| Parameter | Type | Required | Example | Description |
|---|---|---|---|---|
task_id | string | Yes | "2fc8b627..." | The task ID returned for an individual task inside a batch once the batch is ready. |
curl --request GET \
--url https://api.openmart.ai/api/v1/task/<task_id> \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <your_api_key>'{
"task_id": "2fc8b627-1111-2222-3333-123456789abc",
"status": "COMPLETED",
"tracking_id": "customer-42",
"data": [
{
"first_name": "Jane",
"last_name": "Doe",
"title": "Head of Marketing",
"email": { "email": "jane@bluebottlecoffee.com", "verified": true }
}
]
}Match the error number or message in the response, then use the action below.
See Troubleshooting & FAQ for step-by-step help and the information to include when asking for support.