example-data.com

crypto-holdings

crypto-holdings

Page 8 of 10.

userId
Bradford Doyle @bradford.doyle42
cryptoId
46
quantity
69.20021446
costBasis
31.09755352
purchasedAt
userId
Bradford Doyle @bradford.doyle42
cryptoId
10
quantity
54.1264926
costBasis
31.1735628
purchasedAt
userId
Bradford Doyle @bradford.doyle42
cryptoId
12
quantity
16.05299227
costBasis
11.078424
purchasedAt
userId
Bradford Doyle @bradford.doyle42
cryptoId
37
quantity
76.982626
costBasis
39.44193388
purchasedAt
userId
Amya Powlowski @amya_powlowski32
cryptoId
40
quantity
40.23977274
costBasis
55.92201335
purchasedAt
userId
Amya Powlowski @amya_powlowski32
cryptoId
43
quantity
64.16514692
costBasis
156.66570479
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": 169,
      "userId": 79,
      "cryptoId": 46,
      "quantity": 69.20021446,
      "costBasis": 31.09755352,
      "purchasedAt": "2025-09-26T15:50:24.436Z"
    },
    {
      "id": 170,
      "userId": 79,
      "cryptoId": 10,
      "quantity": 54.1264926,
      "costBasis": 31.1735628,
      "purchasedAt": "2024-06-07T13:15:41.591Z"
    },
    {
      "id": 171,
      "userId": 79,
      "cryptoId": 12,
      "quantity": 16.05299227,
      "costBasis": 11.078424,
      "purchasedAt": "2024-06-18T20:37:01.875Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 498,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/crypto-holdings?page=8",
    "next": "/api/v1/crypto-holdings?page=9",
    "prev": "/api/v1/crypto-holdings?page=7"
  }
}
Draftbit