# Bittensor Alpha-Token Prices (All Subnets)

> Bittensor Alpha-Token Prices (All Subnets) 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 the latest alpha-token price in TAO and USD for all 129 Bittensor subnets in a single API call.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/bittensor-derivatives/alpha-prices
- 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-db5e944b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3Udl03qPN93OXuejTmGzn

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-db5e944b
```

Example prompt: Pull the latest alpha-token prices in both TAO and USD for all 129 Bittensor subnets — I want to see which subnets have the cheapest and most expensive alpha tokens right now for a dTAO rebalancing decision.

## When to prefer this

Use this endpoint when you need a full snapshot of alpha-token prices across all Bittensor subnets in a single call, especially for portfolio rebalancing, arbitrage screening, or building dashboards. Prefer this over per-subnet queries when you need all 129 subnets at once.

## Known failure modes

- Upstream Subtensor node unavailable — returns 5xx error
- Stale data if node is syncing — prices may lag by a few blocks
- Rate limiting if called too frequently without payment
- Partial subnet coverage if new subnets were recently registered and not yet indexed

## How this service works

Latest alpha-token price per Bittensor subnet (TAO + USD). All 129 subnets in one call. AI agent API for cross-subnet price arbitrage, dTAO portfolio rebalancing. Informational research data — not investment advice.

## Output

A list of all 129 Bittensor subnets, each with the current alpha-token price expressed in TAO and USD. Useful for cross-subnet price comparison, arbitrage analysis, and portfolio rebalancing of dTAO holdings.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 129,
  "prices": [
   {
    "netuid": 1,
    "tao_price_usd": 264.5,
    "alpha_price_tao": 0.0028,
    "alpha_price_usd": 0.74
   }
  ]
 }
}
```

## More

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