- 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
- StatementPOST
- Statement extendedPOST
- Create clientPOST
- Edit clientPOST
- Сards' listPOST
- Request' statusPOST
- Create transactionPOST
- Clearing transactionPOST
- Refund transactionPOST
- Transaction request' statusPOST
- Transaction infoPOST
- Gift Cards
- Partner API
- Mobile SDK
- CMS
Statement
POST
https://api.freedompay.kz/v5/card-api/card/statement
It enables clients to track their financial activity, monitor spending, and maintain full control over their card transactions.
Request
Body Params application/json
card_id
string
required
start_date
string
optional
YYYY-MM-DDThh:mm:ss+hh:mm
).end_date
string
optional
YYYY-MM-DDThh:mm:ss+hh:mm
).Example
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/card/statement' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
status
string
required
ok
: Request completed successfully.error
: Request completed with an error.request_status
string
required
operations
array [object {8}]
required
type
string
required
amount
number
required
commission
number
required
currency
string
required
mcc
number
required
datetime
string <date-time>
required
YYYY-MM-DDThh:mm:ss+hh:mm
).rrn
string
required
merchant
object
required
dt
string
required
YYYY-MM-DDThh:mm:ss+hh:mm
).Example
{
"status": "string",
"request_status": "string",
"operations": [
{
"type": "string",
"amount": 0,
"commission": 0,
"currency": "string",
"mcc": 0,
"datetime": "2019-08-24T14:15:22Z",
"rrn": "string",
"merchant": {
"name": "string",
"country": "string",
"address_line1": "string",
"postal_code": "string",
"url": "string"
}
}
],
"dt": "string"
}
Modified at 2025-03-01 07:08:39