---
title: "Get assets by ID or issuer"
method: GET
path: "/v1/assets/{identifier}"
---

# Get assets by ID or issuer

`GET /v1/assets/{identifier}`

## Path parameters

- `identifier` string, required

## Response `200`

200

- object
  - `data` object[]
    - `id` integer — The TRC-10 Token ID.
    - `abbr` string — The TRC-10 Token Symbol.
    - `description` string — Token description.
    - `name` string — Token name.
    - `num` integer — Define the price by the ratio of trx_num/num. (The unit of 'trx_num' is sun)
    - `precision` integer — Token precision, i.e. the number of decimal places the token supports.
    - `url` string — The URL of the token's official website.
    - `total_supply` integer — Total supply. May reach the int64 upper bound `9223372036854775807` (> JS safe integer 2^53-1); treat as a string client-side to avoid precision loss. Actual quantity = total_supply / 10^`precision`.
    - `trx_num` integer — Define the price by the ratio of trx_num/num. (The unit of 'trx_num' is sun)
    - `vote_score` integer — The vote score of the TRC-10 token.
    - `owner_address` string — Token issuer address. (Encoding: Hex, starts with `41`, 42 chars; not Base58.)
    - `start_time` integer — ICO start time. (Unit: millisecond)
    - `end_time` integer — ICO end time. (Unit: millisecond)
  - `success` boolean — Whether the request was successful.
  - `meta` object
    - `at` integer — The response timestamp. (Unit: millisecond)
    - `page_size` integer — The number of items returned on the current page.
    - `fingerprint` string — The fingerprint for paginating to the next page.
    - `links` object
      - `next` string — The URL for the next page of results.

## Other responses

- `400` — 400

---

[API](https://skmtc.dev/trongrid/apis/trongrid-v1-api.md) · [All operations](https://skmtc.dev/trongrid/apis/trongrid-v1-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/trongrid/trongrid-v1-api/revisions/22cc4dd60c4c/schema)
