crypto-holdings
crypto-holdings
Page 10 of 10.
- crypto-holdings/217
- crypto-holdings/218
- crypto-holdings/219
- crypto-holdings/220
- crypto-holdings/221
- crypto-holdings/222
- crypto-holdings/223
- crypto-holdings/224
- crypto-holdings/225
- crypto-holdings/226
- crypto-holdings/227
- crypto-holdings/228
- crypto-holdings/229
- crypto-holdings/230
- crypto-holdings/231
- crypto-holdings/232
- crypto-holdings/233
- crypto-holdings/234
- crypto-holdings/235
- crypto-holdings/236
- crypto-holdings/237
- crypto-holdings/238
- crypto-holdings/239
- crypto-holdings/240
- userId
-
Rosina Larkin @rosina.larkin75
- cryptoId
- 33
- quantity
- 46.25285846
- costBasis
- 62.37999415
- purchasedAt
- userId
-
Rosina Larkin @rosina.larkin75
- cryptoId
- 18
- quantity
- 82.90451187
- costBasis
- 8.8100667
- purchasedAt
- userId
-
Rosina Larkin @rosina.larkin75
- cryptoId
- 40
- quantity
- 48.27222339
- costBasis
- 43.73045623
- purchasedAt
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- cryptoId
- 37
- quantity
- 60.15142334
- costBasis
- 153.92494899
- purchasedAt
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- cryptoId
- 12
- quantity
- 69.00784656
- costBasis
- 9.4230864
- purchasedAt
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- cryptoId
- 27
- quantity
- 17.48538445
- costBasis
- 36.36906977
- 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": 217,
"userId": 103,
"cryptoId": 33,
"quantity": 46.25285846,
"costBasis": 62.37999415,
"purchasedAt": "2024-07-25T19:28:02.782Z"
},
{
"id": 218,
"userId": 103,
"cryptoId": 18,
"quantity": 82.90451187,
"costBasis": 8.8100667,
"purchasedAt": "2025-02-21T13:24:02.693Z"
},
{
"id": 219,
"userId": 103,
"cryptoId": 40,
"quantity": 48.27222339,
"costBasis": 43.73045623,
"purchasedAt": "2025-05-01T22:18:52.907Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 498,
"totalPages": 21
},
"links": {
"self": "/api/v1/crypto-holdings?page=10",
"next": "/api/v1/crypto-holdings?page=11",
"prev": "/api/v1/crypto-holdings?page=9"
}
}