crypto-holdings
crypto-holdings
Page 2 of 10.
- crypto-holdings/25
- crypto-holdings/26
- crypto-holdings/27
- crypto-holdings/28
- crypto-holdings/29
- crypto-holdings/30
- crypto-holdings/31
- crypto-holdings/32
- crypto-holdings/33
- crypto-holdings/34
- crypto-holdings/35
- crypto-holdings/36
- crypto-holdings/37
- crypto-holdings/38
- crypto-holdings/39
- crypto-holdings/40
- crypto-holdings/41
- crypto-holdings/42
- crypto-holdings/43
- crypto-holdings/44
- crypto-holdings/45
- crypto-holdings/46
- crypto-holdings/47
- crypto-holdings/48
- userId
-
Leonel Hamill @leonel_hamill33
- cryptoId
- 2
- quantity
- 11.01782561
- costBasis
- 2784.5628
- purchasedAt
- userId
-
Leonel Hamill @leonel_hamill33
- cryptoId
- 19
- quantity
- 34.07847749
- costBasis
- 12.1858247
- purchasedAt
- userId
-
Mara Johnson @mara.johnson17
- cryptoId
- 2
- quantity
- 15.64410496
- costBasis
- 1092.1317
- purchasedAt
- userId
-
Mara Johnson @mara.johnson17
- cryptoId
- 31
- quantity
- 95.57701975
- costBasis
- 31.99144084
- purchasedAt
- userId
-
Mara Johnson @mara.johnson17
- cryptoId
- 16
- quantity
- 79.95234279
- costBasis
- 11.9201184
- purchasedAt
- userId
-
Mara Johnson @mara.johnson17
- cryptoId
- 13
- quantity
- 81.89487035
- costBasis
- 0.00000578
- 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": 25,
"userId": 11,
"cryptoId": 2,
"quantity": 11.01782561,
"costBasis": 2784.5628,
"purchasedAt": "2026-02-25T22:56:47.015Z"
},
{
"id": 26,
"userId": 11,
"cryptoId": 19,
"quantity": 34.07847749,
"costBasis": 12.1858247,
"purchasedAt": "2024-06-14T02:28:15.530Z"
},
{
"id": 27,
"userId": 12,
"cryptoId": 2,
"quantity": 15.64410496,
"costBasis": 1092.1317,
"purchasedAt": "2025-12-20T01:11:32.210Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 498,
"totalPages": 21
},
"links": {
"self": "/api/v1/crypto-holdings?page=2",
"next": "/api/v1/crypto-holdings?page=3",
"prev": "/api/v1/crypto-holdings?page=1"
}
}