Skip to main content
GET
/
runs
/
{run_id}
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
}
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

run_id
string
required
The run ID returned when you triggered a pipeline (e.g., from trigger leavers).

Response

run_id
string
The unique identifier for this run.
status
string
Current status of the run. One of QUEUED, RUNNING, COMPLETED, or FAILED.
result
object
Pipeline output. null while the run is in progress. The shape of this object depends on the pipeline type.
started_at
string
ISO 8601 timestamp when the run started.
finished_at
string
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

run_id
string
required

Response

Successful Response