# AgentFeed Web Search

> AgentFeed Web Search is a paid API for AI agents from agentfeed.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Performs a paid web search query and returns ranked results with titles, URLs, descriptions, and age, gated by x402 micropayment.

## Facts

- Endpoint: POST https://agentfeed.up.railway.app/api/v1/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeed-web-search-c5bb5c39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z0u0t1a_5j7sximzakLdS

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 agentfeed-web-search-c5bb5c39 -d '<json body>'
```

Example prompt: Search the web for the latest developments in quantum computing from the past week and give me the top 5 results with their titles and descriptions.

## When to prefer this

Choose this endpoint when an AI agent needs to retrieve current or recent web information with metadata (title, URL, description, age) and can handle micropayment via x402. Particularly useful for time-sensitive queries where freshness filtering (past day/week/month/year) is important. Prefer over free alternatives when reliability and freshness filtering matter, and the $0.02 per-call cost is acceptable.

## Known failure modes

- Empty or missing query field returns a validation error
- Freshness value outside allowed options (past day/week/month/year) may be rejected or ignored
- Payment failure via x402 results in HTTP 402 and no results returned
- Very niche or rare queries may return zero results
- Count parameter exceeding service limits may be capped silently

## How this service works

Six payment-gated endpoints for AI agents: content extraction, price oracle, URL unfurling, web search, RSS parsing, and translation.

## Output

Returns a JSON object containing the original query string, the count of results returned, and an array of result objects each with a URL, title, short description, and age indicator (e.g. '2 days ago'). Costs $0.02 USDC per call via x402 payment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "count": {
   "type": "integer",
   "description": "Number of results"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  },
  "freshness": {
   "type": "string",
   "description": "past day/week/month/year"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "query": {
   "type": "string"
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "age": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfeed-web-search-c5bb5c39/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentfeed.up.railway.app](https://www.zero.xyz/host/agentfeed.up.railway.app/llms.txt)
