example-data.com

accounts / #183

userId
Velma Jerde @velma.jerde56
name
Vacation Savings
type
savings
balance
15695.11
currency
AUD
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/183"
)
account = res.json()
{
  "id": 183,
  "userId": 93,
  "name": "Vacation Savings",
  "type": "savings",
  "balance": 15695.11,
  "currency": "AUD",
  "isActive": true,
  "createdAt": "2025-05-21T04:41:57.959Z"
}
Draftbit