# Carbon & Cashmere Bittensor Subnet Validator List API

> Carbon & Cashmere Bittensor Subnet Validator List API 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-08).

Returns a ranked list of active validators for a specific Bittensor subnet, including stake, incentive, and validator trust scores.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/bittensor-derivatives/subnet/%7Bnetuid%7D/validators
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-bittensor-subnet-validator-list-api-a4228220
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RCCeZHKt9k3n5tn-xY498

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-bittensor-subnet-validator-list-api-a4228220
```

Example prompt: Pull the validator list for Bittensor subnet 1 — I want to see each validator's stake, incentive score, and trust score so I can evaluate which ones are performing best.

## When to prefer this

Use this endpoint when you need structured validator-level data for a specific Bittensor subnet, including stake distribution and trust metrics, rather than just token price or market signals. Ideal for subnet health analysis, validator selection, or decentralized AI network research.

## Known failure modes

- Invalid or nonexistent netuid returns empty or error response
- Payment not included results in 402 Payment Required
- Network timeout if Bittensor node data is stale or unavailable
- Malformed netuid path parameter causes 400 Bad Request

## How this service works

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

## Output

A JSON object containing the subnet ID, total validator count, number of validators returned, and an array of validator records each with uid, stake, incentive score, and validator trust score.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "netuid": 1,
  "returned": 20,
  "validators": [
   {
    "uid": 248,
    "stake": 686148,
    "incentive": 0.95,
    "validator_trust": 0.84
   }
  ],
  "validator_count": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-bittensor-subnet-validator-list-api-a4228220/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)
