crypto-holdings / #101
- userId
-
Everett Yundt @everett_yundt11
- cryptoId
- 19
- quantity
- 45.02815683
- costBasis
- 6.7564679
- purchasedAt
Component variants
Medium
#101
#101
Small
crypto-holdings/101 Related
References
curl -sS \
"https://example-data.com/api/v1/crypto-holdings/101" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto-holdings/101"
);
const cryptoHolding = await res.json();import type { CryptoHolding } from "https://example-data.com/types/crypto-holdings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/crypto-holdings/101"
);
const cryptoHolding = (await res.json()) as CryptoHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto-holdings/101"
)
crypto_holding = res.json() {
"id": 101,
"userId": 44,
"cryptoId": 19,
"quantity": 45.02815683,
"costBasis": 6.7564679,
"purchasedAt": "2026-04-12T10:57:40.788Z"
}