Skip to main content
GET
/
api
/
v1
/
explorer
/
query-runs
/
{run_id}
/
status
Get Query Run Status
curl --request GET \
  --url https://api.allium.so/api/v1/explorer/query-runs/{run_id}/status \
  --header 'X-API-KEY: <api-key>'
"created"

Documentation Index

Fetch the complete documentation index at: https://docs.allium.so/llms.txt

Use this file to discover all available pages before exploring further.

Check the execution status of a query run. Use this endpoint to poll for completion after running a query.

Query Run Statuses

StatusDescription
createdQuery has been created
queuedQuery has been queued for execution
runningQuery is currently executing
successQuery has successfully executed
failedQuery execution failed
canceledQuery was canceled, likely due to user action

Authorizations

X-API-KEY
string
header
required

Path Parameters

run_id
string
required

Response

Successful Response

An enumeration.

Available options:
created,
queued,
running,
success,
failed,
canceled