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

# List transactions

`GET /v4/transactions`

Lists all transactions using pagination

## Query parameters

- `limit` integer
- `orderBy` string[]
- `order` 'asc' | 'desc'
- `beforeCursor` string
- `afterCursor` string

## Response `200`

The paginated list of transactions.

- object
  - `metadata` PageMetaDto
    - `total` number, required
    - `beforeCursor` string
    - `afterCursor` string
  - `data` GetTransactionV4ResponseDto[]
    - `id` string, required — The transaction ID
    - `orderId` string — The order ID associated with this transaction
    - `amount` number, required — The amount in cents (negative for debits, positive for credits).
    - `currency` 'mxn' | 'usd', required
    - `type` 'order' | 'fee' | 'order_refund' | 'fee_refund' | 'dispute' | 'payout' | 'unknown', required — The type of transaction
    - `postedAt` string, date-time, required — The time the transaction was posted (UTC timezone)
    - `adjustmentId` string — The order adjustment ID associated with this transaction if applicable
    - `sourceTransactionIds` array[] — For payout transactions, the IDs of source transactions that were paid out
      - unknown[]
        - unknown
    - `feeAmount` number — The fee amount associated with this order transaction (if applicable)
    - `feeTransactionId` string — The transaction ID of the fee associated with this order transaction (if applicable)

---

[API](https://skmtc.net/slopepay/apis/slope-v4-api.md) · [All operations](https://skmtc.net/slopepay/apis/slope-v4-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/slopepay/slope-v4-api/revisions/cbdbc861073b/schema)
