Cryptocurrency market data including price, trading volume, market capitalization, supply metrics, price history, and market ranking. Used for crypto exchanges, portfolio trackers, and financial applications.
https://api.mockly.codes/cryptos?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/cryptosGet a collection of crypto
/finance/cryptos/cryptos/:idGet a single crypto by ID
/finance/cryptos/:id/cryptos/metaGet resource metadata and schema
/finance/cryptos/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/cryptos?q=laptopGET https://api.mockly.codes/cryptos?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 crypto
fetch('https://api.mockly.codes/cryptos?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/cryptos?count=10'
)
data = response.json()curl "https://api.mockly.codes/cryptos?count=10"fetch('https://api.mockly.codes/cryptos?nocache=true')idintegerUnique identifier for the cryptocurrency record
random_intsymbolstringCryptocurrency ticker symbol (e.g., BTC, ETH, ADA)
crypto_symbolnamestringFull name of the cryptocurrency (e.g., Bitcoin, Ethereum, Cardano)
crypto_namepricenumberCurrent market price per unit in USD
crypto_pricechange_24hnumberPrice change percentage over the last 24 hours
stock_change_percentvolume_24hnumberTrading volume in the last 24 hours
stock_volumemarket_capnumberTotal market capitalization (price × circulating supply)
market_capcirculating_supplynumberNumber of coins currently in circulation
crypto_supplytotal_supplynumberTotal number of coins that will ever exist (if capped) or current total supply
crypto_supplyhigh_24hnumberHighest price reached in the last 24 hours
crypto_pricelow_24hnumberLowest price reached in the last 24 hours
crypto_priceathnumberAll-time high price ever reached
crypto_priceath_datestringDate when the all-time high price was reached
past_datedaterankintegerMarket capitalization ranking among all cryptocurrencies
random_inttimestampstringTimestamp when this market data was recorded
date_timedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request