crypto-holdings / #67
- userId
-
Jensen Bashirian @jensen_bashirian
- cryptoId
- 7
- quantity
- 13.31516747
- costBasis
- 0.14911406
- purchasedAt
Component variants
Medium
#67
#67
Small
crypto-holdings/67 Related
References
curl -sS \
"https://example-data.com/api/v1/crypto-holdings/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto-holdings/67"
);
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/67"
);
const cryptoHolding = (await res.json()) as CryptoHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto-holdings/67"
)
crypto_holding = res.json() {
"id": 67,
"userId": 29,
"cryptoId": 7,
"quantity": 13.31516747,
"costBasis": 0.14911406,
"purchasedAt": "2025-03-14T11:52:41.983Z"
}