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

# Assets Information

> Retrieves the list of all the available supported assets and time range availability.



## OpenAPI

````yaml get /spot/vwap/assets/information
openapi: 3.1.0
info:
  title: Pricing
  version: '2'
servers:
  - url: https://api.amberdata.com/markets
security:
  - sec0: []
paths:
  /spot/vwap/assets/information:
    get:
      summary: Assets Information
      description: >-
        Retrieves the list of all the available supported assets and time range
        availability.
      operationId: spot-vwap-assets-information
      parameters:
        - name: asset
          in: query
          description: >-
            **[Optional]** The asset for which to retrieve the
            information.<br/>**[Default]** All available pairs.
          schema:
            type: string
            default: btc
        - name: timeFormat
          in: query
          description: >-
            **[Optional]** Time format of the timestamps in the return
            payload.<br/>**[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:
                      metadata:
                        type: object
                        properties:
                          next:
                            type: string
                            format: uri
                            example: >-
                              https://api.amberdata.com/market/spot/vwap/assets/information?cursor=N4IgLglgtgpgYgewE5QIZhALhFCAbPCAZxgGMEA7AEyJABoQAzZNDbAKyMvpAAdUA5jCwBGBkQgAvYZhEAGBQF8gA
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            asset:
                              type: string
                              example: '00'
                            startDate:
                              type: integer
                              format: int64
                              example: 1665446400000
                            endDate:
                              type: integer
                              format: int64
                              example: 1677866100000
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      metadata:
                        next: >-
                          https://api.amberdata.com/market/spot/vwap/assets/information?cursor=N4IgLglgtgpgYgewE5QIZhALhFCAbPCAZxgGMEA7AEyJABoQAzZNDbAKyMvpAAdUA5jCwBGBkQgAvYZhEAGBQF8gA
                      data:
                        - asset: '00'
                          startDate: 1665446400000
                          endDate: 1677866100000
                        - asset: 1000hokk
                          startDate: 1621900800000
                          endDate: 1635811200000
                        - asset: 1000kishu
                          startDate: 1621900800000
                          endDate: 1652918400000
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: x-api-key
      x-default: API_KEY

````