# SignalPulse Sports & Prediction Market Natural Language Ask

> SignalPulse Sports & Prediction Market Natural Language Ask is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Answers any sports or prediction-market question in plain language, returning a data-grounded response with an explicit data-vs-opinion split, betting/fantasy angles, and routing to deeper specialized endpoints.

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/api/scan/ask
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-sports-prediction-market-natural-language-ask-85874c5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bqQVZb07rSKOZpzPA2nuK

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 signalpulse-sports-prediction-market-natural-language-ask-85874c5d
```

Example prompt: Give me a data-grounded take on whether I should bet the over in tonight's Dodgers game — split the hard stats from any opinion, flag any betting or fantasy angle, and point me to the deepest SignalPulse endpoint if there's a more specialized analysis available.

## When to prefer this

Use this endpoint as the front-door entry point when the user's question is in plain language and you are unsure which specialized SignalPulse sub-engine to call, or when you want a combined data+opinion split answer with automatic routing suggestions. Prefer the specialized sibling endpoints (golf scan, MLB/NFL picks, DFS optimizer, prediction market scan) when you already know the exact domain and want maximum depth.

## Known failure modes

- Question is outside sports or prediction market coverage — endpoint returns an honest out-of-scope notice rather than hallucinating
- Ambiguous team or player name with no context — may return a clarification request or default to most common interpretation
- Prediction market data lag — real-time odds may be slightly stale if upstream data feed is delayed
- Rate limiting or payment failure — returns 402 if USDC payment is not correctly attached

## How this service works

Ask any sports or prediction-market question in plain language — the front door to SignalPulse's deep engines. Returns a data-grounded answer with an explicit DATA-vs-OPINION split (every claim cites its stat), a betting or fantasy angle when relevant, and a pointer to the deepest named endpoint. Honest when a question is outside coverage — it routes, it doesn't bluff.

## Output

A structured natural-language answer that separates DATA (stat-cited claims) from OPINION, includes a betting or fantasy angle where relevant, cites underlying statistics for every factual claim, honestly flags when a question is outside coverage, and names the most specific SignalPulse sub-endpoint to call for deeper analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "a free-text sports/markets question (alias: question, ask) — required"
      },
      "sport": {
       "type": "string",
       "description": "optional — force the sport instead of auto-detecting"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "agent_analysis",
  "answer": "Judge is a strong DFS play vs Skubal at Comerica",
  "data_backed": [
   "platoon edge vs LHP"
  ],
  "best_endpoint": "/api/scan/player",
  "answerable_from_data": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-sports-prediction-market-natural-language-ask-85874c5d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalpulse.theaslangroupllc.com](https://www.zero.xyz/host/signalpulse.theaslangroupllc.com/llms.txt)
