# Superhighway News Search

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

Search the live web for recent news articles by keyword query, with optional recency filtering and result count control

## Facts

- Endpoint: GET https://superhighway.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-7b6780c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SPmgprODhVvUeNODrPNMH

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-7b6780c5
```

Example prompt: Can you find me the top 10 news stories about artificial intelligence regulation from the past week?

## When to prefer this

Use this endpoint when you need fresh, time-bounded news results from the live web rather than static or cached content. Prefer this over general web search when the user explicitly wants news articles or recent coverage of a topic. The recency filter (day/week/month/year) makes it especially useful for monitoring breaking news or tracking a story over a specific time window. Pay-per-call pricing at $0.001 USDC makes it economical for high-frequency agent workflows.

## Known failure modes

- Missing required 'q' query parameter returns a validation error
- Invalid 'time' enum value (e.g. 'hour') returns a 400 error
- Limit out of range (below 1 or above 20) returns a 422 validation error
- Payment not provided or insufficient results in 402 Payment Required
- No news results found for obscure or very recent queries may return empty result set
- Network or upstream search provider outage returns 5xx error

## How this service works

Web search built for AI agents. Search the live web, pull recent news, and read any page as clean markdown — pay per call, free tier to start.

## Output

A list of up to 20 recent news results matching the query, likely including article titles, snippets or summaries, source names, publication dates, and URLs — filtered by the specified recency window (day, week, month, or year) and capped at the requested limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "artificial intelligence",
   "time": "week",
   "limit": 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-7b6780c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from superhighway.walls.sh](https://www.zero.xyz/host/superhighway.walls.sh/llms.txt)
