# SignalBrew ETH/USDT 1-Hour Summary — Aggregated Technical Analysis Rating

> SignalBrew ETH/USDT 1-Hour Summary — Aggregated Technical Analysis Rating is a paid API for AI agents from api.signalbrew.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns an aggregated buy/neutral/sell rating for ETH/USDT on a 1-hour timeframe by combining votes from 11+ technical indicators including MAs, RSI, MACD, ADX, and SuperTrend.

## Facts

- Endpoint: GET https://api.signalbrew.io/api/binance/ETH_USDT/1hour/summary
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalbrew-eth-usdt-1-hour-summary-aggregated-technical-analysis-rating-b74fd8aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F4CJWE4daWulBWbS6OzKx

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 signalbrew-eth-usdt-1-hour-summary-aggregated-technical-analysis-rating-b74fd8aa
```

Example prompt: Can you pull a full technical analysis summary for ETH/USDT on the 1-hour chart from SignalBrew and tell me if the overall rating is a buy, sell, or neutral based on all the indicators?

## When to prefer this

Choose this endpoint when you need a single consolidated technical analysis verdict for ETH/USDT on the 1-hour Binance timeframe without having to call individual indicator endpoints separately. It is ideal for trading bots, signal dashboards, or agent workflows that need a fast buy/sell/neutral decision signal backed by 11+ indicators in one call for $0.03 USDC. Prefer individual indicator endpoints if you need a specific indicator's raw values in isolation or a different trading pair, exchange, or timeframe.

## Known failure modes

- Exchange data feed unavailable — candle sync from Binance may be delayed or unavailable, returning an error
- Invalid symbol or interval — if the path parameters were somehow altered, a 404 or error response is returned
- Payment failure — if the x402 USDC payment of $0.03 is not completed or rejected, the request is not fulfilled
- Rate limiting — excessive calls may trigger throttling responses
- Stale candles — in low-liquidity periods candle data may not reflect the very latest tick

## How this service works

Aggregated cryptocurrency technical analysis rating in a single call: simple and exponential moving averages of three lengths, RSI, stochastic, CCI, Williams %R, MFI, MACD, ADX and SuperTrend each vote buy, neutral or sell, and the votes combine into an overall rating from strong-buy to strong-sell. Computed from live-synced Binance, Coinbase, Bitget, KuCoin and OKX candles, paid in USDC via the x402 protocol.

## Output

Returns an overall aggregated rating (strong-buy, buy, neutral, sell, or strong-sell), a numeric vote-balance score, and individual buy/neutral/sell votes for each indicator in the basket (SMA3, SMA9, SMA50, EMA3, EMA9, EMA50, RSI, stochastic, CCI, Williams %R, MFI, MACD, ADX, SuperTrend), plus the symbol, exchange, interval, and candle metadata used for computation.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "description": "The overall rating, the vote balance score and every indicator vote of the basket."
      },
      "symbol": {
       "type": "string"
      },
      "candles": {
       "type": "object"
      },
      "exchange": {
       "type": "string"
      },
      "interval": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalbrew-eth-usdt-1-hour-summary-aggregated-technical-analysis-rating-b74fd8aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalbrew.io](https://www.zero.xyz/host/api.signalbrew.io/llms.txt)
