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

# Get Cached Prices

> Get all cached prices from the rate oracle.

Returns the complete price dictionary that the rate oracle has fetched
from its configured source.

Returns:
    Dictionary of all cached prices



## OpenAPI

````yaml /api-reference/openapi.json get /rate-oracle/prices
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /rate-oracle/prices:
    get:
      tags:
        - Rate Oracle
      summary: Get Cached Prices
      description: |-
        Get all cached prices from the rate oracle.

        Returns the complete price dictionary that the rate oracle has fetched
        from its configured source.

        Returns:
            Dictionary of all cached prices
      operationId: get_cached_prices_rate_oracle_prices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````