Skip to main content
GET
/
eval_configs
List Eval Configs
curl --request GET \
  --url https://api.vogent.ai/api/eval_configs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "promptSnippet": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:100

The maximum number of configs to fetch.

cursor
string

The pagination cursor returned by the previous request.

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.