example-data.com

accounts / #74

userId
Edward Jacobson @edward_jacobson38
name
High-Yield Savings
type
savings
balance
41730.49
currency
CNY
isActive
true
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/accounts/74" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/accounts/74"
);
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/74"
);
const account = (await res.json()) as Account;
import requests

res = requests.get(
    "https://example-data.com/api/v1/accounts/74"
)
account = res.json()
{
  "id": 74,
  "userId": 38,
  "name": "High-Yield Savings",
  "type": "savings",
  "balance": 41730.49,
  "currency": "CNY",
  "isActive": true,
  "createdAt": "2025-08-10T23:58:19.374Z"
}
Draftbit