Skip to main content
GET
/
eval_configs
/
{id}
/
records
List Eval Config Records
curl --request GET \
  --url https://api.vogent.ai/api/eval_configs/{id}/records \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "recordType": "DIAL",
      "dialId": "<string>",
      "prompt": {
        "id": "<string>",
        "systemPrompt": "<string>",
        "maxTurns": 123,
        "createdAt": "2023-11-07T05:31:56Z",
        "name": "<string>",
        "description": "<string>",
        "agentInputs": "<string>"
      }
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

In the form Bearer <api_key_here>. You can find your api key in your dashboard.

Path Parameters

id
string
required

ID of the eval config.

Query Parameters

limit
integer
default:100

The maximum number of records to fetch.

cursor
string

The pagination cursor returned by the previous request.

Optional search filter for record names or IDs.

Response

Successful operation

data
object[]
required
cursor
string | null
required

A cursor you can pass to fetch the next page. If no next page exists, the cursor will be null.