In order to successfully use boardapi, an API key is required. This should be included in the header of every request.
You can register for a key, as well find the documentation and support at boardapi.dev. Please note this site is currently under development and is subject to change.
Requests are limited to 50 per each 15 minute window.
/boardgames - This is the primary endpoint and should always be used before other queries as you will see below. Queried as is, it will return every single board game. Results are paginated and limited to 50 rows per page.
/gamename - This endpoint will return a single board game matching the name entered. Eg. /boardgames/Catan will return 1 result for Catan.
/random - This endpoint will return a board game at random from the total pool of board games. Eg. /boardgames/random
?maxplayers=
- Used on the primary endpoint, this query param returns all board games where the maxplayers key equals the value.
- Eg.
/boardgames/?maxplayers=4will return all 4 player board games. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). This query param only accepts anInteger.
?playtime=
- Used on the primary endpoint, this query param returns all board games where the playtime key equals the value.
- Eg.
/boardgames/?playtime=60will return all board games that have a max playtime of 60 minutes. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). Value should be entered in minutes only. This query param only accepts anInteger.
?yearpublished=
- Used on the primary endpoint, this query param returns all board games where the yearpublished key equals the value.
- Eg.
/boardgames/?yearpublished=2019will return all board games that were published in 2019. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). Value should be entered as year only. This query param only accepts anInteger.
?gamecategory=
- Used on the primary endpoint, this query param returns all board games where the gamecategory key matches the value.
- Eg.
/boardgames/?gamecategory=Fantasywill return all board games that contain the gamecategoryFantasy. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). Value should be entered as text only, with spaces if required. This query param only accepts aString.
?gamemechanic=
- Used on the primary endpoint, this query param returns all board games where the gamemechanic key matches the value.
- Eg.
/boardgames/?gamemechanic=Dice%20Rollingwill return all board games that contain the gamemechanicDice Rolling. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). Value should be entered as text only, with spaces if required. This query param only accepts aString.
?gamedesigner=
- Used on the primary endpoint, this query param returns all board games where the gamedesigner key matches the value.
- Eg.
/boardgames/?gamedesigner=Matt%20Leacockwill return all board games that contain the gamedesignerMatt Leacock. - Results are paginated and limited to 100 per page (unless changed with the
pagesizequery param). Value should be entered as text only, with spaces if required. This query param only accepts aString.
?page=
- Used on the primary endpoint, this query param returns a specific page where the page number matches the value.
- Eg.
/boardgames/?page=5will return the 5th page of results. - Results are paginated and limited to 100 per page, (unless changed with the
pagesizequery param). This query param only accepts anInteger.
?pagesize=
- Used on the primary endpoint, this query param alters how many results are returned per page.
- Eg.
/boardgames/?pagesize=10will return 10 boardgames. - By default, this is set to 100. You cannot return greater than 100 results, attempting to do so will just return 100.