cryptocraft.com APIcryptocraft.com ↗
Access real-time quotes from 20+ exchanges, historical OHLC data, coin fundamentals, economic calendar events, and market news via the CryptoCraft API.
curl -X GET 'https://api.parse.bot/scraper/f4b255b1-0f6f-41fd-a1a2-387427ff58a3/get_coins?quote=USD' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all cryptocurrency coins with detailed fundamental data including market cap, founders, communities, wallets, block info, and fun facts.
| Param | Type | Description |
|---|---|---|
| quote | string | Quote currency for market cap values. |
{
"type": "object",
"fields": {
"coins": "array of coin objects with id, name, code, market_cap, founders, communities, fun_fact, and blockchain details",
"quote": "string quote currency used",
"total": "integer total number of coins returned"
},
"sample": {
"data": {
"coins": [
{
"id": 1,
"url": "http://bitcoin.com/",
"code": "BTC",
"name": "Bitcoin",
"quote": "USD",
"is_fork": false,
"founders": [
{
"url": "https://en.wikipedia.org/wiki/Satoshi_Nakamoto",
"name": "Satoshi Nakamoto"
}
],
"fun_fact": "Bitcoin was the first mineable cryptocurrency.",
"block_size": "4MB",
"block_time": 600,
"market_cap": 1598616927028.3,
"max_supply": 21000000,
"communities": [
{
"url": "https://www.reddit.com/r/Bitcoin/",
"name": "Reddit"
}
],
"is_burnable": false,
"block_reward": 3.125,
"genesis_block_date": "2009-01-03T13:15:05-05:00",
"next_reduction_date": "2028-04-12T10:00:05.000000Z"
}
],
"quote": "USD",
"total": 32
},
"status": "success"
}
}About the cryptocraft.com API
The CryptoCraft API provides 6 endpoints covering real-time cryptocurrency quotes across 20+ exchanges, historical OHLC price metrics, coin fundamentals, economic calendar events, and market news. The get_instrument_quotes endpoint returns per-exchange quote breakdowns and multi-timeframe performance metrics for any instrument pair, while get_coin_metrics delivers historical open/high/low/close data with configurable periods and candle intervals.
Coins and Fundamentals
The get_coins endpoint returns an array of coin objects covering fields like id, name, code, market_cap, founders, communities, fun_fact, and blockchain details. An optional quote parameter controls the currency used for market cap values. The total field in the response tells you how many coins were returned. This is the right starting point if you need metadata on a coin beyond just its price.
Historical Price Data
get_coin_metrics accepts a coin code (e.g. BTC, ETH, SOL), a period (6H through 3Y), and an interval of H2 (2-hour candles) or D1 (daily candles). Each data point in the metrics array includes open, high, low, close, price, supply, market_cap, date, and timestamp. The limit parameter caps how many data points come back. Supported coins include BTC, ETH, SOL, XRP, DOGE, ADA, LINK, LTC, BCH, XMR, XLM, ZEC, DCR, HBAR, AVAX, SUI, ETC, ICP, and NEAR.
Real-Time Quotes and Instruments
get_instrument_quotes accepts a comma-separated list of instrument pairs such as BTC/USD,ETH/USD and returns an instruments array where each entry includes an aggregated_quote, per-exchange exchange_quotes from 20+ venues, and performance metrics at multiple timeframes. Use get_instrument_list first to discover available instruments — it supports filtering by asset_class (crypto or forex) and returns each instrument's id, name, display_name, instrument_class, decimals, and is_in_holiday flag.
Calendar Events and News
get_calendar_events returns upcoming economic events with title, dateline, in_time, impact_value, impact_name, forecast, and previous fields for a given instrument. get_news retrieves recent headlines filtered by instrument pair and a hours_back lookback window. Each news item includes title, impact, impact_value, timestamp, views, and url, so you can rank stories by market impact score.
- Aggregate real-time BTC/USD and ETH/USD quotes from 20+ exchanges for a best-price display widget.
- Build OHLC candlestick charts using
get_coin_metricswith H2 or D1 intervals over custom time periods. - Screen coins by market cap and blockchain fundamentals sourced from
get_coinsfor a research dashboard. - Alert users to high-impact economic calendar events before they affect a crypto instrument.
- Rank and display market-moving news by
impact_valuefor a cryptocurrency news feed. - Compare per-exchange quote spreads from
exchange_quotesto detect arbitrage opportunities. - Filter available trading instruments by asset class to populate a dynamic instrument selector UI.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does CryptoCraft have an official developer API?+
What does `get_instrument_quotes` return beyond just the current price?+
get_instrument_quotes returns an aggregated_quote combining data across sources, individual exchange_quotes from each of the 20+ exchanges tracked, and performance metrics across multiple timeframes — all within a single response per instrument pair.How far back does historical OHLC data go in `get_coin_metrics`?+
period parameter supports up to 3Y (three years) of history. The finest granularity available is H2 (2-hour candles) via the interval parameter; daily candles are available with D1. The maximum number of data points per request is controlled by the limit parameter.Does the API cover on-chain transaction data or wallet balances?+
Is the coin coverage in `get_coin_metrics` limited to a fixed list?+
get_coin_metrics currently supports a defined set of coins including BTC, ETH, SOL, XRP, DOGE, ADA, LINK, LTC, BCH, XMR, XLM, ZEC, DCR, HBAR, AVAX, SUI, ETC, ICP, and NEAR. Coins not on this list are not covered. You can fork this API on Parse and revise it to extend coverage to additional coin codes.