example-data.com

accounts / #218

userId
Abdul Rau @abdul.rau
name
Auto Loan
type
loan
balance
-57438.03
currency
JPY
isActive
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/218"
)
account = res.json()
{
  "id": 218,
  "userId": 108,
  "name": "Auto Loan",
  "type": "loan",
  "balance": -57438.03,
  "currency": "JPY",
  "isActive": true,
  "createdAt": "2026-02-07T02:05:19.731Z"
}
Draftbit