transactions #123
- accountId
- accounts/31
- kind
- deposit
- amount
- 3133.41
- currency
- AUD
- description
- Cash deposit
- status
- completed
- occurredAt
- createdAt
Overview
transactions / #123
#123
#123
Cash deposit
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/123" ); const transaction = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/transactions.d.ts https://example-data.com/types/transactions.d.ts
import type { Transaction } from "./types/transactions";
const res = await fetch(
"https://example-data.com/api/v1/transactions/123"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/123"
)
transaction = res.json() Response
{
"id": 123,
"accountId": 31,
"kind": "deposit",
"amount": 3133.41,
"currency": "AUD",
"description": "Cash deposit",
"status": "completed",
"occurredAt": "2026-02-20T06:40:01.429Z",
"createdAt": "2026-02-20T06:40:29.416Z"
}