transactions #1888
- accountId
- accounts/481
- kind
- withdrawal
- amount
- -1283.48
- currency
- EUR
- description
- Cash withdrawal
- status
- failed
- occurredAt
- createdAt
Overview
transactions / #1888
#1888
#1888
Cash withdrawal
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/1888" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/1888" ); 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/1888"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/1888"
)
transaction = res.json() Response
{
"id": 1888,
"accountId": 481,
"kind": "withdrawal",
"amount": -1283.48,
"currency": "EUR",
"description": "Cash withdrawal",
"status": "failed",
"occurredAt": "2025-08-23T14:37:03.548Z",
"createdAt": "2025-08-23T14:37:18.063Z"
}