transactions #853
- accountId
- accounts/184
- kind
- withdrawal
- amount
- -934.88
- currency
- GBP
- description
- Wire transfer sent
- status
- completed
- occurredAt
- createdAt
Overview
transactions / #853
#853
#853
Wire transfer sent
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/853" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/853" ); 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/853"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/853"
)
transaction = res.json() Response
{
"id": 853,
"accountId": 184,
"kind": "withdrawal",
"amount": -934.88,
"currency": "GBP",
"description": "Wire transfer sent",
"status": "completed",
"occurredAt": "2025-12-09T09:24:48.058Z",
"createdAt": "2025-12-09T09:25:29.191Z"
}