This is not production quality code, and it is not running on a production quality server. This is simply sample code. This code is not intended to be comprehensive and lacks things that a production solution would need (e.g. throttling and caching). See this BGG post for more details.
This server wraps some of the APIs from BoardGameGeek as JSON endpoints. All endpoints support simple HTTP request, CORS, and JSONP. To make a JSONP request, include a callback
parameter in the querystring of your request.
Use of these APIs is subject to the BoardGameGeek API terms of use.
As mentioned above, this is not running on a production quality server. If it gets too many requests in a short period of time, it will temporarily shut down. If you have some high volume use case, please set up your own server. You can find the source code here.
URL Format: https://bgg-json.azurewebsites.net/collection/{username}?grouped=true|false
This endpoint returns a user's game collection. There are two modes. The first mode, grouped=false
(this is the default), just returns a flat list of the games in the collection. The second mode, grouped=true
returns the collection with any game expansions nested underneath their parent game.
Examples:
URL Format: https://bgg-json.azurewebsites.net/plays/{username}
This endpoint returns a user's recent logged plays.
Examples:
Recent Plays: | https://bgg-json.azurewebsites.net/plays/edwalter |
Recent Plays (JSONP): | https://bgg-json.azurewebsites.net/plays/edwalter?callback=myCallback |
URL Format: https://bgg-json.azurewebsites.net/thing/{id}
This endpoint returns the details for an individual entry in the BGG database (e.g. a particular board game).
Examples:
Agricola Details: | https://bgg-json.azurewebsites.net/thing/31260 |
Agricola Details (JSONP): | https://bgg-json.azurewebsites.net/thing/31260?callback=myCallback |
URL Format: https://bgg-json.azurewebsites.net/hot
This endpoint returns the list of hot games from BGG.
Examples:
The Hotness: | https://bgg-json.azurewebsites.net/hot |
The Hotness (JSONP): | https://bgg-json.azurewebsites.net/hot?callback=myCallback |