accounts / #157
- userId
-
Berniece Medhurst @berniece_medhurst
- name
- Vacation Savings
- type
- savings
- balance
- 13067.56
- currency
- AUD
- isActive
- true
- createdAt
Component variants
Medium
Vacation Savings
#157
Small
accounts/157 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/157"
);
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/157"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/157"
)
account = res.json() {
"id": 157,
"userId": 77,
"name": "Vacation Savings",
"type": "savings",
"balance": 13067.56,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-05-15T21:02:11.447Z"
}