# SuVerse Moving Averages (SMA/EMA) for Binance Pairs

> SuVerse Moving Averages (SMA/EMA) for Binance Pairs is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns SMA and EMA at 20, 50, and 200 periods plus golden/death cross detection and trend classification for any Binance trading pair on any timeframe

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ta-moving-averages
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-6b455408
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nwwgv5B6Q0MsczVhDUU83

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 proxy-suverse-io-6b455408 -d '<json body>'
```

Example prompt: What are the current SMA and EMA values at the 20, 50, and 200 periods for BTC/USDT on the 4-hour timeframe, and has there been a golden cross or death cross in the last 10 candles?

## When to prefer this

Use this endpoint when an AI agent needs classic trend-following signals for any Binance-listed crypto pair — especially for detecting golden/death crosses, classifying macro trend direction via the 200 SMA, or computing dynamic support/resistance levels across multiple timeframes. Prefer this over raw OHLCV endpoints when pre-computed multi-period SMA and EMA values are needed in a single call.

## Known failure modes

- Invalid or unsupported Binance pair symbol returns an error
- Unsupported or malformed timeframe parameter causes a 400-level error
- Binance data source unavailable or rate-limited causes upstream failure
- Insufficient historical candle data for 200-period calculation on very new pairs

## How this service works

SMA + EMA at 20, 50, 200 periods for any Binance pair on any timeframe. Current price, all six MAs, golden cross / death cross detection within last 10 periods, above/below 200 SMA trend flag. AI agent trend-following bot, dynamic support-resistance, TA API.

## Output

Returns the current price of the pair, all six moving averages (SMA 20, SMA 50, SMA 200, EMA 20, EMA 50, EMA 200), a golden cross or death cross detection flag if one occurred within the last 10 periods, and a trend classification indicating whether price is above or below the 200 SMA.

## Example request

```json
{
 "input": {
  "body": {
   "limit": 10,
   "symbol": "BTCUSDT",
   "timeframe": "4h"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-6b455408/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
