VOOZH about

URL: https://apify.com/glavier/google-web-search

⇱ Google Web Search Β· Apify


Pricing

from $1.00 / 1,000 requests

Go to Apify Store

Single Request +200 Results. Google Web Search API. Search the world’s information, including webpages, related keywords and more.

Pricing

from $1.00 / 1,000 requests

Rating

5.0

(1)

Developer

πŸ‘ Glavier

Glavier

Maintained by Community

Actor stats

1

Bookmarked

18

Total users

6

Monthly active users

4 months ago

Last modified

Share

Google Web Search API

Fast, reliable Google Search API that returns structured search results in JSON format. Runs in Standby mode as a real-time HTTP API β€” send a request, get instant results.

Features

  • Instant HTTP API β€” No waiting for Actor runs, get results in real-time
  • Structured JSON β€” Clean results with titles, URLs, descriptions, and timestamps
  • Knowledge Panels β€” Returns Google Knowledge Panel data when available
  • Pagination β€” Cursor-based pagination for navigating through results
  • Related Keywords β€” Optionally get related search suggestions
  • Pay Per Request β€” You only pay for successful API calls

Quick Start

Send a GET request to the Standby endpoint:

https://glavier--google-web-search.apify.actor?query=web+scraping&token={YOUR_APIFY_TOKEN}

Example Response

{
"search_term":"web scraping",
"next_cursor":"CAo=",
"knowledge_panel":null,
"results":[
{
"url":"https://www.example.com/",
"title":"Example Result",
"description":"Description of the search result...",
"timestamp":null
}
]
}

Parameters

ParameterTypeRequiredDefaultDescription
querystringYesβ€”Search term to look up
limitintegerNo10Number of results (1–100)
related_keywordsbooleanNofalseInclude related search keywords
cursorstringNoβ€”Pagination cursor from previous response

Authentication

Include your Apify API token in one of two ways:

Query parameter (simple):

https://glavier--google-web-search.apify.actor?query=hello&token={YOUR_APIFY_TOKEN}

Authorization header (recommended):

curl"https://glavier--google-web-search.apify.actor?query=hello"\
-H"Authorization: Bearer {YOUR_APIFY_TOKEN}"

Pagination

Use the next_cursor value from the response to fetch the next page:

# First page
curl"https://glavier--google-web-search.apify.actor?query=web+scraping&token={TOKEN}"
# Next page (use next_cursor from previous response)
curl"https://glavier--google-web-search.apify.actor?query=web+scraping&cursor=CAo%3D&token={TOKEN}"

Pricing

This Actor uses Pay Per Event pricing. You are charged per request, not per result.

EventDescription
requestEach successful API call (non-5xx response)

The price per request is shown on the Actor's pricing page. Requests that result in a server error (5xx) are not charged.

Integration Examples

JavaScript / Node.js

const response =awaitfetch(
'https://glavier--google-web-search.apify.actor?query=web+scraping&limit=10',
{headers:{'Authorization':'Bearer YOUR_TOKEN'}}
);
const data =await response.json();
console.log(data.results);

Python

import requests
response = requests.get(
'https://glavier--google-web-search.apify.actor',
params={'query':'web scraping','limit':10},
headers={'Authorization':'Bearer YOUR_TOKEN'}
)
data = response.json()
print(data['results'])

cURL

curl"https://glavier--google-web-search.apify.actor?query=web+scraping&limit=10"\
-H"Authorization: Bearer YOUR_APIFY_TOKEN"

Support

For issues or feature requests, please use the Issues tab on this Actor's page.

You might also like

Google Search Scraper

microworlds/google-search-scraper

Scrape Google Search pages

Google Search

ethereal_wool/google-search

enter search term to search for google results

84

1.0

Brave Search API β€” Web, News, Image & Video Search

junipr/brave-search

Search the web using the Brave Search API. Extract organic results, news, videos, and related searches for any query. Fast, private, and independent search results without Google dependencies.

Google Search Results Scraper

scrapier/google-search-results-scraper

Extract search result data from Google with the Google Search Results Scraper. Collect titles, URLs, descriptions, rankings, and other result details in structured format. Ideal for SEO analysis, keyword research, competitor monitoring, and gathering web data from search pages.

Google Search Results Scraper

api-empire/google-search-results-scraper

Google Search Results Scraper extracts data from Google search result pages. It collects titles, URLs, snippets, rankings, and related searches. Ideal for SEO analysis, keyword research, competitor tracking, and monitoring search visibility.

CrazySerp

crazyserp/crazyserp

Google Serp API Scrape Google Search Results with a single API call. Get structured JSON data from Google Search including organic results, news, images, videos, and 20+ more data types.

Google Search

devisty/google-search

API used to retrieve data from Google search results in real time

Google Search Scraper β€” SERP Results & Web Search API

nexgendata/google-cse-replacement

Drop-in replacement for Google Custom Search JSON API's "Search entire web" mode (killed Jan 1, 2027). Queries Google SERP directly, returns CSE-compatible JSON.

Google Search Scraper

mina_safwat/Google-Search-Scraper

The fastest Google Search scraper availableβ€”perfect if you need to scrape Google Search results quickly and efficiently.

Related articles

Top 5 Google Image Search APIs to extract web image data
Read more
How to scrape Google search results
Read more
Top Google SERP APIs in 2026
Read more