- Gateway API
- Overview
- Sync API
- Async API
- Merchant API
- Card API
- Overview
- Payment Cards
- Overview
- Dictionaries
- Bulk issue
- Issue card
- Issue plastic card
- Activate card
- Block card
- Unblock card
- Set PIN
- Reset PIN counter
- Close card
- Update client
- Card info
- Balance
- Secret data
- Statement
- Statement extended
- Create client
- Edit client
- Сards' list
- Request' status
- Create transaction
- Clearing transaction
- Refund transaction
- Transaction request' status
- Transaction info
- Gift Cards
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- IMTS "Leskar"
- Mobile SDK
- CMS
Fee Calculation
Developing
POST
https://api.freedompay.kz/v5/partner/transfer/fees
The fee depends on the sender type, destination country, transfer amount, and currencies involved.
This method is used to show the client the total transfer cost before initiating the transaction.
Request
Header Params
Authorization
string
required
Example:
Bearer <access_token>
Body Params application/json
originator_type
enum<string>
required
<= 10 characters
Allowed values:
personbusiness
target_country
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
amount_source
number
required
<= 15.4
currency_source
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
currency_target
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
pg_sig
string
required
<= 512 characters
Example
{
"originator_type": "person",
"target_country": "KAZ",
"amount_source": 100.00,
"currency_source": "KZT",
"currency_target": "UZB"
},
"pg_sig": "5a1d5f17e4c1f5a3b44c3f29b5e2d77cd11b1b5fefc3dcb5b1c2f8e73f9c22a1"
}
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/partner/transfer/fees' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"originator_type": "person",
"target_country": "KAZ",
"amount_source": 100.00,
"currency_source": "KZT",
"currency_target": "UZB"
},
"pg_sig": "5a1d5f17e4c1f5a3b44c3f29b5e2d77cd11b1b5fefc3dcb5b1c2f8e73f9c22a1"
}'
Responses
🟢200Success
application/json
Body
amount_target
number
required
<= 15.4
currency_target
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
rate
number
required
<= 10.8
total_fee
number
required
<= 10.4
agent_fee
number
required
<= 10.4
response_time
string
required
Example
{
"amount_target": 105,
"currency_target": "UZB",
"rate": "2.5",
"total_fee": 5,
"agent_fee": 1.5,
"response_time": "2025-03-31T10:35:21.000Z"
}
Modified at 2025-04-02 15:21:37