example-data.com

accounts / #108

userId
Darian Schaden @darian_schaden36
name
Auto Loan
type
loan
balance
-471568.23
currency
CNY
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/108"
)
account = res.json()
{
  "id": 108,
  "userId": 53,
  "name": "Auto Loan",
  "type": "loan",
  "balance": -471568.23,
  "currency": "CNY",
  "isActive": true,
  "createdAt": "2025-06-05T12:38:25.533Z"
}
Draftbit