# Google Web Search API (jojapi)

> Google Web Search API (jojapi) is a paid API for AI agents from gsearch.jojapi.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search the web using Google's index, returning webpages and related keywords for any query including Google Dorking syntax.

## Facts

- Endpoint: GET https://gsearch.jojapi.net/v1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-web-search-api-jojapi-c59751e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wLQPhVZJ55x9_B-c4zs2o

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 google-web-search-api-jojapi-c59751e9
```

Example prompt: Search Google for 'open source LLM fine-tuning tutorials site:github.com' and return the top 10 results including any related keywords.

## When to prefer this

Choose this endpoint when you need programmatic access to Google's web search index with support for advanced Google search operators (dorking), locale/language filtering, and related keyword discovery. Prefer it over generic search APIs when Google-specific ranking and operator syntax (site:, filetype:, intitle:, etc.) are important to your use case. It is particularly useful when agents need to retrieve real-world, up-to-date web information at low per-call cost via x402 micropayments.

## Known failure modes

- Missing required 'query' parameter returns a validation error
- Invalid 'gl' or 'hl' values may return unexpected locale results or an error
- Payment not attached (x402) results in a 402 Payment Required response
- Rate limiting or quota exhaustion may return a 429 or 503 error
- Very obscure queries may return few or no results
- Invalid cursor value for pagination may return an error or reset to first page

## How this service works

Google Web Search API. Search the world’s information, including webpages, related keywords and more.

## Output

A JSON response containing a list of web search results (each with title, URL, and snippet), optionally related keywords for the query, and a pagination cursor for fetching the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "query"
 ],
 "properties": {
  "gl": {
   "type": "string"
  },
  "hl": {
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "query": {
   "type": "string",
   "description": "The search query. Supports plain keywords or full Google search syntax (Google Dorking).\n\nCommon operators: `\"exact phrase\"`, `OR`, `-exclude`, `site:`, `inurl:`, `intitle:`, `intext:`, `filetype:`, `"
  },
  "cursor": {
   "type": "string"
  },
  "related_keywords": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-web-search-api-jojapi-c59751e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gsearch.jojapi.net](https://www.zero.xyz/host/gsearch.jojapi.net/llms.txt)
