asicminervalue.com APIasicminervalue.com ↗
Access ASIC miner profitability, specs, efficiency rankings, solo mining odds, mineable coins, and halving countdowns via the asicminervalue.com API.
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'
Get miners profitability list from the home page. Returns a list of miners sorted by power consumption with model, hashrate, power, daily profit, algorithm, and best price.
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, and 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 asicminervalue.com API
This API exposes 7 endpoints covering ASIC mining hardware data from asicminervalue.com, including profitability rankings, detailed miner specifications, energy efficiency comparisons, and cryptocurrency halving countdowns. The get_miner_detail endpoint alone returns over 10 distinct fields per miner — specs table, mineable coins, income projections, and structured product data — identified by manufacturer and model slug.
Miner Listings and Rankings
The get_miners_profitability and get_miners_efficiency endpoints both return arrays of miner objects covering fields like manufacturer, model, hashrate, power, daily_profit_usd, algorithm, release_date, and best_p (best price). The profitability list is sorted by power consumption; the efficiency list is sorted by J/Th. Neither endpoint requires any input parameters, making them suitable for polling on a schedule to track market shifts.
Miner Detail and Search
The get_miner_detail endpoint accepts two required parameters — manufacturer (e.g., bitmain, iceriver) and model_slug (e.g., antminer-s21-200th) — and returns a structured record including a specs object of key/value pairs from the product page, a profitability array broken down by period (daily, monthly, yearly), and a mineable_coins array with coin name, description, and URL. It also surfaces product_json_ld structured data. The search_miners endpoint takes a free-text query and matches against miner name, slug, and manufacturer, returning name, manufacturer, slug, and url for each result.
Network and Market Context
get_mineable_coins returns coin-level stats including price, market_cap, algorithm, network_hashrate, and difficulty — useful for cross-referencing against miner algorithm support. get_solo_mining_odds returns per-miner prob_block_daily alongside hashrate, power, and efficiency, covering the probability of a solo miner finding a block in a given day.
Halving Events
get_halving_countdown returns an array of upcoming halving events across multiple coins. Each object includes coin, halving_date, halving_block, blocks_remaining, current_block_reward, and new_block_reward — enough to build countdowns or trigger alerts when reward schedules change.
- Build a miner comparison dashboard using daily profit and efficiency fields from the profitability and efficiency endpoints.
- Track price-to-profit ratios over time by polling
get_miners_profitabilityand recordingbest_panddaily_profit_usdfields. - Cross-reference miner algorithm support with network difficulty from
get_mineable_coinsto identify under- or over-served algorithms. - Alert users ahead of halving events using
blocks_remainingandhalving_datefromget_halving_countdown. - Build a miner lookup tool using
search_minersto let users find hardware by keyword and then fetch full specs viaget_miner_detail. - Estimate solo mining viability for a given setup by querying
get_solo_mining_oddsforprob_block_dailyacross hardware models. - Populate a hardware catalog with manufacturer, image, price, and specs by iterating slugs through
get_miner_detail.
| 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 asicminervalue.com have an official developer API?+
What does `get_miner_detail` return beyond the basic listing fields?+
specs object of key/value hardware specification pairs, a profitability array broken out by income period, a mineable_coins array with coin name and URL, a product image URL, current price in USD, and product_json_ld structured data properties — significantly more than the listing endpoints.Does the API return historical profitability data or price history for miners?+
profitability field in get_miner_detail covers daily, monthly, and yearly projections based on current conditions, and get_miners_profitability returns present-state data only. You can fork this API on Parse and revise it to store and expose historical snapshots by adding a persistence layer.Does the API cover GPU miners or FPGA hardware, or only ASICs?+
Is there pagination for the miner listing endpoints?+
get_miners_profitability and get_miners_efficiency endpoints return all visible miners in a single response, with a total_visible integer indicating the count. There are no pagination parameters; the full list is returned in one call.