> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gauntlet.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# List Gauntlet-curated vaults

> Returns identification-only rows for every Gauntlet vault the indexer knows about, ordered most-recent-first. Use `/{vault_id}` for current metrics, `/{vault_id}/definition` for the full vault definition, `/{vault_id}/timeseries` for history.

Cursor-paginated, but the default page size is the cap so most callers don't need to think about it — pass `meta.next_cursor` back as `?next=` only if the result exceeds 1000 vaults.



## OpenAPI

````yaml GET /v1/vaults
openapi: 3.1.0
info:
  title: Gauntlet API
  description: Gauntlet vault data and user positions API.
  contact:
    name: Gauntlet
    url: https://gauntlet.xyz
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.gauntlet.xyz
    description: Production
security: []
tags:
  - name: System
    description: Health checks and Prometheus metrics
  - name: Vaults
    description: Vault listings, details, metrics, timeseries
  - name: Users
    description: Per-wallet position state and timeseries
paths:
  /v1/vaults:
    get:
      tags:
        - Vaults
      summary: List Gauntlet-curated vaults
      description: >-
        Returns identification-only rows for every Gauntlet vault the indexer
        knows about, ordered most-recent-first. Use `/{vault_id}` for current
        metrics, `/{vault_id}/definition` for the full vault definition,
        `/{vault_id}/timeseries` for history.


        Cursor-paginated, but the default page size is the cap so most callers
        don't need to think about it — pass `meta.next_cursor` back as `?next=`
        only if the result exceeds 1000 vaults.
      operationId: list_vaults
      parameters:
        - name: next
          in: query
          description: Opaque cursor from previous `meta.next_cursor`.
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: Page size (1–1000, default 1000).
          required: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: List of vaults
        '401':
          description: Missing or invalid auth
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid cursor
          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'
    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

````