accounts / #168
- userId
-
Hortense Cruickshank @hortense.cruickshank65
- name
- Flexible Spending
- type
- other
- balance
- 19764.93
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Flexible Spending
#168
Small
accounts/168 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/168"
);
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/168"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/168"
)
account = res.json() {
"id": 168,
"userId": 83,
"name": "Flexible Spending",
"type": "other",
"balance": 19764.93,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-10-05T14:57:33.083Z"
}