Gauntlet TVL API

The TVL API from Gauntlet — 1 operation(s) for tvl.

Operations 1

GET /v1/tvl Get live aggregate TVL #

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-tvl-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-tvl-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gauntlet Prices TVL 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: TVL
paths:
  /v1/tvl:
    get:
      tags:
      - TVL
      summary: Get live aggregate TVL
      description: Returns live aggregate Gauntlet TVL composed from indexed Gaia vault data and configured external TVL sources. Source totals are always returned; pass `?include_breakdown=true` for chain and external-source explainability rows.
      operationId: get_tvl
      parameters:
      - name: include_breakdown
        in: query
        description: Include chain and external-source TVL breakdown rows.
        required: false
        schema:
          type: boolean
      - name: include_sources
        in: query
        description: Deprecated alias for include_breakdown.
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Live aggregate TVL
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvlResponse'
        '401':
          description: Missing or invalid auth
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Data source unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Standard error response envelope returned on 4xx/5xx
      required:
      - error
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
    TvlResponse:
      type: object
      required:
      - meta
      - data
      properties:
        data:
          $ref: '#/components/schemas/TvlSummary'
        meta:
          $ref: '#/components/schemas/BasicMeta'
    TvlSummary:
      type: object
      required:
      - tvl
      - updated_at
      - totals
      properties:
        breakdown:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/TvlBreakdown'
        totals:
          type: array
          items:
            $ref: '#/components/schemas/TvlTotal'
        tvl:
          $ref: '#/components/schemas/TvlAmount'
        updated_at:
          type: string
          format: date-time
    TvlBreakdown:
      type: object
      required:
      - id
      - label
      - source_id
      - tvl
      - updated_at
      properties:
        id:
          type: string
        label:
          type: string
        source_id:
          type: string
        tvl:
          $ref: '#/components/schemas/TvlAmount'
        updated_at:
          type: string
          format: date-time
    TvlTotal:
      type: object
      required:
      - id
      - label
      - tvl
      - updated_at
      properties:
        id:
          type: string
        label:
          type: string
        tvl:
          $ref: '#/components/schemas/TvlAmount'
        updated_at:
          type: string
          format: date-time
    TvlAmount:
      type: object
      required:
      - usd
      properties:
        usd:
          type: string
    BasicMeta:
      type: object
      required:
      - request_id
      - refreshed_at
      properties:
        refreshed_at:
          type: string
          format: date-time
        request_id:
          type: string
    ErrorBody:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: string
          description: Machine-readable error code (e.g. `NOT_FOUND`, `UNAUTHORIZED`)
        details: {}
        message:
          type: string
          description: Human-readable error message