example-data.com
Menu
Browse docs and collections

crypto

crypto

Page 2 of 3.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/crypto?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/crypto?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/crypto.d.ts https://example-data.com/types/crypto.d.ts
import type { Crypto, ListEnvelope } from "./types/crypto";

const res = await fetch(
  "https://example-data.com/api/v1/crypto?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Crypto>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 25,
      "symbol": "NFRE",
      "name": "victorious cleaner",
      "slug": "victorious-cleaner",
      "marketCap": 573877857538,
      "price": 58.60022092,
      "priceChangePercent24h": 9.98,
      "volume24h": 75099097,
      "circulatingSupply": 9793100581,
      "totalSupply": 10077486746,
      "createdAt": "2024-12-20T15:30:51.949Z"
    },
    {
      "id": 26,
      "symbol": "EZO",
      "name": "helpless armchair",
      "slug": "helpless-armchair",
      "marketCap": 245219083892,
      "price": 32.76565744,
      "priceChangePercent24h": -18.86,
      "volume24h": 93032493,
      "circulatingSupply": 7484027578,
      "totalSupply": null,
      "createdAt": "2024-08-13T20:00:20.188Z"
    },
    {
      "id": 27,
      "symbol": "HDCKB",
      "name": "esteemed overcoat",
      "slug": "esteemed-overcoat",
      "marketCap": 110898844783,
      "price": 15.20128308,
      "priceChangePercent24h": 4.5,
      "volume24h": 53592719,
      "circulatingSupply": 7295360806,
      "totalSupply": 7566164537,
      "createdAt": "2025-08-22T15:17:01.265Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 50,
    "totalPages": 3
  },
  "links": {
    "self": "/api/v1/crypto?page=2&limit=24",
    "first": "/api/v1/crypto?page=1&limit=24",
    "last": "/api/v1/crypto?page=3&limit=24",
    "next": "/api/v1/crypto?page=3&limit=24",
    "prev": "/api/v1/crypto?page=1&limit=24"
  }
}