Discover/cryptocraft.com API
live

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.

Endpoints
6
Updated
3mo ago
Try it
Quote currency for market cap values.
api.parse.bot/scraper/f4b255b1-0f6f-41fd-a1a2-387427ff58a3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f4b255b1-0f6f-41fd-a1a2-387427ff58a3/get_coins?quote=USD' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Get all cryptocurrency coins with detailed fundamental data including market cap, founders, communities, wallets, block info, and fun facts.

Input
ParamTypeDescription
quotestringQuote currency for market cap values.
Response
{
  "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.

Common use cases
  • 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_metrics with H2 or D1 intervals over custom time periods.
  • Screen coins by market cap and blockchain fundamentals sourced from get_coins for 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_value for a cryptocurrency news feed.
  • Compare per-exchange quote spreads from exchange_quotes to detect arbitrage opportunities.
  • Filter available trading instruments by asset class to populate a dynamic instrument selector UI.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does CryptoCraft have an official developer API?+
CryptoCraft does not publish a documented public developer API. This Parse API exposes its cryptocurrency data — including quotes, OHLC metrics, coin fundamentals, calendar events, and news — as structured JSON endpoints.
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`?+
The 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?+
Not currently. The API covers coin fundamentals (market cap, founders, blockchain metadata), OHLC price history, exchange quotes, calendar events, and news headlines. On-chain transaction data and individual wallet balances are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting on-chain data from another source.
Is the coin coverage in `get_coin_metrics` limited to a fixed list?+
Yes — 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.
Page content last updated . Spec covers 6 endpoints from cryptocraft.com.
Related APIs in Crypto Web3See all →
cryptoslate.com API
Track real-time cryptocurrency prices and rankings, access detailed coin information and market overviews, and discover industry companies and key people in the crypto space. Stay informed with the latest cryptocurrency news articles and search across all available data to monitor assets and trends.
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
cfbenchmarks.com API
Monitor real-time cryptocurrency prices and market cap data—both free float and full valuations—to screen and compare digital assets. Access comprehensive pricing information across the crypto market to inform your investment decisions and portfolio analysis.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
cex.io API
Access real-time cryptocurrency market data from CEX.io, including live prices, tickers, order books, trade history, and OHLCV candles for spot trading pairs. Monitor market movements and analyze trading opportunities with comprehensive pricing and order depth information across supported cryptocurrencies.
goldprice.org API
Track real-time and historical prices for gold, silver, and other precious metals, plus monitor gold performance metrics and view precious metals news. Get current cryptocurrency prices, lookup gold rates by country, and check gold stock prices all in one place.
kraken.com API
Get live Kraken exchange market data including supported assets, trading pairs metadata, tickers, OHLCV candlesticks, and bid/ask spread history.