# market2000.xyz Live Signals

> market2000.xyz Live Signals is a paid API for AI agents from market2000.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns the latest algorithmic trading signal (direction, confidence, Kelly sizing, entry/exit prices) for one or more requested asset tickers.

## Facts

- Endpoint: GET https://market2000.xyz/api/signals/live
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-live-signals-f4b462df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RUsab0P8bJYoWUevfzCRb

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 market2000-xyz-live-signals-f4b462df
```

Example prompt: Pull the latest live algo trading signals for BTC, ETH, and NVDA — I want to see the direction, confidence score, and entry/exit prices for each, scanning the last 100 log rows.

## When to prefer this

Use this endpoint when you need the most recent algorithmic signal snapshot across multiple assets in a single call, especially when you want Kelly-sized position recommendations alongside directional confidence. Prefer this over the single-ticker Trading Signal endpoint when you have a watchlist of assets to check simultaneously and want fast, batched signal retrieval rather than deep per-ticker analysis.

## Known failure modes

- Missing required 'assets' parameter returns an error
- Invalid or unrecognized ticker symbols may return empty or null signal entries
- limit values outside 1–200 range may be rejected or clamped
- Payment failure (insufficient USDC) blocks the request under x402 protocol
- Stale or insufficient log data for a ticker may result in low-confidence or missing signals

## How this service works

Live Signals — latest algo signal per requested asset.

HOW TO CALL:
  GET /api/signals/live?assets=BTC,ETH,xyz:NVDA

PARAMETERS:
  assets — comma-separated tickers (required)
  limit  — log rows to scan, 1–200 (default 50)

RESPONSE: signals[] with direction, confidence, kelly_half, entry/exit price, resolution.

PRICING: $0.05 per call.

## Output

Returns a signals array where each element includes the asset ticker, trade direction (long/short/neutral), confidence score (0–1), kelly_half position sizing, entry price, exit price, and signal resolution timestamp.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "assets"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 50,
       "description": "Log rows to scan (1–200)"
      },
      "assets": {
       "type": "string",
       "default": "BTC,ETH,SOL",
       "description": "Comma-separated tickers (BTC, ETH, xyz:NVDA)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-live-signals-f4b462df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market2000.xyz](https://www.zero.xyz/host/market2000.xyz/llms.txt)
