example-data.com

accounts / #468

userId
Adelia Roberts @adelia_roberts0
name
Personal Loan
type
loan
balance
-361168.31
currency
EUR
isActive
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/accounts/468"
)
account = res.json()
{
  "id": 468,
  "userId": 231,
  "name": "Personal Loan",
  "type": "loan",
  "balance": -361168.31,
  "currency": "EUR",
  "isActive": false,
  "createdAt": "2025-03-03T02:14:35.918Z"
}
Draftbit