Auto Repair Acquisition Scorer
Pricing
from $20.00 / 1,000 scored shops
Auto Repair Acquisition Scorer
Rank independent repair shops for acquisition research using transparent component scores and red flags.
Auto Repair Acquisition Scorer
Pricing
from $20.00 / 1,000 scored shops
Rank independent repair shops for acquisition research using transparent component scores and red flags.
You can access the Auto Repair Acquisition 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 API & Integrations 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 = { "shops": [{9 "shopId": "demo-shop-1",10 "shopName": "Demo Auto Service",11 "website": "https://demo-auto-service.example",12 "independent": True,13 "locations": 2,14 "yearsInBusiness": 22,15 "rating": 4.7,16 "reviewCount": 480,17 "specialties": [18 "European",19 "Diesel",20 ],21 "technologies": [22 "Tekmetric",23 "Podium",24 "Sunbit",25 ],26 "capabilities": {27 "onlineBooking": True,28 "onlinePayments": True,29 "financing": True,30 },31 "activeJobSignals": 2,32 "capacityPressureScore": 55,33 "cxRiskScore": 20,34 "marketCompetitorCount": 8,35 "ownershipSignals": ["Founder-operated since 2004"],36 }] }37
38# Run the Actor and wait for it to finish39run = client.actor("repairiq/auto-repair-acquisition-scorer").call(run_input=run_input)40
41# Fetch and print Actor results from the run's dataset (if there are any)42print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")43for item in client.dataset(run.default_dataset_id).iterate_items():44 print(item)45
46# 📚 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 Auto Repair Acquisition Scorer API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: