# Agent Data Toolkit – Crypto Market Features

> Agent Data Toolkit – Crypto Market Features is a paid API for AI agents from agent-data-toolkit.onrender.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Computes live numeric market features (RSI, SMAs, momentum, volatility, drawdown, range position, volume trend) from Binance candles for a given crypto asset, ready as model inputs for trading or betting agents.

## Facts

- Endpoint: POST https://agent-data-toolkit.onrender.com/features
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-data-toolkit-crypto-market-features-f708c808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GNBELU5f0ph7Mjr4pnH_H

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 agent-data-toolkit-crypto-market-features-f708c808 -d '<json body>'
```

Example prompt: Pull the live market features for BTC/USDT from Binance right now — I need RSI, SMAs, momentum, volatility, drawdown, range position, and volume trend as numeric values to feed into my trading model.

## When to prefer this

Use this endpoint when you need a pre-computed, structured set of technical market indicators for a crypto asset in a single call, rather than fetching raw candle data and computing indicators yourself. Ideal for trading agents, price-betting systems, or ML pipelines that require live, numeric model-ready features from Binance without additional preprocessing.

## Known failure modes

- Invalid or unsupported asset symbol returns an error
- Binance API unavailable or rate-limited causes upstream failure
- Missing required symbol parameter returns validation error
- Stale or insufficient candle data may affect indicator accuracy
- Payment not processed (x402) results in 402 response and no data returned

## How this service works

Live numeric market features for a crypto asset from Binance candles: RSI, SMAs, momentum, volatility, drawdown, range position, volume trend. Ready-made model inputs for trading and betting agents.

## Output

A JSON object containing ready-made numeric market features derived from live Binance candle data for the requested crypto asset: RSI, one or more SMAs, momentum, volatility, drawdown, range position, and volume trend — structured as model inputs for trading or price-betting agents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "string, e.g. 'BTCUSDT' or an alias like 'bittensor'"
      },
      "interval": {
       "type": "string",
       "description": "string, candle interval (1h, 1d, ...)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "ok",
      "symbol"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "rsi": {
       "type": "number"
      },
      "sma": {},
      "as_of": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "drawdown": {
       "type": "number"
      },
      "interval": {
       "type": "string"
      },
      "momentum": {},
      "volatility": {
       "type": "number"
      },
      "volume_trend": {
       "type": "number"
      },
      "range_position": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-data-toolkit-crypto-market-features-f708c808/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-data-toolkit.onrender.com](https://www.zero.xyz/host/agent-data-toolkit.onrender.com/llms.txt)
