My App
API ReferenceExperiments

Get Experiment Item

Get detailed results for a specific conversation in an experiment.

View the full simulated conversation, including the model's response and any detected hallucinations with their annotations.

GET
/v1/experiments/{experiment_id}/items/{item_id}

Path Parameters

experiment_id*string
Formatuuid
item_id*string
Formatuuid

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/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "experiment_id": "916afd89-cac5-4339-9c59-dd068abdfa69",
  "source_conversation_id": "80d30e78-78d3-41ed-b290-9ebb644ada57",
  "result_conversation_id": "228b34f7-0a57-4f3a-b9b7-5d5c3572798c",
  "status": "string",
  "error_message": "string",
  "created_at": "2019-08-24T14:15:22Z",
  "updated_at": "2019-08-24T14:15:22Z"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}