GET
/
v1
/
currencies
/
{currencyId}
/
conversion-routes
Get conversion routes for a specific currency
curl --request GET \
  --url https://api.request.network/v1/currencies/{currencyId}/conversion-routes \
  --header 'x-api-key: <x-api-key>'
{
"currencyId": "USD",
"network": "mainnet",
"conversionRoutes": [
{
"id": "USDT-mainnet",
"name": "Tether USD",
"symbol": "USDT",
"decimals": 6,
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"network": "mainnet",
"type": "ERC20",
"hash": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"chainId": 1
},
{
"id": "ETH-mainnet",
"name": "Ether",
"symbol": "ETH",
"decimals": 18,
"address": "0xf5af88e117747e87fc5929f2ff87221b1447652e",
"network": "mainnet",
"type": "ETH",
"hash": "0xf5af88e117747e87fc5929f2ff87221b1447652e",
"chainId": 1
}
]
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

currencyId
string
required

Query Parameters

network
string

The network of the token to filter by

Response

Conversion routes retrieved successfully

The response is of type any.