transactions
transactions
Page 6 of 10.
- transactions/121
- transactions/122
- transactions/123
- transactions/124
- transactions/125
- transactions/126
- transactions/127
- transactions/128
- transactions/129
- transactions/130
- transactions/131
- transactions/132
- transactions/133
- transactions/134
- transactions/135
- transactions/136
- transactions/137
- transactions/138
- transactions/139
- transactions/140
- transactions/141
- transactions/142
- transactions/143
- transactions/144
-
#121
#121
Account transfer
-
#122
#122
Overdraft fee
-
#123
#123
Cash deposit
-
#124
#124
Insurance premium
-
#125
#125
Phone bill
-
#126
#126
Mortgage payment
-
#127
#127
Loan interest payment
-
#128
#128
Wire transfer sent
-
#129
#129
Overdraft fee
-
#130
#130
Refund credit
-
#131
#131
Wire transfer received
-
#132
#132
Loan payment
-
#133
#133
Utility bill payment
-
#134
#134
Late payment fee
-
#135
#135
Interest charge
-
#136
#136
Bank transfer out
-
#137
#137
Loan interest payment
-
#138
#138
Savings interest
-
#139
#139
Credit card interest
-
#140
#140
Refund credit
-
#141
#141
Return credit
-
#142
#142
Purchase refund
-
#143
#143
Credit card payment
-
#144
#144
Internal transfer
- accountId
- accounts/324
- kind
- transfer
- amount
- 2630.71
- currency
- CHF
- description
- Account transfer
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/280
- kind
- fee
- amount
- -1289.13
- currency
- GBP
- description
- Overdraft fee
- status
- failed
- occurredAt
- createdAt
- accountId
- accounts/31
- kind
- deposit
- amount
- 3133.41
- currency
- AUD
- description
- Cash deposit
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/346
- kind
- payment
- amount
- -1731.14
- currency
- CNY
- description
- Insurance premium
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/192
- kind
- payment
- amount
- -4713.76
- currency
- USD
- description
- Phone bill
- status
- cancelled
- occurredAt
- createdAt
- accountId
- accounts/406
- kind
- payment
- amount
- -1255.32
- currency
- GBP
- description
- Mortgage payment
- 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": 121,
"accountId": 324,
"kind": "transfer",
"amount": 2630.71,
"currency": "CHF",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-05-27T20:37:53.854Z",
"createdAt": "2025-05-27T20:37:56.793Z"
},
{
"id": 122,
"accountId": 280,
"kind": "fee",
"amount": -1289.13,
"currency": "GBP",
"description": "Overdraft fee",
"status": "failed",
"occurredAt": "2025-10-30T06:02:26.224Z",
"createdAt": "2025-10-30T06:02:43.827Z"
},
{
"id": 123,
"accountId": 31,
"kind": "deposit",
"amount": 3133.41,
"currency": "AUD",
"description": "Cash deposit",
"status": "completed",
"occurredAt": "2026-02-20T06:40:01.429Z",
"createdAt": "2026-02-20T06:40:29.416Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=6",
"next": "/api/v1/transactions?page=7",
"prev": "/api/v1/transactions?page=5"
}
}