# Micro SaaS Agent Momentum Signal

> Micro SaaS Agent Momentum Signal is a paid API for AI agents from micro-saas-agent.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns live momentum trading signals (RSI-14, Bollinger %B, BUY/HOLD/SELL recommendation, and confidence) for a given crypto pair

## Facts

- Endpoint: POST https://micro-saas-agent.onrender.com/api/agent
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/micro-saas-agent-momentum-signal-23bd436e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zMrciS3chnhuOpdg9Hn-1

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 micro-saas-agent-momentum-signal-23bd436e -d '<json body>'
```

Example prompt: What's the current momentum signal for BTC/USD — give me the RSI, Bollinger %B, and whether it's a BUY, HOLD, or SELL right now.

## When to prefer this

Choose this endpoint when you need a quick, single-pair momentum snapshot combining RSI-14 and Bollinger %B into a unified BUY/HOLD/SELL signal with confidence — especially for BTC/USD, ONDO/USD, or XPR/USD. Prefer this over raw data feeds when you want a pre-computed directional recommendation rather than raw OHLCV data. Not suitable for pairs outside the supported enum or for fundamental/sentiment analysis.

## Known failure modes

- Unsupported trading pair (only BTC/USD, ONDO/USD, XPR/USD are valid) returns an error or empty result
- Stale or unavailable market data may reduce signal accuracy or cause a timeout
- Payment failure (x402 protocol) prevents the call from completing
- Service cold start on Render may cause elevated latency or initial timeout

## How this service works

Live momentum signal: RSI(14), Bollinger %B, BUY/HOLD/SELL, confidence

## Output

Returns a live momentum snapshot including the RSI(14) value, Bollinger %B reading, a BUY/HOLD/SELL directional recommendation, and a confidence score — giving the agent a structured technical signal for the requested crypto pair.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pair": {
   "enum": [
    "BTC/USD",
    "ONDO/USD",
    "XPR/USD"
   ],
   "type": "string",
   "default": "BTC/USD"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/micro-saas-agent-momentum-signal-23bd436e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from micro-saas-agent.onrender.com](https://www.zero.xyz/host/micro-saas-agent.onrender.com/llms.txt)
