# StableSocial Google Search

> StableSocial Google Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Performs a Google web search with optional region and date filtering, returning paginated results via pay-per-request access.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/google/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-google-search-fc450431
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S4IjohmuWEBEcAGL7EQXo

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 stablesocial-google-search-fc450431 -d '<json body>'
```

Example prompt: Search Google for 'electric vehicle subsidies 2024' filtered to results from the US posted in the last week, and give me the first page of results.

## When to prefer this

Use this endpoint when you need Google web search results without setting up a Google Custom Search API key or managing OAuth. Ideal for pay-per-use scenarios where you want fresh, regionalized, or date-filtered results on demand. Prefer over alternatives when you need simple keyword search with minimal setup and cost is per-call rather than subscription-based.

## Known failure modes

- Empty query string returns a validation error
- Invalid or unsupported country code may yield no regional results or an error
- Requesting a page number beyond available results returns empty result set
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or blocking if search volume is unusually high

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a paginated list of Google search results matching the query, optionally filtered by region (2-letter country code) and recency (last hour, day, week, month, or year). Each result typically includes a title, URL, and snippet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number",
   "description": "Page number to retrieve"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search query"
  },
  "region": {
   "type": "string",
   "description": "2 letter country code, ie US, UK, CA, etc This will show results from that country"
  },
  "date_posted": {
   "enum": [
    "last-hour",
    "last-day",
    "last-week",
    "last-month",
    "last-year"
   ],
   "type": "string",
   "description": "Date posted"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-google-search-fc450431/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
