example-data.com

accounts / #361

userId
Fatima Dicki @fatima_dicki
name
Gift Card Balance
type
other
balance
3264.57
currency
CNY
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/361"
)
account = res.json()
{
  "id": 361,
  "userId": 176,
  "name": "Gift Card Balance",
  "type": "other",
  "balance": 3264.57,
  "currency": "CNY",
  "isActive": true,
  "createdAt": "2025-12-16T11:53:03.636Z"
}
Draftbit