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

# On-chain Analytics Supported Assets

> Retrieves information about supported assets for on-chain analytics.



## OpenAPI

````yaml get /analytics/assets/information
openapi: 3.1.0
info:
  title: blockchain-api
  version: '2'
servers:
  - url: https://api.amberdata.com/blockchains
security:
  - sec0: []
paths:
  /analytics/assets/information:
    get:
      summary: On-chain Analytics Supported Assets
      description: Retrieves information about supported assets for on-chain analytics.
      operationId: analytics-assets-information
      responses:
        '200':
          description: Successful request
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    description: HTTP status code
                    example: 200
                  title:
                    type: string
                    description: Status title
                    example: OK
                  description:
                    type: string
                    description: Status description
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            arcId:
                              type: string
                              description: The unique Amberdata identifier for the asset
                              example: AMB:BTC000000000
                            arcName:
                              type: string
                              description: The full human-readable name of the asset
                              example: Bitcoin
                            arcSymbol:
                              type: string
                              description: >-
                                The symbol/ticker - short name, abrreviated
                                identifier - of the asset
                              example: BTC
                          required:
                            - arcId
                            - arcName
                            - arcSymbol
                      metadata:
                        type: object
                        description: Additional metadata for the response
                        properties:
                          next:
                            type: string
                            description: The url to request for the next page of results.
                        example: {}
                    required:
                      - data
                      - metadata
                required:
                  - status
                  - title
                  - description
                  - payload
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````