accounts / #110
- userId
-
Simeon Robel @simeon_robel12
- name
- Flexible Spending
- type
- other
- balance
- 13804.32
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
Flexible Spending
#110
Small
accounts/110 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/110"
);
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/110"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/110"
)
account = res.json() {
"id": 110,
"userId": 55,
"name": "Flexible Spending",
"type": "other",
"balance": 13804.32,
"currency": "USD",
"isActive": true,
"createdAt": "2025-03-19T04:17:42.118Z"
}