accounts / #77
- userId
-
Margaretta Barrows @margaretta_barrows41
- name
- Flexible Spending
- type
- other
- balance
- 684.57
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Flexible Spending
#77
Small
accounts/77 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/77"
);
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/77"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/77"
)
account = res.json() {
"id": 77,
"userId": 39,
"name": "Flexible Spending",
"type": "other",
"balance": 684.57,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-03-19T22:31:59.630Z"
}