Local SEO SMB Lead Gap Scorer
Pricing
Pay per usage
Go to Apify Store
Local SEO SMB Lead Gap Scorer
Turn imported Google Maps or Google Places business rows into deterministic local SEO and SMB outreach gap scores.
Local SEO SMB Lead Gap Scorer
Pricing
Pay per usage
Turn imported Google Maps or Google Places business rows into deterministic local SEO and SMB outreach gap scores.
You can access the Local SEO SMB Lead Gap Scorer 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 "mode": "items",10 "items": [11 {12 "businessName": "Bright Smile Dental",13 "category": "Dentist",14 "address": "123 Main St",15 "city": "Austin",16 "phone": "+1 512 555 0100",17 "rating": 4.7,18 "reviewCount": 34,19 "googleMapsUrl": "https://www.google.com/maps/place/Bright+Smile+Dental",20 },21 {22 "title": "Oak Street Bakery",23 "categoryName": "Bakery",24 "city": "Portland",25 "contactPhone": "+1 503 555 0111",26 "websiteUrl": "https://oakstreetbakery.business.site",27 "rating": 4.6,28 "reviews": 18,29 "mapsUrl": "https://www.google.com/maps/place/Oak+Street+Bakery",30 },31 {32 "name": "Cedar Family Dentistry",33 "primaryCategory": "Dentist",34 "streetAddress": "9 Cedar Ave",35 "locality": "Raleigh",36 "phoneNumber": "+1 919 555 0123",37 "website": "https://cedarfamilydentistry.com",38 "googleRating": "4.8",39 "userRatingsTotal": "184",40 "placeId": "sample-place-cedar-raleigh",41 },42 ],43 "scrapedAt": "2026-07-08T00:00:00.000Z",44}45
46# Run the Actor and wait for it to finish47run = client.actor("rotvuvo/local-seo-smb-lead-gap-scorer").call(run_input=run_input)48
49# Fetch and print Actor results from the run's dataset (if there are any)50print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])51for item in client.dataset(run["defaultDatasetId"]).iterate_items():52 print(item)53
54# 📚 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 Local SEO SMB Lead Gap Scorer API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: