# TaoEVM EVM-on-Bittensor Hourly Call Counter

> TaoEVM EVM-on-Bittensor Hourly Call Counter is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns hourly EVM executed call counts for the TaoEVM (EVM-on-Bittensor) network to track dApp adoption over time

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/subtensor-derivatives/evm-activity
- Price: $0.05/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-754538c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rj4_kFNEaovEjWcVfLUo6

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-754538c8
```

Example prompt: Can you pull the latest hourly EVM call counts for TaoEVM on Bittensor so I can see how dApp adoption is trending over the past day?

## When to prefer this

Use this endpoint when you need granular hourly EVM call volume specifically for the TaoEVM (EVM-on-Bittensor) network, as opposed to general Ethereum or other EVM chain activity. Ideal for analysts tracking cross-VM adoption trends, dApp growth on Bittensor, or building time-series dashboards for Subtensor EVM usage.

## Known failure modes

- No data available yet for the requested time window — returns empty hourly array
- Upstream Subtensor node lag causes stale or delayed hourly counts
- Rate limiting or payment failure returns 402/429 with no data
- Malformed response if the TaoEVM node is temporarily unreachable

## How this service works

EVM-on-Bittensor Ethereum.Executed call count per hour. Tracks TaoEVM dApp adoption. AI agent API for cross-VM adoption analysts. Informational research data — not investment advice.

## Output

A JSON array of hourly buckets, each containing an ISO 8601 timestamp and the number of EVM calls executed on the TaoEVM (EVM-on-Bittensor) network during that hour, covering the most recent ~24 hours of activity.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hourly": [
   {
    "hour": "...",
    "evm_calls": 6
   }
  ],
  "window": "24h",
  "summary": {
   "total_evm_calls": 124
  }
 }
}
```

## More

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