crypto
crypto
Browse 50 crypto records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Bitcoin
#1
-
Ethereum
#2
-
BNB
#3
-
Solana
#4
-
XRP
#5
-
Cardano
#6
-
Dogecoin
#7
-
Avalanche
#8
-
Polkadot
#9
-
Chainlink
#10
-
Polygon
#11
-
Uniswap
#12
-
Shiba Inu
#13
-
Litecoin
#14
-
TRON
#15
-
Cosmos
#16
-
Stellar
#17
-
Filecoin
#18
-
NEAR Protocol
#19
-
Aptos
#20
-
blank graffiti
#21
-
wobbly husband
#22
-
indolent sonnet
#23
-
impossible t-shirt
#24
- symbol
- BTC
- name
- Bitcoin
- slug
- bitcoin
- marketCap
- 900022500000
- price
- 46155
- priceChangePercent24h
- -2.04
- volume24h
- 7638122780
- circulatingSupply
- 19500000
- totalSupply
- 21000000
- createdAt
- symbol
- ETH
- name
- Ethereum
- slug
- ethereum
- marketCap
- 344340000000
- price
- 2869.5
- priceChangePercent24h
- -10.98
- volume24h
- 1072402001
- circulatingSupply
- 120000000
- totalSupply
- —
- createdAt
- symbol
- BNB
- name
- BNB
- slug
- bnb
- marketCap
- 63874440000
- price
- 417.48
- priceChangePercent24h
- -19.73
- volume24h
- 3318740793
- circulatingSupply
- 153000000
- totalSupply
- 200000000
- createdAt
- symbol
- SOL
- name
- Solana
- slug
- solana
- marketCap
- 69266550000
- price
- 161.085
- priceChangePercent24h
- -16.09
- volume24h
- 7477672809
- circulatingSupply
- 430000000
- totalSupply
- —
- createdAt
- symbol
- XRP
- name
- XRP
- slug
- xrp
- marketCap
- 25658100000
- price
- 0.57018
- priceChangePercent24h
- -8.06
- volume24h
- 8717988803
- circulatingSupply
- 45000000000
- totalSupply
- 100000000000
- createdAt
- symbol
- ADA
- name
- Cardano
- slug
- cardano
- marketCap
- 14998725000
- price
- 0.428535
- priceChangePercent24h
- -3.01
- volume24h
- 6890769104
- circulatingSupply
- 35000000000
- totalSupply
- 45000000000
- 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": 1,
"symbol": "BTC",
"name": "Bitcoin",
"slug": "bitcoin",
"marketCap": 900022500000,
"price": 46155,
"priceChangePercent24h": -2.04,
"volume24h": 7638122780,
"circulatingSupply": 19500000,
"totalSupply": 21000000,
"createdAt": "2026-02-07T01:29:08.434Z"
},
{
"id": 2,
"symbol": "ETH",
"name": "Ethereum",
"slug": "ethereum",
"marketCap": 344340000000,
"price": 2869.5,
"priceChangePercent24h": -10.98,
"volume24h": 1072402001,
"circulatingSupply": 120000000,
"totalSupply": null,
"createdAt": "2026-03-28T08:57:44.378Z"
},
{
"id": 3,
"symbol": "BNB",
"name": "BNB",
"slug": "bnb",
"marketCap": 63874440000,
"price": 417.48,
"priceChangePercent24h": -19.73,
"volume24h": 3318740793,
"circulatingSupply": 153000000,
"totalSupply": 200000000,
"createdAt": "2024-11-25T03:12:13.278Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 50,
"totalPages": 2
},
"links": {
"self": "/api/v1/crypto?page=1",
"first": "/api/v1/crypto?page=1",
"last": "/api/v1/crypto?page=2",
"next": "/api/v1/crypto?page=2",
"prev": null
}
}