example-data.com

transactions / #194

accountId
accounts/105
kind
payment
amount
-4817.32
currency
JPY
description
Utility bill payment
status
completed
occurredAt
createdAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/transactions/194" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/transactions/194"
);
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/194"
);
const transaction = (await res.json()) as Transaction;
import requests

res = requests.get(
    "https://example-data.com/api/v1/transactions/194"
)
transaction = res.json()
{
  "id": 194,
  "accountId": 105,
  "kind": "payment",
  "amount": -4817.32,
  "currency": "JPY",
  "description": "Utility bill payment",
  "status": "completed",
  "occurredAt": "2026-04-11T02:41:35.630Z",
  "createdAt": "2026-04-11T02:42:26.466Z"
}
Draftbit