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

> Provides available date ranges for trade data on futures instruments across exchanges, including start and end timestamps for each instrument.



## OpenAPI

````yaml get /futures/trades/information
openapi: 3.1.0
info:
  title: market-api
  version: '2'
servers:
  - url: https://api.amberdata.com/markets
security:
  - ApiKeyAuth: []
paths:
  /futures/trades/information:
    get:
      summary: Information
      description: >-
        Provides available date ranges for trade data on futures instruments
        across exchanges, including start and end timestamps for each
        instrument.
      operationId: futures-trades-information
      parameters:
        - name: exchange
          in: query
          description: >-
            **[Optional]** The exchange(s) for which to retrieve the most
            current data (comma separated). **[Default]** All available
            exchanges.
          schema:
            type: string
        - name: instrument
          in: query
          description: Only return data for the given pair.
          schema:
            type: string
        - name: includeInactive
          in: query
          description: >-
            **[Optional]** The exchange(s) for which to retrieve the most
            current data (comma separated). **[Default]** All available
            exchanges.
          schema:
            type: boolean
            default: false
        - name: timeFormat
          in: query
          description: '**[Optional]** Time format of the timestamps in the response.'
          schema:
            type: string
            enum:
              - milliseconds
              - ms*
              - iso
              - iso8601
              - hr
              - human_readable
            default: hr
        - name: Accept-Encoding
          in: header
          required: true
          description: ''
          schema:
            type: string
            default: gzip, deflate, br
        - name: api-version
          in: header
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      metadata:
                        next: >-
                          https://api.amberdata.com/markets/futures/trades/information?cursor=N4IglgdgxgNgrgEwKYEkIEMoBcwDckgBcAZujAM5IA0408yAqhOXAA6sD2ATlkggKIAPKAAt0EAOZJyRUhWogcAWyQAxbkvRYiIJWBgwwlKBwgIZNYhq06AVuVMgardFKIBGGuTAAvAoQBWAAYggF8gA
                        api-version: '2023-09-30'
                      data:
                        - exchange: binance
                          instrument: 1000BONKUSDC
                          startDate: 1714635667663
                          endDate: 1717604699630
                        - exchange: binance
                          instrument: 1000BONKUSDT
                          startDate: 1700662212045
                          endDate: 1717604697934
                        - exchange: binance
                          instrument: 1000FLOKIUSDT
                          startDate: 1683391154190
                          endDate: 1717604699756
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  title:
                    type: string
                  description:
                    type: string
                  payload:
                    type: object
                    properties:
                      metadata:
                        type: object
                        properties:
                          next:
                            type: string
                          api-version:
                            type: string
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            exchange:
                              type: string
                            instrument:
                              type: string
                            startDate:
                              type: integer
                            endDate:
                              type: integer
        '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

````