Overview
The Brawl Stars API provides official game data including player profiles, club info, battle logs, and brawler statistics. You need an API key from developer.brawlstars.com and must whitelist your IP address to make requests. It's a great starting point for building fan dashboards or stat trackers for this popular mobile game.
Beginner Tip
Your API key is tied to specific IP addresses — if you change development machines or deploy to a server, update your allowed IPs in the developer portal.
Available Data
Example Response
{
"id": 1,
"name": "Brawl Stars",
"data": "Brawl Stars Game Information",
"source": "Brawl Stars"
} Field Reference
tag Unique player tag identifier starting with '#'. name In-game display name of the player. trophies Current total trophy count across all brawlers. highestTrophies All-time highest trophy count achieved by the player. brawlers List of brawler objects the player owns, each with id, name, trophies, and power level. Implementation Example
const url = "https://developer.brawlstars.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Clash of Clans
The Clash of Clans API provides official data on players, clans, clan wars, leagues, and rankings from Supercell's hit mobile strategy game.
Clash Royale
The Clash Royale API offers official data on players, clans, cards, battles, and tournaments from Supercell's card-battle mobile game.
Destiny The Game
The Destiny The Game API (Bungie Platform API) gives developers access to data from the popular Destiny franchise, including player stats, character info, and game content.
Dota 2
The Dota 2 API (OpenDota) provides detailed match history, hero statistics, player rankings, and game data for the popular MOBA game Dota 2.
Fortnite
The Fortnite Tracker API lets you retrieve player statistics, match history, and leaderboard data for Fortnite.