example-data.com

crypto-holdings

crypto-holdings

Page 3 of 10.

userId
Guy Christiansen @guy.christiansen40
cryptoId
16
quantity
12.03715299
costBasis
4.0242744
purchasedAt
userId
Guy Christiansen @guy.christiansen40
cryptoId
12
quantity
7.27875893
costBasis
4.236876
purchasedAt
userId
Antoinette Greenfelder @antoinette_greenfelder61
cryptoId
49
quantity
66.98935327
costBasis
17.0062985
purchasedAt
userId
Antoinette Greenfelder @antoinette_greenfelder61
cryptoId
39
quantity
68.01096162
costBasis
19.3478554
purchasedAt
userId
Ericka DuBuque @ericka.dubuque
cryptoId
46
quantity
70.95978238
costBasis
41.70854306
purchasedAt
userId
Ericka DuBuque @ericka.dubuque
cryptoId
31
quantity
60.11972481
costBasis
81.81064322
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": 49,
      "userId": 21,
      "cryptoId": 16,
      "quantity": 12.03715299,
      "costBasis": 4.0242744,
      "purchasedAt": "2025-08-09T22:44:46.164Z"
    },
    {
      "id": 50,
      "userId": 21,
      "cryptoId": 12,
      "quantity": 7.27875893,
      "costBasis": 4.236876,
      "purchasedAt": "2024-05-27T22:57:26.990Z"
    },
    {
      "id": 51,
      "userId": 22,
      "cryptoId": 49,
      "quantity": 66.98935327,
      "costBasis": 17.0062985,
      "purchasedAt": "2025-09-10T00:00:09.541Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=3",
    "next": "/api/v1/crypto-holdings?page=4",
    "prev": "/api/v1/crypto-holdings?page=2"
  }
}
Draftbit