Skip to main content
GET
/
prompts
/
{promptId}
/
evaluators
List evaluators
curl --request GET \
  --url https://api.adaline.ai/v2/prompts/{promptId}/evaluators \
  --header 'Authorization: Bearer <token>'
{
  "evaluators": [
    {
      "id": "<string>",
      "promptId": "<string>",
      "title": "<string>",
      "datasetId": "<string>",
      "status": "active",
      "createdAt": 17450965800000,
      "updatedAt": 17450965800000
    }
  ],
  "pagination": {
    "limit": 123,
    "returned": 1,
    "hasMore": true,
    "nextCursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Workspace API key. Pass as Authorization: Bearer <key>.

Path Parameters

promptId
string
required

Unique identifier for an entity, between 20 and 80 characters.

Required string length: 20 - 80

Query Parameters

limit
integer
Required range: x <= 200
cursor
string
Minimum string length: 1
sort
enum<string>

Sort order for list endpoints.

Available options:
createdAt:asc,
createdAt:desc
createdAfter
integer | null
Required range: x >= 0
createdBefore
integer | null
Required range: x >= 0

Response

Evaluators retrieved.

evaluators
Evaluator List Item · object[]
required
pagination
Pagination · object
required

Pagination metadata for list endpoints with cursor-based navigation.