ugiAPI API provides more than just data; it enables you to create unique experiences for your community. Here are a few inspiring examples.
Combine match history and detailed stats to build a comprehensive dashboard for esports teams.
Create a live overlay for streamers that shows their current rank and last match result.
Automatically sync Discord roles based on a user's verified Valorant rank.
Integrate live MMR and ranking data of players into your site for tournaments. Our API provides real-time data to visualize the competition for your viewers.
Allow users in your Discord server to query their own stats with the "/rank" command. Power your bot with rich content embed messages.
const response = await axios.get(`https://api.domain.com/v1/mmr/eu/${name}/${tag}`);
const rank = response.data.current_data.currenttierpatched;
/rank TenZ#0505
Competitive Statistics
Level 428
Display player stats on your website with stylish cards. Combine account data, match history, and performance metrics to create a full profile view.
Account Info DocumentationGo beyond basic stats. Analyze kill locations, ability usage, and economy trends to help players improve.
// Calculate Headshot Percentage
$shots = $match['stats']['shots'];
$hs_percent = ($shots['head'] / $shots['total']) * 100;
Build OBS browser sources that update in real-time. Show current rank, win/loss streaks, and last match stats automatically.
Game Play
Match teams based on average MMR for balanced practice games.
Review tool that automatically flags rounds with low economy or poor ability usage.
A web game where users watch a clip and guess the player's rank based on API data.
Automated bracket management for cyber cafes and local communities.