v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
AI

List AI calls an AI agent participated in

Retrieves a paginated list of AI calls in which the specified AI agent participated.

get/ais/{id}/participants

Path parameters

idstring uuid required
Example:22222222-2222-2222-2222-222222222222

The unique identifier of the AI agent. Returned from the POST /ais or GET /ais response.

Query parameters

page_sizeinteger
Example:25

Number of results to return per page.

page_tokenstring

Cursor token for pagination. Use the next_page_token value from the previous response.

Response

A paginated list of participation records for the specified AI agent.

next_page_tokenstring

Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.

Example response

{
  "result": [
    {
      "ai_id": "22222222-2222-2222-2222-222222222222",
      "aicall_id": "11111111-1111-1111-1111-111111111111",
      "tm_create": "2026-05-22T10:00:00.000000Z"
    }
  ]
}