---
title: "Get transactions for offramp account"
method: GET
path: "/ledger/offramp-accounts/{id}/transactions"
tags: ["ledger-offramp accounts"]
---

# Get transactions for offramp account

`GET /ledger/offramp-accounts/{id}/transactions`

Get a paginated list of transactions proccessed by offramp accounts

## Path parameters

- `id` string, required

## Query parameters

- `page` integer
- `size` integer

## Response `200`

List of transactions

- OfframpAccountTransactionList — Base object for paginated list
  - `name` string — Descriptive name for the list
  - `size` integer — Positive integer
  - `totalItems` integer — Positive integer
  - `nextPage` integer — Positive integer
  - `previousPage` integer — Positive integer
  - `content` OfframpAccountTransaction[], required — List of offramp account transactions
    - `id` string, uuid, required
    - `reference` string, required — Reference for the cash payment transaction at initiation.
    - `accountTransactionId` string — Identifier of the transaction on the account.
    - `currency` string, required — Currency in which the account was debited.
    - `status` 'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'SUCCESS', required — Status of the transaction, indicating its current state in the processing lifecycle. - PENDING: The transaction has been created but not yet processed. - IN_PROGRESS: The transaction is currently being processed. - FAILED: The transaction processing has failed. - SUCCESS: The transaction has been successfully processed.
    - `payoutCurrency` string, required — Currency in which the beneficiary will be paid out.
    - `amount` number, required — Amount transferred.
    - `rate` number, required — Exchange rate applied for this transfer.
    - `payoutAmount` number, required — Amount paid out to the beneficiary in payout currency.
    - `providerReference` string — Reference provided by the cash payment provider.
    - `recipient` BasicBeneficiaryInfo, required — Basic information about a beneficiary as at the time of transaction.
      - `id` string, uuid, required — Unique identifier for the beneficiary.
      - `accountName` string, required — Name on the account
      - `beneficiaryType` string, required — Type of beneficiary object.
      - `bankName` string — Name of the receiving bank, for mobile money this would be the network, and for P2P wallet it will be the name of the account provider
      - `accountIdentifier` string, required — The account identifier at the bank. For mobile money, this is the phone number on account, for P2P wallet, this is the account ID Where routing number or sort code is present, this would be `{routingNumber}-{accountNumber}`
      - `paymentChannelId` string, required — Identifier of the payment channel used for this transaction, if available. This can be used to determine the exact payment method used for the transaction.
      - `country` string — Country where the payment method belongs if available
    - `createdDate` string, date-time, required
    - `offrampAccountId` string, uuid — Identifier of the offramp account associated with this transaction.
    - `blockchainInfo` TransactionBlockchainInfo — Blockchain transaction data, present on Crypto-backed transactions.
      - `txHash` string, required — Blockchain Transaction Hash
      - `recipient` TransactionBlockchainAddress, required — Address data
        - `address` string, required — Blockchain address where deposit was received.
        - `memo` string — Memo for blockchains where memo is required.
      - `senderAddress` string — The address of the sender.
      - `value` number, required — Quantity of tokens transferred in the transaction.
      - `blockNumber` integer
      - `tokenSymbol` string, required — Token symbol
      - `timestamp` integer — Transaction block timestamp.
      - `explorerUrl` string, url — URL to view the transaction on a blockchain explorer.

## Other responses

- `401` — Client is not authorized to make request
- `404` — Entity was not found

---

[API](https://skmtc.net/nestechops/apis/onboard-external-api-gateway.md) · [All operations](https://skmtc.net/nestechops/apis/onboard-external-api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nestechops/onboard-external-api-gateway/versions/29661adc1ffc/schema)
