accounts / #97
- userId
-
Green Kozey @green_kozey22
- name
- Student Loan
- type
- loan
- balance
- -182329.32
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Student Loan
#97
Small
accounts/97 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/97"
);
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/97"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/97"
)
account = res.json() {
"id": 97,
"userId": 49,
"name": "Student Loan",
"type": "loan",
"balance": -182329.32,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-04-25T22:25:14.856Z"
}