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

# Assets list

# List Assets

Return all crypto assets supported by Sertexity.

**`GET /assets`**  ·  🔒 Auth required

***

## Query parameters

| Parameter | Type      | Description                                              |
| --------- | --------- | -------------------------------------------------------- |
| `search`  | `string`  | Filter by ticker or name (e.g. `BTC`, `Ethereum`)        |
| `active`  | `boolean` | Default `true`. Pass `false` to include inactive assets. |

***

## Response `200 OK`

```json theme={null}
{
  "data": [
    {
      "ticker": "BTC",
      "name": "Bitcoin",
      "symbol": "₿",
      "decimals": 8,
      "network": "Bitcoin",
      "active": true
    },
    {
      "ticker": "ETH",
      "name": "Ethereum",
      "symbol": "Ξ",
      "decimals": 18,
      "network": "Ethereum",
      "active": true
    },
    {
      "ticker": "USDT",
      "name": "Tether USD",
      "symbol": "₮",
      "decimals": 6,
      "network": "Ethereum",
      "active": true
    },
    {
      "ticker": "SOL",
      "name": "Solana",
      "symbol": "◎",
      "decimals": 9,
      "network": "Solana",
      "active": true
    }
  ],
  "meta": {
    "total": 42
  }
}
```

| Field      | Type      | Description                    |
| ---------- | --------- | ------------------------------ |
| `ticker`   | `string`  | Asset ticker symbol            |
| `name`     | `string`  | Full asset name                |
| `symbol`   | `string`  | Display glyph                  |
| `decimals` | `integer` | Decimal precision for amounts  |
| `network`  | `string`  | Underlying blockchain network  |
| `active`   | `boolean` | Whether the asset is available |

***

## Example

```bash theme={null}
curl "https://api.sertexity.com/v1/assets" \
  -H "Authorization: Bearer <access_token>"
```
