Four steps from zero to your first reviews. All you need is an API token.
Find your API token in your Webz.io dashboard. Every request needs it.
GET
https://api.webz.io/reviewFilter?token=YOUR_TOKEN&q="pizza oven" language:english rating:>=4
In real requests, URL-encode the q value.
The JSON response contains a reviews array plus paging fields:
{
"reviews": [ ... ],
"totalResults": 1843,
"moreResultsAvailable": 1743,
"next": "/reviewFilter?token=YOUR_TOKEN&format=json&ts=1751536320000&q=...",
"requestsLeft": 989
}Append the next value to https://api.webz.io and call it again. Repeat until moreResultsAvailable reaches 0. See Pagination.
That's it - you are up and running. Next, sharpen your query with Query Syntax and Filters.
By default you search reviews crawled in the last 3 days. Set ts to go further back - see Time Range. Older data - up to the last 5 years - is available via the News, Blogs, Forums & Reviews Archive.