transactions
transactions
Page 89 of 105.
Overview
-
#2113
#2113
Payroll deposit
-
#2114
#2114
ATM withdrawal
-
#2115
#2115
Late payment fee
-
#2116
#2116
Online purchase
-
#2117
#2117
Cash withdrawal
-
#2118
#2118
Subscription refund
-
#2119
#2119
Phone bill
-
#2120
#2120
Savings interest
-
#2121
#2121
Wire transfer received
-
#2122
#2122
ATM withdrawal
-
#2123
#2123
Check withdrawal
-
#2124
#2124
ATM fee
-
#2125
#2125
Utility bill payment
-
#2126
#2126
Streaming service
-
#2127
#2127
Wire transfer sent
-
#2128
#2128
Purchase refund
-
#2129
#2129
Wire transfer fee
-
#2130
#2130
Purchase refund
-
#2131
#2131
Cash deposit
-
#2132
#2132
Late payment fee
-
#2133
#2133
Bank transfer in
-
#2134
#2134
Interest credit
-
#2135
#2135
Foreign transaction fee
-
#2136
#2136
ATM withdrawal
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": 2113,
"accountId": 222,
"kind": "deposit",
"amount": 2922.18,
"currency": "CAD",
"description": "Payroll deposit",
"status": "failed",
"occurredAt": "2025-07-28T11:41:00.629Z",
"createdAt": "2025-07-28T11:41:15.654Z"
},
{
"id": 2114,
"accountId": 461,
"kind": "withdrawal",
"amount": -3550.68,
"currency": "JPY",
"description": "ATM withdrawal",
"status": "pending",
"occurredAt": "2025-09-30T05:58:28.828Z",
"createdAt": "2025-09-30T05:58:38.643Z"
},
{
"id": 2115,
"accountId": 418,
"kind": "fee",
"amount": -4072.63,
"currency": "JPY",
"description": "Late payment fee",
"status": "completed",
"occurredAt": "2024-09-03T21:06:45.357Z",
"createdAt": "2024-09-03T21:07:04.289Z"
}
],
"meta": {
"page": 89,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=89&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=90&limit=24",
"prev": "/api/v1/transactions?page=88&limit=24"
}
}