accounts / #34
- userId
-
Gavin Lowe @gavin_lowe
- name
- Travel Card
- type
- credit_card
- balance
- -5244.41
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Travel Card
#34
Small
accounts/34 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/34"
);
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/34"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/34"
)
account = res.json() {
"id": 34,
"userId": 17,
"name": "Travel Card",
"type": "credit_card",
"balance": -5244.41,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-08-18T07:39:33.211Z"
}