# ASIC Mining Break-Even & Profitability Calculator

> ASIC Mining Break-Even & Profitability Calculator is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Calculates BTC mining profitability metrics including daily/monthly revenue, power costs, net profit, margin, break-even electricity price, and break-even BTC price for a named ASIC model or raw hashrate/wattage inputs.

## Facts

- Endpoint: GET https://api.agentstools.dev/mining/breakeven
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/asic-mining-break-even-profitability-calculator-917c4df8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XG_nCpGAMmeijocnCMhCG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability asic-mining-break-even-profitability-calculator-917c4df8
```

Example prompt: What's the daily profit, monthly revenue, and break-even electricity price for an Antminer S21 mining bitcoin at $0.08 per kWh with a 1% pool fee and a hardware cost of $3,000?

## When to prefer this

Use this endpoint when you need ASIC-specific or custom-hashrate bitcoin mining profitability and break-even analysis, including power cost accounting and optional hardware ROI. Prefer this over generic crypto price endpoints when the user is asking about mining economics, electricity cost thresholds, or hardware investment payback periods.

## Known failure modes

- Unknown model ID — if the model string doesn't match any entry from /mining/asics, the endpoint returns an error; use GET /mining/asics to get valid IDs
- Missing required pairing — providing th_s without watts or watts without th_s returns a validation error
- Conflicting inputs — specifying both a model and raw th_s/watts may cause a conflict error
- Invalid electricity price — negative or zero values may return an error or unrealistic results
- Pool fee out of range — pool_fee_pct outside 0–100 causes a validation error

## How this service works

ASIC-miner break-even and profitability: daily and monthly BTC and USD revenue, power cost, net profit, margin, the break-even electricity price and the break-even BTC price, and optional hardware payback days, for a named miner model or raw hashrate and wattage at a given electricity price. Informational, not advice.

## Output

Returns a structured object with daily and monthly BTC and USD revenue figures, electricity power cost, net profit, profit margin percentage, break-even electricity price (USD/kWh), break-even BTC price (USD), and optionally hardware payback days if hardware cost was provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "th_s": {
       "type": "number",
       "description": "Raw hashrate in TH/s; use with watts instead of a model"
      },
      "model": {
       "type": "string",
       "description": "ASIC model id from GET /mining/asics (such as antminer-s21); alternative to th_s and watts"
      },
      "watts": {
       "type": "number",
       "description": "Raw wall power in watts; use with th_s instead of a model"
      },
      "pool_fee_pct": {
       "type": "number",
       "description": "Mining-pool fee percent from 0 to 100; defaults to 0"
      },
      "hardware_cost_usd": {
       "type": "number",
       "description": "Optional hardware cost in USD to compute payback days"
      },
      "electricity_usd_kwh": {
       "type": "number",
       "description": "Electricity price in USD per kWh; defaults to 0.05"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asic-mining-break-even-profitability-calculator-917c4df8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
