# Retrieve Deposit Limits Returns the deposit limit for a profile based on regulatory requirements. Useful for personal profiles located in countries that have hold limits. We advise calling this API before depositing money into an account if the profile is located in Singapore or Malaysia. Endpoint: GET /v1/profiles/{profileId}/balance-capacity Security: UserToken, PersonalToken ## Path parameters: - `profileId` (integer, required) The profile ID. ## Query parameters: - `currency` (string, required) Currency code (ISO 4217 Alphabetic Code). The deposit limit will be returned in this currency. Example: "SGD" ## Response 200 fields (application/json): - `hasLimit` (boolean) True if there is a regulatory hold limit for the profile's country. Example: true - `depositLimit` (object) Amount of money that can be added to the account. - `depositLimit.amount` (number) Deposit limit amount. Example: 2000 - `depositLimit.currency` (string) Currency code (ISO 4217 Alphabetic Code). Example: "SGD"