example-data.com
Menu
Browse docs and collections

Overview

transactions / #1790

transactions #1790

accountId
accounts/254
kind
refund
amount
6073.74
currency
USD
description
Subscription refund
status
failed
occurredAt
createdAt

Component variants

Related

References

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/transactions/1790" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/transactions/1790"
);
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/1790"
);
const transaction = (await res.json()) as Transaction;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/transactions/1790"
)
transaction = res.json()

Response

{
  "id": 1790,
  "accountId": 254,
  "kind": "refund",
  "amount": 6073.74,
  "currency": "USD",
  "description": "Subscription refund",
  "status": "failed",
  "occurredAt": "2025-07-11T18:46:52.169Z",
  "createdAt": "2025-07-11T18:47:21.708Z"
}