LogoLogo
Python SDKSlack
  • Documentation
  • Cookbooks
  • Self-Hosting
  • Release Notes
  • Reference
  • API Reference
    • Overview
    • Python SDK
    • OpenTelemetry SDK
    • OpenInference SDK
    • Phoenix OSS
    • GraphQL API
      • Getting Started with GraphQL
      • How To Use GraphQL
        • Forming Calls
        • Using global node IDs
        • Querying Nested Data
        • Notebook Examples
        • Mutations
      • Admin API
      • Annotations API
      • Custom Metrics API
      • Dashboards API
      • File Importer API
      • Online Tasks API
      • Metrics API
      • Models API
      • Monitors API
      • Table Importer API
      • Resource Limitations
  • Export Data API
  • Prompt Hub API
  • Authentication & security
    • Arize Private Connect
    • API Keys
    • SSO & RBAC
      • Setting Up SSO with Okta
    • Compliance
      • Arize Audit Log
    • Whitelisting
Powered by GitBook

Support

  • Chat Us On Slack
  • support@arize.com

Get Started

  • Signup For Free
  • Book A Demo

Copyright © 2025 Arize AI, Inc

On this page
  • What is GraphQL?
  • Why Use The Arize GraphQL API?
  • About GraphQL

Was this helpful?

  1. API Reference

GraphQL API

Last updated 1 month ago

Was this helpful?

What is GraphQL?

GraphQL is a query language for APIs that provides a programmatic way of and entities within the Arize platform, offering precise and flexible queries for an in-depth integration with your existing tooling and infrastructure.

For a brief overview of GraphQL itself, please consult our introduction.

Queries on the Arize GraphQL API are available to all accounts. Mutations are available to enterprise-grade customers. To upgrade your account contact .

Why Use The Arize GraphQL API?

The Arize GraphQL API enables customers to integrate Arize with their internal systems for a repeatable and consistent setup. Use the API to:

  • Bulk create custom monitors with complex filters or baselines

  • Export existing monitor configuration, make edits, and bring edits back into Arize

  • Build automation by integrating Arize with internal services

GraphQL Benefits for the Arize API

We picked GraphQL as our query language for our API for a few key reasons:

  1. GraphQL operates with well-defined and types which allow users to automatically document the API and validate queries and without relying on the server.

  2. GraphQL enables users to specify their returned data in a single query. Users get to precisely define the data they want — which means querying less to get what you need. This saves time, reduces computational load, and lessens network expenses.

  3. GraphQL is Language agnostic. This means you can implement our GraphQL API in your preferred language for a more intuitive understanding.

We would love to hear from you! Please reach out to and join our . Let's build great things together.

About GraphQL

  • Strongly Typed. The schema defines an API's type system and all object relationships.

  • Introspective. A client can query the schema for details about the schema.

  • Hierarchical. The shape of a GraphQL call mirrors the shape of the JSON data it returns. Nested fields let you query for and receive only the data you specify in a single round trip.

  • An application layer. GraphQL is not a storage model or a database query language. The graph refers to graph structures defined in the schema, where nodes define objects and edges define relationships between objects. The API traverses and returns application data based on the schema definitions, independent of how the data is stored.

The data query language is:

A . The spec determines the validity of the schema on the API server. The schema determines the validity of client calls.

accessing (query)
modifying (mutation)
support@arize.com
schemas
mutations
support@arize.com
community slack
GraphQL
specification