Discover/CryptoCraft API
live

CryptoCraft APIcryptocraft.com

Access real-time quotes from 20+ exchanges, historical OHLC data, coin fundamentals, economic calendar events, and market news via the CryptoCraft API.

Endpoint health
verified 3d ago
get_instrument_list
get_instrument_quotes
get_news
get_coin_metrics
get_calendar_events
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the CryptoCraft 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.

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.
Call it over HTTPgrab 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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace cryptocraft-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
CryptoCraft Cryptocurrency API - Usage Example

Get your API key from: https://parse.bot/settings
"""
from parse_apis.cryptocraft_cryptocurrency_api import (
    CryptoCraft, CandleInterval, TimePeriod, AssetClass
)

client = CryptoCraft()

# List all coins and inspect fundamentals
for coin in client.coins.list(quote="USD"):
    print(coin.name, coin.code, coin.market_cap, coin.is_fork)

# Get historical OHLC metrics for Bitcoin
btc = client.coin("BTC")
result = btc.metrics(interval=CandleInterval.D1, period=TimePeriod.SEVEN_DAYS)
for point in result.metrics:
    print(point.date, point.open, point.high, point.low, point.close)

# Get real-time quotes for an instrument
eth = client.instrument("ETH/USD")
for quote_data in eth.quotes():
    print(quote_data.instrument, quote_data.aggregated_quote.bid, quote_data.aggregated_quote.ask)
    for eq in quote_data.exchange_quotes:
        print(eq.exchange, eq.bid, eq.ask)

# Get upcoming calendar events
for event in eth.calendar_events():
    print(event.title, event.impact_name, event.forecast, event.previous)

# Get recent news
for item in eth.news(hours_back=48):
    print(item.title, item.impact, item.views, item.timestamp)

# List all crypto instruments
for inst in client.instruments.list(asset_class=AssetClass.CRYPTO):
    print(inst.name, inst.display_name, inst.instrument_class, inst.decimals)
All endpoints · 6 totalmissing one? ·

Retrieves all cryptocurrency coins with detailed fundamental data. Returns market cap, founders, communities, wallets, block info, and fun facts for each coin. The full catalog is returned in a single page (~30 coins). Market cap values are denominated in the specified quote currency.

Input
ParamTypeDescription
quotestringQuote currency for market cap values.
Response
{
  "type": "object",
  "fields": {
    "coins": "array of coin objects with fundamental data including 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": 1240262763394,
          "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-13T11:40:06.000000Z"
        }
      ],
      "quote": "USD",
      "total": 32
    },
    "status": "success"
  }
}

About the CryptoCraft API

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.

Reliability & maintenanceVerified

The CryptoCraft API is a managed, monitored endpoint for cryptocraft.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cryptocraft.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official cryptocraft.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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.