accounts / #134
- userId
-
Tiara Wilderman @tiara_wilderman
- name
- Everyday Checking
- type
- checking
- balance
- 1582.04
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Everyday Checking
#134
Small
accounts/134 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/134"
);
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/134"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/134"
)
account = res.json() {
"id": 134,
"userId": 66,
"name": "Everyday Checking",
"type": "checking",
"balance": 1582.04,
"currency": "GBP",
"isActive": true,
"createdAt": "2026-04-24T17:52:37.794Z"
}