Get Pairs
GET /ft/orders/:chainId/pairs
Examples
curl -X GET \
'https://api.paraswap.io/ft/orders/137/pairs'
Query parameters
chainId:
network id (Ethereum Mainnet = 1).
Response
Example:
GET https://api.paraswap.io/ft/orders/137/pairs
{
"success": true,
"pairs": [
{
"makerAsset": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270",
"takerAsset": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063"
}
]
}
Last updated