accounts / #137
- userId
-
Kaden Brekke @kaden_brekke
- name
- Flexible Spending
- type
- other
- balance
- 17086.92
- currency
- AUD
- isActive
- true
- createdAt
Component variants
Medium
Flexible Spending
#137
Small
accounts/137 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/137"
);
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/137"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/137"
)
account = res.json() {
"id": 137,
"userId": 67,
"name": "Flexible Spending",
"type": "other",
"balance": 17086.92,
"currency": "AUD",
"isActive": true,
"createdAt": "2025-10-17T16:32:36.130Z"
}