# Stock Trends STIM Select Published List (Latest)

> Stock Trends STIM Select Published List (Latest) is a paid API for AI agents from api.stocktrends.com, paid per call via x402, $0.075/call, status unknown (last checked 2026-09-15).

Returns the latest published STIM Select stock list filtered by three-horizon ST-IM lower-bound criteria and a minimum 13-week probability publication threshold.

## Facts

- Endpoint: GET https://api.stocktrends.com/v1/selections/published/latest
- Price: $0.075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-stocktrends-com-8b0d5c18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_soGboqqhvjANfAt4gM5E4

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-8b0d5c18
```

Example prompt: Pull the latest published STIM Select list from Stock Trends, showing only common stocks on the NASDAQ exchange, with a minimum 13-week probability of 0.65 and default 4-week and 40-week thresholds, and return up to 500 results.

## When to prefer this

Use this endpoint when you need the latest published, pre-filtered list of stocks that have passed Stock Trends' three-horizon ST-IM criteria, rather than querying per-symbol inference outputs individually. Ideal for portfolio screening, watchlist generation, or any workflow that needs a ready-made selection of candidates meeting quantitative trend and probability thresholds in a single call.

## Known failure modes

- Invalid exchange code returns validation error
- min_prob13wk or return threshold values outside valid range return 400
- limit exceeding 20000 returns 400
- No results returned when thresholds are set too high
- Endpoint returns stale data if no new publication has been made recently
- Payment required (402) if x402 authorization header is missing or insufficient

## How this service works

Latest published STIM Select list using the documented three-horizon ST-IM lower-bound criteria and prob13wk publication threshold.

## Output

A JSON array of STIM Select stock records that satisfy the three-horizon ST-IM lower-bound criteria (4-week, 13-week, 40-week return thresholds) and the minimum prob13wk publication threshold. Each record includes symbol identifiers and forward return expectation scores; optionally includes underlying indicator data and master record fields if requested.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 500,
   "cs_only": true,
   "exchange": "Q",
   "min_x4wk1": 0,
   "min_x13wk1": 2.19,
   "min_x40wk1": 6.45,
   "include_data": false,
   "include_mast": false,
   "min_prob13wk": 0.65
  }
 }
}
```

## 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": {
      "limit": {
       "type": "integer",
       "default": 2000,
       "maximum": 20000,
       "minimum": 1
      },
      "cs_only": {
       "type": "boolean",
       "default": true
      },
      "exchange": {
       "enum": [
        "N",
        "Q",
        "A",
        "B",
        "T",
        "I"
       ],
       "type": "string"
      },
      "min_x4wk1": {
       "type": "number",
       "default": 0
      },
      "min_x13wk1": {
       "type": "number",
       "default": 2.19
      },
      "min_x40wk1": {
       "type": "number",
       "default": 6.45
      },
      "include_data": {
       "type": "boolean",
       "default": false
      },
      "include_mast": {
       "type": "boolean",
       "default": false
      },
      "min_prob13wk": {
       "type": "number",
       "default": 0.55
      }
     },
     "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 published STIM Select records satisfying three-horizon ST-IM criteria.",
   "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-8b0d5c18/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)
