accounts / #37
- userId
-
Melba Collier @melba.collier
- name
- HSA Account
- type
- other
- balance
- 14049.63
- currency
- CNY
- isActive
- true
- createdAt
Component variants
Medium
HSA Account
#37
Small
accounts/37 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/37"
);
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/37"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/37"
)
account = res.json() {
"id": 37,
"userId": 19,
"name": "HSA Account",
"type": "other",
"balance": 14049.63,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-03-04T22:48:46.612Z"
}