transactions
transactions
Page 42 of 105.
Overview
-
#985
#985
Wire transfer received
-
#986
#986
Dispute resolved — credit
-
#987
#987
Savings transfer
-
#988
#988
Return credit
-
#989
#989
Investment transfer
-
#990
#990
Late payment fee
-
#991
#991
Account transfer
-
#992
#992
ATM fee
-
#993
#993
Subscription refund
-
#994
#994
Credit card interest
-
#995
#995
Merchant refund
-
#996
#996
Overdraft fee
-
#997
#997
Bank transfer out
-
#998
#998
Freelance payment received
-
#999
#999
Overdraft fee
-
#1000
#1000
Foreign transaction fee
-
#1001
#1001
Loan interest payment
-
#1002
#1002
Foreign transaction fee
-
#1003
#1003
Bank transfer out
-
#1004
#1004
Foreign transaction fee
-
#1005
#1005
Mortgage payment
-
#1006
#1006
Return credit
-
#1007
#1007
Credit card interest
-
#1008
#1008
Purchase refund
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": 985,
"accountId": 228,
"kind": "deposit",
"amount": 6901.69,
"currency": "CHF",
"description": "Wire transfer received",
"status": "completed",
"occurredAt": "2025-12-16T12:17:09.656Z",
"createdAt": "2025-12-16T12:17:14.270Z"
},
{
"id": 986,
"accountId": 470,
"kind": "refund",
"amount": 3050.65,
"currency": "CAD",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2024-05-28T17:41:01.057Z",
"createdAt": "2024-05-28T17:41:38.915Z"
},
{
"id": 987,
"accountId": 353,
"kind": "transfer",
"amount": -1009.58,
"currency": "GBP",
"description": "Savings transfer",
"status": "completed",
"occurredAt": "2024-07-24T05:58:47.713Z",
"createdAt": "2024-07-24T05:59:28.373Z"
}
],
"meta": {
"page": 42,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=42&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=43&limit=24",
"prev": "/api/v1/transactions?page=41&limit=24"
}
}