---
title: "List AI integrations"
method: GET
path: "/v2/ai-integrations"
tags: ["AI Integrations"]
---

# List AI integrations

`GET /v2/ai-integrations`

List AI integrations the user has access to.

<Warning>This endpoint is in alpha, read more [here](https://arize.com/docs/ax/rest-reference#api-version-stages).</Warning>

## Query parameters

- `space_id` string — A universally unique identifier (base64-encoded opaque string).
- `space_name` string
- `name` string
- `limit` integer
- `cursor` string

## Response `200`

Returns a list of AI integration objects

- ListAiIntegrationsResponse
  - `ai_integrations` AiIntegration[], required — A list of AI integrations
    - `id` string, required — The integration ID
    - `name` string, required — The integration name
    - `provider` 'OPEN_AI' | 'AZURE_OPEN_AI' | 'AWS_BEDROCK' | 'VERTEX_AI' | 'ANTHROPIC' | 'CUSTOM' | 'NVIDIA_NIM' | 'GEMINI', required — The AI provider for this integration
    - `has_api_key` boolean, required — Whether an API key is configured (the key itself is never returned)
    - `base_url` string, nullable — Custom base URL for the provider
    - `model_names` string[], nullable — Supported model names
    - `headers` object, nullable — Custom headers included in requests
    - `enable_default_models` boolean, required — Whether the provider's default model list is enabled
    - `function_calling_enabled` boolean, required — Whether function/tool calling is enabled
    - `auth_type` 'DEFAULT' | 'PROXY_WITH_HEADERS' | 'BEARER_TOKEN', required — The authentication method for this integration
    - `provider_metadata` union — Provider-specific configuration. For AWS_BEDROCK, must include role_arn. For VERTEX_AI, must include project_id, location, and project_access_label.
      - object — AWS Bedrock provider metadata
        - `kind` 'AWS', required — Discriminator value identifying AWS Bedrock provider metadata.
        - `role_arn` string, required — AWS IAM role ARN for cross-account access
        - `external_id` string, nullable — External ID for the assume-role policy
      - object — Vertex AI (GCP) provider metadata
        - `kind` 'GCP', required — Discriminator value identifying Vertex AI (GCP) provider metadata.
        - `project_id` string, required — GCP project ID
        - `location` string, required — GCP region (e.g. us-central1)
        - `project_access_label` string, required — Display label for the project
    - `scopings` AiIntegrationScoping[], required — Visibility scoping rules
      - `organization_id` string, nullable — Organization identifier (base64). Null means account-wide.
      - `space_id` string, nullable — Space identifier (base64). Null means organization-wide (or account-wide if organization_id is also null).
    - `created_at` string, date-time, required — When the integration was created
    - `updated_at` string, date-time, required — When the integration was last updated
    - `created_by_user_id` string, required — The user ID of the user who created the integration
  - `pagination` PaginationMetadata, required — Cursor-based pagination metadata. Use `next_cursor` in the subsequent request's `cursor` query parameter.
    - `next_cursor` string — Opaque cursor for fetching the next page. Treat as an unreadable token. Present when `has_more` is true; omitted when `has_more` is false.
    - `has_more` boolean, required — True if another page of results is available.

## Other responses

- `400` — Invalid request
- `401` — Authentication is required
- `403` — Insufficient permissions to access this resource
- `404` — Not found
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/arize-ai/apis/arize-rest-api.md) · [All operations](https://skmtc.net/arize-ai/apis/arize-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/arize-ai/arize-rest-api/versions/2ce448f1de13/schema)
