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