# Google Web Search API via JoJAPI (Subscription)

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

Subscribes to the Google Web Search API on JoJAPI, returning an API key for querying web search results including webpages and related keywords.

## Facts

- Endpoint: POST https://gsearch.jojapi.net/_jojapi/agent/subscribe/olz7m6pms6es610mpnccy7cc
- Price: $20/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-via-jojapi-subscription-89b5ac68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mjjmcww8sJ-7R2Lv6kuf5

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-via-jojapi-subscription-89b5ac68 -d '<json body>'
```

Example prompt: Subscribe me to the Google Web Search API on JoJAPI so I can start querying Google search results — go ahead and process the payment and give me back the API key.

## When to prefer this

Choose this endpoint when your agent needs programmatic access to Google web search results via a pay-per-period x402-compatible API. Prefer this over scraping or unofficial Google search wrappers when you need a legitimate, stable API key with clear subscription lifecycle management. Use it specifically when bootstrapping a new agent that requires real-time web search or when rotating/replacing an existing JoJAPI Google Search subscription.

## Known failure modes

- Insufficient USDC balance — payment fails and no subscription is created
- Invalid 'replace' subscription reference — cancellation fails or 404 returned
- Duplicate active subscription conflict — existing subscription blocks new creation
- Network/gateway error from JoJAPI — 5xx response with no API key issued
- Subscription period already active — attempt to replace non-replaceable subscription

## How this service works

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

## Output

Returns a new API key bound to the subscription, subscription period details (start/end dates, renewal type), payment confirmation with transaction reference, account info including balance, and a hint of the key for future reference. The API key should be sent as X-JoJAPI-Key header or Authorization: Bearer on subsequent search calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "replace": {
   "type": "string",
   "description": "Optional: ref of one of your own subscriptions on this API to cancel when the new one starts"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "api_key",
  "subscription"
 ],
 "properties": {
  "auth": {
   "type": "object",
   "properties": {
    "header": {
     "type": "string"
    },
    "alternatives": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "status": {
   "enum": [
    "success"
   ],
   "type": "string"
  },
  "account": {
   "type": "object",
   "properties": {
    "nick": {
     "type": "string"
    },
    "balance_usd": {
     "type": "number"
    }
   }
  },
  "api_key": {
   "type": "string",
   "description": "The new API key, bound to this subscription. Send it as the X-JoJAPI-Key header (or Authorization: Bearer)."
  },
  "payment": {
   "type": "object",
   "properties": {
    "rail": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "reference": {
     "type": "string",
     "description": "On-chain transaction hash or rail reference"
    },
    "amount_usd": {
     "type": "number"
    }
   }
  },
  "existing": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Other subscriptions of this account on the same API"
  },
  "key_hint": {
   "type": "string",
   "description": "Last characters of the key, for lists"
  },
  "subscription": {
   "type": "object",
   "properties": {
    "ref": {
     "type": "string",
     "description": "Subscription reference (use it in /keys/rotate)"
    },
    "plan": {
     "type": "object"
    },
    "status": {
     "type": "string"
    },
    "renewal": {
     "type": "string",
     "description": "prepaid: no automatic charge, a 402 renewal offer comes when the period ends"
    },
    "period_end": {
     "type": "string",
     "format": "date-time"
    },
    "period_start": {
     "type": "string",
     "format": "date-time"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-web-search-api-via-jojapi-subscription-89b5ac68/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)
