# Kaspa Node Peer Network Diversity

> Kaspa Node Peer Network Diversity is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns peer-network breakdown (IPv4 vs IPv6) and user-agent distribution for the Kaspa network from a live own-node connection.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/kaspa-derivatives/diversity
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-430ba4f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QF94h9BOVN9VuF_vcLi1L

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-430ba4f0
```

Example prompt: Can you pull the current Kaspa peer network diversity breakdown — I want to see the IPv4 vs IPv6 split and the user-agent distribution across all connected nodes?

## When to prefer this

Use this endpoint when you need live, node-level Kaspa peer network data including IPv4/IPv6 ratio and user-agent software distribution. Prefer this over generic block explorer APIs when doing node-operator analytics, network health assessments, or decentralization research on the Kaspa BlockDAG network.

## Known failure modes

- Own node temporarily offline or syncing — may return stale or unavailable data
- Network partition causing incomplete peer list
- Rate limiting if called too frequently
- Empty user-agent distribution if connected peers do not report agent strings

## How this service works

Kaspa own-node peer-network breakdown (IPv4/IPv6) + user-agent distribution. AI agent API for network-health monitoring, node-operator analytics. Informational research data — not investment advice.

## Output

Returns a breakdown of Kaspa network peers split by address family (IPv4/IPv6) and a distribution of user-agent strings reported by connected nodes, giving a snapshot of network diversity and software version spread as seen from the provider's own Rusty Kaspa node.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "inbound": 0,
  "outbound": 8,
  "by_network": {
   "ipv4": 8,
   "ipv6": 0
  },
  "total_peers": 8,
  "user_agents": {
   "/rusty-kaspa:0.15.4/": 5
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-430ba4f0/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)
