accounts / #70
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- name
- Main Checking
- type
- checking
- balance
- 3073.47
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Main Checking
#70
Small
accounts/70 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/70"
);
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/70"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/70"
)
account = res.json() {
"id": 70,
"userId": 35,
"name": "Main Checking",
"type": "checking",
"balance": 3073.47,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-09-03T11:51:03.303Z"
}