> ## 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 Rate Oracle Config

> Get current rate oracle configuration.

Returns the current rate_oracle_source and global_token settings,
along with the list of available sources.

Returns:
    Current rate oracle configuration and available sources



## OpenAPI

````yaml /api-reference/openapi.json get /rate-oracle/config
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/config:
    get:
      tags:
        - Rate Oracle
      summary: Get Rate Oracle Config
      description: |-
        Get current rate oracle configuration.

        Returns the current rate_oracle_source and global_token settings,
        along with the list of available sources.

        Returns:
            Current rate oracle configuration and available sources
      operationId: get_rate_oracle_config_rate_oracle_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateOracleConfigResponse'
      security:
        - HTTPBasic: []
components:
  schemas:
    RateOracleConfigResponse:
      properties:
        rate_oracle_source:
          $ref: '#/components/schemas/RateOracleSourceConfig'
          description: Current rate oracle source configuration
        global_token:
          $ref: '#/components/schemas/GlobalTokenConfig'
          description: Current global token configuration
        available_sources:
          items:
            type: string
          type: array
          title: Available Sources
          description: List of available rate oracle sources
      type: object
      required:
        - rate_oracle_source
        - global_token
        - available_sources
      title: RateOracleConfigResponse
      description: Response for rate oracle configuration GET endpoint.
    RateOracleSourceConfig:
      properties:
        name:
          $ref: '#/components/schemas/RateOracleSourceEnum'
          description: The rate oracle source to use for price data
          default: binance
      type: object
      title: RateOracleSourceConfig
      description: Rate oracle source configuration.
    GlobalTokenConfig:
      properties:
        global_token_name:
          type: string
          title: Global Token Name
          description: The token to use as global quote (e.g., USDT, USD, BTC)
          default: USDT
        global_token_symbol:
          type: string
          title: Global Token Symbol
          description: Symbol to display for the global token
          default: $
      type: object
      title: GlobalTokenConfig
      description: Global token configuration for displaying values.
    RateOracleSourceEnum:
      type: string
      enum:
        - binance
        - binance_us
        - coin_gecko
        - coin_cap
        - kucoin
        - ascend_ex
        - gate_io
        - coinbase_advanced_trade
        - cube
        - dexalot
        - hyperliquid
        - derive
        - tegro
      title: RateOracleSourceEnum
      description: Available rate oracle sources.
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````