Feature: serp

Review Bulk-fetch

Single call pulls up to 1000 reviews with rating, author, date, and verified-purchase flag across Amazon, Walmart, and Google Maps.

What is Review Bulk-fetch?

Review Bulk-fetch is the Scavio endpoint that returns up to 1000 reviews per call for a target ASIN, Walmart item, or Google Maps place, with normalized fields for rating, author, date, verified-purchase flag, and review body. Designed for review-mining pipelines that need a wide sample before classification. Pagination and deduplication are handled server-side, so callers get one clean result set rather than stitching multiple pages.

Example Response

JSON
{ "asin": "B0X", "review_count": 842, "reviews": [{ "rating": 4, "verified": true, "date": "2026-03-12", "body": "..." }] }

Use Cases

  • Review mining for product roadmap input
  • Marketing copy generation from customer voice
  • Competitive review analysis
  • Category research for new launches

Why Review Bulk-fetch Matters

Review mining requires breadth to avoid sampling bias; bulk-fetch cuts what used to be a multi-page scraping job to a single call with clean JSON.

LangChain Example

Drop review bulk-fetch data into your LangChain agent in a few lines:

Python
scavio.amazon.reviews(asin="B0X...", limit=1000)

Frequently Asked Questions

Send a search request with the appropriate platform (amazon) and Scavio returns review bulk-fetch data in the response. See the example above for the exact field path.

Yes. Scavio fetches review bulk-fetch data in real time on each request. There is no caching layer and no stale data.

Review Bulk-fetch is the Scavio endpoint that returns up to 1000 reviews per call for a target ASIN, Walmart item, or Google Maps place, with normalized fields for rating, author,

Review Bulk-fetch data is returned as part of the standard search response. Each request costs 1 credit. Free tier includes 500 credits/month.

Start Using Review Bulk-fetch

Single call pulls up to 1000 reviews with rating, author, date, and verified-purchase flag across Amazon, Walmart, and Google Maps.