transactions / #52
- accountId
- accounts/133
- kind
- fee
- amount
- -2722.94
- currency
- JPY
- description
- Monthly maintenance fee
- status
- completed
- occurredAt
- createdAt
Component variants
Small
transactions/52 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/52"
);
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/52"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/52"
)
transaction = res.json() {
"id": 52,
"accountId": 133,
"kind": "fee",
"amount": -2722.94,
"currency": "JPY",
"description": "Monthly maintenance fee",
"status": "completed",
"occurredAt": "2026-01-01T14:48:25.664Z",
"createdAt": "2026-01-01T14:48:28.718Z"
}