GET
/
v1
/
currencies
Get currencies
curl --request GET \
  --url https://api.request.network/v1/currencies \
  --header 'x-api-key: <x-api-key>'
[
{
"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
required

API key for authentication

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.