example-data.com

crypto-holdings

crypto-holdings

Page 9 of 10.

userId
Pinkie Denesik @pinkie_denesik32
cryptoId
2
quantity
86.75495495
costBasis
2511.67335
purchasedAt
userId
Myrl Pollich @myrl.pollich
cryptoId
44
quantity
96.18815588
costBasis
112.91446446
purchasedAt
userId
Myrl Pollich @myrl.pollich
cryptoId
34
quantity
89.3006588
costBasis
42.39996413
purchasedAt
userId
Ruben Terry @ruben.terry
cryptoId
32
quantity
40.18958175
costBasis
127.8897932
purchasedAt
userId
Filiberto Fay @filiberto.fay59
cryptoId
19
quantity
4.74146756
costBasis
7.84029155
purchasedAt
userId
Filiberto Fay @filiberto.fay59
cryptoId
25
quantity
50.57469936
costBasis
18.10160824
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": 193,
      "userId": 88,
      "cryptoId": 2,
      "quantity": 86.75495495,
      "costBasis": 2511.67335,
      "purchasedAt": "2024-08-11T21:04:28.732Z"
    },
    {
      "id": 194,
      "userId": 90,
      "cryptoId": 44,
      "quantity": 96.18815588,
      "costBasis": 112.91446446,
      "purchasedAt": "2025-05-01T13:27:25.774Z"
    },
    {
      "id": 195,
      "userId": 90,
      "cryptoId": 34,
      "quantity": 89.3006588,
      "costBasis": 42.39996413,
      "purchasedAt": "2026-04-14T06:06:32.064Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=9",
    "next": "/api/v1/crypto-holdings?page=10",
    "prev": "/api/v1/crypto-holdings?page=8"
  }
}
Draftbit