example-data.com

crypto-holdings

crypto-holdings

Page 5 of 10.

userId
Trace Witting-Stamm @trace_witting-stamm17
cryptoId
41
quantity
54.37159454
costBasis
92.23138302
purchasedAt
userId
Trace Witting-Stamm @trace_witting-stamm17
cryptoId
44
quantity
45.7775191
costBasis
24.2091182
purchasedAt
userId
Lamar Wilkinson @lamar_wilkinson43
cryptoId
24
quantity
17.38013953
costBasis
162.42366209
purchasedAt
userId
Lamar Wilkinson @lamar_wilkinson43
cryptoId
2
quantity
89.42563931
costBasis
7133.29005
purchasedAt
userId
Everett Yundt @everett_yundt11
cryptoId
19
quantity
45.02815683
costBasis
6.7564679
purchasedAt
userId
Everett Yundt @everett_yundt11
cryptoId
31
quantity
20.46551946
costBasis
93.49054687
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": 97,
      "userId": 42,
      "cryptoId": 41,
      "quantity": 54.37159454,
      "costBasis": 92.23138302,
      "purchasedAt": "2026-01-01T15:12:37.102Z"
    },
    {
      "id": 98,
      "userId": 42,
      "cryptoId": 44,
      "quantity": 45.7775191,
      "costBasis": 24.2091182,
      "purchasedAt": "2025-07-11T05:53:43.432Z"
    },
    {
      "id": 99,
      "userId": 43,
      "cryptoId": 24,
      "quantity": 17.38013953,
      "costBasis": 162.42366209,
      "purchasedAt": "2024-05-27T07:21:02.603Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=5",
    "next": "/api/v1/crypto-holdings?page=6",
    "prev": "/api/v1/crypto-holdings?page=4"
  }
}
Draftbit