# Market2000 Time Series Pattern Matching Scanner

> Market2000 Time Series Pattern Matching Scanner is a paid API for AI agents from market2000.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Scans financial time series data for pattern matches and returns top trading signals with directional bias and forward-looking horizon.

## Facts

- Endpoint: GET https://market2000.xyz/trading/scan
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-time-series-pattern-matching-scanner-f22c73fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eVYF3acMoMXnsYVH0qlSe

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-time-series-pattern-matching-scanner-f22c73fe
```

Example prompt: Scan for the top 5 long trading signals using a 20-day pattern lookback and a 30-day forward horizon.

## When to prefer this

Use this endpoint when you need quantitative, pattern-based trading signal generation with configurable directional bias, lookback windows, and forward horizons — especially for swing trading or medium-term position scanning. Prefer this over generic screeners when you want historical time series pattern matching rather than fundamental or news-based signals.

## Known failure modes

- Invalid direction value (not 'long', 'short', or 'any') returns validation error
- top_n out of range (must be 1–20) causes rejection
- forward_days outside 7–90 range returns error
- lookback_days outside 5–60 range returns error
- Insufficient USDC balance for x402 payment results in 402 Payment Required
- Empty response schema may mean service is returning unstructured or variable output

## How this service works

An origin the crawlers already index. We count what AI agents try to buy, what they are refused, and what the AI companies take without sending anyone back. Sold per call in USDC.

## Output

Returns a ranked list of up to N trading signals with pattern match details, directional bias (long/short), and projected forward return horizon based on historical time series similarity.

## 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": {
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "scanned": 49,
  "signals": [],
  "signals_found": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-time-series-pattern-matching-scanner-f22c73fe/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)
