transactions / #183
- accountId
- accounts/165
- kind
- payment
- amount
- -2592.58
- currency
- EUR
- description
- Phone bill
- status
- completed
- occurredAt
- createdAt
Component variants
Medium
#183
#183
Phone bill
Small
transactions/183 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/183"
);
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/183"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/183"
)
transaction = res.json() {
"id": 183,
"accountId": 165,
"kind": "payment",
"amount": -2592.58,
"currency": "EUR",
"description": "Phone bill",
"status": "completed",
"occurredAt": "2026-01-29T14:01:52.684Z",
"createdAt": "2026-01-29T14:02:39.978Z"
}