transactions
transactions
Page 43 of 105.
Overview
-
#1009
#1009
Savings transfer
-
#1010
#1010
Phone bill
-
#1011
#1011
Return credit
-
#1012
#1012
Bank transfer out
-
#1013
#1013
Dividend payment
-
#1014
#1014
Cash deposit
-
#1015
#1015
Bank transfer in
-
#1016
#1016
Purchase refund
-
#1017
#1017
ATM withdrawal
-
#1018
#1018
Credit card interest
-
#1019
#1019
Late payment fee
-
#1020
#1020
Online purchase
-
#1021
#1021
Restaurant charge
-
#1022
#1022
Cash deposit
-
#1023
#1023
Freelance payment received
-
#1024
#1024
Dispute resolved — credit
-
#1025
#1025
Credit card interest
-
#1026
#1026
Investment transfer
-
#1027
#1027
Account transfer
-
#1028
#1028
Check withdrawal
-
#1029
#1029
Purchase refund
-
#1030
#1030
Online purchase
-
#1031
#1031
Credit card payment
-
#1032
#1032
ATM 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": 1009,
"accountId": 134,
"kind": "transfer",
"amount": -1502.19,
"currency": "GBP",
"description": "Savings transfer",
"status": "completed",
"occurredAt": "2024-12-21T15:14:29.291Z",
"createdAt": "2024-12-21T15:15:28.740Z"
},
{
"id": 1010,
"accountId": 232,
"kind": "payment",
"amount": -4067.36,
"currency": "EUR",
"description": "Phone bill",
"status": "completed",
"occurredAt": "2025-08-18T20:38:14.902Z",
"createdAt": "2025-08-18T20:38:21.495Z"
},
{
"id": 1011,
"accountId": 487,
"kind": "refund",
"amount": 9542.92,
"currency": "CNY",
"description": "Return credit",
"status": "completed",
"occurredAt": "2025-02-04T16:10:51.214Z",
"createdAt": "2025-02-04T16:11:29.036Z"
}
],
"meta": {
"page": 43,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=43&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=44&limit=24",
"prev": "/api/v1/transactions?page=42&limit=24"
}
}