Skip to main content
GET
List integrations

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

type
enum<string>

Filter the list to a single integration type. When omitted, LLM and AGENT integrations are returned; EVALUATOR integrations must be requested explicitly with type=EVALUATOR. Each item carries its type for client-side discrimination. The integration category. Selects the shape of config. Additive — new types (alerting, webhook, ...) are added non-breakingly.

  • LLM — a model-provider integration (e.g. OpenAI).
  • AGENT — connects your own agent, exposed at an HTTP endpoint.
  • EVALUATOR — connects a remote evaluator endpoint. Only returned when ?type=EVALUATOR is passed explicitly; excluded from the default (LLM + AGENT) list to keep the cursor contract stable. Requires the remote evaluators feature to be enabled.
Available options:
LLM,
AGENT,
EVALUATOR
space_id
string

Filter search results to a particular space ID A universally unique identifier (base64-encoded opaque string).

Example:

"RW50aXR5OjEyMzQ1"

space_name
string

Case-insensitive substring filter on the space name. Narrows results to resources in spaces whose name contains the given string. If omitted, no space name filtering is applied and all resources are returned.

Maximum string length: 255
name
string

Case-insensitive substring filter on the resource name. Returns only resources whose name contains the given string. For example, name=prod matches "production", "my-prod-dataset", etc. If omitted, no name filtering is applied and all resources are returned.

Maximum string length: 255
limit
integer
default:50

Maximum items to return. Defaults to 50 if omitted; maximum is 100.

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

A paginated, polymorphic list of integrations.

integrations
object[]
required

A polymorphic, type-tagged list of integrations.

A polymorphic integration resource. The type field selects the config shape; for LLM, config.provider selects the per-provider config.

pagination
object
required

Cursor-based pagination metadata.