example-data.com

accounts / #170

userId
Colby Kovacek @colby_kovacek40
name
Personal Loan
type
loan
balance
-67963.72
currency
EUR
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/170"
)
account = res.json()
{
  "id": 170,
  "userId": 85,
  "name": "Personal Loan",
  "type": "loan",
  "balance": -67963.72,
  "currency": "EUR",
  "isActive": true,
  "createdAt": "2026-01-20T04:38:40.291Z"
}
Draftbit