example-data.com

accounts / #174

userId
Michaela Feeney @michaela_feeney46
name
Brokerage Account
type
investment
balance
61429.02
currency
EUR
isActive
true
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/accounts/174" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/accounts/174"
);
const account = await res.json();
import type { Account } from "https://example-data.com/types/accounts.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/accounts/174"
);
const account = (await res.json()) as Account;
import requests

res = requests.get(
    "https://example-data.com/api/v1/accounts/174"
)
account = res.json()
{
  "id": 174,
  "userId": 87,
  "name": "Brokerage Account",
  "type": "investment",
  "balance": 61429.02,
  "currency": "EUR",
  "isActive": true,
  "createdAt": "2026-01-03T07:38:03.264Z"
}
Draftbit