example-data.com

accounts / #89

userId
Myrtie Daniel @myrtie_daniel33
name
Travel Card
type
credit_card
balance
-4161.4
currency
USD
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/89"
)
account = res.json()
{
  "id": 89,
  "userId": 45,
  "name": "Travel Card",
  "type": "credit_card",
  "balance": -4161.4,
  "currency": "USD",
  "isActive": true,
  "createdAt": "2025-11-22T04:18:23.301Z"
}
Draftbit