transactions / #28
- accountId
- accounts/56
- kind
- transfer
- amount
- -3207.03
- currency
- CNY
- description
- Investment transfer
- status
- completed
- occurredAt
- createdAt
Component variants
Medium
#28
#28
Investment transfer
Small
transactions/28 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/28"
);
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/28"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/28"
)
transaction = res.json() {
"id": 28,
"accountId": 56,
"kind": "transfer",
"amount": -3207.03,
"currency": "CNY",
"description": "Investment transfer",
"status": "completed",
"occurredAt": "2026-04-25T18:57:59.999Z",
"createdAt": "2026-04-25T18:58:19.273Z"
}