> ## 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.

# Get current vault metrics

> Returns the current metrics snapshot for a vault — same metric shape that `/timeseries` emits per point, so this is `current point` and timeseries is `historical points`. The vault's protocol-specific definition (fees, hooks, curator, etc.) lives on `/{vault_id}/definition`.



## OpenAPI

````yaml GET /v1/vaults/{vault_id}
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: http://localhost:8443
    description: Local development
  - url: https://api.gauntlet.xyz
    description: Production
security: []
tags:
  - name: System
    description: Health checks and Prometheus metrics
  - name: TVL
    description: Aggregate live TVL
  - name: Vaults
    description: Vault listings, details, metrics, timeseries
  - name: Users
    description: Per-wallet position state and timeseries
paths:
  /v1/vaults/{vault_id}:
    get:
      tags:
        - Vaults
      summary: Get current vault metrics
      description: >-
        Returns the current metrics snapshot for a vault — same metric shape
        that `/timeseries` emits per point, so this is `current point` and
        timeseries is `historical points`. The vault's protocol-specific
        definition (fees, hooks, curator, etc.) lives on
        `/{vault_id}/definition`.
      operationId: get_vault
      parameters:
        - name: vault_id
          in: path
          description: Vault identifier (CAIP-10 `chainId:address`)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Current vault metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultDetailResponse'
        '401':
          description: Missing or invalid auth
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Vault not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    VaultDetailResponse:
      type: object
      required:
        - meta
        - data
      properties:
        data:
          $ref: '#/components/schemas/VaultDetail'
        meta:
          $ref: '#/components/schemas/BasicMeta'
    ErrorResponse:
      type: object
      description: Standard error response envelope returned on 4xx/5xx
      required:
        - error
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
    VaultDetail:
      type: object
      required:
        - vault_id
        - chain_id
        - address
        - vault_type
        - name
        - symbol
        - numeraire_token
        - metrics
      properties:
        address:
          type: string
        chain_id:
          type: integer
          format: int64
        metrics:
          $ref: '#/components/schemas/VaultMetrics'
        name:
          type: string
        numeraire_token:
          $ref: '#/components/schemas/TokenRef'
        symbol:
          type: string
        vault_id:
          type: string
        vault_type:
          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
    VaultMetrics:
      type: object
      required:
        - tvl
        - unit_price
        - total_supply
      properties:
        apy_30d:
          type:
            - number
            - 'null'
          format: double
        apy_7d:
          type:
            - number
            - 'null'
          format: double
        apy_90d:
          type:
            - number
            - 'null'
          format: double
        as_of:
          type:
            - integer
            - 'null'
          format: int64
        total_supply:
          type: string
        tvl:
          $ref: '#/components/schemas/AmountPair'
        unit_price:
          type: string
    TokenRef:
      type: object
      required:
        - address
      properties:
        address:
          type: string
        symbol:
          type:
            - string
            - 'null'
    AmountPair:
      type: object
      description: >-
        Decimal-string metric paired across native (numeraire-token) and USD.

        `native` is always present; `usd` is JSON null when pricing is
        unavailable.
      required:
        - native
      properties:
        native:
          type: string
        usd:
          type:
            - string
            - 'null'

````