transactions
transactions
Page 46 of 105.
Overview
-
#1081
#1081
Savings interest
-
#1082
#1082
Freelance payment received
-
#1083
#1083
ATM withdrawal
-
#1084
#1084
Direct deposit
-
#1085
#1085
Late payment fee
-
#1086
#1086
Merchant refund
-
#1087
#1087
Account service fee
-
#1088
#1088
Savings interest
-
#1089
#1089
Mortgage payment
-
#1090
#1090
Cash withdrawal
-
#1091
#1091
Foreign transaction fee
-
#1092
#1092
Savings interest
-
#1093
#1093
Subscription renewal
-
#1094
#1094
Late payment fee
-
#1095
#1095
Internal transfer
-
#1096
#1096
Freelance payment received
-
#1097
#1097
Foreign transaction fee
-
#1098
#1098
ATM fee
-
#1099
#1099
Wire transfer fee
-
#1100
#1100
Credit card interest
-
#1101
#1101
Interest credit
-
#1102
#1102
Return credit
-
#1103
#1103
Purchase refund
-
#1104
#1104
Investment transfer
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": 1081,
"accountId": 429,
"kind": "interest",
"amount": -377.95,
"currency": "GBP",
"description": "Savings interest",
"status": "pending",
"occurredAt": "2024-06-01T18:36:39.987Z",
"createdAt": "2024-06-01T18:37:29.272Z"
},
{
"id": 1082,
"accountId": 1,
"kind": "deposit",
"amount": 7816.33,
"currency": "EUR",
"description": "Freelance payment received",
"status": "completed",
"occurredAt": "2025-03-19T16:29:20.664Z",
"createdAt": "2025-03-19T16:30:01.043Z"
},
{
"id": 1083,
"accountId": 155,
"kind": "withdrawal",
"amount": -4133.8,
"currency": "USD",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2024-06-28T22:47:51.545Z",
"createdAt": "2024-06-28T22:47:59.656Z"
}
],
"meta": {
"page": 46,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=46&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=47&limit=24",
"prev": "/api/v1/transactions?page=45&limit=24"
}
}