My App
API ReferenceConversations

List Conversations

Browse your traced conversations.

View all conversations captured from your LLM calls. Filter by time range to find specific interactions, or use embed=(messages) to include full message content in each result.

GET
/v1/conversations

Query Parameters

limit?integer

Maximum number of items to return

Default50
Range0 < value <= 100
cursor?|

Pagination cursor

embed?|

Embed resources: (messages)

fields?|

Filter returned fields per Rule #157, e.g., (id,external_id,messages(role)). Supports negation with ! prefix.

filter[created_at][eq]?|
filter[created_at][gt]?|
filter[created_at][gte]?|
filter[created_at][lt]?|
filter[created_at][lte]?|
filter[updated_at][eq]?|
filter[updated_at][gt]?|
filter[updated_at][gte]?|
filter[updated_at][lt]?|
filter[updated_at][lte]?|
filter[type][eq]?string
Default"trace"

Header Parameters

x-workspace-id?|

Workspace UUID to operate within. Required for session auth and user-scoped API keys. Optional for workspace-scoped API keys (uses key's workspace if omitted).

Response Body

application/json

application/json

curl -X GET "https://loading/v1/conversations"
{
  "next_page_cursor": "string",
  "query": {},
  "has_more": true,
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "external_id": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z",
      "message_count": 0,
      "annotation_count": 0,
      "messages": [
        {
          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
          "role": "string",
          "parts": [
            {}
          ],
          "sequence_number": 0,
          "created_at": "2019-08-24T14:15:22Z",
          "updated_at": "2019-08-24T14:15:22Z",
          "generation": {
            "model": "string",
            "input_tokens": 0,
            "output_tokens": 0,
            "cost_usd": 0,
            "response_id": "string",
            "provider": "string",
            "finish_reasons": [
              "string"
            ],
            "agent_description": "string",
            "agent_id": "string",
            "agent_name": "string"
          }
        }
      ]
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}