Your backend is running and ready to serve requests
All systems operational
You can access all API routes from your frontend application. The backend is configured to handle CORS requests and is ready to communicate with your frontend.
// JavaScript / TypeScript
fetch('https://www.solarbackend.insapps.in/api/auth/user/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
},
body: JSON.stringify({
email: 'user@example.com',
password: 'password'
})
})
Backend API Server • Laravel Framework
All routes are accessible from your frontend application