---
title: "List transactions"
method: GET
path: "/transactions"
tags: ["Transactions"]
---

# List transactions

`GET /transactions`

Retrieve a paginated list of transactions with optional filtering.
The transactions can be filtered by customer ID, platform customer ID, UMA address,
date range, status, and transaction type.

## Query parameters

- `customerId` string
- `platformCustomerId` string
- `senderAccountIdentifier` string
- `receiverAccountIdentifier` string
- `status` 'CREATED' | 'PENDING' | 'PROCESSING' | 'SENT' | 'COMPLETED' | 'REJECTED' | 'FAILED' | 'REFUNDED' | 'EXPIRED' — Status of a payment transaction. | Status | Description | |--------|-------------| | `CREATED` | Initial lookup has been created | | `PENDING` | Quote has been created | | `PROCESSING` | Funding has been received and payment initiated | | `SENT` | Cross border settlement has been initiated | | `COMPLETED` | Cross border payment has been received, converted and payment has been sent to the offramp network | | `REJECTED` | Receiving institution or wallet rejected payment, payment has been refunded | | `FAILED` | An error occurred during payment | | `REFUNDED` | Payment was unable to complete and refunded | | `EXPIRED` | Quote has expired |
- `type` 'INCOMING' | 'OUTGOING' — Type of transaction (incoming payment or outgoing payment)
- `reference` string
- `startDate` string, date-time
- `endDate` string, date-time
- `limit` integer
- `cursor` string
- `sortOrder` 'asc' | 'desc'

## Response `200`

Successful operation

- object
  - `data` TransactionOneOf[], required — List of transactions matching the criteria
    - union
      - IncomingTransaction
        - `id` string, required — Unique identifier for the transaction
        - `status` 'CREATED' | 'PENDING' | 'PROCESSING' | 'SENT' | 'COMPLETED' | 'REJECTED' | 'FAILED' | 'REFUNDED' | 'EXPIRED', required — Status of a payment transaction. | Status | Description | |--------|-------------| | `CREATED` | Initial lookup has been created | | `PENDING` | Quote has been created | | `PROCESSING` | Funding has been received and payment initiated | | `SENT` | Cross border settlement has been initiated | | `COMPLETED` | Cross border payment has been received, converted and payment has been sent to the offramp network | | `REJECTED` | Receiving institution or wallet rejected payment, payment has been refunded | | `FAILED` | An error occurred during payment | | `REFUNDED` | Payment was unable to complete and refunded | | `EXPIRED` | Quote has expired |
        - `type` 'INCOMING', required — Type of transaction (incoming payment or outgoing payment)
        - `destination` union, required
          - AccountTransactionDestination — Destination account details
            - `currency` string — Currency code for the destination
            - `destinationType` 'ACCOUNT', required
            - `accountId` string, required — Destination account identifier
          - UmaAddressTransactionDestination — UMA address destination details
            - `currency` string — Currency code for the destination
            - `destinationType` 'UMA_ADDRESS', required
            - `umaAddress` string, required — UMA address of the recipient
          - ExternalAccountDetailsTransactionDestination — Transaction destination where external account details were provided inline at quote creation rather than using a pre-registered external account.
            - `currency` string — Currency code for the destination
            - `destinationType` 'EXTERNAL_ACCOUNT_DETAILS', required
            - `externalAccountDetails` ExternalAccountCreateRequest, required
              - …
        - `customerId` string, required — System ID of the customer (sender for outgoing, recipient for incoming)
        - `platformCustomerId` string, required — Platform-specific ID of the customer (sender for outgoing, recipient for incoming)
        - `settledAt` string, date-time — When the payment was or will be settled
        - `createdAt` string, date-time — When the transaction was created
        - `updatedAt` string, date-time — When the transaction was last updated
        - `description` string — Optional memo or description for the payment
        - `counterpartyInformation` CounterpartyInformation — Additional information about the counterparty, if available and relevant to the transaction and platform. Only applicable for transactions to/from UMA addresses.
        - `source` union
          - AccountTransactionSource — Source account details
            - `currency` string — Currency code for the source
            - `sourceType` 'ACCOUNT', required
            - `accountId` string, required — Source account identifier
          - UmaAddressTransactionSource — UMA address source details
            - `currency` string — Currency code for the source
            - `sourceType` 'UMA_ADDRESS', required
            - `umaAddress` string, required — UMA address of the sender
          - RealtimeFundingTransactionSource — Transaction was funded using a real-time funding source (RTP, SEPA Instant, Spark, Stables, etc.).
            - `currency` string, required — Currency code for the funding source
            - `sourceType` 'REALTIME_FUNDING', required
            - `customerId` string — The customer on whose behalf the transaction was initiated.
        - `receivedAmount` CurrencyAmount, required
          - `amount` integer, required — Amount in the smallest unit of the currency (e.g., cents for USD/EUR, satoshis for BTC)
          - `currency` Currency, required
            - `code` string — Three-letter currency code (ISO 4217) for fiat currencies. Some cryptocurrencies may use their own ticker symbols (e.g. "BTC" for Bitcoin, "USDC" for USDC, etc.)
            - `name` string — Full name of the currency
            - `symbol` string — Symbol of the currency
            - `decimals` integer — Number of decimal places for the currency
        - `reconciliationInstructions` ReconciliationInstructions
          - `reference` string, required — Unique reference code that must be included with the payment to match it with the correct incoming transaction
        - `rateDetails` IncomingRateDetails — Details about the rate and fees for an incoming transaction.
          - `gridApiMultiplier` number, double, required — The underlying multiplier from the mSATS to the receiving currency, including variable fees.
          - `gridApiFixedFee` integer, required — The fixed fee charged by the Grid product to execute the quote in the smallest unit of the receiving currency (eg. cents).
          - `gridApiVariableFeeRate` number, double, required — The variable fee rate charged by the Grid product to execute the quote as a percentage of the receiving currency amount.
          - `gridApiVariableFeeAmount` number, required — The variable fee amount charged by the Grid product to execute the quote in the smallest unit of the receiving currency (eg. cents). This is the receiving amount times gridApiVariableFeeRate.
        - `failureReason` 'LNURLP_FAILED' | 'PAY_REQUEST_FAILED' | 'PAYMENT_APPROVAL_WEBHOOK_ERROR' | 'PAYMENT_APPROVAL_TIMED_OUT' | 'OFFRAMP_FAILED' | 'MISSING_MANDATORY_PAYEE_DATA' | 'QUOTE_EXPIRED' | 'QUOTE_EXECUTION_FAILED' — Reason for failure of an incoming transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed state, this field is omitted.
      - OutgoingTransaction
        - `id` string, required — Unique identifier for the transaction
        - `status` 'CREATED' | 'PENDING' | 'PROCESSING' | 'SENT' | 'COMPLETED' | 'REJECTED' | 'FAILED' | 'REFUNDED' | 'EXPIRED', required — Status of a payment transaction. | Status | Description | |--------|-------------| | `CREATED` | Initial lookup has been created | | `PENDING` | Quote has been created | | `PROCESSING` | Funding has been received and payment initiated | | `SENT` | Cross border settlement has been initiated | | `COMPLETED` | Cross border payment has been received, converted and payment has been sent to the offramp network | | `REJECTED` | Receiving institution or wallet rejected payment, payment has been refunded | | `FAILED` | An error occurred during payment | | `REFUNDED` | Payment was unable to complete and refunded | | `EXPIRED` | Quote has expired |
        - `type` 'OUTGOING', required — Type of transaction (incoming payment or outgoing payment)
        - `destination` union, required
          - AccountTransactionDestination — Destination account details
            - `currency` string — Currency code for the destination
            - `destinationType` 'ACCOUNT', required
            - `accountId` string, required — Destination account identifier
          - UmaAddressTransactionDestination — UMA address destination details
            - `currency` string — Currency code for the destination
            - `destinationType` 'UMA_ADDRESS', required
            - `umaAddress` string, required — UMA address of the recipient
          - ExternalAccountDetailsTransactionDestination — Transaction destination where external account details were provided inline at quote creation rather than using a pre-registered external account.
            - `currency` string — Currency code for the destination
            - `destinationType` 'EXTERNAL_ACCOUNT_DETAILS', required
            - `externalAccountDetails` ExternalAccountCreateRequest, required
              - …
        - `customerId` string, required — System ID of the customer (sender for outgoing, recipient for incoming)
        - `platformCustomerId` string, required — Platform-specific ID of the customer (sender for outgoing, recipient for incoming)
        - `settledAt` string, date-time — When the payment was or will be settled
        - `createdAt` string, date-time — When the transaction was created
        - `updatedAt` string, date-time — When the transaction was last updated
        - `description` string — Optional memo or description for the payment
        - `counterpartyInformation` CounterpartyInformation — Additional information about the counterparty, if available and relevant to the transaction and platform. Only applicable for transactions to/from UMA addresses.
        - `source` union, required
          - AccountTransactionSource — Source account details
            - `currency` string — Currency code for the source
            - `sourceType` 'ACCOUNT', required
            - `accountId` string, required — Source account identifier
          - UmaAddressTransactionSource — UMA address source details
            - `currency` string — Currency code for the source
            - `sourceType` 'UMA_ADDRESS', required
            - `umaAddress` string, required — UMA address of the sender
          - RealtimeFundingTransactionSource — Transaction was funded using a real-time funding source (RTP, SEPA Instant, Spark, Stables, etc.).
            - `currency` string, required — Currency code for the funding source
            - `sourceType` 'REALTIME_FUNDING', required
            - `customerId` string — The customer on whose behalf the transaction was initiated.
        - `sentAmount` CurrencyAmount, required
          - `amount` integer, required — Amount in the smallest unit of the currency (e.g., cents for USD/EUR, satoshis for BTC)
          - `currency` Currency, required
            - `code` string — Three-letter currency code (ISO 4217) for fiat currencies. Some cryptocurrencies may use their own ticker symbols (e.g. "BTC" for Bitcoin, "USDC" for USDC, etc.)
            - `name` string — Full name of the currency
            - `symbol` string — Symbol of the currency
            - `decimals` integer — Number of decimal places for the currency
        - `receivedAmount` CurrencyAmount
          - `amount` integer, required — Amount in the smallest unit of the currency (e.g., cents for USD/EUR, satoshis for BTC)
          - `currency` Currency, required
            - `code` string — Three-letter currency code (ISO 4217) for fiat currencies. Some cryptocurrencies may use their own ticker symbols (e.g. "BTC" for Bitcoin, "USDC" for USDC, etc.)
            - `name` string — Full name of the currency
            - `symbol` string — Symbol of the currency
            - `decimals` integer — Number of decimal places for the currency
        - `exchangeRate` number — Number of sending currency units per receiving currency unit.
        - `fees` integer — The fees associated with the quote in the smallest unit of the sending currency (eg. cents).
        - `quoteId` string — The ID of the quote that was used to trigger this payment
        - `paymentInstructions` PaymentInstructions[] — Payment instructions for executing the payment.
          - `instructionsNotes` string — Additional human-readable instructions for making the payment
          - `isPlatformAccount` boolean — Indicates whether the account is a platform account or a customer account.
          - `accountOrWalletInfo` union, required
            - PaymentUsdAccountInfo
              - …
            - PaymentBrlAccountInfo
              - …
            - PaymentMxnAccountInfo
              - …
            - PaymentDkkAccountInfo
              - …
            - PaymentEurAccountInfo
              - …
            - PaymentInrAccountInfo
              - …
            - PaymentNgnAccountInfo
              - …
            - PaymentCadAccountInfo
              - …
            - PaymentGbpAccountInfo
              - …
            - PaymentHkdAccountInfo
              - …
            - PaymentIdrAccountInfo
              - …
            - PaymentMyrAccountInfo
              - …
            - PaymentPhpAccountInfo
              - …
            - PaymentSgdAccountInfo
              - …
            - PaymentThbAccountInfo
              - …
            - PaymentVndAccountInfo
              - …
            - PaymentSparkWalletInfo
              - …
            - PaymentLightningInvoiceInfo
              - …
            - PaymentSolanaWalletInfo
              - …
            - PaymentTronWalletInfo
              - …
            - PaymentPolygonWalletInfo
              - …
            - PaymentBaseWalletInfo
              - …
        - `refund` Refund
          - `reference` string, required — The unique reference code of the refund
          - `initiatedAt` string, date-time, required — When the refund was initiated
          - `settledAt` string, date-time — When the refund was or will be settled
        - `rateDetails` OutgoingRateDetails — Details about the rate and fees for an outgoing transaction or quote.
          - `counterpartyMultiplier` number, double, required — The underlying multiplier from mSATs to the receiving currency as returned by the counterparty institution.
          - `counterpartyFixedFee` integer, required — The fixed fee charged by the counterparty institution to execute the quote in the smallest unit of the receiving currency (eg. cents).
          - `gridApiMultiplier` number, double, required — The underlying multiplier from the sending currency to mSATS, including variable fees.
          - `gridApiFixedFee` integer, required — The fixed fee charged by the Grid product to execute the quote in the smallest unit of the sending currency (eg. cents).
          - `gridApiVariableFeeRate` number, double, required — The variable fee rate charged by the Grid product to execute the quote as a percentage of the sending currency amount.
          - `gridApiVariableFeeAmount` number, required — The variable fee amount charged by the Grid product to execute the quote in the smallest unit of the sending currency (eg. cents). This is the sending amount times gridApiVariableFeeRate.
        - `failureReason` 'QUOTE_EXPIRED' | 'QUOTE_EXECUTION_FAILED' | 'LIGHTNING_PAYMENT_FAILED' | 'FUNDING_AMOUNT_MISMATCH' | 'COUNTERPARTY_POST_TX_FAILED' | 'TIMEOUT' — Reason for failure of an outgoing transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed state, this field is omitted.
  - `hasMore` boolean, required — Indicates if more results are available beyond this page
  - `nextCursor` string — Cursor to retrieve the next page of results (only present if hasMore is true)
  - `totalCount` integer — Total number of transactions matching the criteria (excluding pagination)

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized
- `500` — Internal service error

## Changes

- **2026-03-03** `efe0d983985f` — 56 breaking, 41 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `400`
  - the response's body type/format changed from ``/`` to `object`/`` for status `401`
  - the response's body type/format changed from ``/`` to `object`/`` for status `500`
  - added `#/components/schemas/KesExternalAccountInfo, #/components/schemas/RwfExternalAccountInfo, #/components/schemas/TzsExternalAccountInfo, #/components/schemas/ZarExternalAccountInfo, #/components/schemas/ZmwExternalAccountInfo` to the `data/items/oneOf[subschema #1: Incoming Transaction]/allOf[#/components/schemas/Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo` response property `oneOf` list for the response status `200`
  - …93 more
- …earlier changes not shown

[Full history](https://skmtc.dev/lightsparkdev/apis/grid-api/changes/transactions/get.md)

---

[API](https://skmtc.dev/lightsparkdev/apis/grid-api.md) · [All operations](https://skmtc.dev/lightsparkdev/apis/grid-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lightsparkdev/grid-api/revisions/efe0d983985f/schema)
