transactions #1407
- accountId
- accounts/4
- kind
- transfer
- amount
- -3428.7
- currency
- JPY
- description
- Payoff transfer
- status
- completed
- occurredAt
- createdAt
Overview
transactions / #1407
#1407
#1407
Payoff transfer
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/1407" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/1407" ); 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/1407"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/1407"
)
transaction = res.json() Response
{
"id": 1407,
"accountId": 4,
"kind": "transfer",
"amount": -3428.7,
"currency": "JPY",
"description": "Payoff transfer",
"status": "completed",
"occurredAt": "2025-08-13T14:40:12.334Z",
"createdAt": "2025-08-13T14:41:07.571Z"
}