curl --request GET \
--url https://sandbox.api.reap.global/fiat-deposits/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sandbox.api.reap.global/fiat-deposits/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sandbox.api.reap.global/fiat-deposits/{id}"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transactionId": "20240115HKHHXXXX000123456",
"status": "SETTLED",
"amount": 100.5,
"currency": "USD",
"originalAmount": 100.5,
"originalCurrency": "USD",
"senderName": "MOON INC LIMITED",
"reference": "INV-2024-0142",
"occurredAt": "2024-01-15T10:30:00Z",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:35:00Z"
}{
"error": {
"code": "FIAT_DEPOSIT_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Get fiat deposit
Retrieves a fiat deposit credited to an account, including the amount as received by the bank and the amount credited.
curl --request GET \
--url https://sandbox.api.reap.global/fiat-deposits/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sandbox.api.reap.global/fiat-deposits/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sandbox.api.reap.global/fiat-deposits/{id}"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transactionId": "20240115HKHHXXXX000123456",
"status": "SETTLED",
"amount": 100.5,
"currency": "USD",
"originalAmount": 100.5,
"originalCurrency": "USD",
"senderName": "MOON INC LIMITED",
"reference": "INV-2024-0142",
"occurredAt": "2024-01-15T10:30:00Z",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:35:00Z"
}{
"error": {
"code": "FIAT_DEPOSIT_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
2025-02-14 "2025-02-14"
Path Parameters
Fiat deposit ID
Response
Fiat deposit resource
Unique fiat deposit identifier
Account credited by the deposit
The bank's unique identifier for the incoming transfer. Use it to reconcile the deposit against a bank statement.
"20240115HKHHXXXX000123456"
Current deposit status
SETTLED "SETTLED"
Amount credited to the account balance
x >= 0100.5
0
1234.99
Currency the credit was applied in
"USD"
"HKD"
"EUR"
Amount of the incoming transfer, as received by the bank
x >= 0100.5
0
1234.99
Currency the transfer was sent in, as the bank reported it. A transfer must be sent in the billing currency of your card program.
"USD"
"HKD"
"EUR"
Name of the sender, when the bank reported one
"MOON INC LIMITED"
Reference the sender attached to the transfer, when present
"INV-2024-0142"
ISO 8601 timestamp of when the bank received the transfer
"2024-01-15T10:30:00Z"
ISO 8601 timestamp of creation
"2024-01-15T10:30:00Z"
ISO 8601 timestamp of last update
"2024-01-15T10:35:00Z"