Quadratic Auth API

Identity for the calling token.

Operations 1

GET /v1/auth/me Returns identity information derived from the API token that authorized this request. Useful for verifying a token works and discovering which team it belongs to. #

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/quadratic-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

quadratic-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quadratic Developer Agent Connections Auth API
  description: 'Token-authenticated REST API for Quadratic spreadsheets. All `/v1/*` routes require an `Authorization: Bearer <token>` header where the token is a `qdx_live_…` or `qdx_test_…` value minted from the Quadratic UI.


    **Optional `Quadratic-Session-Id` header.** Clients may attach a UUID v4 to every request to correlate analytics events from a single integration run (one client instance, one CLI invocation, one CI job). Official SDKs generate one at construction and send it transparently; direct callers may omit it. Malformed values are dropped silently and never propagated to analytics.'
  contact:
    name: Quadratic
  license:
    name: Apache-2.0
  version: 0.26.9
servers:
- url: https://developer-api.quadratichq.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Auth
  description: Identity for the calling token.
paths:
  /v1/auth/me:
    get:
      tags:
      - Auth
      summary: 'Returns identity information derived from the API token that authorized

        this request. Useful for verifying a token works and discovering which

        team it belongs to.'
      operationId: getMe
      responses:
        '200':
          description: Token is valid; returns identity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '401':
          description: Missing, malformed, or invalid bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
      security:
      - bearer_auth: []
components:
  schemas:
    ErrorDetail:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: string
          description: 'Stable machine-readable error code. Clients should switch on this

            rather than parsing the human-readable `message`. See the README''s

            "Errors" section for the full list of codes.'
          example: not_found
        details:
          description: 'Optional structured context for the error (validation paths, worker

            upstream messages, etc.). Absent when no extra context is available.'
        message:
          type: string
          description: 'Human-readable description of the failure. Suitable for logs but not

            guaranteed to be stable across versions.'
          example: Sheet 'Forecast' not found
    MeResponse:
      type: object
      description: Identity of the caller derived from their API token.
      required:
      - authenticated
      - email
      - team_uuid
      - token_uuid
      properties:
        authenticated:
          type: boolean
          description: 'Always `true` for a successful response (the request reached the

            handler, which means bearer auth passed).'
        email:
          type: string
          description: Email address associated with the user that owns the API token.
          example: alice@example.com
        team_uuid:
          type: string
          format: uuid
          description: 'UUID of the team the caller''s token is scoped to. Handlers default to

            this team when one isn''t specified in the request.'
        token_uuid:
          type: string
          format: uuid
          description: 'UUID of the API token authorizing this request. Useful for clients

            that want to correlate their requests to tokens in audit logs.'
    ErrorBody:
      type: object
      description: Canonical error envelope returned by every non-2xx response.
      required:
      - error
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: API token (qdx_live_… or qdx_test_…)
      description: 'API tokens are minted from the Quadratic UI under Team Settings → API Tokens. Send as `Authorization: Bearer <token>`.'