Gauntlet Prices API

The Prices API from Gauntlet — 2 operation(s) for prices.

Operations 2

GET /v1/prices Get latest token price #
GET /v1/prices/timeseries Get historical token prices #

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-prices-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

gauntlet-prices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gauntlet Prices API
  description: Gauntlet vault data, user positions, and event analytics API.
  contact:
    name: Gauntlet
    url: https://gauntlet.xyz
  license:
    name: ''
  version: 1.0.0
servers:
- url: https://api.gauntlet.xyz
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Prices
paths:
  /v1/prices:
    get:
      tags:
      - Prices
      summary: Get latest token price
      description: 'Returns the latest USD price for a token. Query parameters: `address` (required), `chain_id` (required), `at` (optional ISO 8601 timestamp).'
      operationId: get_latest_price
      responses:
        '200':
          description: Token price
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LatestPriceResponse'
        '404':
          description: Token not found
        '422':
          description: Invalid parameters
        '503':
          description: Pricing service not configured
  /v1/prices/timeseries:
    get:
      tags:
      - Prices
      summary: Get historical token prices
      description: 'Returns a USD price timeseries for a token. Query parameters: `address` (required), `chain_id` (required), `start` (required ISO 8601), `end` (required ISO 8601), `granularity` (optional: `raw` | `hour` | `day` | `week` | `month`), `limit` (optional, default 1000, max 5000).'
      operationId: get_price_history
      responses:
        '200':
          description: Price timeseries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimeseriesResponse'
        '422':
          description: Invalid parameters
        '503':
          description: Pricing service not configured
components:
  schemas:
    TimeseriesPoint:
      type: object
      required:
      - timestamp
      - price
      properties:
        price:
          $ref: '#/components/schemas/HistoricalPriceValue'
        timestamp:
          type: string
    HistoricalPriceValue:
      type: object
      required:
      - usd
      properties:
        usd:
          type: number
          format: double
    PriceValue:
      type: object
      required:
      - usd
      - decimals
      properties:
        decimals:
          type: integer
          format: int32
          minimum: 0
        usd:
          type: number
          format: double
    LatestPriceResponse:
      type: object
      required:
      - address
      - chain_id
      - symbol
      - price
      - currency
      - timestamp
      properties:
        address:
          type: string
        chain_id:
          type: integer
          format: int64
          minimum: 0
        currency:
          type: string
        price:
          $ref: '#/components/schemas/PriceValue'
        symbol:
          type: string
        timestamp:
          type: string
    TimeseriesResponse:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TimeseriesPoint'