crypto-holdings / #185
- userId
-
Phyllis Hyatt @phyllis_hyatt83
- cryptoId
- 15
- quantity
- 65.74535039
- costBasis
- 0.10050937
- purchasedAt
Component variants
Medium
#185
#185
Small
crypto-holdings/185 Related
References
curl -sS \
"https://example-data.com/api/v1/crypto-holdings/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto-holdings/185"
);
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/185"
);
const cryptoHolding = (await res.json()) as CryptoHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto-holdings/185"
)
crypto_holding = res.json() {
"id": 185,
"userId": 84,
"cryptoId": 15,
"quantity": 65.74535039,
"costBasis": 0.10050937,
"purchasedAt": "2025-03-16T10:34:32.593Z"
}