transactions #277
- accountId
- accounts/75
- kind
- withdrawal
- amount
- -4563.54
- currency
- JPY
- description
- Check withdrawal
- status
- pending
- occurredAt
- createdAt
Overview
transactions / #277
#277
#277
Check withdrawal
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions/277" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/transactions/277" ); 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/277"
);
const transaction = (await res.json()) as Transaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/277"
)
transaction = res.json() Response
{
"id": 277,
"accountId": 75,
"kind": "withdrawal",
"amount": -4563.54,
"currency": "JPY",
"description": "Check withdrawal",
"status": "pending",
"occurredAt": "2025-07-23T20:02:56.029Z",
"createdAt": "2025-07-23T20:03:27.782Z"
}