# xQuant Community AI Scalping Signal

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

Generates AI-powered scalping trading signals with entry, stop-loss, and take-profit levels for a given cryptocurrency trading pair

## Facts

- Endpoint: POST https://api.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-signal-d0db65c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rl_uUxgsLrvb7iHWdHFLf

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-signal-d0db65c9 -d '<json body>'
```

Example prompt: Get me an xQuant AI scalp signal for BTC/USDT — I need the entry price, stop loss, take profit, and whether I should go LONG or SHORT, with confidence score. My wallet address is 0xAbC1234567890def1234567890abcdef12345678.

## When to prefer this

Use this endpoint when you need a fast, AI-generated scalping signal for a specific cryptocurrency pair, including precise entry, stop loss, and take profit levels with a confidence score. Best for short-term trade decision support rather than long-term investment analysis.

## Known failure modes

- Missing or invalid wallet address returns error
- Unsupported trading pair symbol returns error or NEUTRAL signal
- Payment failure (insufficient USDC) blocks response
- Network timeout from AI signal generation backend
- Invalid wallet address format (non-0x prefix) causes rejection

## How this service works

AI-powered scalping signal with entry/exit levels for cryptocurrency trading

## Output

Returns a trading 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 (payment method, credits remaining, tokens minted) and a success flag.

## 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-signal-d0db65c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.xquant.fund](https://www.zero.xyz/host/api.xquant.fund/llms.txt)
