> ## 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 Pool Prices

> Get a snapshot of the merged price pool used for cross-rate resolution.



## OpenAPI

````yaml /api-reference/openapi.json get /market-data/pool-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:
  /market-data/pool-prices:
    get:
      tags:
        - Market Data
      summary: Get Pool Prices
      description: Get a snapshot of the merged price pool used for cross-rate resolution.
      operationId: get_pool_prices_market_data_pool_prices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PoolPricesResponse'
      security:
        - HTTPBasic: []
components:
  schemas:
    PoolPricesResponse:
      properties:
        quote_token:
          type: string
          title: Quote Token
          description: Configured global quote token
        prices_count:
          type: integer
          title: Prices Count
          description: Number of prices in the pool
        prices:
          additionalProperties:
            type: number
          type: object
          title: Prices
          description: Trading pair to price mapping
      type: object
      required:
        - quote_token
        - prices_count
        - prices
      title: PoolPricesResponse
      description: Snapshot of the merged price pool used for cross-rate resolution.
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````