accounts / #99
- userId
-
Jolie Abernathy @jolie_abernathy33
- name
- Personal Loan
- type
- loan
- balance
- -120156.2
- currency
- CNY
- isActive
- true
- createdAt
Component variants
Medium
Personal Loan
#99
Small
accounts/99 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/99"
);
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/99"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/99"
)
account = res.json() {
"id": 99,
"userId": 50,
"name": "Personal Loan",
"type": "loan",
"balance": -120156.2,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-10-21T13:55:08.085Z"
}