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 →
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
ens.vision API
Search and explore ENS domains across the marketplace, discover owner portfolios and activity feeds, and resolve names to addresses with complete text records. Get domain details, browse categories, view offers and recommendations, and track all marketplace listings in one place.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.