accounts / #440
- userId
-
Kevon Dickinson @kevon.dickinson
- name
- Vacation Savings
- type
- savings
- balance
- 35681.26
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
Vacation Savings
#440
Small
accounts/440 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/440" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/440"
);
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/440"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/440"
)
account = res.json() {
"id": 440,
"userId": 218,
"name": "Vacation Savings",
"type": "savings",
"balance": 35681.26,
"currency": "USD",
"isActive": true,
"createdAt": "2026-04-01T13:16:14.849Z"
}