Gauntlet System API

The System API from Gauntlet — 2 operation(s) for system.

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/gauntlet-system-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 email required.

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

OpenAPI Specification

gauntlet-system-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Gauntlet Prices System API
  description: Gauntlet vault data, user positions, and event analytics API.
  contact:
    name: Gauntlet
    url: https://gauntlet.xyz
  license:
    name: ''
  version: 1.0.0
tags:
- name: System
paths:
  /health:
    get:
      tags:
      - System
      summary: Liveness check
      description: Returns service version + uptime. Use `/health/chains` for indexer freshness per chain.
      operationId: health
      responses:
        '200':
          description: Service is live
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
  /health/chains:
    get:
      tags:
      - System
      summary: Chain sync status
      description: Returns per-chain indexer sync status with freshness indicators.
      operationId: chain_sync_status
      responses:
        '200':
          description: Chain sync status
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChainSyncStatus'
components:
  schemas:
    ChainSyncStatus:
      type: object
      required:
      - chain_id
      - latest_block
      - latest_timestamp
      - lag_seconds
      - freshness
      properties:
        chain_id:
          type: integer
          format: int64
        freshness:
          type: string
        lag_seconds:
          type: integer
          format: int64
        latest_block:
          type: integer
          format: int64
        latest_timestamp:
          type: integer
          format: int64
    HealthResponse:
      type: object
      required:
      - status
      - version
      - uptime_seconds
      properties:
        status:
          type: string
        uptime_seconds:
          type: integer
          format: int64
          minimum: 0
        version:
          type: string