{
    "success": true,
    "name": "Føzzdag API",
    "version": "v1",
    "status": "online",
    "message": "Velkommen til Føzzdag API",
    "base_url": "https://api.fozzdag.dk",
    "timestamp": "2026-08-20 10:08:09",
    "endpoints": {
        "public": [
            {
                "method": "POST",
                "path": "/auth/register.php",
                "description": "Opret ny bruger",
                "auth_required": false
            },
            {
                "method": "POST",
                "path": "/auth/login.php",
                "description": "Login eksisterende bruger",
                "auth_required": false
            },
            {
                "method": "GET",
                "path": "/test_connection.php",
                "description": "Test database forbindelse",
                "auth_required": false
            }
        ],
        "protected": [
            {
                "method": "GET",
                "path": "/users/profile.php",
                "description": "Hent bruger profil",
                "auth_required": true
            },
            {
                "method": "GET",
                "path": "/invitations/list.php",
                "description": "Liste invitationer",
                "auth_required": true
            }
        ]
    },
    "security": {
        "authentication": "JWT Bearer Token",
        "token_lifetime": "86400 seconds (24 hours)",
        "password_hashing": "bcrypt",
        "https_required": true
    },
    "links": {
        "documentation": "https://api.fozzdag.dk/README.md",
        "test_connection": "https://api.fozzdag.dk/test_connection.php"
    },
    "contact": {
        "developer": "Føzzdag Team",
        "support": "info@moldus.dk"
    }
}