Currencies
Reference data for tokens per network.
Authentication: Bearer token required.
List Currencies
Endpoint: GET /api/v1/currencies
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| network_id | string | No | — | Filter by network UUID |
| page | int | No | 1 | Page number |
| per_page | int | No | 10 | Items per page (max 100) |
Response — 200 OK
{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"network_id": "550e8400-e29b-41d4-a716-446655440000",
"symbol": "USDT",
"name": "Tether USD",
"slug": "usdt",
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"logo_url": "https://...",
"decimals": 6
}
],
"page": 1,
"per_page": 10,
"total": 42
}
Get Currency by ID
Endpoint: GET /api/v1/currencies/{id}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Currency UUID |
Response — 200 OK
Same structure as a single item in List response.
| Status | Description |
|---|---|
| 400 | Invalid UUID |
| 404 | Currency not found |