example-data.com

accounts / #26

userId
Alanna Kilback @alanna_kilback31
name
Rewards Card
type
credit_card
balance
-7652.87
currency
JPY
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/26"
)
account = res.json()
{
  "id": 26,
  "userId": 14,
  "name": "Rewards Card",
  "type": "credit_card",
  "balance": -7652.87,
  "currency": "JPY",
  "isActive": true,
  "createdAt": "2025-08-14T01:41:49.498Z"
}
Draftbit