transactions / #239
- accountId
- accounts/243
- kind
- payment
- amount
- -3167.96
- currency
- CAD
- description
- Utility bill payment
- status
- completed
- occurredAt
- createdAt
Component variants
Small
transactions/239 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/239"
);
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/239"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/239"
)
transaction = res.json() {
"id": 239,
"accountId": 243,
"kind": "payment",
"amount": -3167.96,
"currency": "CAD",
"description": "Utility bill payment",
"status": "completed",
"occurredAt": "2026-01-08T20:30:37.397Z",
"createdAt": "2026-01-08T20:30:45.045Z"
}