API · /boardgames-api

Board Games API

healthy 3,973 Subscribers

The BoardGameGeek community ranking of 17,000+ board games as an API — a self-contained reference for game, hobby, recommendation and quiz apps. For each game the API returns its BoardGameGeek id, name, year published, community rank, average user rating, the Bayesian ("geek") average, how many users rated it and links to its BGG page and thumbnail. Look a game up by name or id, search by name (best-ranked first), list the top-ranked games, or list the games published in a given year. The ranks and ratings are a BoardGameGeek community snapshot (2019), while the catalogue of games, ids, names and publication years is a stable reference. Served from memory — always fast.

api.oanor.com/boardgames-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/boardgames-api/openapi.json
/api/boardgames-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
90 ms
Server probes · 24h
Subscribers
3,973
active
Total calls
90
last 7 days
status Full status page → · 10 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 15,000 calls / month
  • 3 requests / second
  • Hard cap (429 above quota, no overage)
  • 15k calls/month
  • 3 req/sec
  • All endpoints
  • No credit card
Sign in to subscribe

Starter

€5.00 /month

  • 150,000 calls / month
  • 10 requests / second
  • Hard cap (429 above quota, no overage)
  • 150k calls/month
  • 10 req/sec
  • Email support
Sign in to subscribe

Pro

€11.00 /month

  • 750,000 calls / month
  • 25 requests / second
  • Hard cap (429 above quota, no overage)
  • 750k calls/month
  • 25 req/sec
  • Priority support
Sign in to subscribe

Mega

€29.00 /month

  • 3,800,000 calls / month
  • 60 requests / second
  • Hard cap (429 above quota, no overage)
  • 3.8M calls/month
  • 60 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Epic Games Store Free Games API

Live free-games promotions from the Epic Games Store. The games that are free to claim right now (with the window they are free) and the ones becoming free soon — each with title, description, publisher, original price, store slug, cover image and store URL. The iconic "Epic free game this week" as a clean API for gaming, deal-alert, calendar and dashboard apps. Distinct from cross-store deal aggregators — Epic's own giveaways.

api.oanor.com/epicgames-api

GOG API

Live game catalogue & prices from GOG.com (the DRM-free PC game store by CD Projekt). Search the store for any game and get its current price with discount, genres, developers, publishers, rating, review count, release date, supported OS, cover image and store link; open one game by id for its full detail (description, OS compatibility, release, store URL). Ideal for gaming, deal-tracking, library and price-comparison apps. Distinct from game-giveaway and deal aggregators — GOG's own catalogue and live prices.

api.oanor.com/gog-api

Bangumi Media Database API

Subject ratings, rankings and collection stats from Bangumi (bgm.tv, "番组计划"), the Chinese cross-media community database for anime, books/manga, music, games and live-action drama, read keyless from its public v0 API. Bangumi is China's "Douban for ACG": a two-decade catalogue where users rate and collect titles across every medium and the community score and rank are what fans trust. Unlike the anime-first databases (MyAnimeList, AniList), Bangumi spans games, books, music and TV/film too, and exposes a collection breakdown — how many users wish for, are doing, have completed, put on hold or dropped each title — that is its own distinctive engagement signal. The search endpoint finds subjects by keyword, optionally filtered to one medium and sorted by rank, match or score. The subject endpoint returns one title's full profile by its Bangumi id: its Japanese and Chinese names, medium, date, community score and vote count, overall rank, the full collection breakdown, tags and summary. The calendar endpoint returns the anime airing each day of the week, with their scores. This is the Bangumi cut — a distinct social and reference platform, separate from the anime-first feeds and the other media databases in the catalogue, spanning all media with Chinese community metrics. Scores, ranks and collection counts are the real, live community numbers; rank is null for titles with too few votes to be ranked. Names and summaries are Japanese and Chinese as Bangumi publishes them; an nsfw flag is reported honestly and adult titles are excluded from search. Keyless, a short cache fronts the upstream.

api.oanor.com/bangumi-api

Steam Reviews API

Live Steam user-review sentiment as an API — what players really think of any game on Steam, served from Steam's public review data. For any game, looked up by its Steam app id or by name, it returns the aggregate review summary (total reviews, positive and negative counts, the positive percentage and Steam's own rating label such as "Very Positive" or "Mixed"), plus a sample of recent reviews with their text, whether the author recommends the game, helpful and funny votes, the author's playtime and the review language. Get the full reviews feed, the lightweight sentiment summary, or search Steam to resolve a game name to its app id. The community-sentiment layer for gaming, review and dashboard apps. Live, no key. Distinct from a Steam store-catalogue API — this returns the user reviews and rating sentiment, not the store listing.

api.oanor.com/steamreviews-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Board Games API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Board Games API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Board Games API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Board Games API cost?
Board Games API has a free tier with 100 calls / month. Paid plans start at €5.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Board Games API GDPR-compliant?
All requests to Board Games API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/boardgames-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/boardgames-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/boardgames-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/boardgames-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.