transactions
transactions
Page 8 of 10.
- transactions/169
- transactions/170
- transactions/171
- transactions/172
- transactions/173
- transactions/174
- transactions/175
- transactions/176
- transactions/177
- transactions/178
- transactions/179
- transactions/180
- transactions/181
- transactions/182
- transactions/183
- transactions/184
- transactions/185
- transactions/186
- transactions/187
- transactions/188
- transactions/189
- transactions/190
- transactions/191
- transactions/192
-
#169
#169
Loan interest payment
-
#170
#170
ATM withdrawal
-
#171
#171
Wire transfer sent
-
#172
#172
Mortgage payment
-
#173
#173
Freelance payment received
-
#174
#174
Streaming service
-
#175
#175
Late payment fee
-
#176
#176
Bank transfer in
-
#177
#177
Bank transfer out
-
#178
#178
Bank transfer in
-
#179
#179
Insurance premium
-
#180
#180
Check withdrawal
-
#181
#181
Savings transfer
-
#182
#182
Cash withdrawal
-
#183
#183
Phone bill
-
#184
#184
Subscription refund
-
#185
#185
Loan interest payment
-
#186
#186
Foreign transaction fee
-
#187
#187
Investment transfer
-
#188
#188
Bank transfer in
-
#189
#189
Insurance premium
-
#190
#190
Bank transfer in
-
#191
#191
Wire transfer sent
-
#192
#192
Dividend payment
- accountId
- accounts/166
- kind
- interest
- amount
- 1870.9
- currency
- USD
- description
- Loan interest payment
- status
- failed
- occurredAt
- createdAt
- accountId
- accounts/107
- kind
- withdrawal
- amount
- -1923.19
- currency
- EUR
- description
- ATM withdrawal
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/269
- kind
- withdrawal
- amount
- -2785.44
- currency
- EUR
- description
- Wire transfer sent
- status
- failed
- occurredAt
- createdAt
- accountId
- accounts/367
- kind
- payment
- amount
- -2026.12
- currency
- CHF
- description
- Mortgage payment
- status
- cancelled
- occurredAt
- createdAt
- accountId
- accounts/107
- kind
- deposit
- amount
- 8734.49
- currency
- EUR
- description
- Freelance payment received
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/313
- kind
- payment
- amount
- -4866.96
- currency
- CNY
- description
- Streaming service
- 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": 169,
"accountId": 166,
"kind": "interest",
"amount": 1870.9,
"currency": "USD",
"description": "Loan interest payment",
"status": "failed",
"occurredAt": "2024-05-31T09:56:49.844Z",
"createdAt": "2024-05-31T09:57:18.012Z"
},
{
"id": 170,
"accountId": 107,
"kind": "withdrawal",
"amount": -1923.19,
"currency": "EUR",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2024-08-13T07:22:15.091Z",
"createdAt": "2024-08-13T07:22:25.597Z"
},
{
"id": 171,
"accountId": 269,
"kind": "withdrawal",
"amount": -2785.44,
"currency": "EUR",
"description": "Wire transfer sent",
"status": "failed",
"occurredAt": "2025-01-12T01:13:58.953Z",
"createdAt": "2025-01-12T01:14:52.476Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=8",
"next": "/api/v1/transactions?page=9",
"prev": "/api/v1/transactions?page=7"
}
}