accounts / #114
- userId
-
Raheem Kovacek @raheem_kovacek3
- name
- Retirement Savings
- type
- savings
- balance
- 38505.28
- currency
- CAD
- isActive
- true
- createdAt
Component variants
Medium
Retirement Savings
#114
Small
accounts/114 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/114"
);
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/114"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/114"
)
account = res.json() {
"id": 114,
"userId": 57,
"name": "Retirement Savings",
"type": "savings",
"balance": 38505.28,
"currency": "CAD",
"isActive": true,
"createdAt": "2024-09-25T13:46:54.503Z"
}