I built a free API for online slot game data — 2,600+ slots
I built a free, public JSON API that serves data for 2,600+ online slot games from 21 providers. ## Why? I run slot.report, a German slot review site. While building it, I realized there's no free,...

Source: DEV Community
I built a free, public JSON API that serves data for 2,600+ online slot games from 21 providers. ## Why? I run slot.report, a German slot review site. While building it, I realized there's no free, open source for structured slot data. Every existing database is either paywalled, requires B2B contracts, or locked behind Cloudflare. So I built one. ## What data? Every slot has: RTP (Return to Player) — 100% coverage Volatility (low → extreme) — 100% coverage Max Win multiplier — 100% coverage Grid, release date, hit frequency, provider Providers include Pragmatic Play, Play'n GO, NetEnt, Nolimit City, Hacksaw Gaming, BGaming, Red Tiger, ELK Studios, and 13 more. ## How to use Endpoints return JSON. No API key, no auth, no signup. Get all slots: bash curl https://slot.report/api/v1/slots.json Get a single slot: curl https://slot.report/api/v1/slots/gates-of-olympus.json Filter by provider: curl https://slot.report/api/v1/providers/pragmatic-play.json Quick example in JavaScript: const re