example-data.com

crypto-holdings

crypto-holdings

Page 7 of 10.

userId
Enos Hamill @enos_hamill
cryptoId
8
quantity
57.40383126
costBasis
28.913486
purchasedAt
userId
Enos Hamill @enos_hamill
cryptoId
43
quantity
39.93269116
costBasis
39.05068617
purchasedAt
userId
Tiara Wilderman @tiara_wilderman
cryptoId
50
quantity
13.73018556
costBasis
57.50962892
purchasedAt
userId
Tiara Wilderman @tiara_wilderman
cryptoId
38
quantity
12.03549447
costBasis
29.34807404
purchasedAt
userId
Tiara Wilderman @tiara_wilderman
cryptoId
34
quantity
59.06084022
costBasis
65.14987355
purchasedAt
userId
Tiara Wilderman @tiara_wilderman
cryptoId
35
quantity
74.86895593
costBasis
38.73259911
purchasedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/crypto-holdings?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/crypto-holdings?limit=25"
);
const { data, meta } = await res.json();
import type { CryptoHolding, ListEnvelope } from "https://example-data.com/types/crypto-holdings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/crypto-holdings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CryptoHolding>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto-holdings",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 145,
      "userId": 65,
      "cryptoId": 8,
      "quantity": 57.40383126,
      "costBasis": 28.913486,
      "purchasedAt": "2024-08-15T06:17:37.107Z"
    },
    {
      "id": 146,
      "userId": 65,
      "cryptoId": 43,
      "quantity": 39.93269116,
      "costBasis": 39.05068617,
      "purchasedAt": "2026-03-31T23:03:18.952Z"
    },
    {
      "id": 147,
      "userId": 66,
      "cryptoId": 50,
      "quantity": 13.73018556,
      "costBasis": 57.50962892,
      "purchasedAt": "2025-09-14T14:02:38.179Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=7",
    "next": "/api/v1/crypto-holdings?page=8",
    "prev": "/api/v1/crypto-holdings?page=6"
  }
}
Draftbit