example-data.com

accounts / #141

userId
Virginie O'Connell @virginie.oconnell55
name
Investment Portfolio
type
investment
balance
240836.46
currency
GBP
isActive
true
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/accounts/141" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/accounts/141"
);
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/141"
);
const account = (await res.json()) as Account;
import requests

res = requests.get(
    "https://example-data.com/api/v1/accounts/141"
)
account = res.json()
{
  "id": 141,
  "userId": 70,
  "name": "Investment Portfolio",
  "type": "investment",
  "balance": 240836.46,
  "currency": "GBP",
  "isActive": true,
  "createdAt": "2025-12-10T05:21:44.153Z"
}
Draftbit