accounts / #213
- userId
-
Allan Buckridge @allan_buckridge
- name
- Emergency Fund
- type
- savings
- balance
- 9202.02
- currency
- AUD
- isActive
- true
- createdAt
Component variants
Medium
Emergency Fund
#213
Small
accounts/213 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/213" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/213"
);
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/213"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/213"
)
account = res.json() {
"id": 213,
"userId": 106,
"name": "Emergency Fund",
"type": "savings",
"balance": 9202.02,
"currency": "AUD",
"isActive": true,
"createdAt": "2025-04-03T03:23:31.841Z"
}