# AgentServices Technical Indicators API

> AgentServices Technical Indicators API is a paid API for AI agents from agentservices.to, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches technical indicators (e.g. RSI, MACD, Bollinger Bands) for a given crypto symbol via micropayment-gated POST request

## Facts

- Endpoint: GET https://agentservices.to/v1/indicators/%7Bsymbol%7D
- 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/agentservices-technical-indicators-api-dd19d496
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U_oRnQK0vOcXK6-4LedCs

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 agentservices-technical-indicators-api-dd19d496
```

Example prompt: Can you pull the RSI indicator for BTC right now — I want to know if it's overbought or oversold before I make a trade decision?

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-call access to crypto technical indicators without a subscription, particularly in agent workflows using x402 micropayments on Base. Prefer this over free APIs when freshness and reliability matter, and over subscription APIs when call volume is low or variable.

## Known failure modes

- Invalid or unsupported symbol returns 404 or error response
- Insufficient x402 USDC micropayment causes 402 Payment Required
- Unsupported indicator type returns 400 Bad Request
- Network or upstream data provider outage causes 503
- Stale or missing market data may yield null or error values for illiquid assets

## How this service works

Paid data APIs for AI agents. Crypto market data, DeFi yields, IP geolocation, dispute resolution, marketing intelligence. Powered by x402 micropayments on Base.

## Output

Returns computed technical indicator values for the requested crypto symbol, including the indicator reading, signal interpretation, and associated timestamp. May include multiple sub-values depending on the indicator (e.g. MACD line, signal line, histogram).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "DELETE",
      "GET",
      "HEAD"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "routeTemplate": {
   "type": "string"
  }
 }
}
```

## More

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