# Carbon & Cashmere Kaspa Throughput & DAG-Width Health

> Carbon & Cashmere Kaspa Throughput & DAG-Width Health is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns Kaspa blockchain throughput metrics including chain-block rate, estimated total DAG rate, TPS, and multi-month pre-fork baseline comparisons for hardfork impact tracking.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/kaspa-derivatives/throughput-health
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-kaspa-throughput-dag-width-health-bdde4bf3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZiXdkdOAM4NdNtT6PNOQW

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 carbon-cashmere-kaspa-throughput-dag-width-health-bdde4bf3
```

Example prompt: What's Kaspa's current throughput health — give me the live chain-block rate, estimated total DAG rate, and TPS compared to the multi-month pre-fork baseline so I can see the hardfork's impact?

## When to prefer this

Use this endpoint when you need Kaspa-specific network throughput analytics — particularly DAG-width metrics and hardfork baseline comparisons — that generic crypto price APIs do not provide. Prefer this over general blockchain explorers when you need structured, research-grade TPS and DAG rate data with pre/post-fork context.

## Known failure modes

- Payment not received or invalid x402 payment header — returns 402 Payment Required
- Upstream Kaspa node data unavailable — may return 503 or stale data
- Malformed request method (only GET/HEAD/DELETE supported) — returns 405 Method Not Allowed
- Rate limiting or quota exceeded — returns 429 Too Many Requests

## How this service works

Kaspa throughput & DAG-width: chain-block rate, estimated total DAG rate, TPS vs multi-month pre-fork baseline — hardfork impact tracking. Informational research data — not investment advice.

## Output

Returns a JSON object with current Kaspa throughput snapshot (chain-block rate, estimated total DAG rate, current TPS), hourly throughput data arrays, and a 30-day-to-7-day baseline object for pre-fork comparison, enabling hardfork impact analysis.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "hourly": {
       "type": "array"
      },
      "current": {
       "type": "object"
      },
      "baseline_30d_to_7d": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-kaspa-throughput-dag-width-health-bdde4bf3/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)
