API Documentation
Simple REST API for gaming events data
Quick Start
curl https://dropdate.net/api/events
{
"events": [
{
"id": "1",
"title": "League of Legends World Championship",
"game": "League of Legends",
"type": "tournament",
"date": "2025-10-01T00:00:00Z",
"platform": ["PC"],
"prizePool": "$5,000,000",
"verified": true
}
]
}Endpoints
GET /api/events
Fetch all gaming events with optional filters
?type=tournament&platform=PC&limit=10GET /api/games
Game information with RAWG integration
?slug=cyberpunk-2077GET /api/tournaments
Tournament-specific data with prize pools
?upcoming=true&verified=trueResponse Format
All responses return JSON with consistent structure:
{
"data": [...],
"meta": {
"total": 50,
"page": 1,
"limit": 10
}
}Rate Limits
Free tier: 1000 requests/hour • No authentication required • CORS enabled