Connection Examples
curl -X GET "https://krapto-backend-server-instance-1.onrender.com/health"
const response = await fetch('https://api.krapto.com/auth/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'user@example.com',
password: 'your_password'
})
});