crypto-holdings
crypto-holdings
Page 8 of 10.
- crypto-holdings/169
- crypto-holdings/170
- crypto-holdings/171
- crypto-holdings/172
- crypto-holdings/173
- crypto-holdings/174
- crypto-holdings/175
- crypto-holdings/176
- crypto-holdings/177
- crypto-holdings/178
- crypto-holdings/179
- crypto-holdings/180
- crypto-holdings/181
- crypto-holdings/182
- crypto-holdings/183
- crypto-holdings/184
- crypto-holdings/185
- crypto-holdings/186
- crypto-holdings/187
- crypto-holdings/188
- crypto-holdings/189
- crypto-holdings/190
- crypto-holdings/191
- crypto-holdings/192
- 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"
}
}