curl http://localhost:3001/api/config
curl http://localhost:3001/api/health
curl http://localhost:3001/api/system
curl http://localhost:3001/api/env
curl http://localhost:3001/api/features
curl -X POST -H "Content-Type: application/json" -d '{"feature":"newUI","enabled":true}' http://localhost:3001/api/features
curl http://localhost:3001/api/logs?level=info&limit=10
curl -X POST -H "Content-Type: application/json" -d '{"level":"info","message":"Test log"}' http://localhost:3001/api/logs
# Test all GET endpoints curl http://localhost:3001/api/config | jq curl http://localhost:3001/api/health | jq curl http://localhost:3001/api/system | jq
# Create a test log curl -X POST -H "Content-Type: application/json" \ -d '{"level":"info","message":"API test log"}' \ http://localhost:3001/api/logs | jq