Google AI Search
Google AI Search HTTP and SSE routes for search extraction, targeting controls, and status checks.
by @saifyxpro
Base path: /api/operators/google/ai-search/*
Endpoints
| Method | Path | Purpose | Notes |
|---|---|---|---|
POST | /api/operators/google/ai-search/search | standard Google AI Search scrape | JSON response |
GET | /api/operators/google/ai-search/stream | stream Google AI Search progress | SSE |
GET | /api/operators/google/ai-search/status | service status | lightweight availability check |
Request fields
| Field | Type | Meaning |
|---|---|---|
query | string | search query text |
gl | string | optional two-letter Google region code such as pk, us, or in |
hl | string | optional two-letter Google language code such as en or ur |
tbs | qdr:h | qdr:d | qdr:w | optional time filter for past hour, day, or week |
stealth | boolean | optional stealth toggle |
POST /api/operators/google/ai-search/search
Use this when you want a normal JSON result set for a query.
By default the backend starts from plain https://www.google.com/ and only applies gl, hl, or tbs when you explicitly send them.
GET /api/operators/google/ai-search/stream
Use this when you want progressive events instead of waiting for the final result.
Notes:
- this route uses query parameters
- it accepts
queryand optionaltimeout,gl,hl,tbs, andstealth - it currently ends with
endinstead ofdone
GET /api/operators/google/ai-search/status
Use this to confirm that the Google AI Search surface is reachable before a full query.
Was this page helpful?