Get Run Details API
Retrieve detailed information about a specific run, including input and output.
GET
/v1/runs/{run_id} Example
curl -X GET "https://api.browsable.app/v1/runs/run_abc123" \
-H "Authorization: Bearer YOUR_API_KEY"Response
{
"run": {
"id": "run_abc123",
"task_id": "task_123",
"status": "success",
"input": {"query": "programming"},
"output": {"results": [...], "count": 25},
"created_at": "2024-01-20T10:30:00Z",
"started_at": "2024-01-20T10:30:01Z",
"updated_at": "2024-01-20T10:30:15Z"
}
}