crypto-holdings / #155
- userId
-
Lamont Huel @lamont.huel
- cryptoId
- 5
- quantity
- 63.90708202
- costBasis
- 0.7225321
- purchasedAt
Component variants
Medium
#155
#155
Small
crypto-holdings/155 Related
References
curl -sS \
"https://example-data.com/api/v1/crypto-holdings/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto-holdings/155"
);
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/155"
);
const cryptoHolding = (await res.json()) as CryptoHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto-holdings/155"
)
crypto_holding = res.json() {
"id": 155,
"userId": 69,
"cryptoId": 5,
"quantity": 63.90708202,
"costBasis": 0.7225321,
"purchasedAt": "2025-04-11T23:52:45.322Z"
}