example-data.com

crypto-holdings / #139

userId
Theresia Collins @theresia_collins86
cryptoId
46
quantity
18.61516212
costBasis
85.44553881
purchasedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/crypto-holdings/139" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/crypto-holdings/139"
);
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/139"
);
const cryptoHolding = (await res.json()) as CryptoHolding;
import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto-holdings/139"
)
crypto_holding = res.json()
{
  "id": 139,
  "userId": 63,
  "cryptoId": 46,
  "quantity": 18.61516212,
  "costBasis": 85.44553881,
  "purchasedAt": "2026-02-17T14:24:49.006Z"
}
Draftbit