# The Stall — Technical Indicators (x402)

> The Stall — Technical Indicators (x402) is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Returns technical analysis indicators for an equity ticker symbol, payable per-call in USDC on Base mainnet with no API keys required.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/technical-indicators
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-technical-indicators-x402-7cb52c2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gxBTfGUBQpuus2eSFZOMe

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 the-stall-technical-indicators-x402-7cb52c2f
```

Example prompt: Pull the technical indicators for AAPL right now — I want to see RSI, MACD, and moving averages to decide if it's a good entry point.

## When to prefer this

Choose this endpoint when you need programmatic, per-call access to technical analysis indicators for US equities without setting up accounts or API keys, and when paying micro-amounts in USDC on Base mainnet is acceptable. Ideal for AI agents that need to incorporate technical signals into trading decisions, watchlist monitoring, or financial research pipelines on demand.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment failure or insufficient USDC balance on Base mainnet blocks access
- Ticker not covered by the data provider returns a not-found error
- Network or upstream data provider outage causes a timeout
- Missing required 'ticker' query parameter results in a 400 bad request

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

A structured data response containing computed technical analysis indicators for the requested equity ticker, likely including values such as RSI (Relative Strength Index), MACD (Moving Average Convergence Divergence), moving averages (e.g. SMA, EMA), Bollinger Bands, stochastics, or other standard momentum and trend oscillators derived from recent price history.

## 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": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Equity ticker symbol (e.g. AAPL, SPY, QQQ)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-technical-indicators-x402-7cb52c2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
