# Stock Trends Leadership Summary (Latest)

> Stock Trends Leadership Summary (Latest) is a paid API for AI agents from api.stocktrends.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns the latest ranked leadership summary identifying overall market, sector, and industry-group leaders filtered by relative performance and trend-alignment criteria.

## Facts

- Endpoint: GET https://api.stocktrends.com/v1/leadership/summary/latest
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-stocktrends-com-67114b9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_35QsuSkHvubIAQdZLu9iL

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 api-stocktrends-com-67114b9d
```

Example prompt: Pull the latest Stock Trends leadership summary for common stocks on the NYSE, limiting results to the top 30 overall leaders with a minimum RSI of 50 and at least 4 trend maturity counts — I want to see which sectors and industry groups are currently leading the market.

## When to prefer this

Use this endpoint when you need a broad market leadership snapshot across sectors and industry groups in a single call, rather than screening individual symbols. Prefer this over the symbol-level screener when the goal is top-down market structure analysis — identifying which segments of the market are currently leading based on Stock Trends' multi-decade RSI and trend-alignment framework.

## Known failure modes

- Invalid exchange code returns 400 validation error
- weekdate outside available history returns empty or 404
- min_rsi or min_mt_cnt values outside 0–500 range rejected with 400
- limit_bucket or limit_overall outside allowed range returns 400
- No leaders meeting filter criteria returns empty result set
- Payment not fulfilled returns 402 Payment Required

## How this service works

Latest Stock Trends leadership summary identifying overall, sector, and industry-group leaders using relative performance and trend-alignment filters.

## Output

A JSON object containing ranked lists of current market leaders across three tiers — overall market, sector, and industry-group — each stock or group scored and filtered by Stock Trends RSI, trend-category maturity count, and relative performance alignment. Results reflect the most recent weekly snapshot.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "CS",
   "min_rsi": 50,
   "exchange": "N",
   "min_mt_cnt": 4,
   "limit_bucket": 20,
   "limit_overall": 30
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "type": {
       "type": "string",
       "default": "CS"
      },
      "min_rsi": {
       "type": "integer",
       "default": 40,
       "maximum": 500,
       "minimum": 0
      },
      "exchange": {
       "enum": [
        "N",
        "Q",
        "A",
        "B",
        "T",
        "I"
       ],
       "type": "string"
      },
      "weekdate": {
       "type": "string",
       "format": "date"
      },
      "min_mt_cnt": {
       "type": "integer",
       "default": 4,
       "maximum": 500,
       "minimum": 0
      },
      "limit_bucket": {
       "type": "integer",
       "default": 20,
       "maximum": 200,
       "minimum": 1
      },
      "limit_overall": {
       "type": "integer",
       "default": 50,
       "maximum": 1000,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "title": {
   "type": "string"
  },
  "family": {
   "type": "string"
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "format": {
     "type": "string"
    },
    "example": {}
   },
   "description": "Latest leadership groups with overall, sector, and industry-group leaders ranked by Stock Trends RSI and trend-category maturity filters.",
   "additionalProperties": true
  },
  "category": {
   "type": "string"
  },
  "schemaUrl": {
   "type": "string"
  },
  "description": {
   "type": "string"
  },
  "metadataUrl": {
   "type": "string"
  },
  "tools_manifest": {
   "type": "string"
  },
  "pricing_catalog": {
   "type": "string"
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-stocktrends-com-67114b9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.stocktrends.com](https://www.zero.xyz/host/api.stocktrends.com/llms.txt)
