My App
API ReferenceExperiments

List Experiment Items

Browse individual conversation results within an experiment.

See how each conversation performed: hallucination count, token usage, latency, and a preview of the content. Use this to find problematic conversations worth investigating.

GET
/v1/experiments/{experiment_id}/items

Path Parameters

experiment_id*string
Formatuuid

Query Parameters

limit?integer

Maximum number of items to return

Default20
Range0 < value <= 100
cursor?|

Cursor for pagination

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/experiments/497f6eca-6276-4993-bfeb-53cbbbba6f08/items"
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "source_preview": "string",
      "hallucination_count": 0,
      "input_tokens": 0,
      "output_tokens": 0,
      "latency_ms": 0,
      "created_at": "2019-08-24T14:15:22Z"
    }
  ],
  "next_cursor": "string",
  "has_more": true
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}