accounts / #28
- userId
-
Alanna Kilback @alanna_kilback31
- name
- Joint Checking
- type
- checking
- balance
- 3085.81
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
Joint Checking
#28
Small
accounts/28 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/28"
);
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/28"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/28"
)
account = res.json() {
"id": 28,
"userId": 14,
"name": "Joint Checking",
"type": "checking",
"balance": 3085.81,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-10-18T04:42:02.844Z"
}