Auto Repair Review Signals
Pricing
from $10.00 / 1,000 analyzed shops
Auto Repair Review Signals
Detect repair-specific CX pain, trend changes, and sales opportunities from supplied reviews.
Auto Repair Review Signals
Pricing
from $10.00 / 1,000 analyzed shops
Detect repair-specific CX pain, trend changes, and sales opportunities from supplied reviews.
You can access the Auto Repair Review Signals 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 "places": [12 {13 "shopId": "demo-shop-1",14 "shopName": "Demo Auto Service",15 "website": "https://demo-auto-service.example",16 "reviews": [17 {18 "text": "They never called with an update and I had to chase them for three days.",19 "rating": 2,20 "publishedAt": "2026-07-20"21 },22 {23 "text": "The estimate changed without asking me first.",24 "rating": 2,25 "publishedAt": "2026-07-02"26 },27 {28 "text": "Waited a week for parts and nobody communicated.",29 "rating": 3,30 "publishedAt": "2026-06-18"31 },32 {33 "text": "Honest shop and great communication.",34 "rating": 5,35 "publishedAt": "2026-03-10"36 },37 {38 "text": "Fair price and they explained everything up front.",39 "rating": 5,40 "publishedAt": "2026-02-14"41 },42 {43 "text": "Fixed right the first time, same day.",44 "rating": 5,45 "publishedAt": "2025-12-05"46 }47 ]48 }49 ]50};51
52// Run the Actor and wait for it to finish53const run = await client.actor("repairiq/auto-repair-review-signals").call(input);54
55// Fetch and print Actor results from the run's dataset (if any)56console.log('Results from dataset');57console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);58const { items } = await client.dataset(run.defaultDatasetId).listItems();59items.forEach((item) => {60 console.dir(item);61});62
63// 📚 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 Auto Repair Review Signals API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: