example-data.com

crypto-holdings / #42

userId
Gavin Lowe @gavin_lowe
cryptoId
16
quantity
99.9294867
costBasis
18.091404
purchasedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/crypto-holdings/42"
)
crypto_holding = res.json()
{
  "id": 42,
  "userId": 17,
  "cryptoId": 16,
  "quantity": 99.9294867,
  "costBasis": 18.091404,
  "purchasedAt": "2024-10-09T02:11:17.529Z"
}
Draftbit