Riot Games
League of Legends and Valorant player stats, ranks, and match history feeding Scout and Tactical.
Game-data APIs for scouting, platform services for auth, email, and billing, plus a public REST API for everything else.
League of Legends and Valorant player stats, ranks, and match history feeding Scout and Tactical.
CS2 ELO, match data, and player history — the source of truth for scout-grade prospect data.
Public Steam profile data, game library, and playtime — used to verify prospect identities.
Tournament, team, and match data across major esports titles — wired into the scout pipeline.
Authentication, organization management, and webhook-driven user sync. Powers every sign-in to Enkelt.ai.
Transactional email delivery for match reminders, contract signatures, and team notifications.
Subscription billing for every plan. Hosted checkout, customer portal, signed webhook events.
Every team, player, prospect, contract, and schedule entry is reachable via the public REST API. Authenticated with an org-scoped API key. Rate-limited per key. Structured JSON in and out.
Read-write access to teams, players, rosters, contracts, prospects, and the public schedule via API key auth.
Clerk and Stripe webhooks are signature-verified and replay-protected before any data is touched.
# Authenticate with an org-scoped API key
curl https://enkelt.ai/api/public/v1/teams/{id}/roster
-H "Authorization: Bearer $ENKELT_KEY"
# Sync a player profile
curl -X POST https://enkelt.ai/api/public/v1/players
-H "Authorization: Bearer $ENKELT_KEY"
-H "Content-Type: application/json"
-d '{
"ign": "Kekmek",
"role": "mid",
"team_id": "tm_5f3a"
}'
# Read the next 7 days of fixtures
curl https://enkelt.ai/api/public/v1/schedule?window=7dRead the API reference or email partners@enkelt.ai with the use case.