transactions
transactions
Page 87 of 105.
Overview
-
#2065
#2065
Merchant refund
-
#2066
#2066
Dispute resolved — credit
-
#2067
#2067
Wire transfer fee
-
#2068
#2068
Subscription refund
-
#2069
#2069
Purchase refund
-
#2070
#2070
Return credit
-
#2071
#2071
Payroll deposit
-
#2072
#2072
Refund credit
-
#2073
#2073
Credit card payment
-
#2074
#2074
Phone bill
-
#2075
#2075
Monthly maintenance fee
-
#2076
#2076
Restaurant charge
-
#2077
#2077
Monthly maintenance fee
-
#2078
#2078
Wire transfer received
-
#2079
#2079
Cash withdrawal
-
#2080
#2080
Return credit
-
#2081
#2081
Loan payment
-
#2082
#2082
Subscription refund
-
#2083
#2083
Investment transfer
-
#2084
#2084
Streaming service
-
#2085
#2085
Savings interest
-
#2086
#2086
Dispute resolved — credit
-
#2087
#2087
Monthly maintenance fee
-
#2088
#2088
Check 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": 2065,
"accountId": 365,
"kind": "refund",
"amount": 5299.58,
"currency": "CAD",
"description": "Merchant refund",
"status": "cancelled",
"occurredAt": "2026-01-26T17:22:30.085Z",
"createdAt": "2026-01-26T17:23:27.518Z"
},
{
"id": 2066,
"accountId": 148,
"kind": "refund",
"amount": 7804.98,
"currency": "CAD",
"description": "Dispute resolved — credit",
"status": "pending",
"occurredAt": "2024-09-22T09:24:48.787Z",
"createdAt": "2024-09-22T09:25:18.462Z"
},
{
"id": 2067,
"accountId": 148,
"kind": "fee",
"amount": -152.94,
"currency": "CAD",
"description": "Wire transfer fee",
"status": "completed",
"occurredAt": "2024-07-25T15:09:57.657Z",
"createdAt": "2024-07-25T15:10:44.993Z"
}
],
"meta": {
"page": 87,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=87&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=88&limit=24",
"prev": "/api/v1/transactions?page=86&limit=24"
}
}