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

# Information Trade Exchange Support per Pair

> This endpoint returns all the exchanges that provide support for a given pair in the spot "Trade Analytics" section. The associated startDate and endDate represent the available history of trade data.



## OpenAPI

````yaml get /trade/information/exchanges
openapi: 3.1.0
info:
  title: spot-analytics
  version: '2'
servers:
  - url: https://api.amberdata.com/markets/spot/analytics
security:
  - sec0: []
paths:
  /trade/information/exchanges:
    get:
      summary: Information Trade Exchange Support per Pair
      description: >-
        This endpoint returns all the exchanges that provide support for a given
        pair in the spot "Trade Analytics" section. The associated startDate and
        endDate represent the available history of trade data.
      operationId: spot-analytics-information-trade-exchange-support-per-pair
      parameters:
        - name: pair
          in: query
          description: |-
            **[Required]** The currency pair for the spot instrument.
            **[Examples]** ` btc_usd | btc_usdc | eth_usd `
          required: true
          schema:
            type: string
            default: btc_usd
        - 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
            default: hr
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      data:
                        - endDate: 2025-04-02 10:52:00 000
                          exchange: binanceus
                          pair: btc_usd
                          startDate: 2025-02-19 13:43:00 000
                        - endDate: 2025-03-17 23:58:00 000
                          exchange: bitstamp
                          pair: btc_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-04-02 11:54:00 000
                          exchange: bullish
                          pair: btc_usd
                          startDate: 2025-03-20 15:09:00 000
                        - endDate: 2025-04-02 11:54:00 000
                          exchange: cryptocom
                          pair: btc_usd
                          startDate: 2025-02-18 23:44:00 000
                        - endDate: 2025-04-02 11:54:00 000
                          exchange: gdax
                          pair: btc_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-03-17 23:59:00 000
                          exchange: gemini
                          pair: btc_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-04-02 11:53:00 000
                          exchange: hashkey
                          pair: btc_usd
                          startDate: 2025-02-28 19:14:00 000
                        - endDate: 2025-03-17 23:59:00 000
                          exchange: itbit
                          pair: btc_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-03-17 23:59:00 000
                          exchange: kraken
                          pair: btc_usd
                          startDate: 2025-01-01 00:00:00 000
                      metadata:
                        api-version: '2023-09-30'
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            endDate:
                              type: string
                              example: 2025-04-02 10:52:00 000
                              description: >-
                                The last data observation for this exchange's
                                pair in Trade analytics
                            exchange:
                              type: string
                              example: binanceus
                              description: The supported exchange for Trade analytics
                            pair:
                              type: string
                              example: btc_usd
                              description: >-
                                The supported pair for this exchange's Trade
                                analytics
                            startDate:
                              type: string
                              example: 2025-02-19 13:43:00 000
                              description: >-
                                The first data observation for this exchange's
                                pair in Trade analytics
                      metadata:
                        type: object
                        properties:
                          api-version:
                            type: string
                            example: '2023-09-30'
        '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

````