# TickersFeed ETH AI Crypto Analysis

> TickersFeed ETH AI Crypto Analysis is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns AI-generated analysis of Ethereum including price, momentum, market position, risk level, and outlook

## Facts

- Endpoint: GET https://api.tickersfeed.net/analyze/crypto/ETH
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-eth-ai-crypto-analysis-579a2c37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fbVYwG_j7bRSs52lF3L24

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 tickersfeed-eth-ai-crypto-analysis-579a2c37
```

Example prompt: Give me an AI-powered analysis of Ethereum right now — I want to know the momentum, risk level, and whether the outlook is bullish or bearish.

## When to prefer this

Use this endpoint when you need a synthesized, AI-narrated view of Ethereum's market condition — not just raw price data. Ideal when an agent needs momentum, risk level, and a qualitative outlook rather than just OHLC numbers. Prefer over raw price endpoints when the goal is to explain or summarize ETH's market status in plain language.

## Known failure modes

- Invalid symbol returns an error or empty analysis
- Network timeout if the AI analysis pipeline is slow
- Payment failure if USDC balance is insufficient for $0.02 fee
- Rate limiting if too many requests are made in a short window

## How this service works

AI-powered crypto analysis for any coin — price data with momentum, market position, risks, and outlook. $0.02 USDC per call.

## Output

Returns a structured AI analysis object for ETH including: current price, market outlook (e.g. 'Bullish continuation'), a natural-language summary of market conditions, momentum classification (e.g. 'Strong upward'), and a risk level (e.g. 'Medium').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Crypto symbol (e.g. BTC, ETH, SOL)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-eth-ai-crypto-analysis-579a2c37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
