transactions
transactions
Page 48 of 105.
Overview
-
#1129
#1129
Cash withdrawal
-
#1130
#1130
Streaming service
-
#1131
#1131
Late payment fee
-
#1132
#1132
Bank transfer out
-
#1133
#1133
Purchase refund
-
#1134
#1134
Internal transfer
-
#1135
#1135
Subscription refund
-
#1136
#1136
Dispute resolved — credit
-
#1137
#1137
ATM withdrawal
-
#1138
#1138
Purchase refund
-
#1139
#1139
Streaming service
-
#1140
#1140
Wire transfer sent
-
#1141
#1141
Dispute resolved — credit
-
#1142
#1142
Purchase refund
-
#1143
#1143
Merchant refund
-
#1144
#1144
Merchant refund
-
#1145
#1145
Account transfer
-
#1146
#1146
Bank transfer out
-
#1147
#1147
Bank transfer out
-
#1148
#1148
Account service fee
-
#1149
#1149
Merchant refund
-
#1150
#1150
Investment transfer
-
#1151
#1151
Freelance payment received
-
#1152
#1152
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": 1129,
"accountId": 326,
"kind": "withdrawal",
"amount": -1339.05,
"currency": "EUR",
"description": "Cash withdrawal",
"status": "completed",
"occurredAt": "2025-08-24T15:18:13.133Z",
"createdAt": "2025-08-24T15:19:12.663Z"
},
{
"id": 1130,
"accountId": 332,
"kind": "payment",
"amount": -918.22,
"currency": "CNY",
"description": "Streaming service",
"status": "completed",
"occurredAt": "2024-07-22T01:00:07.212Z",
"createdAt": "2024-07-22T01:00:58.972Z"
},
{
"id": 1131,
"accountId": 180,
"kind": "fee",
"amount": -1113.91,
"currency": "GBP",
"description": "Late payment fee",
"status": "completed",
"occurredAt": "2024-10-04T02:38:31.088Z",
"createdAt": "2024-10-04T02:38:46.278Z"
}
],
"meta": {
"page": 48,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=48&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=49&limit=24",
"prev": "/api/v1/transactions?page=47&limit=24"
}
}