---
title: "Trybe Payments balance report"
method: GET
path: "/shop/reports/trybe-payments-balance"
tags: ["Reports"]
---

# Trybe Payments balance report

`GET /shop/reports/trybe-payments-balance`

A running ledger of Trybe Payments (Adyen balance platform) transfers — payments,
refunds, and payouts — for the given site over the requested date range. Use this to
reconcile the merchant's balance held with Trybe Payments. Defaults to the current
calendar month if `date_from` / `date_to` are omitted.

## Query parameters

- `site_id` string, uuid, required
- `date_from` string, date
- `date_to` string, date
- `page` integer

## Response `200`

The balance report was successfully generated.

- TrybePaymentsBalanceTransfer[] — A paginated array of Trybe Payments (Adyen balance platform) transfers in the requested period. Each entry represents a single balance movement — a payment in, a refund out, or a payout. Money values are integers in minor units. The `meta` block accompanying the response carries the opening balance, closing balance, currency, and standard Laravel pagination fields.
  - `id` string, required — The Adyen transfer ID.
  - `time` string, date-time, required
  - `event` string, required — The Adyen event name that produced this balance movement.
  - `type` string, required
  - `payment_id` string, object-id, nullable
  - `refund_id` string, object-id, nullable
  - `payable_id` string, object-id, nullable
  - `payable_type` string, nullable — The downcased class basename of the payable model (e.g. `basket`, `membership`).
  - `order_ref` string, nullable
  - `amount` integer, required — The transfer amount, in minor units. Positive for credits, negative for debits.
  - `balance` integer, required — The running balance after this transfer, in minor units.

## Other responses

- `400` — The request failed.

---

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