transactions
transactions
Page 45 of 105.
Overview
-
#1057
#1057
Bank transfer out
-
#1058
#1058
Subscription refund
-
#1059
#1059
Subscription refund
-
#1060
#1060
Interest charge
-
#1061
#1061
Savings interest
-
#1062
#1062
Wire transfer received
-
#1063
#1063
Account service fee
-
#1064
#1064
Interest credit
-
#1065
#1065
Merchant refund
-
#1066
#1066
Savings interest
-
#1067
#1067
Streaming service
-
#1068
#1068
Bank transfer out
-
#1069
#1069
Interest charge
-
#1070
#1070
Interest credit
-
#1071
#1071
Interest credit
-
#1072
#1072
Return credit
-
#1073
#1073
Loan payment
-
#1074
#1074
Overdraft fee
-
#1075
#1075
Loan interest payment
-
#1076
#1076
Online purchase
-
#1077
#1077
Loan payment
-
#1078
#1078
Loan payment
-
#1079
#1079
Dividend payment
-
#1080
#1080
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": 1057,
"accountId": 207,
"kind": "withdrawal",
"amount": -228.72,
"currency": "CAD",
"description": "Bank transfer out",
"status": "pending",
"occurredAt": "2025-06-08T08:59:10.226Z",
"createdAt": "2025-06-08T08:59:28.748Z"
},
{
"id": 1058,
"accountId": 220,
"kind": "refund",
"amount": 5000.35,
"currency": "GBP",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2025-01-07T10:47:07.058Z",
"createdAt": "2025-01-07T10:48:04.057Z"
},
{
"id": 1059,
"accountId": 447,
"kind": "refund",
"amount": 5099.79,
"currency": "USD",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2026-02-19T00:43:21.718Z",
"createdAt": "2026-02-19T00:43:33.444Z"
}
],
"meta": {
"page": 45,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=45&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=46&limit=24",
"prev": "/api/v1/transactions?page=44&limit=24"
}
}