GET
/
ai-execution-context
List AI Execution Contexts
curl --request GET \
  --url https://api.wacht.dev/ai-execution-context \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "agent_id": "<string>",
      "workflow_id": "<string>",
      "user_id": "<string>",
      "session_id": "<string>",
      "context": {},
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication using the Authorization header

Query Parameters

page
integer

Page number

Required range: x >= 1
per_page
integer

Items per page

Required range: 1 <= x <= 100
agent_id
string

Filter by agent ID

workflow_id
string

Filter by workflow ID

Response

Successful response

The response is of type object.