transactions / #43
- accountId
- accounts/202
- kind
- transfer
- amount
- 4254.69
- currency
- USD
- description
- Payoff transfer
- status
- pending
- occurredAt
- createdAt
Component variants
Medium
#43
#43
Payoff transfer
Small
transactions/43 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/43"
);
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/43"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/43"
)
transaction = res.json() {
"id": 43,
"accountId": 202,
"kind": "transfer",
"amount": 4254.69,
"currency": "USD",
"description": "Payoff transfer",
"status": "pending",
"occurredAt": "2025-11-06T21:07:13.755Z",
"createdAt": "2025-11-06T21:08:07.806Z"
}