Staty Docs
Staty is the complete sports league management platform for organizers and builders.
What is Staty?
Staty lets you create and manage leagues, tournaments, divisions, registrations, and game schedules — and exposes everything through a REST API so you can build custom experiences on top of it.
Where to start
- League organizers → Getting Started: Organizer Setup — go from sign-up to accepting registrations in under 5 minutes.
- Developers → Developer API: Getting Started — generate an API key, authenticate, and make your first request.
- Payments → Setup Payments guide — connect Stripe and start collecting registration fees.
Key resources
| Resource | Description | Endpoint |
|---|---|---|
| Leagues | Season / competition periods | /api/v1/leagues |
| Tournaments | Bracket-style competitions | /api/v1/tournaments |
| Divisions | Skill tiers within a league | /api/v1/divisions |
| Registrations | Team signup windows | /api/v1/registrations |
| Players | Player profiles and rosters | /api/v1/players |
| Games | Schedules and scores | /api/v1/games |
Base URL
https://api.staty.io/api/v1All responses use the envelope:
{
"success": true,
"data": [ ... ],
"count": 5
}Last updated on