Documentation Index
Fetch the complete documentation index at: https://docs.snorbe.deskrex.ai/llms.txt
Use this file to discover all available pages before exploring further.
Get Agent Run Detail
Returns the full details of an agent run, including the complete process timeline, linked sources, and linked entities. Unlike the lightweight status endpoint, this returns the entire process event array.Request
Path Parameters
| Parameter | Type | Description |
|---|---|---|
runId | string | Agent run ID |
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | API key in Bearer snorbe_... format |
The workspace is automatically resolved from your API key. No
workspaceId parameter required.Response
null if the agent run is not found.
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Agent run ID |
status | string | Run status (completed, running, error, etc.) |
process | object[] | Array of process events from the agent run |
createdAt | string | Run creation timestamp (ISO 8601) |
updatedAt | string | Run last update timestamp (ISO 8601) |
agentId | string | Agent ID that executed this run |
agentName | string | Agent name |
linkedSources | object[] | Sources used in this agent run |
linkedSources[].id | string | Source ID |
linkedSources[].url | string | Source URL |
linkedSources[].title | string | Source title |
linkedSources[].sourceType | string | Source type (public or private) |
linkedEntityIds | string[] | Entity IDs linked to this agent run |
linkedEntities | object[] | Entity summaries linked to this agent run |
linkedEntities[].id | string | Entity ID |
linkedEntities[].label | string | Entity name |
linkedEntities[].category | string | Entity category |
linkedEntities[].kind | string | Entity kind |
images | object[] | Images extracted from the process. Aggregated from search image SERPs, skill output files, and bodyLinks images in source summaries (deduplicated) |
images[].imageUrl | string | Image URL |
images[].thumbnailUrl | string | undefined | Thumbnail URL (present only when sourced via Serper) |
images[].title | string | undefined | Image title / alt text |
images[].link | string | undefined | URL of the originating page |
The
process field is an array of process events collected during the agent run. See the SSE streaming docs for the full list of event types and their payloads.Examples
Error Responses
| HTTP Status | Description |
|---|---|
| 401 | Invalid, expired, or missing API key |
| 404 | Agent run not found (returns null body) |