example-data.com

accounts / #24

userId
Judy Hackett @judy_hackett49
name
High-Yield Savings
type
savings
balance
40621.88
currency
GBP
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/24"
)
account = res.json()
{
  "id": 24,
  "userId": 13,
  "name": "High-Yield Savings",
  "type": "savings",
  "balance": 40621.88,
  "currency": "GBP",
  "isActive": true,
  "createdAt": "2026-02-12T00:14:28.813Z"
}
Draftbit