Arize Phoenix Auth API

The Auth API from Arize Phoenix — 6 operation(s) for auth.

Operations 6

POST /auth/login Login #
GET /auth/logout Logout #
POST /auth/refresh Refresh Tokens #
POST /auth/password-reset-email Initiate Password Reset #
POST /auth/password-reset Reset Password #
POST /auth/ldap/login Ldap Login #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/phoenix-auth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

phoenix-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arize-Phoenix REST annotation_configs Auth API
  description: Schema for Arize-Phoenix REST API
  version: '1.0'
servers:
- url: https://app.phoenix.arize.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Auth
paths:
  /auth/login:
    post:
      summary: ' Login'
      description: Authenticate user via email/password and return access/refresh tokens.
      operationId: _login_auth_login_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth
  /auth/logout:
    get:
      summary: ' Logout'
      description: Log out user by revoking tokens and clearing cookies.
      operationId: _logout_auth_logout_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth
  /auth/refresh:
    post:
      summary: ' Refresh Tokens'
      description: Refresh access and refresh tokens.
      operationId: _refresh_tokens_auth_refresh_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth
  /auth/password-reset-email:
    post:
      summary: ' Initiate Password Reset'
      description: Send password reset email to user.
      operationId: _initiate_password_reset_auth_password_reset_email_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth
  /auth/password-reset:
    post:
      summary: ' Reset Password'
      description: Reset user password using a valid reset token.
      operationId: _reset_password_auth_password_reset_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth
  /auth/ldap/login:
    post:
      summary: ' Ldap Login'
      description: Authenticate user via LDAP and return access/refresh tokens.
      operationId: _ldap_login_auth_ldap_login_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - Auth