Skip to main content
GET
/
cards
/
{cardId}
/
policy
Get effective policy summary with spend stats for a card
curl --request GET \
  --url https://api.getovra.com/cards/{cardId}/policy \
  --header 'Authorization: Bearer <token>'
{
  "cardId": "<string>",
  "status": "<string>",
  "usage": "<string>",
  "isExpired": true,
  "expiresAt": "2023-11-07T05:31:56Z",
  "cooldownActive": true,
  "spendStats": {
    "dailySpent": 123,
    "monthlySpent": 123,
    "dailyRemaining": 123,
    "monthlyRemaining": 123
  },
  "effectivePolicy": {
    "maxTransactionEuros": 123,
    "dailyLimitEuros": 123,
    "monthlyLimitEuros": 123,
    "autoApproveLimitEuros": 123,
    "lockToFirstMerchant": true,
    "cooldownMinutes": 123
  }
}

Authorizations

Authorization
string
header
required

API key (sk_...) or Agent token (at_...)

Path Parameters

cardId
string
required

Response

Card policy and spend statistics

cardId
string
status
string
usage
string
isExpired
boolean
expiresAt
string<date-time> | null
cooldownActive
boolean
spendStats
object
effectivePolicy
object