Developer Manual For Integration
VERSION_1.0 // INITIALIZING TUTORIAL // HOW TO GET STARTED
Identity Verification
Before accessing the NerdRank API, you must establish your developer credentials.
- > Navigate to the Registration portal.
- > Verify your email to unlock the "My Games" console.
Game Initialization
Games are the parent containers for all your stats and leaderboards.
Board Configuration
Configure how NerdRank handles your player data.
High Score
Descending order. Highest value wins the top rank.
Time Trial
Ascending order. Lowest time secures #1.
Note: You can create multiple leaderboards (e.g., Daily, Monthly, All-Time) for a single game; You may also create one for each specific console if you do not want cross platform.
API Uplink
Submit_Score.js
// Example POST request
fetch('https://api.nerdrank.com/v1/scores', {
method: 'POST',
headers: { 'X-API-Key': 'YOUR_API_KEY' },
body: JSON.stringify({
leaderboardId: 'UUID_HERE',
score: 420.69,
userId: 'UUID_HERE',
PlayerName: CoolDude
})
});
You can also utilize one of our sdk packages for your game by clicking the "GET SDK" link.