# market2000.xyz Sector Momentum

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

Ranks all 11 GICS sectors plus thematic ETFs by ETF momentum over a configurable lookback window, returning momentum score, trend, breadth, and top leader names for each sector.

## Facts

- Endpoint: GET https://market2000.xyz/api/sectors/momentum
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-sector-momentum-fba00c98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2LfN2NVw1K1cWyr52hXAL

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-sector-momentum-fba00c98
```

Example prompt: Show me which stock market sectors have the strongest ETF momentum right now using a 60-day lookback — rank all 11 GICS sectors hottest first and include the top leaders in each.

## When to prefer this

Use this endpoint when you need a quick, pre-computed cross-sector momentum ranking with named leaders rather than building your own ETF return calculations. Ideal for sector rotation strategies, macro overlay models, or any workflow that needs to know which parts of the market are trending strongest at a glance. Prefer this over individual stock screeners when the goal is top-down sector allocation rather than single-stock selection.

## Known failure modes

- lookback value outside 20–250 range returns validation error
- network timeout if underlying ETF data feed is slow
- stale data if market data pipeline is delayed
- payment failure if USDC balance is insufficient for the $0.05 per call fee
- empty leaders array if ETF constituent data is unavailable for a sector

## How this service works

Sector Momentum — 11 GICS sectors + themes ranked by ETF momentum, with leader names.

HOW TO CALL:
  GET /api/sectors/momentum?lookback=60

PARAMETERS:
  lookback — momentum window in trading days, 20–250 (default 60)

RESPONSE: sectors[] ranked hottest-first, each with momentum, trend, breadth, leaders[].

PRICING: $0.05 per call.

## Output

An array of sectors ranked hottest-first, each containing: momentum score, trend signal, breadth indicator, and an array of leader ticker names. Coverage includes all 11 standard GICS sectors plus thematic groupings.

## 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": {
      "lookback": {
       "type": "integer",
       "default": 60,
       "description": "Momentum window in trading days (20–250)"
      }
     }
    }
   }
  },
  "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-sector-momentum-fba00c98/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)
