crypto-holdings
crypto-holdings
Page 7 of 10.
- crypto-holdings/145
- crypto-holdings/146
- crypto-holdings/147
- crypto-holdings/148
- crypto-holdings/149
- crypto-holdings/150
- crypto-holdings/151
- crypto-holdings/152
- crypto-holdings/153
- crypto-holdings/154
- crypto-holdings/155
- crypto-holdings/156
- crypto-holdings/157
- crypto-holdings/158
- crypto-holdings/159
- crypto-holdings/160
- crypto-holdings/161
- crypto-holdings/162
- crypto-holdings/163
- crypto-holdings/164
- crypto-holdings/165
- crypto-holdings/166
- crypto-holdings/167
- crypto-holdings/168
- userId
-
Enos Hamill @enos_hamill
- cryptoId
- 8
- quantity
- 57.40383126
- costBasis
- 28.913486
- purchasedAt
- userId
-
Enos Hamill @enos_hamill
- cryptoId
- 43
- quantity
- 39.93269116
- costBasis
- 39.05068617
- purchasedAt
- userId
-
Tiara Wilderman @tiara_wilderman
- cryptoId
- 50
- quantity
- 13.73018556
- costBasis
- 57.50962892
- purchasedAt
- userId
-
Tiara Wilderman @tiara_wilderman
- cryptoId
- 38
- quantity
- 12.03549447
- costBasis
- 29.34807404
- purchasedAt
- userId
-
Tiara Wilderman @tiara_wilderman
- cryptoId
- 34
- quantity
- 59.06084022
- costBasis
- 65.14987355
- purchasedAt
- userId
-
Tiara Wilderman @tiara_wilderman
- cryptoId
- 35
- quantity
- 74.86895593
- costBasis
- 38.73259911
- 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": 145,
"userId": 65,
"cryptoId": 8,
"quantity": 57.40383126,
"costBasis": 28.913486,
"purchasedAt": "2024-08-15T06:17:37.107Z"
},
{
"id": 146,
"userId": 65,
"cryptoId": 43,
"quantity": 39.93269116,
"costBasis": 39.05068617,
"purchasedAt": "2026-03-31T23:03:18.952Z"
},
{
"id": 147,
"userId": 66,
"cryptoId": 50,
"quantity": 13.73018556,
"costBasis": 57.50962892,
"purchasedAt": "2025-09-14T14:02:38.179Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 498,
"totalPages": 21
},
"links": {
"self": "/api/v1/crypto-holdings?page=7",
"next": "/api/v1/crypto-holdings?page=8",
"prev": "/api/v1/crypto-holdings?page=6"
}
}