Developers
API Reference
Integrate Ravonixx into your own applications, custom dashboards, and communities. Our fast and secure REST API provides real-time access to your tournaments and data.
Get Tournament Status
Fetches the public details of a specific tournament, including registered teams and bracket status.
GET
/api/v1/tournaments/:idResponse Object
{
"id": "TX-991",
"name": "Summer Championship",
"game": "Valorant",
"status": "in_progress",
"teams_registered": 64,
"max_teams": 64
}Parameters
idstring (required)The unique identifier for the tournament. You can find this in your dashboard or via Discord command.
Register Team
Register a user or team into an upcoming tournament via external authorization.
POST
/api/v1/tournaments/:id/register⚠️
Authorization RequiredThis endpoint requires an active API key passed in the headers:
Authorization: Bearer YOUR_API_KEYRequest Body
{
"team_name": "Cloud9",
"captain_discord_id": "123456789012345678",
"players": [
"123456789012345678",
"987654321098765432"
]
}Need more endpoints?
We are constantly expanding our API. In the meantime, you can reach out to our team to request custom webhooks or enterprise access.
Contact Developers