# Ecliptica AI Trading API – Market Analysis

> Ecliptica AI Trading API – Market Analysis is a paid API for AI agents from api.ecliptica.ninja, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Performs AI-powered technical and derivatives analysis for a specific crypto asset, returning entry/exit setups, risk dashboard, and market structure

## Facts

- Endpoint: POST https://api.ecliptica.ninja/x402/analysis
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ecliptica-ai-trading-api-market-analysis-a4c608b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tt7dmLVN8HijwD0IPvV8r

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-trading-api-market-analysis-a4c608b9 -d '<json body>'
```

Example prompt: Run Ecliptica's AI market analysis on BTC and include the options analysis — I want to see the trade setup, confidence level, entry, stop loss, and take profit targets.

## When to prefer this

Choose this endpoint when you need a fast, AI-generated trade setup for a specific crypto asset with both technical and derivatives signals in a single call. Ideal for agents that need actionable entry/exit parameters rather than raw market data, especially when options analysis is relevant.

## Known failure modes

- Invalid or unsupported currency symbol returns an error or empty analysis
- Options analysis flag set to true may incur premium pricing or fail if not entitled
- Network or upstream AI model timeout resulting in no response
- Malformed request body missing required currency field returns 400-level error
- Stale or unavailable market data may result in low-confidence or incomplete outputs

## How this service works

Market analysis for a specific asset - AI-powered technical and derivatives analysis

## Output

Returns a structured analysis object including: primary trade setup (entry price, stop loss, direction, rationale, confidence, take profit levels), a risk dashboard (overall risk rating, BTC favorability, volume confirmation, funding acceptability), and market structure (trend, support levels, resistance levels, current price) for the requested asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "currency": {
   "type": "string",
   "description": "Currency/symbol to analyze (e.g., BTC, ETH, SOL)"
  },
  "analyzeOptions": {
   "type": "boolean",
   "description": "Include options analysis (premium feature)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "currency": "BTC",
 "timestamp": "2025-01-19T12:00:00Z",
 "primarySetup": {
  "entry": 98500,
  "stopLoss": 96000,
  "direction": "long",
  "rationale": "Bullish structure with strong support at 96k and positive OI divergence",
  "confidence": "high",
  "takeProfits": [
   102000,
   105000,
   110000
  ]
 },
 "riskDashboard": {
  "overallRisk": "low",
  "btcFavorable": true,
  "volumeConfirms": true,
  "fundingAcceptable": true
 },
 "marketStructure": {
  "trend": "bullish",
  "supports": [
   96000,
   94000,
   90000
  ],
  "resistances": [
   100000,
   105000,
   110000
  ],
  "currentPrice": 98500
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ecliptica-ai-trading-api-market-analysis-a4c608b9/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)
