accounts / #454
- userId
-
Rubye Emmerich @rubye.emmerich
- name
- Emergency Fund
- type
- savings
- balance
- 27383.96
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
Emergency Fund
#454
Small
accounts/454 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/454" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/454"
);
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/454"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/454"
)
account = res.json() {
"id": 454,
"userId": 225,
"name": "Emergency Fund",
"type": "savings",
"balance": 27383.96,
"currency": "USD",
"isActive": true,
"createdAt": "2024-09-25T05:06:15.112Z"
}