transactions / #14
- accountId
- accounts/322
- kind
- deposit
- amount
- 9992.49
- currency
- JPY
- description
- Bank transfer in
- status
- cancelled
- occurredAt
- createdAt
Component variants
Medium
#14
#14
Bank transfer in
Small
transactions/14 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/14"
);
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/14"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/14"
)
transaction = res.json() {
"id": 14,
"accountId": 322,
"kind": "deposit",
"amount": 9992.49,
"currency": "JPY",
"description": "Bank transfer in",
"status": "cancelled",
"occurredAt": "2026-01-27T04:48:51.334Z",
"createdAt": "2026-01-27T04:49:19.597Z"
}