transactions / #167
- accountId
- accounts/122
- kind
- transfer
- amount
- -1886.27
- currency
- USD
- description
- Payoff transfer
- status
- pending
- occurredAt
- createdAt
Component variants
Medium
#167
#167
Payoff transfer
Small
transactions/167 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/167" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/167"
);
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/167"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/167"
)
transaction = res.json() {
"id": 167,
"accountId": 122,
"kind": "transfer",
"amount": -1886.27,
"currency": "USD",
"description": "Payoff transfer",
"status": "pending",
"occurredAt": "2025-07-16T07:09:36.734Z",
"createdAt": "2025-07-16T07:10:11.467Z"
}