transactions
transactions
Page 79 of 105.
Overview
-
#1873
#1873
Mortgage payment
-
#1874
#1874
Monthly maintenance fee
-
#1875
#1875
Loan interest payment
-
#1876
#1876
Loan interest payment
-
#1877
#1877
Cash deposit
-
#1878
#1878
Direct deposit
-
#1879
#1879
Merchant refund
-
#1880
#1880
Refund credit
-
#1881
#1881
Streaming service
-
#1882
#1882
Merchant refund
-
#1883
#1883
Subscription refund
-
#1884
#1884
Savings interest
-
#1885
#1885
Overdraft fee
-
#1886
#1886
Loan interest payment
-
#1887
#1887
Dividend payment
-
#1888
#1888
Cash withdrawal
-
#1889
#1889
Foreign transaction fee
-
#1890
#1890
Interest credit
-
#1891
#1891
Check withdrawal
-
#1892
#1892
Investment transfer
-
#1893
#1893
Cash withdrawal
-
#1894
#1894
Credit card payment
-
#1895
#1895
Foreign transaction fee
-
#1896
#1896
Subscription renewal
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": 1873,
"accountId": 34,
"kind": "payment",
"amount": -252.39,
"currency": "CHF",
"description": "Mortgage payment",
"status": "completed",
"occurredAt": "2024-09-26T12:35:43.061Z",
"createdAt": "2024-09-26T12:36:01.433Z"
},
{
"id": 1874,
"accountId": 24,
"kind": "fee",
"amount": -781.15,
"currency": "GBP",
"description": "Monthly maintenance fee",
"status": "completed",
"occurredAt": "2024-11-23T10:58:55.953Z",
"createdAt": "2024-11-23T10:59:44.861Z"
},
{
"id": 1875,
"accountId": 262,
"kind": "interest",
"amount": -199.91,
"currency": "CHF",
"description": "Loan interest payment",
"status": "pending",
"occurredAt": "2024-06-25T07:40:29.122Z",
"createdAt": "2024-06-25T07:40:47.124Z"
}
],
"meta": {
"page": 79,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=79&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=80&limit=24",
"prev": "/api/v1/transactions?page=78&limit=24"
}
}