> ## Documentation Index
> Fetch the complete documentation index at: https://tokenterminal.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> To query the Token Terminal data catalog, read https://tokenterminal.com/docs/catalog/agents-manual.md first. It is the whole catalog as one page: table naming grammar, key columns, partition and cluster rules, units, additivity, and the tables that are documented but not served yet.
> Never query a catalog table on a time bound alone. Also filter its cluster key, which you read from INFORMATION_SCHEMA.COLUMNS; an empty result means the object is a view, whose pruning contract is on its page. Compute is billed to the caller's own Google Cloud project.

# Get a list of all reference assets

> Use this endpoint to retrieve the reference assets available on the API.

A reference asset is the price reference that a tokenized asset tracks — a credit fund, an equity index, a commodity, a fiat currency, or a crypto asset. It is a finer-grained classification than `asset_type`: every tokenized fund shares one `asset_type`, but each tracks a different reference asset.

Use the `reference_asset_id` values returned here with the `reference_asset_ids` filter on `/v2/assets` and on the asset metrics breakdown endpoint.




## OpenAPI

````yaml /api-reference/openapi.json get /v2/reference-assets
openapi: 3.0.0
info:
  title: Token Terminal API
  termsOfService: https://tokenterminal.com/terms
  version: 2.0.0
servers:
  - url: https://api.tokenterminal.com
security:
  - bearerAuth: []
tags: []
paths:
  /v2/reference-assets:
    get:
      tags:
        - Assets
      summary: Get a list of all reference assets
      description: >
        Use this endpoint to retrieve the reference assets available on the API.


        A reference asset is the price reference that a tokenized asset tracks —
        a credit fund, an equity index, a commodity, a fiat currency, or a
        crypto asset. It is a finer-grained classification than `asset_type`:
        every tokenized fund shares one `asset_type`, but each tracks a
        different reference asset.


        Use the `reference_asset_id` values returned here with the
        `reference_asset_ids` filter on `/v2/assets` and on the asset metrics
        breakdown endpoint.
      parameters:
        - name: reference_asset_ids
          in: query
          description: >
            List of reference asset IDs to filter by.


            When including multiple reference assets, separate each one with a
            comma. Example: `creditfund,ustbill`.
          explode: false
          schema:
            type: array
            items:
              type: string
          example:
            - creditfund
            - ustbill
        - name: limit
          in: query
          description: Maximum number of reference assets to return.
          schema:
            type: integer
            minimum: 1
            maximum: 1000
            default: 1000
        - name: offset
          in: query
          description: Number of reference assets to skip for pagination.
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        reference_asset_id:
                          type: string
                          description: Required input when filtering by reference asset.
                        name:
                          type: string
                          description: The reference asset's name.
                        symbol:
                          type: string
                          description: The reference asset's ticker symbol.
                  total_count:
                    type: integer
                    description: >-
                      Total number of reference assets matching the filters,
                      before `limit` and `offset` are applied.
        '400':
          description: Invalid reference asset ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  meta:
                    type: object
                    description: Per-field validation messages, keyed by parameter name.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: string

````