Skip to main content
GET
/
v2
/
integrations
List integrations
curl --request GET \
  --url https://api.arize.com/v2/integrations \
  --header 'Authorization: Bearer <token>'
{
  "integrations": [
    {
      "id": "TGxtSW50ZWdyYXRpb246MTI6YUJjRA==",
      "type": "llm",
      "name": "Production OpenAI",
      "scopings": [
        {
          "organization_id": null,
          "space_id": null
        }
      ],
      "created_at": "2026-02-13T21:27:19.055Z",
      "updated_at": "2026-02-13T21:27:19.279Z",
      "created_by_user_id": "VXNlcjoxOm5OYkM=",
      "config": {
        "provider": "openAI",
        "has_api_key": true,
        "is_default_models_enabled": true,
        "is_function_calling_enabled": true
      }
    }
  ],
  "pagination": {
    "has_more": false
  }
}

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. Omit to list all types. The integration category. Selects the shape of config. Currently only llm is implemented; additional types (agent, alerting, webhook) are added non-breakingly.

Available options:
llm
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

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.

pagination
object
required

Cursor-based pagination metadata.