Skip to main content
GET
/
cards
/
{id}
/
limits
Get spending limits
curl --request GET \
  --url https://business.bfinance.app/external/api/cards/{id}/limits \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "ecommerce": {
      "daily": {
        "limit": 50000,
        "used": 1200
      },
      "monthly": {
        "limit": 400000,
        "used": 12000
      },
      "transaction": {
        "limit": 25000
      }
    },
    "pos": {
      "daily": {
        "limit": 50000,
        "used": 800
      },
      "monthly": {
        "limit": 400000,
        "used": 10000
      },
      "transaction": {
        "limit": 25000
      }
    }
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card

Response

Successfully retrieved card limits

status
string
Example:

"success"

data
object