crypto-holdings
crypto-holdings
Page 4 of 10.
- crypto-holdings/73
- crypto-holdings/74
- crypto-holdings/75
- crypto-holdings/76
- crypto-holdings/77
- crypto-holdings/78
- crypto-holdings/79
- crypto-holdings/80
- crypto-holdings/81
- crypto-holdings/82
- crypto-holdings/83
- crypto-holdings/84
- crypto-holdings/85
- crypto-holdings/86
- crypto-holdings/87
- crypto-holdings/88
- crypto-holdings/89
- crypto-holdings/90
- crypto-holdings/91
- crypto-holdings/92
- crypto-holdings/93
- crypto-holdings/94
- crypto-holdings/95
- crypto-holdings/96
- userId
-
Kariane Schmitt @kariane.schmitt97
- cryptoId
- 34
- quantity
- 49.41556083
- costBasis
- 75.79522831
- purchasedAt
- userId
-
Kariane Schmitt @kariane.schmitt97
- cryptoId
- 32
- quantity
- 9.674383
- costBasis
- 114.62567188
- purchasedAt
- userId
-
Kariane Schmitt @kariane.schmitt97
- cryptoId
- 3
- quantity
- 83.3975343
- costBasis
- 954.108792
- purchasedAt
- userId
-
Cassidy Christiansen @cassidy_christiansen38
- cryptoId
- 17
- quantity
- 80.88387377
- costBasis
- 0.12530713
- purchasedAt
- userId
-
Koby Pouros @koby_pouros60
- cryptoId
- 23
- quantity
- 19.63658821
- costBasis
- 103.65266059
- purchasedAt
- userId
-
Koby Pouros @koby_pouros60
- cryptoId
- 43
- quantity
- 51.31701848
- costBasis
- 146.74292621
- 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": 73,
"userId": 32,
"cryptoId": 34,
"quantity": 49.41556083,
"costBasis": 75.79522831,
"purchasedAt": "2026-02-14T00:07:49.879Z"
},
{
"id": 74,
"userId": 32,
"cryptoId": 32,
"quantity": 9.674383,
"costBasis": 114.62567188,
"purchasedAt": "2026-04-02T19:56:52.450Z"
},
{
"id": 75,
"userId": 32,
"cryptoId": 3,
"quantity": 83.3975343,
"costBasis": 954.108792,
"purchasedAt": "2024-12-07T03:14:39.517Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 498,
"totalPages": 21
},
"links": {
"self": "/api/v1/crypto-holdings?page=4",
"next": "/api/v1/crypto-holdings?page=5",
"prev": "/api/v1/crypto-holdings?page=3"
}
}