Skip to main content
GET
/
v2
/
currencies
Get currencies
curl --request GET \
  --url https://api.stage.request.network/v2/currencies
[
{
"id": "USDC-mainnet",
"name": "USD Coin",
"symbol": "USDC",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"network": "mainnet",
"type": "ERC20",
"hash": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"chainId": 1
},
{
"id": "USDT-mainnet",
"name": "Tether USD",
"symbol": "USDT",
"decimals": 6,
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"network": "mainnet",
"type": "ERC20",
"hash": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"chainId": 1
}
]

Headers

x-api-key
string

API key for authentication (optional if using Client ID)

x-client-id
string

Client ID for frontend authentication (optional if using API key)

Origin
string

Origin header (required for Client ID auth, automatically set by browser)

Query Parameters

network
string

The network of the token(s)

Example:

"mainnet"

symbol
string

The symbol of the token

Example:

"USDC"

firstOnly
string

Whether to return only the first token. can only be used when both network and symbol are provided.

Example:

true

id
string

The Request Network id of the token

Example:

"USDC-mainnet"

Response

List of tokens retrieved successfully

The response is of type any.

I