Skip to main content
GET
/
v1
/
exchange
/
fxConfigs
/
dailyLimits
Get daily currency exchange limits
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"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved daily FX limits.

data
object