---
title: "Fetching Transactions"
method: GET
path: "/charges"
tags: ["Transactions"]
---

# Fetching Transactions

`GET /charges`

Fetches all transactions for a given business<br><br>

## Query parameters

- `page` integer
- `per_page` integer

## Headers

- `Content-Type` string
- `Authorization` string

## Response `200`

Successful response

- object
  - `data` object[]
    - `id` string
    - `status` string
    - `amount` number
    - `amount_currency` string
    - `refund_amount` string
    - `refund_status` string
    - `billing_descriptor` string
    - `custom_data` object
    - `created_date` string
    - `subscription_id` string — Value is set for subscriptions only. For one-time payments, this will be null.
    - `next_payment_date` string — Value is set for subscriptions only. For one-time payments, this will be null.
    - `settlement_amount` number
    - `settlement_currency` string
    - `settlement_date` string
    - `customer_details` object
      - `name` string
      - `email` string
      - `phone_number` string
      - `comment` string
    - `payment_method` object
      - `type` string
      - `card_holder_name` string
      - `card_last4` string
      - `origin` string
    - `settlement_fee` string
    - `settlement_vat` string
    - `payment_link_id` string
    - `payment_link_url` string
    - `error_code` string
    - `error_message` string
  - `pagination_meta` object
    - `page` number
    - `per_page` number
    - `total_pages` number
    - `next_page` number
    - `prev_page` number
    - `from` number
    - `to` number
    - `total_count` number

## Other responses

- `403` — Unauthorised
- `500` — Unexpected error

---

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