transactions / #214
- accountId
- accounts/490
- kind
- transfer
- amount
- 4976.31
- currency
- CAD
- description
- Internal transfer
- status
- completed
- occurredAt
- createdAt
Component variants
Medium
#214
#214
Internal transfer
Small
transactions/214 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/214"
);
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/214"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/214"
)
transaction = res.json() {
"id": 214,
"accountId": 490,
"kind": "transfer",
"amount": 4976.31,
"currency": "CAD",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2026-05-12T02:23:57.842Z",
"createdAt": "2026-05-12T02:24:48.776Z"
}