Notus API
Know your customer

Get financial limits for an entity

Retrieves the financial limits and usage information for a specific entity. This includes monthly limits, PIX QR Code limits, and remaining balances.

GET
/api/v1/kyc/entities/{entityId}/financial-limits
x-api-key<token>

In: header

Path Parameters

entityIdstring

The ID of the entity to get financial limits for. Must be a valid business or individual ID.

Response Body

curl -X GET "https://api.notuslabs.xyz/api/v1/kyc/entities/string/financial-limits"
{
  "entityId": "string",
  "deposits": {
    "monthlyLimit": 0,
    "monthlyRemaining": 0
  },
  "withdrawals": {
    "monthlyLimit": 0,
    "monthlyRemaining": 0,
    "dailyLimitPixQRCode": 0,
    "dailyRemainingPixQRCode": 0,
    "transactionLimitPixQRCode": 0
  }
}