gethttps://api.circle.com/v1/cpn/configurations/routes
Returns a list of route details including trade limits. This information can determine what corridors and parameters are valid for subsequent quote creation.
Filter by destination country
Filter by the source currency, should be the crypto token
Filter by destination currency, will return all available destinationCurrency's limit if empty
Filter by payment method, will return all available payment method types' limit if empty
Filter by blockchain, will return all available blockchain limit if empty
1{
2 "data": [
3 {
4 "destinationCurrency": "MXN",
5 "paymentMethodType": "SPEI",
6 "blockchain": "ETH-SEPOLIA",
7 "cryptoLimit": {
8 "currency": "USDC",
9 "max": 1000,
10 "min": 10
11 },
12 "fiatLimit": {
13 "currency": "MXN",
14 "max": 1000,
15 "min": 10
16 }
17 }
18 ]
19}