accounts / #191
- userId
-
Esperanza Casper @esperanza_casper
- name
- Emergency Fund
- type
- savings
- balance
- 44175.52
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Emergency Fund
#191
Small
accounts/191 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/191" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/191"
);
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/191"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/191"
)
account = res.json() {
"id": 191,
"userId": 97,
"name": "Emergency Fund",
"type": "savings",
"balance": 44175.52,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-07-12T18:42:46.629Z"
}