> ## 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 Quote Volume For Price

> Get the quote volume available at a specific price level on the order book.

Args:
    request: Request with connector, trading pair, price, and side
    market_data_manager: Injected market data feed manager
    
Returns:
    Order book query result with quote volume information



## OpenAPI

````yaml /api-reference/openapi.json post /market-data/order-book/quote-volume-for-price
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/order-book/quote-volume-for-price:
    post:
      tags:
        - Market Data
      summary: Get Quote Volume For Price
      description: >-
        Get the quote volume available at a specific price level on the order
        book.


        Args:
            request: Request with connector, trading pair, price, and side
            market_data_manager: Injected market data feed manager
            
        Returns:
            Order book query result with quote volume information
      operationId: >-
        get_quote_volume_for_price_market_data_order_book_quote_volume_for_price_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuoteVolumeForPriceRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderBookQueryResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    QuoteVolumeForPriceRequest:
      properties:
        connector_name:
          type: string
          title: Connector Name
          description: Name of the connector
        trading_pair:
          type: string
          title: Trading Pair
          description: Trading pair
        is_buy:
          type: boolean
          title: Is Buy
          description: True for buy side, False for sell side
        price:
          type: number
          title: Price
          description: Price to query quote volume for
      type: object
      required:
        - connector_name
        - trading_pair
        - is_buy
        - price
      title: QuoteVolumeForPriceRequest
      description: Request model for getting quote volume at a specific price
    OrderBookQueryResult:
      properties:
        trading_pair:
          type: string
          title: Trading Pair
          description: Trading pair
        is_buy:
          type: boolean
          title: Is Buy
          description: Query side (buy/sell)
        query_volume:
          anyOf:
            - type: number
            - type: 'null'
          title: Query Volume
          description: Queried volume
        query_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Query Price
          description: Queried price
        result_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Result Price
          description: Resulting price
        result_volume:
          anyOf:
            - type: number
            - type: 'null'
          title: Result Volume
          description: Resulting volume
        result_quote_volume:
          anyOf:
            - type: number
            - type: 'null'
          title: Result Quote Volume
          description: Resulting quote volume
        average_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Average Price
          description: Average/VWAP price
        timestamp:
          type: number
          title: Timestamp
          description: Query timestamp
      type: object
      required:
        - trading_pair
        - is_buy
        - timestamp
      title: OrderBookQueryResult
      description: Response for order book query operations
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````