Loading...
Loading...
The BloxAtlas Public API provides free access to Roblox game data, player statistics, historical snapshots, and curated rankings. No authentication required for basic access.
60 requests per minute per IP address. Response headers include X-RateLimit-Limit,X-RateLimit-Remaining, andX-RateLimit-Reset.
/api/v1/gamesList or search indexed Roblox games.
| Parameter | Type | Description |
|---|---|---|
| q | string | Search query (case-insensitive name match) |
| page | number | Page number (default: 1) |
| limit | number | Results per page (max: 50, default: 20) |
/api/v1/games/{id}Get a single game by its BloxAtlas ID.
| Parameter | Type | Description |
|---|---|---|
| id | number | Game ID |
/api/v1/games/{id}/historyGet snapshot history for a game (player counts over time).
| Parameter | Type | Description |
|---|---|---|
| id | number | Game ID |
/api/v1/statsGet platform-wide statistics.
/api/v1/rankingsGet game rankings by type.
| Parameter | Type | Description |
|---|---|---|
| type | string | popular | trending | fastest-growing (default: popular) |
| limit | number | Results limit (max: 25, default: 12) |
All endpoints return JSON with a consistent envelope:
{
"success": true,
"games": [...],
"page": 1,
"limit": 20,
"total": 2500
}