---
title: "List activities"
method: GET
path: "/api/activity"
tags: ["Activity"]
---

# List activities

`GET /api/activity`

Returns a paginated list of merchant activities (incoming payments, payouts, fees, refunds, chargebacks, …), sorted by `occurredAt` descending. Supports filtering by activity type, currency, and date range. When `X-On-Behalf-Of` is set, returns the targeted sub-merchant's activities instead.

## Query parameters

- `page` number
- `limit` number
- `type` 'PAYMENT_IN' | 'PAYOUT' | 'DEPOSIT_IN' | 'PLATFORM_FEE' | 'MARKETPLACE_FEE' | 'REFUND_RECOVERY' | 'RESERVE_HOLD' | 'RESERVE_RELEASE' | 'CHARGEBACK_AMOUNT' | 'CHARGEBACK_FEE' | 'CHARGEBACK_PENALTY'
- `currency` 'EUR' | 'USD'
- `from` string
- `to` string

## Response `200`

- object
  - `data` ActivityDto[]
    - `id` string, required
    - `userId` string, required
    - `type` string, required
    - `amountInCents` number, required
    - `netAmountInCents` number, required
    - `currency` string, required
    - `paymentId` string, nullable
    - `withdrawalId` string, nullable
    - `depositId` string, nullable
    - `merchantObligationId` string, nullable
    - `idempotencyKey` string, nullable
    - `description` string, nullable
    - `metadata` object
    - `occurredAt` string, date-time, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `meta` object
    - `total` number
    - `lastPage` number
    - `currentPage` number
    - `perPage` number
    - `prev` number
    - `next` number

## Other responses

- `401` — Unauthorized - Invalid API key

---

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