accounts / #88
- userId
-
Myrtie Daniel @myrtie_daniel33
- name
- Vacation Savings
- type
- savings
- balance
- 8755.01
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
Vacation Savings
#88
Small
accounts/88 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/88"
);
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/88"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/88"
)
account = res.json() {
"id": 88,
"userId": 45,
"name": "Vacation Savings",
"type": "savings",
"balance": 8755.01,
"currency": "JPY",
"isActive": true,
"createdAt": "2026-04-15T15:10:23.346Z"
}