accounts / #90
- userId
-
Della Labadie @della_labadie
- name
- Vacation Savings
- type
- savings
- balance
- 29771.26
- currency
- AUD
- isActive
- true
- createdAt
Component variants
Medium
Vacation Savings
#90
Small
accounts/90 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/90"
);
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/90"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/90"
)
account = res.json() {
"id": 90,
"userId": 46,
"name": "Vacation Savings",
"type": "savings",
"balance": 29771.26,
"currency": "AUD",
"isActive": true,
"createdAt": "2025-09-20T12:40:38.093Z"
}