Skip to main content
GET
/
v2
/
currencies
/
{currencyId}
/
conversion-routes
Get conversion routes for a specific currency
curl --request GET \
  --url https://api.stage.request.network/v2/currencies/{currencyId}/conversion-routes
{
"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

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)

Path Parameters

currencyId
string
required

Query Parameters

network
string

The network of the token to filter by

networks
string

A comma-separated list of networks to filter by (e.g., sepolia,mainnet,polygon)

Response

Conversion routes retrieved successfully

The response is of type any.

⌘I