example-data.com

crypto-holdings

crypto-holdings

Page 10 of 10.

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"
  }
}
Draftbit