# xQuant Community AI Scalping Signals

> xQuant Community AI Scalping Signals is a paid API for AI agents from mint.xquant.fund, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Generates AI-powered scalping trade signals with entry, stop-loss, and take-profit levels for a given trading pair using inference-time scaling models

## Facts

- Endpoint: POST https://mint.xquant.fund/api/signals/scalp
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/xquant-community-ai-scalping-signals-46f7950b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NOrChLDc3Ghaxv1vxMYx7

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 xquant-community-ai-scalping-signals-46f7950b -d '<json body>'
```

Example prompt: Can you get me the latest AI scalping signal for BTC/USDC from xQuant — I need the entry price, stop loss, take profit, and whether to go LONG or SHORT, using my wallet 0xAbC1234567890DeF1234567890abcdef12345678?

## When to prefer this

Use this endpoint when an agent needs short-term scalping trade signals with specific entry, stop-loss, and take-profit levels powered by community AI models. Prefer this over generic market data feeds when you need actionable directional signals with confidence scoring and reasoning, especially for crypto pairs in fast-moving markets.

## Known failure modes

- Missing or invalid wallet address returns a validation error
- Unsupported trading pair symbol returns an error or NEUTRAL signal
- Insufficient payment or expired x402 payment results in authentication failure
- Model inference timeout may cause delayed or empty response
- Invalid wallet format (non-0x address) rejected by schema validation

## How this service works

Community-developed AI scalping signals with entry/exit levels using inference-time scaling models

## Output

Returns a signal object with direction (LONG, SHORT, or NEUTRAL), entry price, stop-loss price, take-profit price, confidence score (0-1), reasoning text, timeframe, and timestamp. Also includes payment metadata like payment method, tokens minted, and credits remaining.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "walletAddress"
 ],
 "properties": {
  "symbol": {
   "enum": [
    "BTC-USDT",
    "ETH-USDT",
    "SOL-USDT",
    "AVAX-USDT"
   ],
   "type": "string",
   "description": "Trading pair symbol"
  },
  "walletAddress": {
   "type": "string",
   "description": "Your wallet address (0x...)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "signal": {
   "type": "object",
   "properties": {
    "entry": {
     "type": "number",
     "description": "Entry price"
    },
    "signal": {
     "enum": [
      "LONG",
      "SHORT",
      "NEUTRAL"
     ],
     "type": "string"
    },
    "symbol": {
     "type": "string"
    },
    "stopLoss": {
     "type": "number",
     "description": "Stop loss price"
    },
    "reasoning": {
     "type": "string"
    },
    "timeframe": {
     "type": "string"
    },
    "timestamp": {
     "type": "string"
    },
    "confidence": {
     "type": "number",
     "description": "Signal confidence (0-1)"
    },
    "takeProfit": {
     "type": "number",
     "description": "Take profit price"
    }
   }
  },
  "success": {
   "type": "boolean"
  },
  "timestamp": {
   "type": "string"
  },
  "tokensMinted": {
   "type": "number"
  },
  "paymentMethod": {
   "type": "string"
  },
  "creditsRemaining": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/xquant-community-ai-scalping-signals-46f7950b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mint.xquant.fund](https://www.zero.xyz/host/mint.xquant.fund/llms.txt)
