Get posting
curl --request GET \
--url https://sg.sandbox.api.reap.global/postings/{postingId} \
--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/postings/{postingId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/postings/{postingId}"
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",
"type": "DEPOSIT",
"entries": [
{
"virtualAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"amount": "<string>",
"rateSnapshot": 1
}
],
"settledAmount": 134.87,
"createdAt": "<string>"
}{
"error": {
"code": "POSTING_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Virtual Asset Postings
Get posting
Client-driven postings (deposit, withdrawal, settlement) against an account’s virtual asset balances.
GET
/
postings
/
{postingId}
Get posting
curl --request GET \
--url https://sg.sandbox.api.reap.global/postings/{postingId} \
--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/postings/{postingId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/postings/{postingId}"
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",
"type": "DEPOSIT",
"entries": [
{
"virtualAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"amount": "<string>",
"rateSnapshot": 1
}
],
"settledAmount": 134.87,
"createdAt": "<string>"
}{
"error": {
"code": "POSTING_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
Posting ID
Response
Client-driven posting against an account.
Posting ID
Account ID
DEPOSIT: Credit the submitted virtual asset amounts to the account balance.WITHDRAWAL: Debit the submitted virtual asset amounts from the account balance. Rejected if any entry would take the balance below zero.SETTLEMENT: Debit the submitted virtual asset amounts from the account balance AND apply their value to the account’s outstanding card debt. Same non-negative guard asWITHDRAWAL.
Available options:
DEPOSIT, WITHDRAWAL, SETTLEMENT Example:
"DEPOSIT"
Show child attributes
Show child attributes
Value applied to outstanding card debt, in the billing currency of the card program. Each entry is valued at amount × rateSnapshot and rounded to the billing currency's precision, then the entries are summed. Populated for SETTLEMENT postings, null otherwise.
Example:
134.87
ISO 8601 creation timestamp