transactions
transactions
Page 3 of 10.
- transactions/49
- transactions/50
- transactions/51
- transactions/52
- transactions/53
- transactions/54
- transactions/55
- transactions/56
- transactions/57
- transactions/58
- transactions/59
- transactions/60
- transactions/61
- transactions/62
- transactions/63
- transactions/64
- transactions/65
- transactions/66
- transactions/67
- transactions/68
- transactions/69
- transactions/70
- transactions/71
- transactions/72
-
#49
#49
Account transfer
-
#50
#50
Grocery store
-
#51
#51
Loan interest payment
-
#52
#52
Monthly maintenance fee
-
#53
#53
Direct deposit
-
#54
#54
Check withdrawal
-
#55
#55
Loan interest payment
-
#56
#56
Dispute resolved — credit
-
#57
#57
Utility bill payment
-
#58
#58
Overdraft fee
-
#59
#59
Credit card payment
-
#60
#60
Return credit
-
#61
#61
Savings transfer
-
#62
#62
Subscription refund
-
#63
#63
Freelance payment received
-
#64
#64
Bank transfer out
-
#65
#65
Bank transfer out
-
#66
#66
Investment transfer
-
#67
#67
Subscription renewal
-
#68
#68
Wire transfer fee
-
#69
#69
Wire transfer sent
-
#70
#70
Loan interest payment
-
#71
#71
Dividend payment
-
#72
#72
Streaming service
- accountId
- accounts/394
- kind
- transfer
- amount
- 2095.46
- currency
- CHF
- description
- Account transfer
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/261
- kind
- payment
- amount
- -2216.13
- currency
- CNY
- description
- Grocery store
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/357
- kind
- interest
- amount
- 4814.16
- currency
- AUD
- description
- Loan interest payment
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/133
- kind
- fee
- amount
- -2722.94
- currency
- JPY
- description
- Monthly maintenance fee
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/112
- kind
- deposit
- amount
- 4127.46
- currency
- EUR
- description
- Direct deposit
- status
- cancelled
- occurredAt
- createdAt
- accountId
- accounts/149
- kind
- withdrawal
- amount
- -10.8
- currency
- USD
- description
- Check 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": 49,
"accountId": 394,
"kind": "transfer",
"amount": 2095.46,
"currency": "CHF",
"description": "Account transfer",
"status": "pending",
"occurredAt": "2025-07-05T16:44:17.670Z",
"createdAt": "2025-07-05T16:44:31.602Z"
},
{
"id": 50,
"accountId": 261,
"kind": "payment",
"amount": -2216.13,
"currency": "CNY",
"description": "Grocery store",
"status": "completed",
"occurredAt": "2026-02-07T14:28:57.039Z",
"createdAt": "2026-02-07T14:29:46.662Z"
},
{
"id": 51,
"accountId": 357,
"kind": "interest",
"amount": 4814.16,
"currency": "AUD",
"description": "Loan interest payment",
"status": "pending",
"occurredAt": "2024-12-28T20:24:32.929Z",
"createdAt": "2024-12-28T20:24:56.579Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=3",
"next": "/api/v1/transactions?page=4",
"prev": "/api/v1/transactions?page=2"
}
}