accounts / #199
- userId
-
Whitney O'Reilly @whitney.oreilly
- name
- High-Yield Savings
- type
- savings
- balance
- 6989.32
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
High-Yield Savings
#199
Small
accounts/199 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/199"
);
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/199"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/199"
)
account = res.json() {
"id": 199,
"userId": 99,
"name": "High-Yield Savings",
"type": "savings",
"balance": 6989.32,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-06-18T21:01:39.299Z"
}