accounts / #124
- userId
-
Jarrell Flatley @jarrell_flatley39
- name
- Investment Portfolio
- type
- investment
- balance
- 231517.69
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Investment Portfolio
#124
Small
accounts/124 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/124"
);
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/124"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/124"
)
account = res.json() {
"id": 124,
"userId": 61,
"name": "Investment Portfolio",
"type": "investment",
"balance": 231517.69,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-07-23T08:08:49.280Z"
}