accounts / #129
- userId
-
Beau Stiedemann @beau.stiedemann
- name
- Primary Checking
- type
- checking
- balance
- 18716.88
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Primary Checking
#129
Small
accounts/129 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/129"
);
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/129"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/129"
)
account = res.json() {
"id": 129,
"userId": 64,
"name": "Primary Checking",
"type": "checking",
"balance": 18716.88,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-01-30T15:51:15.906Z"
}