# Kaspa Mining Economics Calculator

> Kaspa Mining Economics Calculator is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Calculates Kaspa mining profitability metrics including KAS yield per day, USD revenue, cost per TH/s, profit margin, and breakeven KAS price using live hashrate, difficulty, and KAS price data.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/kaspa/mining-economics
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-7ee56210
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qeC4ox7RZjJ_UFy5mUR_O

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 api-carbon-cashmere-de-7ee56210
```

Example prompt: What are the current Kaspa mining economics — specifically KAS yield per day per TH/s, USD revenue, profit margin, and breakeven KAS price assuming $0.07 per kWh electricity cost?

## When to prefer this

Use this endpoint when you need Kaspa-specific mining profitability analysis backed by a live Kaspa full node rather than static estimates. Ideal for agents assessing KAS mining ROI, comparing mining economics across electricity cost scenarios, or tracking how network difficulty changes affect miner margins. Prefer over generic crypto calculators when Kaspa-specific emission schedule accuracy (132 KAS block reward) and node-backed hashrate matter.

## Known failure modes

- Network hashrate or difficulty data unavailable from Kaspa node — returns 503 or error payload
- KAS price feed unavailable or stale — may return error or cached value
- Invalid or missing query parameters — returns 400 bad request
- Downstream node connectivity issues causing timeout

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

Returns a JSON object with Kaspa mining economics including: KAS-per-day yield per TH/s, USD revenue per TH/s per day, cost per TH/s based on 40W ASIC power draw and configurable electricity rate, profit margin percentage, and breakeven KAS price. Derived from live node-backed network hashrate, current difficulty, and real-time KAS price. Block reward assumed at 132 KAS per Kaspa emission schedule.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "disclaimer": "Informational research data only — not investment advice."
  },
  "breakeven": {
   "kas_price_usd_breakeven": 0.0064,
   "current_price_above_breakeven_pct": 1025
  },
  "block_reward": {
   "kas_per_block": 132,
   "blocks_per_day": 86400,
   "daily_network_kas_mined": 11404800,
   "daily_network_usd_value": 821145.6
  },
  "network_state": {
   "difficulty": 22300000000000000,
   "kas_price_usd": 0.072,
   "hashrate_thash": 942.4
  },
  "miner_economics_per_thash": {
   "kas_per_day": 12105.4,
   "is_profitable": true,
   "cost_per_day_usd": 0.077,
   "profit_per_day_usd": 0.795,
   "usd_revenue_per_day": 0.872
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-7ee56210/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
