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

# Oracle prices by symbol

> Returns current MockPriceOracle quotes for catalog symbols, keyed by ticker (e.g. NVDA).



## OpenAPI

````yaml https://api-421614.alphagrid.capital/docs/swagger.json get /prices
openapi: 3.1.0
info:
  title: AlphaGrid API
  version: 0.1.0
  description: >-
    AlphaGrid HTTP API. MCP tools mirror these operations at POST /mcp
    (Streamable HTTP). For LLM URL fetchers, use GET /vaults or GET
    /vaults?format=md — see /llms.txt.
servers:
  - url: https://api-421614.alphagrid.capital/
    description: Current deployment
security: []
tags:
  - name: System
    description: Health, discovery, and operational endpoints
  - name: Vaults
    description: Thematic ERC-4626 vault catalog
  - name: Agents
    description: Agent registration via x402 and AgentRegistry
  - name: Trading
    description: Trade intents, positions, and on-chain risk state reads
paths:
  /prices:
    get:
      tags:
        - Tokens
      summary: Oracle prices by symbol
      description: >-
        Returns current MockPriceOracle quotes for catalog symbols, keyed by
        ticker (e.g. NVDA).
      responses:
        '200':
          description: On-chain oracle prices indexed by symbol
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OraclePricesResponse'
components:
  schemas:
    OraclePricesResponse:
      type: object
      properties:
        chainId:
          type: integer
          example: 84532
        priceOracle:
          type:
            - string
            - 'null'
        prices:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/OraclePriceEntry'
          description: Catalog symbols keyed to current on-chain oracle quotes
      required:
        - chainId
        - priceOracle
        - prices
    OraclePriceEntry:
      type: object
      properties:
        symbol:
          type: string
          example: NVDA
        address:
          type:
            - string
            - 'null'
          example: '0x0000000000000000000000000000000000000000'
        priceUsd:
          type:
            - string
            - 'null'
          example: '150.25'
        updatedAt:
          type:
            - string
            - 'null'
          example: '1717500000'
        quoted:
          type: boolean
          description: True when MockPriceOracle has a price for this token
      required:
        - symbol
        - address
        - priceUsd
        - updatedAt
        - quoted

````