curl --request GET \
--url https://api-sandbox.circle.com/v1/exchange/fxConfigs/dailyLimits \
--header 'Authorization: Bearer <token>'{
"data": {
"dailyLimits": {
"EURC": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"MXN": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"USDC": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"BRL": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
}
}
}
}Returns daily currency exchange limits and usages.
curl --request GET \
--url https://api-sandbox.circle.com/v1/exchange/fxConfigs/dailyLimits \
--header 'Authorization: Bearer <token>'{
"data": {
"dailyLimits": {
"EURC": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"MXN": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"USDC": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
},
"BRL": {
"limit": "1000000.00",
"usage": "0.00",
"available": "1000000.00"
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully retrieved daily FX limits.
Show child attributes
Show child attributes
Was this page helpful?