Reports API Test
API Response
API response will appear here...
Usage Examples
API Endpoints:
  • GET /api/reports_api.php?event_id=1 - Get all reports for event
  • GET /api/reports_api.php?event_id=1&type=start_list - Get only start lists
  • GET /api/reports_api.php?event_id=1&type=summary_table - Get only summary tables
Response Structure:
{
  "success": true,
  "event_id": 1,
  "filter_type": "all",
  "stats": {
    "total_reports": 5,
    "start_list_count": 3,
    "summary_table_count": 2
  },
  "reports": [...],
  "grouped_reports": {
    "start_list": [...],
    "summary_table": [...]
  }
}