# AgentData API — Technical Indicators Endpoint

> AgentData API — Technical Indicators Endpoint is a paid API for AI agents from agentdata-api.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Computes and returns technical indicators (e.g. RSI, MACD, Bollinger Bands) for a given crypto trading pair and interval, paid via USDC micropayment on Base Mainnet

## Facts

- Endpoint: GET https://agentdata-api.com/api/indicators
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdata-api-technical-indicators-endpoint-4c54e6a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_at_znvOa0PigNYSXYuv1I

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 agentdata-api-technical-indicators-endpoint-4c54e6a4
```

Example prompt: Can you pull the technical indicators for BTCUSDT on the 1h interval so I can see if it's overbought or showing a trend?

## When to prefer this

Choose this endpoint when you need on-demand technical indicator computations for crypto trading pairs without setting up an account or API key — ideal for AI agents that can autonomously pay per request via USDC micropayments on Base Mainnet. Prefer this over subscription-based market data APIs when low-cost, pay-as-you-go access is needed.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error
- Invalid interval string causes a bad request
- Insufficient USDC balance or failed x402 micropayment blocks the request
- Network or blockchain issues on Base Mainnet may cause delays or failures
- Malformed request body missing required fields returns a validation error

## How this service works

Pay-per-request crypto market data API for AI agents. 16 endpoints on Base Mainnet via x402 protocol. No accounts, no API keys. USDC micropayments from $0.001. Works with Claude Desktop, ElizaOS, and any MCP client.

## Output

Returns a JSON object with a 'data' field containing computed technical indicator values (e.g. RSI, MACD, Bollinger Bands) for the requested trading pair and interval, plus a 'success' boolean. Payment of $0.002 USDC is charged per call via x402 on Base Mainnet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Trading pair (e.g. BTCUSDT)"
  },
  "interval": {
   "enum": [
    "1m",
    "5m",
    "15m",
    "30m",
    "1h",
    "4h",
    "1d"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {},
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdata-api-technical-indicators-endpoint-4c54e6a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.com](https://www.zero.xyz/host/agentdata-api.com/llms.txt)
