Get Network Currency
GET /v1/chains/{chain_id}/networks/{network_id}/currencies/{currency_id}
Retrieves a network currency by its ID.
Headers
| Header | Required | Value |
|---|---|---|
Authorization | Yes | Bearer <token> |
X-Target-Server | Yes | network-currencies |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
chain_id | string (UUID) | Yes | Chain ID |
network_id | string (UUID) | Yes | Network ID |
currency_id | string (UUID) | Yes | Currency ID |
Response
200 OK
{
"id": "880e8400-e29b-41d4-a716-446655440000",
"network_id": "770e8400-e29b-41d4-a716-446655440000",
"name": "USD Coin",
"symbol": "USDC",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"logo_url": "https://example.com/usdc.png",
"created_at": "2025-01-01T00:00:00Z",
"updated_at": "2025-01-01T00:00:00Z",
"deleted_at": null
}
401 Unauthorized
404 Not Found
{
"code": 0,
"domain": 0,
"message": "network currency not found"
}