Skip to main content
GET
/
v2
/
annotation-configs
List annotation configs
curl --request GET \
  --url https://api.arize.com/v2/annotation-configs \
  --header 'Authorization: Bearer <token>'
{
  "annotation_configs": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "space_id": "<string>",
      "type": "continuous",
      "minimum_score": 123,
      "maximum_score": 123,
      "optimization_direction": "maximize"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format

Query Parameters

space_id
string

Filter search results to a particular space ID A universally unique identifier

limit
integer
default:50

Maximum items to return

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor returned from a previous response (pagination.next_cursor). Treat it as an unreadable token; do not attempt to parse or construct it.

Response

Returns a list of annotation config objects

annotation_configs
object[]
required

A list of annotation configs

pagination
object
required

Cursor-based pagination metadata. Use next_cursor in the subsequent request's cursor query parameter.