accounts / #198
- userId
-
Whitney O'Reilly @whitney.oreilly
- name
- Main Checking
- type
- checking
- balance
- 13379.39
- currency
- EUR
- isActive
- true
- createdAt
Component variants
Medium
Main Checking
#198
Small
accounts/198 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/198"
);
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/198"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/198"
)
account = res.json() {
"id": 198,
"userId": 99,
"name": "Main Checking",
"type": "checking",
"balance": 13379.39,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-03-18T18:12:03.158Z"
}