Google Local Multi-Location Rank Monitor
Pricing
from $3.20 / 1,000 actionable insights
Go to Apify Store
Google Local Multi-Location Rank Monitor
Turn place records into ranked, evidence-backed local business opportunitys.
Google Local Multi-Location Rank Monitor
Pricing
from $3.20 / 1,000 actionable insights
Turn place records into ranked, evidence-backed local business opportunitys.
You can access the Google Local Multi-Location Rank 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 API & Integrations in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "placeId": "ChIJ-demo-001",14 "name": "Harbour Dental",15 "categoryName": "Dentist",16 "address": "Central, Hong Kong",17 "rating": 4.6,18 "reviewsCount": 128,19 "website": "",20 "phone": "+852 2123 4567",21 "observedAt": "2026-08-02T10:00:00Z",22 "productWorkflow": "google-local-rank-monitor"23 }24 ],25 "previousRecords": [26 {27 "placeId": "ChIJ-demo-001",28 "name": "Harbour Dental",29 "categoryName": "Dentist",30 "address": "Central, Hong Kong",31 "rating": 4.2,32 "reviewsCount": 91,33 "website": "",34 "phone": "+852 2123 4567",35 "observedAt": "2026-07-02T10:00:00Z",36 "productWorkflow": "google-local-rank-monitor"37 }38 ]39};40
41// Run the Actor and wait for it to finish42const run = await client.actor("night111/google-local-rank-monitor").call(input);43
44// Fetch and print Actor results from the run's dataset (if any)45console.log('Results from dataset');46console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);47const { items } = await client.dataset(run.defaultDatasetId).listItems();48items.forEach((item) => {49 console.dir(item);50});51
52// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Google Local Multi-Location Rank Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: