transactions
transactions
Page 4 of 10.
- transactions/73
- transactions/74
- transactions/75
- transactions/76
- transactions/77
- transactions/78
- transactions/79
- transactions/80
- transactions/81
- transactions/82
- transactions/83
- transactions/84
- transactions/85
- transactions/86
- transactions/87
- transactions/88
- transactions/89
- transactions/90
- transactions/91
- transactions/92
- transactions/93
- transactions/94
- transactions/95
- transactions/96
-
#73
#73
Dividend payment
-
#74
#74
Return credit
-
#75
#75
Savings interest
-
#76
#76
Account transfer
-
#77
#77
Streaming service
-
#78
#78
Cash withdrawal
-
#79
#79
Savings interest
-
#80
#80
Savings interest
-
#81
#81
Foreign transaction fee
-
#82
#82
Utility bill payment
-
#83
#83
Internal transfer
-
#84
#84
Dividend payment
-
#85
#85
Savings interest
-
#86
#86
Savings interest
-
#87
#87
Rent payment
-
#88
#88
Return credit
-
#89
#89
Interest charge
-
#90
#90
Direct deposit
-
#91
#91
Monthly maintenance fee
-
#92
#92
Wire transfer sent
-
#93
#93
Interest credit
-
#94
#94
Merchant refund
-
#95
#95
Insurance premium
-
#96
#96
Refund credit
- accountId
- accounts/108
- kind
- deposit
- amount
- 8624.5
- currency
- CNY
- description
- Dividend payment
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/5
- kind
- refund
- amount
- 5570.51
- currency
- CHF
- description
- Return credit
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/137
- kind
- interest
- amount
- 9312.01
- currency
- AUD
- description
- Savings interest
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/262
- kind
- transfer
- amount
- 3606.03
- currency
- CHF
- description
- Account transfer
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/362
- kind
- payment
- amount
- -798.85
- currency
- GBP
- description
- Streaming service
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/1
- kind
- withdrawal
- amount
- -843.36
- currency
- EUR
- description
- Cash withdrawal
- status
- completed
- occurredAt
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/transactions?limit=25"const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = await res.json();import type { Transaction, ListEnvelope } from "https://example-data.com/types/transactions.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Transaction>;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 73,
"accountId": 108,
"kind": "deposit",
"amount": 8624.5,
"currency": "CNY",
"description": "Dividend payment",
"status": "pending",
"occurredAt": "2025-06-11T13:18:59.082Z",
"createdAt": "2025-06-11T13:19:05.013Z"
},
{
"id": 74,
"accountId": 5,
"kind": "refund",
"amount": 5570.51,
"currency": "CHF",
"description": "Return credit",
"status": "completed",
"occurredAt": "2025-11-10T22:57:28.367Z",
"createdAt": "2025-11-10T22:57:41.835Z"
},
{
"id": 75,
"accountId": 137,
"kind": "interest",
"amount": 9312.01,
"currency": "AUD",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2026-03-02T19:23:16.719Z",
"createdAt": "2026-03-02T19:23:50.473Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=4",
"next": "/api/v1/transactions?page=5",
"prev": "/api/v1/transactions?page=3"
}
}