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