example-data.com

crypto-holdings

crypto-holdings

Page 6 of 10.

userId
Darian Schaden @darian_schaden36
cryptoId
48
quantity
90.54761521
costBasis
128.22062236
purchasedAt
userId
Darian Schaden @darian_schaden36
cryptoId
7
quantity
58.81436972
costBasis
0.073536
purchasedAt
userId
Darian Schaden @darian_schaden36
cryptoId
44
quantity
94.88262948
costBasis
78.34890849
purchasedAt
userId
Darian Schaden @darian_schaden36
cryptoId
38
quantity
68.43298956
costBasis
16.71749016
purchasedAt
userId
Jo Haag-Mayer @jo_haag-mayer
cryptoId
42
quantity
77.93809475
costBasis
43.77933486
purchasedAt
userId
Jo Haag-Mayer @jo_haag-mayer
cryptoId
14
quantity
99.81930013
costBasis
137.9394
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": 121,
      "userId": 53,
      "cryptoId": 48,
      "quantity": 90.54761521,
      "costBasis": 128.22062236,
      "purchasedAt": "2025-04-21T10:44:05.266Z"
    },
    {
      "id": 122,
      "userId": 53,
      "cryptoId": 7,
      "quantity": 58.81436972,
      "costBasis": 0.073536,
      "purchasedAt": "2026-04-14T19:02:07.122Z"
    },
    {
      "id": 123,
      "userId": 53,
      "cryptoId": 44,
      "quantity": 94.88262948,
      "costBasis": 78.34890849,
      "purchasedAt": "2025-05-05T04:11:03.444Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=6",
    "next": "/api/v1/crypto-holdings?page=7",
    "prev": "/api/v1/crypto-holdings?page=5"
  }
}
Draftbit