arrow-right-arrow-leftGet User's Transactions

GET /users/{user_id}/transactions

Overview

Retrieves the list of financial transactions for a specific user.

This endpoint returns all payment-related records—such as purchases, top-ups, and refunds—associated with the specified user_id.

Typical use cases

  • Viewing a user’s payment and refund history

  • Providing detailed transaction statements

  • Performing settlement or analysis on a per-user basis

Name
Value

Content-Type

application/json

Authorization (API Key)

Bearer <API Key>

Path

Name
Type
Description

user_id

string

User identifier (user_id). Optional on create — if not provided, a system-generated ID will be used More description

Response


Attributes

Attribute
Type
Description

amount

number

The payment amount in cents.

(e.g. 1700 represents $17.00 USD )

currency

string

ISO 4217 currency code (e.g., usd, krw) — defines how to interpret the amount value.

payment_type

string

Indicates the nature of the transaction (e.g., paid, refunded, canceled).

transaction_fee

Object

Breakdown of fees applied to the transaction — includes klaim_fee, stripe_fee, and their total_fee (all values in cents).

starting_after

Object

A cursor to use in pagination. Show child attributes

Last updated