accounts / #98
- userId
-
Green Kozey @green_kozey22
- name
- Retirement Savings
- type
- savings
- balance
- 33405.84
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
Retirement Savings
#98
Small
accounts/98 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/98"
);
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/98"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/98"
)
account = res.json() {
"id": 98,
"userId": 49,
"name": "Retirement Savings",
"type": "savings",
"balance": 33405.84,
"currency": "JPY",
"isActive": true,
"createdAt": "2024-07-08T04:18:48.483Z"
}