accounts / #20
- userId
-
Leonel Hamill @leonel_hamill33
- name
- High-Yield Savings
- type
- savings
- balance
- 49522.46
- currency
- CNY
- isActive
- true
- createdAt
Component variants
Medium
High-Yield Savings
#20
Small
accounts/20 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/20"
);
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/20"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/20"
)
account = res.json() {
"id": 20,
"userId": 11,
"name": "High-Yield Savings",
"type": "savings",
"balance": 49522.46,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-04-30T18:58:44.364Z"
}