# Serper Google Search via APIOSK Gateway

> Serper Google Search via APIOSK Gateway is a paid API for AI agents from gateway.apiosk.com, paid per call via x402, $0.15/call, status down (last checked 2026-09-15).

Performs a Google web search via the Serper API and returns organic results, knowledge graph data, related searches, and sitelinks

## Facts

- Endpoint: GET https://gateway.apiosk.com/serper/search
- Price: $0.15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/serper-google-search-via-apiosk-gateway-a1d87cd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KlXr2Mj1SHFmBECm7BmdE

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 serper-google-search-via-apiosk-gateway-a1d87cd9
```

Example prompt: Search Google for 'OpenAI GPT-5 release date' and give me the top organic results along with any knowledge graph info that comes back.

## When to prefer this

Use this endpoint when you need real-time Google web search results with structured output including organic links, snippets, knowledge graph, and related queries. Prefer this over generic scraping endpoints when you need search-engine-ranked results rather than direct page content, and when you need knowledge graph data (entity attributes like CEO, founding date, headquarters) alongside web links.

## Known failure modes

- Invalid or missing query parameter returns an error
- Serper API quota exhausted results in upstream error
- Payment not processed (x402) results in 402 response before search executes
- Rate limiting from the underlying Serper/Google API may cause failures
- Malformed input schema leads to unexpected behavior

## How this service works

API call to serper

## Output

Returns a structured JSON object containing: organic search results (each with link, title, snippet, and position), a knowledge graph with entity attributes (e.g. CEO, founded, headquarters), related search queries, and the original search parameters used. Credits consumed are also returned.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "credits": 1,
 "organic": [
  {
   "link": "https://en.wikipedia.org/wiki/Apple_Inc.",
   "title": "Apple Inc. - Wikipedia",
   "snippet": "Apple Inc. is an American multinational technology company headquartered known for consumer electronics, software and online services.",
   "position": 1
  },
  {
   "link": "https://www.apple.com/",
   "title": "Apple",
   "snippet": "Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, ...",
   "position": 2,
   "sitelinks": [
    {
     "link": "https://www.apple.com/us/shop/goto/store",
     "title": "Store"
    },
    {
     "link": "https://www.apple.com/mac/",
     "title": "Mac"
    }
   ]
  },
  {
   "link": "https://finance.yahoo.com/quote/AAPL/",
   "title": "Apple Inc. (AAPL) Stock Price, News, Quote & History - Yahoo Finance",
   "snippet": "Apple Inc. (AAPL) 297.84 +0.83 (+0.28%) As of 11:41:34 AM EDT.",
   "position": 3
  }
 ],
 "knowledgeGraph": {
  "title": "Apple",
  "attributes": {
   "CEO": "Tim Cook (Aug 24, 2011–Sep 1, 2026)",
   "Founded": "April 1, 1976, Los Altos, CA",
   "Founders": "Steve Jobs, Steve Wozniak, and Ronald Wayne",
   "Headquarters": "Cupertino, CA"
  }
 },
 "relatedSearches": [
  {
   "query": "Apple inc careers"
  },
  {
   "query": "Apple Inc address"
  },
  {
   "query": "Apple inc stock"
  }
 ],
 "searchParameters": {
  "q": "apple inc",
  "gl": "us",
  "hl": "en",
  "num": 5,
  "type": "search",
  "engine": "google"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/serper-google-search-via-apiosk-gateway-a1d87cd9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.apiosk.com](https://www.zero.xyz/host/gateway.apiosk.com/llms.txt)
