Integrate GamerFlick's tournament engine and social graph into your own applications, games, or Discord bots.
Standardized JSON responses for easy integration into any language or framework.
Securely authenticate users and request permissions to act on their behalf.
Detailed endpoint references, SDKs, and copy-pasteable code snippets.
The GamerFlick API is currently in private beta. Apply for early access to get an API key and start building.
Apply for API Accessconst response = await fetch('https://api.gamerflick.in/v1/tournaments/1234', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
console.log(data.bracket.currentRound);