example-data.com

accounts / #56

userId
Queen Lubowitz @queen.lubowitz76
name
Rewards Card
type
credit_card
balance
-3177.9
currency
CNY
isActive
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/56"
)
account = res.json()
{
  "id": 56,
  "userId": 28,
  "name": "Rewards Card",
  "type": "credit_card",
  "balance": -3177.9,
  "currency": "CNY",
  "isActive": false,
  "createdAt": "2026-02-13T17:01:54.760Z"
}
Draftbit