JWT Authentication
Secure your API endpoints with JSON Web Tokens for reliable user authentication and authorization.
A powerful HTTP API for managing your Minecraft survival server
# Authenticate
curl -X POST https://your-server:8080/api/auth/login \
-H "Content-Type: application/json" \
-d '{"username":"player","password":"pass123"}'
# Get player info
curl https://your-server:8080/api/auth/me \
-H "Authorization: Bearer YOUR_JWT_TOKEN"The CraftServerManager API provides a comprehensive REST interface for:
com.sun.net.httpserver