> ## 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 reference asset details

> Use this endpoint to retrieve a single reference asset by ID — for example to resolve the `reference_asset_id` returned on an asset from the `/v2/assets` endpoint.




## OpenAPI

````yaml /api-reference/openapi.json get /v2/reference-assets/{reference_asset_id}
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/{reference_asset_id}:
    get:
      tags:
        - Assets
      summary: Get reference asset details
      description: >
        Use this endpoint to retrieve a single reference asset by ID — for
        example to resolve the `reference_asset_id` returned on an asset from
        the `/v2/assets` endpoint.
      parameters:
        - name: reference_asset_id
          in: path
          description: >
            ID of the reference asset


            The full list is available on the reference assets endpoint (see
            above).
          required: true
          schema:
            type: string
          example: creditfund
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    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.
        '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.
        '404':
          description: Reference asset not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: string

````