- Overview
- Gateway API
- Merchant API
- Card API
- Overview
- Payment Cards
- Overview
- Dictionaries
- Bulk issuePOST
- Issue cardPOST
- Issue plastic cardPOST
- Activate cardPOST
- Block cardPOST
- Unblock cardPOST
- Set PINPOST
- Reset PIN counterPOST
- Close cardPOST
- Update clientPOST
- Card infoPOST
- BalancePOST
- Secret dataPOST
- Secret data (version 2)POST
- Operations' listPOST
- Statement extendedPOST
- Create clientPOST
- Edit clientPOST
- Сards' listPOST
- Request' statusPOST
- Create transactionPOST
- Clearing transactionPOST
- Refund transactionPOST
- Transaction infoPOST
- Cardholder validationPOST
- Set limitsPOST
- Limits listPOST
- Gift Cards
- Partner API
Limits list
POST
https://api.freedompay.kz/v5/card-api/limits/list
all active limits
set for a specific object: a card
, account
, or client
.The response returns a complete list of currently active limits, including:
the
transaction type
(e.g., pay, withdrawal, pay_online_non3ds)the
limit period
(day, month)the
maximum allowed amount
the
currency
in which the limit is setthe
current counter value
, indicating how much has already been used within the limit for the given periodthe
available remaining amount
, showing how much is still available within the limitand other parameters
This allows clients to receive not only the limits themselves, but also real-time information about their current usage.
Request
Body Params application/json
request_id
string
required
object
object
required
type
string
required
value
string
required
Example
{
"request_id": "123e4567-e89b-12d3-a456-426614174000",
"object": {
"type": "card",
"value": "123456789"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.freedompay.kz/v5/card-api/limits/list' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "123e4567-e89b-12d3-a456-426614174000",
"object": {
"type": "card",
"value": "123456789"
}
}'
Responses
🟢200Success
application/json
Body
status
string
required
ok
- Request completed successfully. error
- Request completed with an error.request_status
string
required
limits
object
required
product
array [object {6}]
required
card
array [object {6}]
optional
dt
string
required
Example
{
"status": "string",
"request_status": "string",
"limits": {
"product": [
{
"id": "string",
"transaction_type": "string",
"mcc": "string",
"region": "string",
"period": "string",
"amount": [
{
"type": "string",
"value": "string",
"current": "string",
"remaining": "string",
"currency": "string"
}
]
}
],
"card": [
{
"id": "string",
"transaction_type": "string",
"mcc": "string",
"region": "string",
"period": "string",
"amount": [
{
"type": "string",
"value": "string",
"current": "string",
"remaining": "string",
"currency": "string"
}
]
}
]
},
"dt": "string"
}
Modified at 2025-07-01 05:44:40