# xQuant Community AI Trading Algorithm - Scalp Signals

> xQuant Community AI Trading Algorithm - Scalp Signals is a paid API for AI agents from x-quant-517otmy0u-offgriddaos-projects.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://x-quant-517otmy0u-offgriddaos-projects.vercel.app/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-trading-algorithm-scalp-signals-7c8ddbef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s-yWstutd34tuxAaNFfae

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-trading-algorithm-scalp-signals-7c8ddbef -d '<json body>'
```

Example prompt: Can you get me an AI scalp trading signal for BTC/USDT using my wallet 0xAbC1234567890dEF? I want to know whether to go LONG or SHORT, with entry price, stop loss, and take profit levels.

## When to prefer this

Choose this endpoint when you need short-term scalping signals with explicit entry, stop-loss, and take-profit levels generated by a community AI model. It is best suited for crypto traders or automated bots that need rapid intraday trade setups with directional bias and confidence scoring. Prefer this over generic market data APIs when you need opinionated AI-driven trade recommendations rather than raw price feeds.

## Known failure modes

- Missing or invalid walletAddress returns validation error
- Unsupported trading pair symbol may return NEUTRAL signal or error
- Insufficient payment (USDC) causes payment failure and no signal returned
- Network or inference model timeout may result in delayed or failed response
- Invalid wallet address format (non-0x) 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 trading signal object containing direction (LONG, SHORT, or NEUTRAL), entry price, take profit price, stop loss price, a confidence score between 0 and 1, reasoning text, timeframe, and timestamp. Also includes success status, payment method used, credits remaining, and tokens minted.

## 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-trading-algorithm-scalp-signals-7c8ddbef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x-quant-517otmy0u-offgriddaos-projects.vercel.app](https://www.zero.xyz/host/x-quant-517otmy0u-offgriddaos-projects.vercel.app/llms.txt)
