transactions
transactions
Page 8 of 105.
Overview
-
#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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/transactions.d.ts https://example-data.com/types/transactions.d.ts
import type { Transaction, ListEnvelope } from "./types/transactions";
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Transaction>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=9&limit=24",
"prev": "/api/v1/transactions?page=7&limit=24"
}
}