Google Search (SERP)
Search the web through AceDataCloud's Google SERP API.
Setup: See authentication for token setup.
Quick Start
curl -X POST https://api.acedata.cloud/serp/google \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "latest AI news", "type": "search"}'
Search Types
| Type |
Description |
Returns |
search |
Web search (default) |
Organic results, knowledge graph, rich snippets |
images |
Image search |
Image URLs, titles, sources |
news |
News articles |
Headlines, sources, publish dates |
maps |
Map results |
Locations, coordinates |
places |
Local businesses/places |
Name, address, rating, reviews |
videos |
Video results |
Video URLs, thumbnails, duration |
Parameters
POST /serp/google
{
"query": "your search query",
"type": "search",
"country": "us",
"language": "en",
"range": "qdr:w",
"number": 10,
"page": 1
}
| Parameter |
Type |
Description |
query |
string |
Search query (required; must contain non-whitespace text; maximum 2048 characters) |
type |
string |
One of: search, images, news, maps, places, videos |
country |
string |
Non-empty country code (e.g., "us", "uk", "cn", "jp"; maximum 32 characters) |
language |
string |
Non-empty language code (e.g., "en", "zh", "ja"; maximum 32 characters) |
range |
string |
Time filter (see below) |
number |
int |
Number of results per page |
page |
int |
Page number for pagination |
image_size |
string |
Images only. Filter by size for high-res sources: large / medium / icon, or a megapixel minimum 2mp…70mp (e.g. 4mp = larger than 4 megapixels). Use large (or a *mp value) whenever the image will be shown large / full-screen / zoomed. |
Time Range Options
| Value |
Period |
qdr:h |
Past hour |
qdr:d |
Past 24 hours |
qdr:w |
Past week |
qdr:m |
Past month |
qdr:y |
Past year |
h |
Past hour |
d |
Past 24 hours |
w |
Past week |
m |
Past month |
y |
Past year |
Response Structure
Web search returns structured data including:
organic_results: Main search results with title, link, snippet
knowledge_graph: Entity information panel (when available)
related_searches: Related query suggestions
Gotchas
- Default search type is
"search" (web). Always specify type for non-web searches
- Country and language codes affect result localization significantly
number controls results per page, not total results — use page for pagination
- Time range (
range) only applies to web search and news, not images or places
- Image resolution (important for video / full-screen use): results include
image_url (full-size), thumbnail_url, and image_width/image_height. Pass image_size: "large" (or a megapixel minimum like "4mp") to get sharp sources, and pick the result with the largest image_width×image_height. Always download image_url — never use thumbnail_url as a final asset (it is tiny and blurry).
- Places search works best with location-specific queries (e.g., "restaurants near Times Square")
MCP: pip install mcp-serp | Hosted: https://serp.mcp.acedata.cloud/mcp | See all MCP servers
1---2name: google-search3description: Search the web using Google via AceDataCloud API. Use when searching for web pages, images, news, maps, local places, or videos. Supports localization, time filtering, and pagination. Returns structured results with titles, snippets, URLs, and rich data.4license: Apache-2.05---6
7# Google Search (SERP)
8
9Search the web through AceDataCloud's Google SERP API.
10
11> **Setup:** See [authentication](../_shared/authentication.md) for token setup.
12
13## Quick Start
14
15```bash
16curl -X POST https://api.acedata.cloud/serp/google \
17 -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
18 -H "Content-Type: application/json" \
19 -d '{"query": "latest AI news", "type": "search"}'
20```
21
22## Search Types
23
24| Type | Description | Returns |
25|------|-------------|---------|
26| `search` | Web search (default) | Organic results, knowledge graph, rich snippets |
27| `images` | Image search | Image URLs, titles, sources |
28| `news` | News articles | Headlines, sources, publish dates |
29| `maps` | Map results | Locations, coordinates |
30| `places` | Local businesses/places | Name, address, rating, reviews |
31| `videos` | Video results | Video URLs, thumbnails, duration |
32
33## Parameters
34
35```json
36POST /serp/google
37{
38 "query": "your search query",
39 "type": "search",
40 "country": "us",
41 "language": "en",
42 "range": "qdr:w",
43 "number": 10,
44 "page": 1
45}
46```
47
48| Parameter | Type | Description |
49|-----------|------|-------------|
50| `query` | string | Search query (required; must contain non-whitespace text; maximum 2048 characters) |
51| `type` | string | One of: search, images, news, maps, places, videos |
52| `country` | string | Non-empty country code (e.g., "us", "uk", "cn", "jp"; maximum 32 characters) |
53| `language` | string | Non-empty language code (e.g., "en", "zh", "ja"; maximum 32 characters) |
54| `range` | string | Time filter (see below) |
55| `number` | int | Number of results per page |
56| `page` | int | Page number for pagination |
57| `image_size` | string | **Images only.** Filter by size for high-res sources: `large` / `medium` / `icon`, or a megapixel minimum `2mp`…`70mp` (e.g. `4mp` = larger than 4 megapixels). Use `large` (or a `*mp` value) whenever the image will be shown large / full-screen / zoomed. |
58
59## Time Range Options
60
61| Value | Period |
62|-------|--------|
63| `qdr:h` | Past hour |
64| `qdr:d` | Past 24 hours |
65| `qdr:w` | Past week |
66| `qdr:m` | Past month |
67| `qdr:y` | Past year |
68| `h` | Past hour |
69| `d` | Past 24 hours |
70| `w` | Past week |
71| `m` | Past month |
72| `y` | Past year |
73
74## Response Structure
75
76Web search returns structured data including:
77- `organic_results`: Main search results with title, link, snippet
78- `knowledge_graph`: Entity information panel (when available)
79- `related_searches`: Related query suggestions
80
81## Gotchas
82
83- Default search type is `"search"` (web). Always specify `type` for non-web searches
84- Country and language codes affect result localization significantly
85- `number` controls results per page, not total results — use `page` for pagination
86- Time range (`range`) only applies to web search and news, not images or places
87- **Image resolution (important for video / full-screen use):** results include `image_url` (full-size), `thumbnail_url`, and `image_width`/`image_height`. Pass **`image_size: "large"`** (or a megapixel minimum like `"4mp"`) to get sharp sources, and pick the result with the largest `image_width`×`image_height`. Always download `image_url` — **never** use `thumbnail_url` as a final asset (it is tiny and blurry).
88- Places search works best with location-specific queries (e.g., "restaurants near Times Square")
89
90> **MCP:** `pip install mcp-serp` | Hosted: `https://serp.mcp.acedata.cloud/mcp` | See [all MCP servers](../_shared/mcp-servers.md)