# Superhighway News Search

> Superhighway News Search is a paid API for AI agents from sh-origin.walls.sh, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Searches for recent news articles in real-time via a multi-engine news metasearch, returning titles, links, snippets, and published dates as JSON

## Facts

- Endpoint: GET https://sh-origin.walls.sh/news
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/superhighway-news-search-6808c693
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c5tdaV9AejJPpco2HBl_X

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 superhighway-news-search-6808c693
```

Example prompt: Find me the latest news articles about the Federal Reserve interest rate decision from the past week — give me up to 10 results.

## When to prefer this

Choose this endpoint when you need real-time or recent news articles specifically — breaking news, current events monitoring, or time-sensitive fact-finding. It is better than general web search endpoints when you want only news sources (not all web pages), and better than static knowledge bases when recency matters. Use over the sibling web search endpoint when you specifically want news articles rather than general organic web results.

## Known failure modes

- Query parameter 'q' missing — returns 400 error
- Payment not provided or insufficient — returns 402 Payment Required
- No results found for query/time combination — returns empty array
- Time filter value not in allowed enum (day/week/month/year) — returns validation error
- Limit exceeds maximum of 20 — returns validation error

## How this service works

Real-time news search for AI agents. Returns recent news articles (title, link, snippet, published date) as JSON from a multi-engine news metasearch. Pay-per-query in USDC via x402 — no signup, no API key. Use for current events, breaking news, monitoring, and time-sensitive facts.

## Output

A JSON array of recent news articles, each containing a title, link, snippet/summary, and published date, sourced from a multi-engine news metasearch. Results are filtered by recency (day, week, month, or year) and capped at the requested limit (1–20, default 5).

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "The news query."
      },
      "time": {
       "enum": [
        "day",
        "week",
        "month",
        "year"
       ],
       "type": "string",
       "description": "Filter results by recency. day=last 24h, week=last 7 days, month=last 30 days, year=last 12 months."
      },
      "limit": {
       "type": "integer",
       "default": 5,
       "maximum": 20,
       "minimum": 1,
       "description": "Max results."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/superhighway-news-search-6808c693/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sh-origin.walls.sh](https://www.zero.xyz/host/sh-origin.walls.sh/llms.txt)
