# Ecliptica AI Watchlist Generator (Alpha Scan)

> Ecliptica AI Watchlist Generator (Alpha Scan) is a paid API for AI agents from api.ecliptica.ninja, paid per call via x402, $0.1/call, status down (last checked 2026-09-16).

AI-powered market screening that generates a ranked watchlist of top crypto (or tokenized stock) trading opportunities with entry, stop-loss, take-profit, and alpha scores

## Facts

- Endpoint: POST https://api.ecliptica.ninja/x402/wlg
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ecliptica-ai-watchlist-generator-ea9fa227
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OUw56Lkx3p4cbk5IWBFDu

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 ecliptica-ai-watchlist-generator-ea9fa227 -d '<json body>'
```

Example prompt: Run an Ecliptica alpha scan across up to 200 crypto assets and give me the top bullish watchlist with entry points, stop losses, take profits, and alpha scores for each opportunity.

## When to prefer this

Choose this endpoint when you need a broad market scan to surface the best trading setups across many assets at once, rather than analyzing a single known asset. It is especially useful for daily watchlist generation, pre-market prep, or discovering assets you weren't already tracking. Use the tradeStocks flag to pivot from crypto to tokenized equities.

## Known failure modes

- Invalid maxAssets value (e.g. non-numeric or negative) may result in a 400 error
- If the market data feed is unavailable the API may return an empty watchlist or timeout
- Unexpected tradeStocks value type (non-boolean) may cause a validation error
- Rate limiting or payment processing failure from x402 protocol may return 402 or 429

## How this service works

Watchlist generation alpha scan - AI-powered market screening for top trading opportunities

## Output

Returns a timestamped watchlist array with bias, symbol, catalyst, and key price level for each asset, plus a topOpportunities list with entry price, stop-loss, take-profit, direction (long/short), rationale, and an alphaScore (0-100) for each high-conviction trade idea.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "maxAssets": {
   "type": "number",
   "description": "Maximum number of assets to analyze (default: 150)"
  },
  "tradeStocks": {
   "type": "boolean",
   "description": "Enable trading tokenized stocks instead of crypto"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "timestamp": "2025-01-19T12:00:00Z",
 "watchlist": [
  {
   "bias": "bullish",
   "symbol": "SOL",
   "catalyst": "Network upgrade catalyst",
   "keyLevel": 180
  }
 ],
 "topOpportunities": [
  {
   "entry": 3200,
   "symbol": "ETH",
   "stopLoss": 3050,
   "direction": "long",
   "rationale": "Strong accumulation pattern with positive funding divergence",
   "alphaScore": 85,
   "takeProfit": 3600
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ecliptica-ai-watchlist-generator-ea9fa227/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ecliptica.ninja](https://www.zero.xyz/host/api.ecliptica.ninja/llms.txt)
