transactions #311
- accountId
- accounts/104
- kind
- deposit
- amount
- 6659.93
- currency
- CAD
- description
- Cash deposit
- status
- pending
- occurredAt
- createdAt
Overview
transactions / #311
#311
#311
Cash deposit
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/311" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/311" ); 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/311"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/311"
)
transaction = res.json() Response
{
"id": 311,
"accountId": 104,
"kind": "deposit",
"amount": 6659.93,
"currency": "CAD",
"description": "Cash deposit",
"status": "pending",
"occurredAt": "2026-04-02T23:10:45.018Z",
"createdAt": "2026-04-02T23:11:37.166Z"
}