> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reap.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Get posting

> Client-driven postings (deposit, withdrawal, settlement) against an account's virtual asset balances.



## OpenAPI

````yaml /api-reference/openapi.json get /postings/{postingId}
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /postings/{postingId}:
    get:
      tags:
        - Virtual Asset Postings
      summary: Get posting
      description: >-
        Client-driven postings (deposit, withdrawal, settlement) against an
        account's virtual asset balances.
      operationId: get_virtual-asset-postings
      parameters:
        - name: postingId
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Posting ID
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Client-driven posting against an account.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Posting ID
                  accountId:
                    type: string
                    format: uuid
                    description: Account ID
                  type:
                    type: string
                    enum:
                      - DEPOSIT
                      - WITHDRAWAL
                      - SETTLEMENT
                    description: >-
                      - `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`.
                    example: DEPOSIT
                  entries:
                    type: array
                    items:
                      $ref: '#/components/schemas/PostingEntry'
                  settledAmount:
                    anyOf:
                      - type: number
                      - type: 'null'
                    description: >-
                      USD value applied to outstanding card debt. Populated for
                      `SETTLEMENT` postings, `null` otherwise.
                  createdAt:
                    type: string
                    description: ISO 8601 creation timestamp
                required:
                  - id
                  - accountId
                  - type
                  - entries
                  - settledAmount
                  - createdAt
        '404':
          description: Posting not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: POSTING_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: PostingNotFoundError
components:
  schemas:
    PostingEntry:
      type: object
      properties:
        virtualAssetId:
          type: string
          format: uuid
          description: Virtual asset ID
        amount:
          type: string
          description: Entry amount in the virtual asset denomination
        rateSnapshot:
          anyOf:
            - type: number
            - type: 'null'
          description: >-
            USD-per-unit rate applied to this entry. Populated for `SETTLEMENT`
            postings, `null` otherwise.
      required:
        - virtualAssetId
        - amount
        - rateSnapshot
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````