Skip to main content
GET
Get Run Stats
This endpoint retrieves detailed real-time statistics about a specific run, including progress information, estimated time remaining, and task completion status.

Headers

string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

string
required
The unique identifier (hash) of the run. Example: 300e9c5c127d421c90f431478d9a2cfb

Response Field Explanations

string
The run’s unique identifier. Example: "300e9c5c127d421c90f431478d9a2cfb"
string
Always “run”. Example: "run"
string
Human-readable duration (HH:MM:SS format). Example: "0:00:15.175532"
string
When the run started. Example: "2025-02-10T14:30:55"
string | null
When the run ended (null if still running). Example: "2025-02-10T14:31:10"
boolean
Whether the run has completed. Example: true
string
Completion percentage. Example: "100%"
string
Estimated time remaining (”∞” if unknown). Example: "∞"
integer
Total number of tasks in the run. Example: 10
integer
Number of tasks completed. Example: 10
integer
Number of tasks remaining. Example: 0
integer
Total results collected in this run. Example: 6
integer
Expected total results (if known). Example: 138
integer
Results collected so far. Example: 6
string
Currently executing task (empty if none). Example: ""
string
Last update timestamp. Example: "2025-02-10T14:31:10"
Poll this endpoint periodically to display real-time progress in your application.
The eta field provides an estimate but may show ”∞” for runs with unpredictable completion times.
Use percent_done for progress bars and total_tasks_left to show remaining work.

Code Examples

Response

200
404