Google SERP Competitor Change Monitor
Pricing
from $3.60 / 1,000 actionable insights
Google SERP Competitor Change Monitor
Turn query-result pair records into ranked, evidence-backed search opportunitys.
Google SERP Competitor Change Monitor
Pricing
from $3.60 / 1,000 actionable insights
Turn query-result pair records into ranked, evidence-backed search opportunitys.
You can access the Google SERP Competitor Change Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "records": [{10 "id": "serp-demo-001",11 "query": "best crm for dental clinics",12 "position": 4,13 "title": "Dental CRM comparison",14 "url": "https://example.com/dental-crm",15 "searchVolume": 5400,16 "cpc": 18.2,17 "competition": 0.41,18 "featuredSnippet": False,19 "observedAt": "2026-08-02T10:00:00Z",20 "productWorkflow": "google-serp-competitor-change-monitor",21 }],22 "previousRecords": [{23 "id": "serp-demo-001",24 "query": "best crm for dental clinics",25 "position": 11,26 "title": "Dental CRM comparison",27 "url": "https://example.com/dental-crm",28 "searchVolume": 5100,29 "cpc": 16.7,30 "competition": 0.44,31 "featuredSnippet": False,32 "observedAt": "2026-07-26T10:00:00Z",33 "productWorkflow": "google-serp-competitor-change-monitor",34 }],35}36
37# Run the Actor and wait for it to finish38run = client.actor("night111/google-serp-competitor-change-monitor").call(run_input=run_input)39
40# Fetch and print Actor results from the run's dataset (if there are any)41print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])42for item in client.dataset(run["defaultDatasetId"]).iterate_items():43 print(item)44
45# ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Google SERP Competitor Change Monitor API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: