transactions
transactions
Page 7 of 10.
- transactions/145
- transactions/146
- transactions/147
- transactions/148
- transactions/149
- transactions/150
- transactions/151
- transactions/152
- transactions/153
- transactions/154
- transactions/155
- transactions/156
- transactions/157
- transactions/158
- transactions/159
- transactions/160
- transactions/161
- transactions/162
- transactions/163
- transactions/164
- transactions/165
- transactions/166
- transactions/167
- transactions/168
-
#145
#145
Rent payment
-
#146
#146
Interest charge
-
#147
#147
Interest charge
-
#148
#148
Refund credit
-
#149
#149
Interest credit
-
#150
#150
Internal transfer
-
#151
#151
Interest credit
-
#152
#152
Bank transfer out
-
#153
#153
Cash withdrawal
-
#154
#154
Bank transfer in
-
#155
#155
Monthly maintenance fee
-
#156
#156
Interest charge
-
#157
#157
Merchant refund
-
#158
#158
Monthly maintenance fee
-
#159
#159
Check withdrawal
-
#160
#160
Direct deposit
-
#161
#161
Late payment fee
-
#162
#162
ATM fee
-
#163
#163
Account transfer
-
#164
#164
Purchase refund
-
#165
#165
Return credit
-
#166
#166
Cash deposit
-
#167
#167
Payoff transfer
-
#168
#168
Direct deposit
- accountId
- accounts/313
- kind
- payment
- amount
- -4444.2
- currency
- CNY
- description
- Rent payment
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/230
- kind
- interest
- amount
- -51.78
- currency
- AUD
- description
- Interest charge
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/191
- kind
- interest
- amount
- 3855.72
- currency
- CHF
- description
- Interest charge
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/85
- kind
- deposit
- amount
- 4926.75
- currency
- USD
- description
- Refund credit
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/376
- kind
- deposit
- amount
- 7088.79
- currency
- EUR
- description
- Interest credit
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/251
- kind
- transfer
- amount
- -4925.32
- currency
- CHF
- description
- Internal transfer
- status
- failed
- 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": 145,
"accountId": 313,
"kind": "payment",
"amount": -4444.2,
"currency": "CNY",
"description": "Rent payment",
"status": "pending",
"occurredAt": "2025-06-10T22:44:33.278Z",
"createdAt": "2025-06-10T22:45:21.966Z"
},
{
"id": 146,
"accountId": 230,
"kind": "interest",
"amount": -51.78,
"currency": "AUD",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2024-07-19T05:36:52.985Z",
"createdAt": "2024-07-19T05:37:43.762Z"
},
{
"id": 147,
"accountId": 191,
"kind": "interest",
"amount": 3855.72,
"currency": "CHF",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2024-11-23T21:50:24.661Z",
"createdAt": "2024-11-23T21:50:50.876Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=7",
"next": "/api/v1/transactions?page=8",
"prev": "/api/v1/transactions?page=6"
}
}