transactions / #110
- accountId
- accounts/221
- kind
- transfer
- amount
- 4574.87
- currency
- CAD
- description
- Investment transfer
- status
- completed
- occurredAt
- createdAt
Component variants
Small
transactions/110 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/110"
);
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/110"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/110"
)
transaction = res.json() {
"id": 110,
"accountId": 221,
"kind": "transfer",
"amount": 4574.87,
"currency": "CAD",
"description": "Investment transfer",
"status": "completed",
"occurredAt": "2024-08-26T08:31:12.638Z",
"createdAt": "2024-08-26T08:31:44.580Z"
}