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

# Asset Information

> This endpoint returns all available exchange and asset combinations for price data. Users can also isolate a specific asset to see all exchanges that support it.



## OpenAPI

````yaml get /prices/spot/assets/information
openapi: 3.1.0
info:
  title: Pricing
  version: '2'
servers:
  - url: https://api.amberdata.com/markets
security:
  - sec0: []
paths:
  /prices/spot/assets/information:
    get:
      summary: Asset Information
      description: >-
        This endpoint returns all available exchange and asset combinations for
        price data. Users can also isolate a specific asset to see all exchanges
        that support it.
      operationId: asset-information
      parameters:
        - name: asset
          in: query
          description: The specific instrument asset to isolate. **[Examples]** `btc | eth`
          required: false
          schema:
            type: string
            default: btc
        - name: timeFormat
          in: query
          description: >-
            Time format of timestamps in the return payload. **[Defaults]**
            `milliseconds | ms* | iso | iso8601 | hr | human_readable`
          schema:
            type: string
            default: hr
      responses:
        '200':
          description: Successful request
          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: array
                    items:
                      type: object
                      properties:
                        asset:
                          type: string
                          example: btc
                        assetArcId:
                          type: string
                          example: AMB:BTC000000000
                        assetName:
                          type: string
                          example: Bitcoin
                        assetSymbol:
                          type: string
                          example: btc
                        exchange:
                          type: string
                          example: gdax
                        startDate:
                          type: string
                          format: date-time
                          example: '2020-09-11T20:41:00.000Z'
                        endDate:
                          type: string
                          format: date-time
                          example: '2024-09-11T20:41:00.000Z'
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: x-api-key
      x-default: API_KEY

````