accounts / #229
- userId
-
Marta Harvey @marta.harvey68
- name
- Roth IRA
- type
- investment
- balance
- 223627.14
- currency
- CAD
- isActive
- true
- createdAt
Component variants
Medium
Roth IRA
#229
Small
accounts/229 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/229" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/229"
);
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/229"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/229"
)
account = res.json() {
"id": 229,
"userId": 112,
"name": "Roth IRA",
"type": "investment",
"balance": 223627.14,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-11-08T18:06:04.715Z"
}