example-data.com

accounts / #133

userId
Tiara Wilderman @tiara_wilderman
name
Everyday Checking
type
checking
balance
6016.88
currency
JPY
isActive
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/133"
)
account = res.json()
{
  "id": 133,
  "userId": 66,
  "name": "Everyday Checking",
  "type": "checking",
  "balance": 6016.88,
  "currency": "JPY",
  "isActive": false,
  "createdAt": "2026-03-30T22:33:10.856Z"
}
Draftbit