GlitchTip GlitchTip API API

The GlitchTip API API from GlitchTip — 1 operation(s) for glitchtip api.

Operations 1

GET /api/0/ Api Root #

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/glitchtip-glitchtip-api-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

glitchtip-glitchtip-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GlitchTip Accept GlitchTip API
  version: 1.0.0
  description: ''
  contact:
    email: sales@glitchtip.com
    url: https://glitchtip.com/
  license:
    name: MIT
  x-api-id: glitchtip
servers:
- url: https://app.glitchtip.com
  description: GlitchTip production server
tags:
- name: GlitchTip API
paths:
  /api/0/:
    get:
      operationId: glitchtip_api_api_api_root
      summary: Api Root
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIRootSchema'
      description: /api/0/ gives information about the server and current user
      tags:
      - GlitchTip API
components:
  schemas:
    APITokenSchema:
      properties:
        id:
          title: Id
          type: integer
        label:
          title: Label
          type: string
        scopes:
          items:
            type: string
          title: Scopes
          type: array
        token:
          title: Token
          type: string
        created:
          format: date-time
          title: Created
          type: string
      required:
      - id
      - label
      - scopes
      - token
      - created
      title: APITokenSchema
      type: object
    UserOptions:
      properties:
        timezone:
          title: Timezone
          type:
          - string
          - 'null'
        stacktraceOrder:
          title: Stacktraceorder
          type:
          - integer
          - 'null'
        language:
          title: Language
          type:
          - string
          - 'null'
        clock24Hours:
          title: Clock24Hours
          type:
          - boolean
          - 'null'
        preferredTheme:
          title: Preferredtheme
          type:
          - string
          - 'null'
      title: UserOptions
      type: object
    UserSchema:
      properties:
        id:
          title: Id
          type: string
        options:
          $ref: '#/components/schemas/UserOptions'
        username:
          format: email
          title: Username
          type: string
        dateJoined:
          format: date-time
          title: Datejoined
          type: string
        email:
          format: email
          title: Email
          type: string
        hasPasswordAuth:
          title: Haspasswordauth
          type: boolean
        identities:
          items:
            $ref: '#/components/schemas/SocialAccountSchema'
          title: Identities
          type: array
        lastLogin:
          title: Last Login
          format: date-time
          type:
          - string
          - 'null'
        isSuperuser:
          default: false
          description: Designates that this user has all permissions without explicitly assigning them.
          title: Superuser Status
          type: boolean
        isActive:
          default: true
          description: Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
          title: Active
          type: boolean
        name:
          title: Name
          maxLength: 255
          type:
          - string
          - 'null'
      required:
      - id
      - options
      - username
      - dateJoined
      - email
      - hasPasswordAuth
      - identities
      title: UserSchema
      type: object
    SocialAccountSchema:
      properties:
        email:
          title: Email
          format: email
          type:
          - string
          - 'null'
        username:
          title: Username
          type:
          - string
          - 'null'
        id:
          title: ID
          type:
          - integer
          - 'null'
        provider:
          maxLength: 200
          title: Provider
          type: string
        uid:
          maxLength: 191
          title: Uid
          type: string
        lastLogin:
          format: date-time
          title: Last Login
          type: string
        dateJoined:
          format: date-time
          title: Date Joined
          type: string
      required:
      - email
      - username
      - provider
      - uid
      - lastLogin
      - dateJoined
      title: SocialAccountSchema
      type: object
    APIRootSchema:
      properties:
        version:
          title: Version
          type: string
        user:
          $ref: '#/components/schemas/UserSchema'
        auth:
          $ref: '#/components/schemas/APITokenSchema'
      required:
      - version
      - user
      - auth
      title: APIRootSchema
      type: object
  securitySchemes:
    TokenAuth:
      type: http
      scheme: bearer
    SessionAuth:
      type: apiKey
      in: cookie
      name: sessionid