> ## 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 Analytics Pairs

> This endpoint returns all the available pairs for a given exchange in the spot "Trade Analytics" section. The associated startDate and endDate represent the available history of trade data.



## OpenAPI

````yaml get /trade/information/pairs
openapi: 3.1.0
info:
  title: spot-analytics
  version: '2'
servers:
  - url: https://api.amberdata.com/markets/spot/analytics
security:
  - sec0: []
paths:
  /trade/information/pairs:
    get:
      summary: Information Trade Analytics Pairs
      description: >-
        This endpoint returns all the available pairs for a given exchange in
        the spot "Trade Analytics" section. The associated startDate and endDate
        represent the available history of trade data.
      operationId: spot-analytics-information-trade-analytics-pairs
      parameters:
        - name: exchange
          in: query
          description: >-
            **[Required]** The exchange for which to retrieve listed spot
            instruments.

            **[Examples]** ` gdax | okex | binance | binanceus`
          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
            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 11:39:00 000
                          exchange: gdax
                          pair: 00_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-04-02 11:20:00 000
                          exchange: gdax
                          pair: 1inch_eur
                          startDate: 2025-03-12 13:18:00 000
                        - endDate: 2025-04-02 10:42:00 000
                          exchange: gdax
                          pair: 1inch_gbp
                          startDate: 2025-03-12 13:14:00 000
                        - endDate: 2025-04-02 11:28:00 000
                          exchange: gdax
                          pair: 1inch_usd
                          startDate: 2025-01-01 00:00:00 000
                        - endDate: 2025-04-02 11:39:00 000
                          exchange: gdax
                          pair: a8_usd
                          startDate: 2025-01-01 00:02:00 000
                        - endDate: 2025-04-02 11:43:00 000
                          exchange: gdax
                          pair: aave_btc
                          startDate: 2025-03-12 13:11:00 000
                        - endDate: 2025-04-02 11:44:00 000
                          exchange: gdax
                          pair: aave_eur
                          startDate: 2025-03-12 13:11:00 000
                        - endDate: 2025-04-02 11:32:00 000
                          exchange: gdax
                          pair: aave_gbp
                          startDate: 2025-03-12 13:11:00 000
              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:
                            endDate:
                              type: string
                              example: 2025-04-02 11:39:00 000
                              description: >-
                                The last data observation for this pair's Trade
                                analytics
                            exchange:
                              type: string
                              example: gdax
                              description: Exchange reflecting the pair
                            pair:
                              type: string
                              example: 00_usd
                              description: The subject pair
                            startDate:
                              type: string
                              example: 2025-01-01 00:00:00 000
                              description: >-
                                The first data observation for this pair's Trade
                                analytics
        '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

````