Skip to main content
GET
/
postings
/
{postingId}
Get a virtual asset posting by ID
curl --request GET \
  --url https://sandbox.api.reap.global/postings/{postingId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Reap-Version: <reap-version>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "DEPOSIT",
  "entries": [
    {
      "virtualAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "amount": "<string>",
      "rateSnapshot": 123
    }
  ],
  "settledAmount": 123,
  "createdAt": "<string>"
}

Authorizations

Authorization
string
header
required

API key as Bearer token

Headers

Reap-Version
enum<string>
required

API version (YYYY-MM-DD)

Available options:
2025-02-14
Example:

"2025-02-14"

Path Parameters

postingId
string<uuid>
required

Posting ID

Response

Client-driven posting against an account.

id
string<uuid>
required

Posting ID

accountId
string<uuid>
required

Account ID

type
enum<string>
required
  • 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 as WITHDRAWAL.
Available options:
DEPOSIT,
WITHDRAWAL,
SETTLEMENT
Example:

"DEPOSIT"

entries
object[]
required
settledAmount
number | null
required

USD value applied to outstanding card debt. Populated for SETTLEMENT postings, null otherwise.

createdAt
string
required

ISO 8601 creation timestamp