# market2000.xyz Trading Signals History

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

Retrieves historical trading signals with optional filtering by ticker, source, and resolution status

## Facts

- Endpoint: GET https://market2000.xyz/trading/signals/history
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-trading-signals-history-0c2dbbd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ST4LPKeT8dHSYZud4Xb3C

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-trading-signals-history-0c2dbbd1
```

Example prompt: Pull the last 50 trading signals from market2000.xyz for ticker AAPL using only internal sources, and include any signals that haven't resolved yet.

## When to prefer this

Use this endpoint when you need to audit or analyze historical trading signals generated by market2000.xyz, especially when you want to filter by a specific ticker or source and optionally include signals that have not yet been resolved. Prefer this over real-time signal endpoints when you need a lookback window or want to verify past signal performance.

## Known failure modes

- Missing or invalid ticker symbol returns empty result set
- limit out of range (below 1 or above 200) may return error or be clamped
- Invalid source value (not 'internal' or 'x402') may return error or empty results
- Payment failure via x402 returns 402 status blocking data access
- Empty history returns empty array with no error
- Unresolved signals not returned if include_pending is false or omitted

## How this service works

Signal History — full log of every signal fired, with outcomes.

Shows internal algo signals and x402 API signals. Pending signals (horizon not yet reached) show actual_return_pct=null.

HOW TO CALL:
  GET /trading/signals/history
  GET /trading/signals/history?ticker=BTC&source=internal&limit=20

PARAMETERS:
  ticker          — filter to one ticker (optional)
  limit           — max rows (default 50, max 200)
  source          — 'internal' | 'x402' (optional)
  include_pending — include unresolved signals (default true)

PRICING: $0.05 per call.

## Output

A list of historical trading signals (up to the requested limit), each likely containing ticker symbol, signal type or pattern match result, source, timestamp, and resolution status. Unresolved/pending signals are optionally included based on the include_pending flag. Response schema is not formally defined so structure may vary.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 50,
       "description": "Max rows (1–200)"
      },
      "source": {
       "type": "string",
       "description": "'internal' or 'x402' (optional)"
      },
      "ticker": {
       "type": "string",
       "description": "Filter to one ticker (optional)"
      },
      "include_pending": {
       "type": "boolean",
       "default": true,
       "description": "Include unresolved signals"
      }
     }
    }
   }
  },
  "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-trading-signals-history-0c2dbbd1/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)
