accounts / #393
- userId
-
Joseph Nitzsche @joseph_nitzsche
- name
- Auto Loan
- type
- loan
- balance
- -165347.63
- currency
- AUD
- isActive
- true
- createdAt
Component variants
Medium
Auto Loan
#393
Small
accounts/393 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/393" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/393"
);
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/393"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/393"
)
account = res.json() {
"id": 393,
"userId": 196,
"name": "Auto Loan",
"type": "loan",
"balance": -165347.63,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-04-22T11:20:29.045Z"
}