List effective fees
curl --request GET \
--url https://sg.sandbox.api.reap.global/fees/effective \
--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/effective', 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/effective"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"type": "FX_MARKUP",
"value": {
"unit": "BPS",
"bps": 51
},
"source": {
"feeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope": {
"type": "PROJECT"
}
}
}
]
}{
"error": {
"code": "FEE_SCOPE_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Fees
List effective fees
Returns the fee an account is charged for every fee type: its own override where one exists, otherwise the project default. Each entry names the row it comes from.
GET
/
fees
/
effective
List effective fees
curl --request GET \
--url https://sg.sandbox.api.reap.global/fees/effective \
--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/effective', 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/effective"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"type": "FX_MARKUP",
"value": {
"unit": "BPS",
"bps": 51
},
"source": {
"feeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope": {
"type": "PROJECT"
}
}
}
]
}{
"error": {
"code": "FEE_SCOPE_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"
Query Parameters
The account to resolve fees for.
Response
The fees an account is charged, each with the row that supplies it.
One entry per fee type, in the fee type order.
Show child attributes
Show child attributes