Retrieve a Workflow
Guide to retrieving a Workflow in the Fetch Hive API.
Use the following endpoint to check the running status of a Workflow.
Retrieve details for a specific workflow run
Authorizations
Path parameters
idstringRequired
Workflow run token
Responses
200
Successful response
application/json
404
Workflow run not found
application/json
default
Error
application/json
get
/workflow_runs/{id}GET /v1/workflow_runs/{id} HTTP/1.1
Host: api.fetchhive.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "workflow_run": {
    "id": 1,
    "started_at": "2025-11-03T23:35:46.372Z",
    "ended_at": "2025-11-03T23:35:46.372Z",
    "start_inputs": {},
    "error_message": "text",
    "duration": 1,
    "total_charge": "text",
    "total_tokens": 1,
    "output_content": "text",
    "async_webhook_url": "text",
    "token": "text",
    "run_status": "text",
    "run_async": "text"
  }
}Last updated
Was this helpful?