accounts / #1
- userId
-
Charlene Roberts @charlene_roberts
- name
- Emergency Fund
- type
- savings
- balance
- 5751.77
- currency
- EUR
- isActive
- true
- createdAt
Component variants
Medium
Emergency Fund
#1
Small
accounts/1 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/1"
);
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/1"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/1"
)
account = res.json() {
"id": 1,
"userId": 1,
"name": "Emergency Fund",
"type": "savings",
"balance": 5751.77,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-09-16T19:40:55.373Z"
}