accounts / #147
- userId
-
Terence Lemke @terence.lemke85
- name
- Joint Checking
- type
- checking
- balance
- 1542.55
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Joint Checking
#147
Small
accounts/147 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/147" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/147"
);
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/147"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/147"
)
account = res.json() {
"id": 147,
"userId": 74,
"name": "Joint Checking",
"type": "checking",
"balance": 1542.55,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-09-29T08:28:14.437Z"
}