example-data.com

accounts / #138

userId
Jewell Olson @jewell_olson2
name
Emergency Fund
type
savings
balance
19254.9
currency
CHF
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/138"
)
account = res.json()
{
  "id": 138,
  "userId": 68,
  "name": "Emergency Fund",
  "type": "savings",
  "balance": 19254.9,
  "currency": "CHF",
  "isActive": true,
  "createdAt": "2026-04-08T22:59:24.705Z"
}
Draftbit