accounts / #121
- userId
-
Merl Jenkins @merl.jenkins6
- name
- HSA Account
- type
- other
- balance
- 994.77
- currency
- CAD
- isActive
- true
- createdAt
Component variants
Medium
HSA Account
#121
Small
accounts/121 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/121"
);
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/121"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/121"
)
account = res.json() {
"id": 121,
"userId": 60,
"name": "HSA Account",
"type": "other",
"balance": 994.77,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-05-14T20:39:27.640Z"
}