example-data.com

accounts / #380

userId
D'angelo Kling @dangelo_kling6
name
401(k)
type
investment
balance
75096.66
currency
USD
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/380"
)
account = res.json()
{
  "id": 380,
  "userId": 188,
  "name": "401(k)",
  "type": "investment",
  "balance": 75096.66,
  "currency": "USD",
  "isActive": true,
  "createdAt": "2025-08-10T07:28:51.574Z"
}
Draftbit