Skip to main content
GET
/
cards
/
account
/
configuration
/
velocity-rules
curl "https://api.cryptomate.me/cards/account/configuration/velocity-rules" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "rules": [
    {
      "max_authorizations": 3,
      "time_window_seconds": 60
    },
    {
      "max_authorizations": 10,
      "time_window_seconds": 3600
    }
  ]
}
Returns the list of velocity rules currently configured for your company. Each rule defines a maximum number of approved authorizations allowed within a given time window, applied per individual card. If no rules are configured the response contains an empty array. Requires an API key with access level 1 or higher.

Response

rules
array
List of velocity rules. Up to 5 rules per company.
curl "https://api.cryptomate.me/cards/account/configuration/velocity-rules" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "rules": [
    {
      "max_authorizations": 3,
      "time_window_seconds": 60
    },
    {
      "max_authorizations": 10,
      "time_window_seconds": 3600
    }
  ]
}