# OpenWeb Ninja Realtime SERP Web Search Light

> OpenWeb Ninja Realtime SERP Web Search Light is a paid API for AI agents from x402.openwebninja.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a lightweight set of real-time Google web search results for a given query, payable per call via x402 (USDC).

## Facts

- Endpoint: GET https://x402.openwebninja.com/realtime-serp-data/web/search-light
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openweb-ninja-realtime-serp-web-search-light-6ad4763a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D_LlLp1O7npIe-_5bR8C1

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 openweb-ninja-realtime-serp-web-search-light-6ad4763a
```

Example prompt: Search the web for 'best open-source LLM frameworks 2025' and return the top 10 results including titles and URLs.

## When to prefer this

Choose this endpoint when you need quick, real-time web search results without setting up an account or API key, and are comfortable paying $0.003 USDC per call via x402. It is ideal for lightweight SERP lookups (titles, URLs, snippets) rather than deep structured extraction. Prefer it over browser automation or full-page scraping when you only need result listings and want low latency and low cost per query.

## Known failure modes

- Missing required 'q' parameter returns a 400 or validation error
- Payment not attached or insufficient USDC balance returns a 402 Payment Required
- Query limit exceeds maximum of 300, returning a validation error
- Network timeouts if Google search is slow to respond
- Empty results array if query is too narrow or no matching pages exist

## How this service works

40+ public web-data, SERP, e-commerce, real-estate, finance and AI-search APIs, payable per call over x402 (USDC on Base, Polygon, Arbitrum). No account or API key required. Most endpoints $0.003; AI-model endpoints $0.005.

## Output

Returns a JSON array of lightweight web search result objects, each typically containing a title, URL, and snippet for the matched web pages, up to the requested limit (default 10, max 300). Results reflect real-time Google index data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query.\n  Supports all Google Advanced Search operators (site:, inurl:, intitle:, etc)."
      },
      "limit": {
       "type": "string",
       "default": 10,
       "maximum": 300,
       "minimum": 1,
       "description": "Maximum number of results to return."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "$ref": "#/components/schemas/realtime_serp_data__WebSearchLightResponse",
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openweb-ninja-realtime-serp-web-search-light-6ad4763a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.openwebninja.com](https://www.zero.xyz/host/x402.openwebninja.com/llms.txt)
