# Minara AI Perp Trading Suggestion

> Minara AI Perp Trading Suggestion is a paid API for AI agents from x402.minara.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns AI-generated long/short trading recommendations for perpetual futures contracts, including entry price, stop loss, take profit levels, and a confidence score.

## Facts

- Endpoint: POST https://x402.minara.ai/x402/perp-trading-suggestion
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-minara-ai-fa1bd57b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_unPU4lp9upozW1Aq7VVaY

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 x402-minara-ai-fa1bd57b -d '<json body>'
```

Example prompt: Give me an AI trading suggestion for BTC perpetual futures — should I go long or short right now, and what entry price, stop loss, and take profit levels do you recommend, along with a confidence score?

## When to prefer this

Use this endpoint when you need AI-generated perpetual futures trading signals with concrete entry, stop loss, and take profit levels for a specific crypto asset. Prefer this over generic price APIs or prediction market tools when the user specifically wants actionable long/short trade setups with risk management parameters for perp contracts.

## Known failure modes

- Unsupported trading pair returns an error or empty result
- Insufficient market data for the requested asset may reduce confidence score or return null
- Payment failure (insufficient USDC) blocks the request
- Malformed or missing asset symbol returns a 400-level error
- Market volatility or data unavailability may yield low-confidence results

## How this service works

AI-powered perp trading suggestion. Get long/short recommendations with entry price, stop loss, take profit levels, and confidence score based on comprehensive analysis.

## Output

Returns a structured trading recommendation including trade direction (long or short), suggested entry price, stop loss price, take profit price, and a confidence score reflecting how strong the AI signal is based on comprehensive market analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "style": {
   "type": "string",
   "description": "Trading style: scalping, day-trading, or swing-trading, default to scalping"
  },
  "symbol": {
   "type": "string",
   "description": "Trading symbol (e.g., BTC, ETH)"
  },
  "leverage": {
   "type": "number",
   "description": "Leverage multiplier, default to 10, max to 40"
  },
  "strategy": {
   "enum": [
    "max-profit"
   ],
   "type": "string",
   "description": "Strategy: max-profit, default to max-profit, more strategies coming soon"
  },
  "marginUSD": {
   "type": "number",
   "description": "Margin in USD, default to 1000"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "properties": {
  "side": {
   "type": "string",
   "description": "Trading side: long or short"
  },
  "risks": {
   "type": "array",
   "description": "Risk factors to consider"
  },
  "reasons": {
   "type": "array",
   "description": "Analysis reasons based on technical indicators"
  },
  "confidence": {
   "type": "number",
   "description": "Confidence score (0-100)"
  },
  "entryPrice": {
   "type": "number",
   "description": "Recommended entry price"
  },
  "stopLossPrice": {
   "type": "number",
   "description": "Recommended stop loss price"
  },
  "takeProfitPrice": {
   "type": "number",
   "description": "Recommended take profit price"
  }
 },
 "description": "Perp trading suggestion result"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-minara-ai-fa1bd57b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.minara.ai](https://www.zero.xyz/host/x402.minara.ai/llms.txt)
