Skip to main content
GET
/
v1
/
senders
/
{senderId}
/
agent
/
executions
/
{executionId}
Get a single agent execution
curl --request GET \
  --url https://api.zavu.dev/v1/senders/{senderId}/agent/executions/{executionId} \
  --header 'Authorization: Bearer <token>'
{
  "execution": {
    "id": "<string>",
    "agentId": "<string>",
    "status": "success",
    "inputTokens": 123,
    "outputTokens": 123,
    "latencyMs": 123,
    "cost": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "inboundMessageId": "<string>",
    "responseMessageId": "<string>",
    "responseText": "<string>",
    "errorMessage": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.zavu.dev/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

senderId
string
required
executionId
string
required

Response

Execution details.

execution
object
required