Skip to main content
GET
/
api
/
v1
/
players
/
{player_id}
/
transactions
List transactions for a player
curl --request GET \
  --url https://payments.winam.cm/api/v1/players/{player_id}/transactions \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "winam_tx_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "reference": "<string>",
      "direction": "<string>",
      "operator": "<string>",
      "amount_xaf": 123,
      "state": "<string>",
      "provider_tx_id": "MTN2025010112345",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "pages": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.winampay.de/llms.txt

Use this file to discover all available pages before exploring further.

Results are ordered by created_at descending. Use page and limit to paginate. Filter by status and direction to narrow results.
FilterExample values
statuspending, succeeded, failed, pending_approval
directiondeposit, withdrawal
The player_id must match the value passed in your original POST /deposits or POST /withdrawals request.

Authorizations

X-API-Key
string
header
required

Path Parameters

player_id
string<uuid>
required

Query Parameters

status
string | null

Filter by state (e.g. pending, succeeded, failed, pending_approval)

direction
string | null

Filter by direction: deposit | withdrawal

page
integer
default:1

Page number (1-based)

Required range: x >= 1
limit
integer
default:20

Items per page (max 100)

Required range: 1 <= x <= 100

Response

Successful Response

items
TransactionListItem · object[]
required
total
integer
required

Total matching transactions (before pagination)

page
integer
required
limit
integer
required
pages
integer
required

Total number of pages