Get fee
curl --request GET \
--url https://sg.sandbox.api.reap.global/fees/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/fees/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/fees/{id}"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "FX_MARKUP",
"value": {
"unit": "BPS",
"bps": 51
},
"scope": {
"type": "PROJECT"
},
"version": 0,
"createdAt": "<string>",
"updatedAt": "<string>"
}{
"error": {
"code": "FEE_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Fees
Get fee
Retrieves a fee row by ID.
GET
/
fees
/
{id}
Get fee
curl --request GET \
--url https://sg.sandbox.api.reap.global/fees/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/fees/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/fees/{id}"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "FX_MARKUP",
"value": {
"unit": "BPS",
"bps": 51
},
"scope": {
"type": "PROJECT"
},
"version": 0,
"createdAt": "<string>",
"updatedAt": "<string>"
}{
"error": {
"code": "FEE_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
Available options:
2025-02-14 Example:
"2025-02-14"
Path Parameters
Fee ID
Response
A cardholder fee row.
Fee ID.
Which cardholder fee this row sets.
Available options:
FX_MARKUP, ATM_DOMESTIC_VARIABLE, ATM_DOMESTIC_FIXED, ATM_CROSS_BORDER_VARIABLE, ATM_CROSS_BORDER_FIXED Example:
"FX_MARKUP"
The fee value, denominated as unit says.
- FeeBpsValue
- FeeAmountValue
Show child attributes
Show child attributes
Where the fee attaches. PROJECT rows are the default rate card for your program; an ACCOUNT row overrides one fee type for one account.
- Project
- Account
Show child attributes
Show child attributes
Incremented on every change. Transaction events record the version that priced them.
Required range:
-9007199254740991 <= x <= 9007199254740991ISO 8601 creation timestamp.
ISO 8601 last-update timestamp.