accounts / #362
- userId
-
Americo Hoppe @americo_hoppe57
- name
- 401(k)
- type
- investment
- balance
- 244498.06
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
401(k)
#362
Small
accounts/362 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/362" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/362"
);
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/362"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/362"
)
account = res.json() {
"id": 362,
"userId": 177,
"name": "401(k)",
"type": "investment",
"balance": 244498.06,
"currency": "GBP",
"isActive": true,
"createdAt": "2026-05-13T14:28:18.065Z"
}