transactions
transactions
Page 32 of 105.
Overview
-
#745
#745
Rent payment
-
#746
#746
Merchant refund
-
#747
#747
Loan payment
-
#748
#748
Credit card interest
-
#749
#749
Account service fee
-
#750
#750
Refund credit
-
#751
#751
Loan payment
-
#752
#752
ATM withdrawal
-
#753
#753
Savings interest
-
#754
#754
Internal transfer
-
#755
#755
Interest charge
-
#756
#756
Interest charge
-
#757
#757
Interest charge
-
#758
#758
Monthly maintenance fee
-
#759
#759
ATM withdrawal
-
#760
#760
Bank transfer in
-
#761
#761
Monthly maintenance fee
-
#762
#762
Savings transfer
-
#763
#763
Interest charge
-
#764
#764
Investment transfer
-
#765
#765
Bank transfer in
-
#766
#766
Online purchase
-
#767
#767
Wire transfer sent
-
#768
#768
Rent payment
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": 745,
"accountId": 470,
"kind": "payment",
"amount": -549.62,
"currency": "CAD",
"description": "Rent payment",
"status": "pending",
"occurredAt": "2025-01-11T02:00:48.294Z",
"createdAt": "2025-01-11T02:00:56.495Z"
},
{
"id": 746,
"accountId": 192,
"kind": "refund",
"amount": 3695.79,
"currency": "USD",
"description": "Merchant refund",
"status": "completed",
"occurredAt": "2025-01-25T03:21:09.492Z",
"createdAt": "2025-01-25T03:21:27.980Z"
},
{
"id": 747,
"accountId": 49,
"kind": "payment",
"amount": -3609.78,
"currency": "USD",
"description": "Loan payment",
"status": "completed",
"occurredAt": "2024-08-11T03:30:39.441Z",
"createdAt": "2024-08-11T03:31:18.795Z"
}
],
"meta": {
"page": 32,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=32&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=33&limit=24",
"prev": "/api/v1/transactions?page=31&limit=24"
}
}