BoardGameQuest Review Scraper avatar

BoardGameQuest Review Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
BoardGameQuest Review Scraper

BoardGameQuest Review Scraper

Scrape board game reviews from BoardGameQuest.com. Get game titles, ratings, review content, authors, categories, and featured images via WordPress REST API. Search by keyword or browse latest reviews.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Categories

Share

Scrape board game reviews from BoardGameQuest -- a popular tabletop gaming review site with thousands of in-depth game reviews.

What it does

  • Browse mode: Scrape the latest board game reviews in reverse chronological order
  • Search mode: Search for reviews by keyword (game name, mechanic, theme)
  • Extracts ratings from review content using pattern matching

Uses the WordPress REST API for reliable, structured JSON data extraction.

Input Parameters

ParameterTypeDescription
searchQueriesarrayKeywords to search for (e.g. "Catan", "cooperative"). Leave empty to browse latest
maxResultsintegerMax number of reviews to scrape. Default: 20, max: 1000
includeContentbooleanInclude full HTML review content. Default: false
proxyConfigurationobjectProxy settings

Output Fields

FieldTypeDescription
titlestringReview title (usually "Game Name Review")
datestringPublication date (ISO 8601)
authorstringReview author name
categoriesarrayPost categories (e.g. "Reviews", "Strategy Games")
ratingnumberStar rating extracted from content (0-5 scale)
excerptstringReview excerpt/summary
linkstringFull review URL
contentstringFull HTML review content (only if includeContent is true)
tagsnumberNumber of tags
sourceUrlstringSource URL
scrapedAtstringISO 8601 timestamp

Example Output

{
"title": "Moon Review",
"date": "2026-04-23T05:59:57",
"author": "Tony Mastrangeli",
"categories": ["Reviews", "Strategy Games"],
"rating": 3.5,
"excerpt": "Extraterrestrial settings are popular for board games...",
"link": "https://www.boardgamequest.com/moon-review/",
"tags": 5,
"sourceUrl": "https://www.boardgamequest.com/moon-review/",
"scrapedAt": "2026-04-26T10:00:00.000Z"
}

Example Inputs

Search for cooperative game reviews

{
"searchQueries": ["cooperative"],
"maxResults": 30
}

Browse latest 50 reviews with full content

{
"maxResults": 50,
"includeContent": true
}