example-data.com

accounts / #326

userId
Marlin Goldner @marlin_goldner6
name
Cash Back Card
type
credit_card
balance
-4352.2
currency
EUR
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/326"
)
account = res.json()
{
  "id": 326,
  "userId": 160,
  "name": "Cash Back Card",
  "type": "credit_card",
  "balance": -4352.2,
  "currency": "EUR",
  "isActive": true,
  "createdAt": "2025-12-02T01:15:18.116Z"
}
Draftbit