ASIC Miner Value APIasicminervalue.com ↗
Access ASIC miner profitability rankings, efficiency specs, solo mining odds, mineable coins, and halving countdowns via the asicminervalue.com API.
What is the ASIC Miner Value API?
This API exposes 7 endpoints covering ASIC mining hardware data from asicminervalue.com, including profitability rankings, detailed miner specifications, and halving countdowns. The get_miners_profitability endpoint returns the full tracked miner list with daily profit estimates, hashrate, power draw, algorithm, and best available price per unit. Endpoints cover everything from per-coin network difficulty to solo mining block probability, giving developers a structured feed of the data the site publishes.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/fbaf0a49-e522-430d-9650-e7a21e929095/get_miners_profitability' \ -H 'X-API-Key: $PARSE_API_KEY'
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 asicminervalue-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.
"""
ASIC Miner Value API - Usage Example
Explore cryptocurrency mining hardware profitability, efficiency rankings,
mineable coins, and halving countdowns.
"""
from parse_apis.asic_miner_value_api import AsicMinerValue, Algorithm, Manufacturer
client = AsicMinerValue()
# List miners ranked by energy efficiency and filter by algorithm
for miner in client.miners.list_by_efficiency(limit=10):
if miner.algorithm == Algorithm.SHA_256:
print(miner.manufacturer, miner.model, miner.hashrate, miner.power, miner.daily_profit_usd)
# Search for miners by keyword
for result in client.miners.search(query="antminer", limit=3):
print(result.name, result.manufacturer, result.slug)
# Get detailed specs for a specific Bitmain miner
detail = client.minerdetails.lookup(manufacturer=Manufacturer.BITMAIN, model_slug="antminer-s21-200th")
print(detail.name, detail.price, detail.currency)
for coin_ref in detail.mineable_coins:
print(coin_ref.name, coin_ref.full_info)
# List mineable coins with their algorithms
for coin in client.coins.list(limit=3):
print(coin.coin, coin.ticker, coin.algorithm, coin.network_hashrate)
# List halving countdown events
for event in client.halvingevents.list(limit=3):
print(event.coin, event.tag, event.halving_date, event.blocks_remaining)
Retrieve the full list of ASIC miners sorted by power consumption (ascending). Each entry includes manufacturer, model name, hashrate, power draw, daily profit estimate, algorithm, and best available price. The list represents all miners tracked by the site.
No input parameters required.
{
"type": "object",
"fields": {
"miners": "array of miner objects with manufacturer, model, slug, url, release_date, hashrate, power, daily_profit_usd, algorithm, best_price",
"total_visible": "integer count of miners returned"
},
"sample": {
"data": {
"miners": [
{
"url": "https://www.asicminervalue.com/miners/bitaxe/ultra-1366",
"slug": "/miners/bitaxe/ultra-1366",
"model": "Ultra 1366(425Gh)",
"power": "11W",
"hashrate": "425Gh/s",
"algorithm": "SHA-256",
"best_price": null,
"manufacturer": "Bitaxe",
"release_date": "Aug 2023",
"daily_profit_usd": "-$0.03/day"
}
],
"total_visible": 20
},
"status": "success"
}
}About the ASIC Miner Value API
Miner Listings and Search
The get_miners_profitability endpoint returns all tracked ASIC miners sorted by power consumption ascending. Each miner object includes manufacturer, model, slug, hashrate, power, daily_profit_usd, algorithm, and best_price. The get_miners_efficiency endpoint returns the same field set but ordered by energy efficiency (J/Th ascending), useful for filtering hardware by operating cost rather than raw output. To look up a specific device, search_miners accepts a query string matched against name, slug, and manufacturer, returning name, manufacturer, slug, and url for each hit — which you then pass into get_miner_detail.
Miner Detail
get_miner_detail takes a manufacturer slug and model_slug (both found in the site URL path, e.g. bitmain / antminer-s21-200th) and returns the full product record: specs as a key/value object from the specifications table, a profitability array broken down by period with income and profit columns, mineable_coins with per-coin name and info URL, a product image, and product_json_ld structured data. This is the right endpoint when you need specs and per-period profit numbers for a single device.
Network and Market Data
get_mineable_coins returns per-coin market data — price, market_cap, algorithm, network_hashrate, and difficulty — useful for monitoring which chains are currently most accessible to mine. get_halving_countdown covers proof-of-work halving events with halving_date, halving_block, blocks_remaining, current_block_reward, and new_block_reward per coin. get_solo_mining_odds focuses on Bitcoin and returns prob_block_daily expressed as a "1 in N" string alongside hashrate, power, and efficiency for each listed miner.
The ASIC Miner Value API is a managed, monitored endpoint for asicminervalue.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when asicminervalue.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 asicminervalue.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a mining profitability calculator that pulls daily USD profit and power draw from
get_miners_profitability. - Rank hardware purchases by efficiency using J/Th values from
get_miners_efficiencyto estimate electricity costs. - Alert subscribers when
blocks_remainingfromget_halving_countdowndrops below a threshold for Bitcoin or another coin. - Create a miner comparison tool by querying
search_minersand enriching results with specs fromget_miner_detail. - Track network difficulty trends per algorithm using the
difficultyandnetwork_hashratefields fromget_mineable_coins. - Show solo mining probability for a given hashrate by matching hardware specs against
prob_block_dailyinget_solo_mining_odds. - Populate a hardware database with structured specs and
product_json_ldfromget_miner_detailfor each miner slug.
| 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 | 100 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 asicminervalue.com offer an official developer API?+
What does get_miner_detail return beyond basic specs?+
get_miner_detail returns a profitability array broken down by period (showing income and profit), a mineable_coins list with per-coin info URLs, a specs key/value object from the product specifications table, and product_json_ld structured data. You need both a manufacturer slug and a model_slug as inputs — both are available from the slug and url fields returned by get_miners_profitability or search_miners.Does the API cover GPU miners or FPGA hardware, or only ASICs?+
Is historical profitability data available, such as daily profit trends over time?+
profitability array in get_miner_detail shows period-based income and profit snapshots, but there is no endpoint exposing time-series or historical profitability data. You can fork this API on Parse and revise it to add a historical data endpoint if the source exposes that information.Does get_solo_mining_odds cover coins other than Bitcoin?+
get_solo_mining_odds endpoint focuses on Bitcoin miners as listed on asicminervalue.com's solo mining page. Solo probability data for other coins is not currently returned. You can fork this API on Parse and revise it to target solo odds data for additional coins if the source covers them.