# JeetScreener Market News Headlines by Ticker

> JeetScreener Market News Headlines by Ticker is a paid API for AI agents from jeetscreener.io, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Fetches the latest market news headlines with summaries and ticker tags for a specified stock or crypto ticker symbol

## Facts

- Endpoint: GET https://jeetscreener.io/api/signals/news/market
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jeetscreener-io-3bd74765
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n8CanZ7ZFBHWYq1JM-SKL

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 jeetscreener-io-3bd74765
```

Example prompt: Pull the latest market news headlines for BTC from JeetScreener so I can see what stories are driving the move today.

## When to prefer this

Use this endpoint when you need current market news headlines filtered by a specific ticker symbol for trading context. Prefer this over generic web search when you want structured, trader-curated news with explicit ticker tagging and timestamps, especially for equities or crypto tickers. Best for real-time or near-real-time trading workflows.

## Known failure modes

- Missing or empty ticker parameter returns a validation error
- Unknown or unsupported ticker symbol may return an empty array
- Network or upstream news feed outage returns a 5xx error
- Payment failure (402) if USDC balance is insufficient for the $0.002 per-call fee

## How this service works

Latest market news headlines with ticker tags - curated for active traders

## Output

An array of news items, each containing a unique article ID, a short summary, a headline, an array of associated ticker symbols, and a Unix timestamp of when the article was published. Articles are curated and tagged for active traders.

## Example request

```json
{
 "ticker": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object",
  "required": [
   "id",
   "summary",
   "tickers",
   "headline",
   "publishedAt"
  ],
  "properties": {
   "id": {
    "type": "string"
   },
   "summary": {
    "type": "string"
   },
   "tickers": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "headline": {
    "type": "string"
   },
   "publishedAt": {
    "type": "number"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jeetscreener-io-3bd74765/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jeetscreener.io](https://www.zero.xyz/host/jeetscreener.io/llms.txt)
