example-data.com

accounts / #71

userId
Karlee Hudson-Turner @karlee.hudson-turner88
name
Business Card
type
credit_card
balance
-4143.11
currency
CNY
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/71"
)
account = res.json()
{
  "id": 71,
  "userId": 36,
  "name": "Business Card",
  "type": "credit_card",
  "balance": -4143.11,
  "currency": "CNY",
  "isActive": true,
  "createdAt": "2026-02-02T08:12:14.369Z"
}
Draftbit