transactions / #64
- accountId
- accounts/63
- kind
- withdrawal
- amount
- -4128.57
- currency
- USD
- description
- Bank transfer out
- status
- pending
- occurredAt
- createdAt
Component variants
Medium
#64
#64
Bank transfer out
Small
transactions/64 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/64"
);
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/64"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/64"
)
transaction = res.json() {
"id": 64,
"accountId": 63,
"kind": "withdrawal",
"amount": -4128.57,
"currency": "USD",
"description": "Bank transfer out",
"status": "pending",
"occurredAt": "2025-08-14T11:11:09.405Z",
"createdAt": "2025-08-14T11:11:21.402Z"
}