accounts / #380
- userId
-
D'angelo Kling @dangelo_kling6
- name
- 401(k)
- type
- investment
- balance
- 75096.66
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
401(k)
#380
Small
accounts/380 Related
References
Referenced by
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"
}