Poll this endpoint to check whether a pipeline run has completed. When status is COMPLETED, the result field contains the output data.
This endpoint works for any pipeline type (hiring signals, enrichment, etc.). The run_id is returned when you trigger a pipeline.
Poll every 10 seconds for small runs. For larger runs, poll every 30 seconds. Most runs complete within 30-90 seconds depending on the pipeline and data volume.
Path parameters
The run ID returned when you triggered a pipeline (e.g., from trigger leavers ).
Response
The unique identifier for this run.
Current status of the run. One of QUEUED, RUNNING, COMPLETED, or FAILED.
Pipeline output. null while the run is in progress. The shape of this object depends on the pipeline type. Show Result fields (hiring signals leavers)
Counts of records found. result.summary.leavers_count
Number of leavers identified.
result.summary.new_company_dms_count
Number of decision-makers found at leavers’ new companies.
result.summary.old_company_dms_count
Number of decision-makers found at leavers’ previous companies.
Cost breakdown for the run. result.costs.openrouter_cost
OpenRouter API cost in USD.
result.costs.ai_ark_credits_consumed
AI Ark credits consumed (negative value).
Download URL for the leavers CSV file.
result.new_company_dms_url
Download URL for decision-makers at leavers’ new companies.
result.old_company_dms_url
Download URL for decision-makers at leavers’ previous companies.
ISO 8601 timestamp when the run started.
ISO 8601 timestamp when the run completed. null while in progress.
curl https://api.automindz.co/runs/019d678b-c737-213f-f6b2-ed713064874d \
-H "Authorization: Bearer <your-api-key>"
{
"run_id" : "019d678b-c737-213f-f6b2-ed713064874d" ,
"status" : "QUEUED" ,
"result" : null ,
"started_at" : "2026-04-07T11:36:38.725680Z" ,
"finished_at" : null
}
Bearer authentication header of the form Bearer <token> , where <token> is your auth token.