transactions #556
- accountId
- accounts/19
- kind
- deposit
- amount
- 7748.36
- currency
- EUR
- description
- Payroll deposit
- status
- completed
- occurredAt
- createdAt
Overview
transactions / #556
#556
#556
Payroll deposit
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/556" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/556" ); 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/556"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/556"
)
transaction = res.json() Response
{
"id": 556,
"accountId": 19,
"kind": "deposit",
"amount": 7748.36,
"currency": "EUR",
"description": "Payroll deposit",
"status": "completed",
"occurredAt": "2026-04-05T21:42:45.803Z",
"createdAt": "2026-04-05T21:43:40.837Z"
}