Skip to content

Google Web Page

Overview

Method Endpoint Version Description
POST /api/v1/open/search v1 Google Search API endpoint for retrieving search results

Request Headers

Header Type Required Description
Content-Type string Yes Must be set to application/json
Accept string No Response format (defaults to application/json)

Authentication

API Key Authentication - Pass the API key as a request parameter: api_key=your_api_key - Example: "api_key": "your_api_key_here"

Request Example

curl -X POST "https://domain/api/v1/open/search" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "your_api_key_here",
    // ...
  }'

Response Format

All responses follow a standardized JSON structure:

{
  "code": 200,
  "msg": "Success",
  "reqId": "req_1234567890",
  "timestamp": "2025-01-08T10:30:00Z",
  "data": {
    // Response data object
  }
}

HTTP Status Codes

Code Status Description Retry
200 OK Request successful No

Request Parameters

Parameter Type Required Description Default
api_key string Yes API key for authentication
engine string Yes Search engine type, currently engine value is google_web google
q string Yes Search query, supports regular Google search syntax (like inurl:, site:, intitle:) and advanced search parameters
hl string No Search language code (e.g., en-English, es-Spanish, fr-French). Head to the Google languages page for a full list of supported Google languages.
gl string No Search country code (e.g., us-United States, uk-United Kingdom, fr-France). Head to the Google countries page for a full list of supported Google countries.
date string No Time range filter: h-last hour, d-last day, w-last week, m-last month, y-last year
start number No Result offset for pagination (0-first page, 10-second page, 20-third page)
device string No Device type, currently only supports desktop version desktop
google_domain string No Google domain, defaults to google.com google.com
html string No Whether to return HTML format, 1-yes, 0-no 0

Response Example

{
    "code": 200,
    "data": {
        "search_metadata": {
            "raw_html_file": "oss_html",
            "total_time_taken": 2.032416469,
            "id": "1983336358118166528",
            "json_endpoint": "oss_json",
            "created_at": "2025-10-29 08:53:31",
            "processed_at": "2025-10-29 08:53:33",
            "google_url": "https://www.google.com/search?q=test&udm=14",
            "status": "Success"
        },
        "search_information": {
            "organic_results_state": "",
            "page_number": 1,
            "time_taken_displayed": 0.63,
            "total_results": ""
        },
        "search_parameters": {
            "engine": "google_web",
            "html": "0",
            "device": "desktop",
            "google_domain": "www.google.com",
            "q": "test",
            "udm": 14
        },
        "organic_results": [
            {
                "position": 1,
                "title": "",
                "link": [
                    ""
                ],
                "displayed_link": "",
                "source_logo": [
                    "data:image/png;base64,"
                ],
                "snippet": "",
                "source": [
                    ""
                ],
                "snippet_highlighted_words": [
                    ""
                ],
                "label_list": [
                    {
                        "text": "",
                        "link": ""
                    }
                ]
            }
        ],
        "pagination": {
            "current": 1,
            "next": "",
            "other_pages": {
                "1": "https://www.google.com/search"
            }
        },
        "last_page": "10"
    },
    "msg": "string",
    "reqId": "string"
}

Complete Response Parameters Overview

search_metadata

object Contains metadata about the search execution

Parameter Type Description Applicable Terminal
id string Unique identifier for the search request desktop
json_endpoint string Provide an interface endpoint for searching related JSON data, through which JSON-formatted search data can be obtained desktop
created_at string The timestamp when the search request was created, recording the time when the search was initiated desktop
processed_at string The timestamp when the search results were processed and became available for return, recording the time point from processing to completion of the search desktop
google_url string The Google search URL, which contains the search keyword "coffee" along with language parameters (hl=en for English), regional parameters (gl=us for the United States), and other search parameters, used to redirect to the corresponding Google search page desktop
status string Status of the search execution (e.g., Success) desktop
raw_html_file string Identifier for the original HTML file desktop
total_time_taken number The total time spent on the entire search process (including request sending, result parsing, and other stages) desktop

search_information

object Contains information about the search results

Parameter Type Description Applicable Terminal
organic_results_state string State of organic results desktop
page_number number Current page number (indicating the current pagination index of the search results, used for browsing search results by pages) desktop
time_taken_displayed number TDisplay time (i.e., the time spent on displaying the search results) desktop
total_results string Total results count (the total number of results returned by this search) desktop

search_parameters

object Contains the parameters used for the search

Parameter Type Description Applicable Terminal
q string Keywords used for this query desktop
engine string Search engine used for this query (e.g., google_web) desktop
html string When HTML=0, returns JSON; when HTML=1, returns HTML; when HTML=2, returns both JSON and HTML desktop
device string Device type used during search (e.g., desktop) desktop
google_domain string Specifies the corresponding Google domain (e.g., google.com, etc., used to distinguish Google services in different regions/locales) desktop
udm number Google Search type identifier desktop

organic_results

object[] A collection of naturally sorted web results that match the search keywords. See specific parameter explanations for details.

Parameter Type Description Applicable Terminal
position number The ranking of this result in the organic search results desktop
title string Title of the search result desktop
link[] string[] Array of links associated with the result desktop
displayed_link string Display link (simplified and formatted link used for page display, easy to read) desktop
source_logo[] string[] Source logo link (the image address of the content source brand logo, usually in the format data:image/png;base64) desktop
snippet string Snippet of the search result summary desktop
source[] string[] Source of the content (such as website name, media platform, or other source identifiers) desktop
snippet_highlighted_words[] string[] Array of highlighted keywords in the summary desktop
label_list[] object[] Array of tags and extended links related to the result desktop
label_list[].text string Text content of the tag desktop
label_list[].link string Target web link corresponding to the tag desktop
thumbnail string Thumbnail link (address of a small preview image related to the content, used for quick visual identification, including data:image/png;base64) desktop

pagination

object Pagination information (parameters or display logic that control the pagination of search results). See specific parameter explanations for details.

Parameter Type Description Applicable Terminal
current number Current page number desktop
next string Link to the next page (can directly jump to the next page of search results) desktop
other_pages object An object containing navigation links to other pages (such as page 2, page 3, etc.) desktop

last_page

string Last page number (the "last page" identifier in paginated searches). See specific parameter explanations for details.

Parameter Type Description Applicable Terminal
last_page string Last page number(the "last page" identifier in paginated searches) desktop