example-data.com

transactions / #144

accountId
accounts/503
kind
transfer
amount
924.66
currency
GBP
description
Internal transfer
status
cancelled
occurredAt
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/transactions/144"
)
transaction = res.json()
{
  "id": 144,
  "accountId": 503,
  "kind": "transfer",
  "amount": 924.66,
  "currency": "GBP",
  "description": "Internal transfer",
  "status": "cancelled",
  "occurredAt": "2026-01-03T06:55:16.681Z",
  "createdAt": "2026-01-03T06:55:27.201Z"
}
Draftbit