Skip to main content

Currencies

Reference data for tokens per network.

Authentication: Bearer token required.


List Currencies

Endpoint: GET /api/v1/currencies

Query Parameters

ParameterTypeRequiredDefaultDescription
network_idstringNoFilter by network UUID
pageintNo1Page number
per_pageintNo10Items 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

ParameterTypeRequiredDescription
idstringYesCurrency UUID

Response — 200 OK

Same structure as a single item in List response.

StatusDescription
400Invalid UUID
404Currency not found