example-data.com

crypto

crypto

Page 2 of 3.

symbol
NFRE
name
victorious cleaner
slug
victorious-cleaner
marketCap
573877857538
price
58.60022092
priceChangePercent24h
9.98
volume24h
75099097
circulatingSupply
9793100581
totalSupply
10077486746
createdAt
symbol
EZO
name
helpless armchair
slug
helpless-armchair
marketCap
245219083892
price
32.76565744
priceChangePercent24h
-18.86
volume24h
93032493
circulatingSupply
7484027578
totalSupply
createdAt
symbol
HDCKB
name
esteemed overcoat
slug
esteemed-overcoat
marketCap
110898844783
price
15.20128308
priceChangePercent24h
4.5
volume24h
53592719
circulatingSupply
7295360806
totalSupply
7566164537
createdAt
symbol
KSEG
name
limited obligation
slug
limited-obligation
marketCap
59795353473
price
9.18161771
priceChangePercent24h
-6.5
volume24h
14356308
circulatingSupply
6512507421
totalSupply
createdAt
symbol
PWFT
name
oddball negotiation
slug
oddball-negotiation
marketCap
617909249352
price
83.90795278
priceChangePercent24h
-14.85
volume24h
55365769
circulatingSupply
7364132110
totalSupply
8230985208
createdAt
symbol
PVYW
name
raw story
slug
raw-story
marketCap
190116418021
price
48.87625632
priceChangePercent24h
-11.15
volume24h
58146918
circulatingSupply
3889750000
totalSupply
4399343649
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/crypto?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/crypto?limit=25"
);
const { data, meta } = await res.json();
import type { Crypto, ListEnvelope } from "https://example-data.com/types/crypto.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/crypto",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/crypto?page=3",
    "prev": "/api/v1/crypto?page=1"
  }
}
Draftbit