accounts / #485
- userId
-
Jabari Farrell @jabari_farrell75
- name
- Business Card
- type
- credit_card
- balance
- -2479.83
- currency
- EUR
- isActive
- true
- createdAt
Component variants
Medium
Business Card
#485
Small
accounts/485 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/485" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/485"
);
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/485"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/485"
)
account = res.json() {
"id": 485,
"userId": 240,
"name": "Business Card",
"type": "credit_card",
"balance": -2479.83,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-04-06T17:14:34.041Z"
}