accounts / #187
- userId
-
Ethyl Auer @ethyl_auer89
- name
- Flexible Spending
- type
- other
- balance
- 5444.36
- currency
- CNY
- isActive
- true
- createdAt
Component variants
Medium
Flexible Spending
#187
Small
accounts/187 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/187"
);
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/187"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/187"
)
account = res.json() {
"id": 187,
"userId": 95,
"name": "Flexible Spending",
"type": "other",
"balance": 5444.36,
"currency": "CNY",
"isActive": true,
"createdAt": "2026-03-28T14:35:09.528Z"
}