# Get SEPA Instant limits for an account Fetch the limits set for the specific account_id as well as it's remaining and used limit. According to the new SEPA regulation coming into effect on October 9th, 2025, customers should have the option to set up a per-transaction and/or daily SEPA Instant limit if they wish to do so. Ensure the limit can be modified by the customer prior to initiating a SEPA Instant order. In the event of a payment rejection due to limit constraints, provide clear instructions on how the customer can adjust the limit. SEPA Limit configuration is optional. Consequently, all existing and newly created accounts will have the SEPA Instant limit unset by default. Please note that this is a pre-release and there will be some changes before we release the final version of the API. Endpoint: GET /v1/accounts/{account_id}/sepa_instant_limits Version: 1.0 ## Path parameters: - `account_id` (string, required) ## Response 200 fields (application/json): - `daily_limit` (object) - `daily_limit.value` (integer) Daily limit amount Example: 1000000 - `daily_limit.unit` (string) Unit of the amount Example: "cents" - `daily_limit.currency` (string) Currency code Example: "EUR" - `daily_used` (object) - `daily_used.value` (integer) Amount used today Example: 350000 - `daily_remaining` (object) - `daily_remaining.value` (integer) Remaining amount for today Example: 650000 - `per_transaction_limit` (object) - `per_transaction_limit.value` (integer) Maximum amount per single transaction Example: 500000