accounts / #373
- userId
-
General Morissette @general_morissette47
- name
- Home Mortgage
- type
- loan
- balance
- -497722.41
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
Home Mortgage
#373
Small
accounts/373 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/373" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/373"
);
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/373"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/373"
)
account = res.json() {
"id": 373,
"userId": 184,
"name": "Home Mortgage",
"type": "loan",
"balance": -497722.41,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-07-27T16:38:57.235Z"
}