transactions
transactions
Page 40 of 105.
Overview
-
#937
#937
Bank transfer out
-
#938
#938
Subscription refund
-
#939
#939
Rent payment
-
#940
#940
Wire transfer fee
-
#941
#941
Bank transfer out
-
#942
#942
ATM fee
-
#943
#943
Internal transfer
-
#944
#944
ATM withdrawal
-
#945
#945
Account service fee
-
#946
#946
Merchant refund
-
#947
#947
Wire transfer sent
-
#948
#948
Refund credit
-
#949
#949
Check withdrawal
-
#950
#950
Payoff transfer
-
#951
#951
Savings interest
-
#952
#952
Savings interest
-
#953
#953
Wire transfer sent
-
#954
#954
Interest credit
-
#955
#955
Streaming service
-
#956
#956
Account transfer
-
#957
#957
Interest charge
-
#958
#958
Return credit
-
#959
#959
Cash deposit
-
#960
#960
Foreign transaction fee
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": 937,
"accountId": 218,
"kind": "withdrawal",
"amount": -2960.72,
"currency": "JPY",
"description": "Bank transfer out",
"status": "cancelled",
"occurredAt": "2024-11-11T15:35:02.099Z",
"createdAt": "2024-11-11T15:35:06.666Z"
},
{
"id": 938,
"accountId": 208,
"kind": "refund",
"amount": 3869.39,
"currency": "CNY",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2025-02-27T06:18:21.478Z",
"createdAt": "2025-02-27T06:18:36.631Z"
},
{
"id": 939,
"accountId": 373,
"kind": "payment",
"amount": -3001.41,
"currency": "JPY",
"description": "Rent payment",
"status": "completed",
"occurredAt": "2025-12-25T05:11:48.408Z",
"createdAt": "2025-12-25T05:12:13.467Z"
}
],
"meta": {
"page": 40,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=40&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=41&limit=24",
"prev": "/api/v1/transactions?page=39&limit=24"
}
}