---
title: "Get Payout Transactions by ID"
method: GET
path: "/v1/payouts/{id}/transactions"
---

# Get Payout Transactions by ID

`GET /v1/payouts/{id}/transactions`

Retrieve all transactions (payments, refunds, disputes, etc) associated with a specific payout

## Path parameters

- `id` string, required

## Query parameters

- `limit` integer
- `after` string
- `before` string

## Response `200`

Successful response

- object
  - `pagination` object
    - `next_cursor` string — Cursor for fetching next page of results
    - `prev_cursor` string — Cursor for fetching previous page of results
  - `data` object[] — List of transactions (refunds, payments, disputes)
    - `id` string — The transaction ID
    - `type` 'payment' | 'refund' | 'dispute' | 'adjustment' | 'split_payment' | 'split_refund' — The type of transaction
    - `attributes` object
      - `amount` integer — Transaction amount
      - `balance_transaction_id` string — ID of the associated balance transaction
      - `created_at` integer — Unix timestamp when the transaction was created
      - `currency` string — Currency code
      - `description` string — Description of the transaction
      - `fee` integer — Transaction fee (payments only)
      - `foreign_fee` integer — Foreign transaction fee (payments only)
      - `dispute_fee` integer — Dispute fee (disputes only)
      - `livemode` boolean — Whether the transaction is in live mode
      - `net_amount` integer — Net transaction amount after fees
      - `organization_id` string — Organization ID associated with the transaction
      - `payout_id` string — The payout ID associated with this transaction
      - `paid_at` integer — Unix timestamp when the payment was completed (payments only)
      - `tax_amount` integer — Tax amount (payments only)
      - `digital_withholding_vat_amount` integer — Digital withholding VAT amount (payments only)
      - `transaction_at` integer — Unix timestamp of the transaction
      - `updated_at` integer — Unix timestamp when the transaction was last updated

---

[API](https://skmtc.net/paymongo/apis/paymongo-api.md) · [All operations](https://skmtc.net/paymongo/apis/paymongo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paymongo/paymongo-api/versions/c18f9a027b2c/schema)
