example-data.com

accounts / #208

userId
Jermain Kshlerin @jermain_kshlerin51
name
401(k)
type
investment
balance
113357.04
currency
CNY
isActive
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/208"
)
account = res.json()
{
  "id": 208,
  "userId": 104,
  "name": "401(k)",
  "type": "investment",
  "balance": 113357.04,
  "currency": "CNY",
  "isActive": false,
  "createdAt": "2025-02-10T21:53:39.152Z"
}
Draftbit