transactions / #233
- accountId
- accounts/74
- kind
- transfer
- amount
- 4434.67
- currency
- CNY
- description
- Investment transfer
- status
- completed
- occurredAt
- createdAt
Component variants
Small
transactions/233 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/233" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/233"
);
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/233"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/233"
)
transaction = res.json() {
"id": 233,
"accountId": 74,
"kind": "transfer",
"amount": 4434.67,
"currency": "CNY",
"description": "Investment transfer",
"status": "completed",
"occurredAt": "2025-03-15T17:48:22.530Z",
"createdAt": "2025-03-15T17:48:35.381Z"
}