accounts / #172
- userId
-
Mable West @mable_west
- name
- Travel Card
- type
- credit_card
- balance
- -1656.6
- currency
- EUR
- isActive
- true
- createdAt
Component variants
Medium
Travel Card
#172
Small
accounts/172 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/172"
);
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/172"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/172"
)
account = res.json() {
"id": 172,
"userId": 86,
"name": "Travel Card",
"type": "credit_card",
"balance": -1656.6,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-06-05T13:44:54.349Z"
}