accounts / #289
- userId
-
Wendy Borer @wendy_borer
- name
- Home Mortgage
- type
- loan
- balance
- -6255.24
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Home Mortgage
#289
Small
accounts/289 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/289" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/289"
);
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/289"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/289"
)
account = res.json() {
"id": 289,
"userId": 141,
"name": "Home Mortgage",
"type": "loan",
"balance": -6255.24,
"currency": "GBP",
"isActive": true,
"createdAt": "2026-01-18T05:02:06.674Z"
}