Skip to main content
GET
/
eval_configs
/
{id}
/
records
/
{recordId}
Get Eval Record
curl --request GET \
  --url https://api.vogent.ai/api/eval_configs/{id}/records/{recordId} \
  --header 'Authorization: Bearer <token>'
{
  "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>"
  }
}

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.

recordId
string
required

ID of the eval record.

Response

Successful operation

id
string
required
recordType
enum<string>
required

The type of evaluation record.

Available options:
DIAL,
PROMPT
dialId
string | null
prompt
object