SmartCustomer Reviews Scraper avatar

SmartCustomer Reviews Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
SmartCustomer Reviews Scraper

SmartCustomer Reviews Scraper

Scrape SmartCustomer.com - search businesses, get reviews, and fetch full business profiles. 200M+ public reviews across 130K+ businesses.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Scrape SmartCustomer.com — one of the web's largest consumer review platforms with 200M+ public reviews across 130K+ businesses. Search businesses by keyword or category, collect customer reviews, and fetch full business profiles — all without any API key or login.

What You Get

ModeOutput
searchBusinessesBusiness names, domains, URLs from search results
getReviewsReview text, ratings, dates, author info per business
getBusinessDetailsFull profile: name, rating, review count, logo, categories

Input Parameters

ParameterTypeDescription
modeselectRequired. One of searchBusinesses, getReviews, getBusinessDetails
querystringKeyword search term (e.g. "restaurant", "plumber", "amazon")
categoryselectFilter by category (shopping, food-drink, travel, etc.)
citystringFilter by city name (e.g. "New York")
statestringFilter by state name (e.g. "California")
businessDomainsstring listBusiness domain slugs for getReviews/getBusinessDetails (e.g. amazon.com)
minRatingintegerMinimum overall rating 1–5
maxItemsintegerMax records to emit (default: 100, max: 10,000)

Output Fields

Business Records (recordType: "business")

FieldTypeDescription
slugstringBusiness domain slug (e.g. amazon.com)
namestringBusiness name
websitestringBusiness website URL
logoUrlstringLogo image URL
overallRatingfloatAverage rating (0–5)
reviewCountintegerTotal number of reviews
categoriesstring[]Business categories
sourceUrlstringSmartCustomer page URL
recordTypestringAlways "business"
scrapedAtstringUTC ISO timestamp

Review Records (recordType: "review")

FieldTypeDescription
reviewIdintegerReview ID
businessSlugstringBusiness domain slug
ratingfloatReview star rating (1–5)
titlestringReview headline
bodystringReview text
datePublishedstringDate published
authorNamestringReviewer name
authorUsernamestringReviewer SmartCustomer username
authorUrlstringReviewer profile URL
sourceUrlstringReview URL
recordTypestringAlways "review"
scrapedAtstringUTC ISO timestamp

Example Inputs

Search restaurants in New York:

{
"mode": "searchBusinesses",
"query": "restaurant",
"city": "New York",
"maxItems": 20
}

Get reviews for Amazon:

{
"mode": "getReviews",
"businessDomains": ["amazon.com"],
"maxItems": 50
}

Get business profiles:

{
"mode": "getBusinessDetails",
"businessDomains": ["amazon.com", "walmart.com", "target.com"],
"maxItems": 10
}

Data Source

SmartCustomer.com is a consumer review aggregation platform. All data is publicly accessible without authentication. Reviews and business profiles are served as HTML with structured JSON-LD data (Schema.org).

FAQs

Q: Do I need an API key? A: No. SmartCustomer.com provides public access to all review data without authentication.

Q: How many reviews can I get per business? A: SmartCustomer paginates reviews — each page contains up to 20 reviews. The scraper auto-paginates up to maxItems.

Q: What is the businessDomains format? A: Use the domain slug as it appears in SmartCustomer URLs, e.g., for https://www.smartcustomer.com/reviews/amazon.com, the slug is amazon.com.

Q: Can I filter by minimum rating? A: Yes. Set minRating to 1–5 to filter out lower-rated results.

Q: Are reviews real-time? A: Reviews are fetched live from SmartCustomer at the time of each run.