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

> Get tickers grouped by connector, with 24h base and quote volume where available.

Without ``connectors`` this returns the collected pool as-is. Naming connectors fetches
them on demand (concurrently) through keyless public data connectors when the cache is
missing or stale, so it works for exchanges no API keys are configured for; those
connectors then join the background refresh cycle.

A connector that fails does not remove the others from the response: it is reported under
``errors`` alongside the successful results. An error status is returned only when nothing
could be served at all.



## OpenAPI

````yaml /api-reference/openapi.json get /market-data/tickers
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/tickers:
    get:
      tags:
        - Market Data
      summary: Get Tickers
      description: >-
        Get tickers grouped by connector, with 24h base and quote volume where
        available.


        Without ``connectors`` this returns the collected pool as-is. Naming
        connectors fetches

        them on demand (concurrently) through keyless public data connectors
        when the cache is

        missing or stale, so it works for exchanges no API keys are configured
        for; those

        connectors then join the background refresh cycle.


        A connector that fails does not remove the others from the response: it
        is reported under

        ``errors`` alongside the successful results. An error status is returned
        only when nothing

        could be served at all.
      operationId: get_tickers_market_data_tickers_get
      parameters:
        - name: connectors
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: >-
              Restrict to these connectors. Accepts a comma-separated list or
              the parameter repeated. Omit to return the whole collected pool.
            title: Connectors
          description: >-
            Restrict to these connectors. Accepts a comma-separated list or the
            parameter repeated. Omit to return the whole collected pool.
        - name: refresh
          in: query
          required: false
          schema:
            type: boolean
            description: Force a fresh fetch, ignoring the cache
            default: false
            title: Refresh
          description: Force a fresh fetch, ignoring the cache
        - name: max_age
          in: query
          required: false
          schema:
            anyOf:
              - type: number
                minimum: 0
              - type: 'null'
            description: Accept cached tickers up to this age in seconds
            title: Max Age
          description: Accept cached tickers up to this age in seconds
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TickersResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    TickersResponse:
      properties:
        tickers:
          additionalProperties:
            additionalProperties:
              $ref: '#/components/schemas/TickerInfo'
            type: object
          type: object
          title: Tickers
          description: 'Connector to {trading pair: ticker} mapping'
        counts:
          additionalProperties:
            type: integer
          type: object
          title: Counts
          description: Number of tickers per connector
        updated_at:
          additionalProperties:
            anyOf:
              - type: number
              - type: 'null'
          type: object
          title: Updated At
          description: Unix timestamp of the last successful fetch, per connector
        errors:
          additionalProperties:
            type: string
          type: object
          title: Errors
          description: >-
            Connectors that could not be fetched, with the reason. Present only
            when some requested connectors succeeded and others failed
      type: object
      required:
        - tickers
      title: TickersResponse
      description: Tickers grouped by connector.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TickerInfo:
      properties:
        price:
          type: number
          title: Price
          description: Mid price (or last price when bid/ask unavailable)
        base_volume:
          anyOf:
            - type: number
            - type: 'null'
          title: Base Volume
          description: 24h volume denominated in the base asset
        quote_volume:
          anyOf:
            - type: number
            - type: 'null'
          title: Quote Volume
          description: 24h volume denominated in the quote asset
        timestamp:
          type: number
          title: Timestamp
          description: Collection timestamp
      type: object
      required:
        - price
        - timestamp
      title: TickerInfo
      description: A single collected ticker.
    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

````