BoardGameQuest Review Scraper
Pricing
from $10.00 / 1,000 results
Go to Apify Store
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
Maintained by CommunityActor 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
| Parameter | Type | Description |
|---|---|---|
searchQueries | array | Keywords to search for (e.g. "Catan", "cooperative"). Leave empty to browse latest |
maxResults | integer | Max number of reviews to scrape. Default: 20, max: 1000 |
includeContent | boolean | Include full HTML review content. Default: false |
proxyConfiguration | object | Proxy settings |
Output Fields
| Field | Type | Description |
|---|---|---|
title | string | Review title (usually "Game Name Review") |
date | string | Publication date (ISO 8601) |
author | string | Review author name |
categories | array | Post categories (e.g. "Reviews", "Strategy Games") |
rating | number | Star rating extracted from content (0-5 scale) |
excerpt | string | Review excerpt/summary |
link | string | Full review URL |
content | string | Full HTML review content (only if includeContent is true) |
tags | number | Number of tags |
sourceUrl | string | Source URL |
scrapedAt | string | ISO 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}