accounts / #139
- userId
-
Lamont Huel @lamont.huel
- name
- Personal Loan
- type
- loan
- balance
- -44729.81
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
Personal Loan
#139
Small
accounts/139 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/139"
);
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/139"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/139"
)
account = res.json() {
"id": 139,
"userId": 69,
"name": "Personal Loan",
"type": "loan",
"balance": -44729.81,
"currency": "USD",
"isActive": true,
"createdAt": "2026-02-21T14:24:53.030Z"
}