# Tokens

The `tokens` object represents on-chain tokens tracked and indexed by the Xerberus platform. Each token includes essential metadata such as its symbol, address, and the blockchain (`chain`) it belongs to.

This object is returned by multiple queries including:

* `Query: tokens` — paginated list of all tokens with filters.
* `Query: tokensBySimilarSymbol` — fuzzy search on token symbol.
* `Query: tokensBySimilarAddress` — fuzzy search on token address.

#### `Token` Object

| Field          | Type    | Description                                           |
| -------------- | ------- | ----------------------------------------------------- |
| `asset_id`     | ID!     | Unique internal identifier for the token              |
| `symbol`       | String! | Token symbol (e.g., `USDC`, `ETH`)                    |
| `chain`        | String! | Blockchain network name (e.g., `ETHEREUM`, `POLYGON`) |
| `address`      | String! | Smart contract address of the token                   |
| `last_updated` | String! | ISO 8601 timestamp of the last metadata update        |
