transactions / #126
- accountId
- accounts/406
- kind
- payment
- amount
- -1255.32
- currency
- GBP
- description
- Mortgage payment
- status
- completed
- occurredAt
- createdAt
Component variants
Medium
#126
#126
Mortgage payment
Small
transactions/126 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/126" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/126"
);
const transaction = await res.json();import type { Transaction } from "https://example-data.com/types/transactions.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/transactions/126"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/126"
)
transaction = res.json() {
"id": 126,
"accountId": 406,
"kind": "payment",
"amount": -1255.32,
"currency": "GBP",
"description": "Mortgage payment",
"status": "completed",
"occurredAt": "2025-12-23T02:16:55.921Z",
"createdAt": "2025-12-23T02:17:09.380Z"
}