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

> Returns current allocations through a Gaia-owned, source-independent contract. Aera API is the initial source, but its metric-group schema is normalized into flat allocation values with discriminated targets. Use `/{vault_id}` or `/{vault_id}/timeseries` for vault-level metrics.



## OpenAPI

````yaml GET /v1/vaults/{vault_id}/allocations
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: TVL
    description: Aggregate live TVL
  - name: Strategies
    description: Curated strategy groupings with aggregate metrics
  - name: Vaults
    description: Vault listings, details, metrics, timeseries
  - name: Users
    description: Per-wallet position state and timeseries
  - name: Prices
    description: Token price lookups and historical timeseries
paths:
  /v1/vaults/{vault_id}/allocations:
    get:
      tags:
        - Vaults
      summary: Get current vault allocations
      description: >-
        Returns current allocations through a Gaia-owned, source-independent
        contract. Aera API is the initial source, but its metric-group schema is
        normalized into flat allocation values with discriminated targets. Use
        `/{vault_id}` or `/{vault_id}/timeseries` for vault-level metrics.
      operationId: get_vault_allocations
      parameters:
        - name: vault_id
          in: path
          description: Vault identifier (CAIP-10 `chainId:address`)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Current vault allocations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultAllocationsResponse'
        '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'
        '422':
          description: Invalid vault identifier or non-Aera vault
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Allocation data source unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Vault metadata source unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    VaultAllocationsResponse:
      type: object
      required:
        - meta
        - data
      properties:
        data:
          $ref: '#/components/schemas/VaultAllocations'
        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'
    VaultAllocations:
      type: object
      required:
        - vault_id
        - allocations
      properties:
        allocations:
          type: array
          items:
            $ref: '#/components/schemas/Allocation'
        as_of:
          type:
            - string
            - 'null'
          format: date-time
        vault_id:
          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
    Allocation:
      type: object
      required:
        - category
        - target
      properties:
        allocation:
          type:
            - number
            - 'null'
          format: double
          description: Fraction of the parent vault allocated to this target (1.0 = 100%).
        amount:
          type:
            - number
            - 'null'
          format: double
        amount_usd:
          type:
            - number
            - 'null'
          format: double
        category:
          type: string
          description: >-
            Source-independent category used by consumers to select allocation
            sections.
        target:
          $ref: '#/components/schemas/AllocationTarget'
    AllocationTarget:
      oneOf:
        - type: object
          required:
            - chain_id
            - address
            - symbol
            - strategy_type
            - kind
          properties:
            address:
              type: string
            chain_id:
              type: integer
              format: int64
            flow:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/AllocationFlow'
            kind:
              type: string
              enum:
                - asset
            name:
              type:
                - string
                - 'null'
            protocol:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/AllocationProtocol'
            strategy_type:
              type: string
            symbol:
              type: string
    AllocationFlow:
      type: object
      required:
        - kind
        - target_vault_address
      properties:
        kind:
          $ref: '#/components/schemas/AllocationFlowKind'
        target_vault_address:
          type: string
    AllocationProtocol:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: string
        name:
          type: string
    AllocationFlowKind:
      type: string
      enum:
        - pending_deposit
        - pending_redemption

````