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

# Pairs Information

> This information endpoint returns the available spot data for realized volatility and price calculations provided for each specific exchange. (AVAILABLE EXCHANGE: binance, bithumb, bitstamp, gdax, gemini, kraken, okex, poloniex)



## OpenAPI

````yaml get /analytics/realized-volatility/cones/information
openapi: 3.1.0
info:
  title: derivatives-api
  version: '2'
servers:
  - url: https://api.amberdata.com/markets/derivatives
security:
  - sec0: []
paths:
  /analytics/realized-volatility/cones/information:
    get:
      summary: Pairs Information
      description: >-
        This information endpoint returns the available spot data for realized
        volatility and price calculations provided for each specific exchange.
        (AVAILABLE EXCHANGE: binance, bithumb, bitstamp, gdax, gemini, kraken,
        okex, poloniex)
      operationId: derivatives-realized-volatility-pairs-information
      parameters:
        - name: exchange
          in: query
          description: >-
            **[Required]**  The exchange for which to retrieve the volatility
            cone. 

            **[Examples]** `binance | bithumb | bitstamp | gdax | gemini |
            kraken | okex | poloniex`
          required: true
          schema:
            type: string
            default: gdax
        - name: timeFormat
          in: query
          description: >-
            **[Optional]** Time format of the timestamps in the return payload.

            **[Defaults]** `milliseconds | ms* | iso | iso8601 | hr |
            human_readable`
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            exchange:
                              type: string
                              example: binance
                              description: >-
                                The exchange where the realized volatility data
                                is available
                            pair:
                              type: string
                              example: 1inch_btc
                              description: >-
                                The trading pair for which realized volatility
                                data is available
                            startTimestamp:
                              type: integer
                              example: 1712793600000
                              description: >-
                                The start timestamp in milliseconds when data
                                becomes available for this pair
                            endTimestamp:
                              type: integer
                              example: 1717545600000
                              description: >-
                                The end timestamp in milliseconds until which
                                data is available for this pair
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      data:
                        - exchange: binance
                          pair: 1inch_btc
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: 1inch_usdt
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aave_bnb
                          startTimestamp: 1712793600000
                          endTimestamp: 1715212800000
                        - exchange: binance
                          pair: aave_btc
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aave_eth
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aave_usdt
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aca_btc
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aca_try
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: aca_usdt
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: ach_btc
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: ach_try
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
                        - exchange: binance
                          pair: ach_usdt
                          startTimestamp: 1712793600000
                          endTimestamp: 1717545600000
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````