Describe the bug
New users cannot create an account through the registration page because the registration API endpoint returns HTTP 404 Not Found.
When the registration form is submitted, the frontend sends a POST request to:
/api/v1/auth/register
The request fails with a 404 response, causing the UI to display the generic error message:
Registration failed. Please try again.
As a result, no account is created, and users are unable to access the application.
Steps to Reproduce
-
Visit: https://aegis-ai-sigma-seven.vercel.app/register
-
Enter valid registration details:
- Email
- Password
- Full Name
- Company Name
-
Open Developer Tools (F12).
-
Click Create Account.
-
Check the Console or Network tab.
Expected Behavior
- The registration request should be processed successfully.
- A new user account should be created.
- The user should be redirected to the login page or dashboard.
Actual Behavior
Evidence
Browser Console:
Failed to load resource: the server responded with a status of 404 ()
api/v1/auth/register
Possible Cause
- Missing backend route in the deployed environment.
- Incorrect API base URL configuration.
- Vercel deployment or routing misconfiguration.
- Frontend pointing to a non-existent endpoint.
Impact
High severity.
New users are completely unable to register and access the platform.
Screenshot
Attached is the browser console screenshot showing the 404 response for /api/v1/auth/register "

Describe the bug
New users cannot create an account through the registration page because the registration API endpoint returns HTTP 404 Not Found.
When the registration form is submitted, the frontend sends a POST request to:
/api/v1/auth/registerThe request fails with a 404 response, causing the UI to display the generic error message:
As a result, no account is created, and users are unable to access the application.
Steps to Reproduce
Visit: https://aegis-ai-sigma-seven.vercel.app/register
Enter valid registration details:
Open Developer Tools (F12).
Click Create Account.
Check the Console or Network tab.
Expected Behavior
Actual Behavior
Registration fails.
The UI displays:
The POST request to "" returns 404 Not Found.
Evidence
Browser Console:
Possible Cause
Impact
High severity.
New users are completely unable to register and access the platform.
Screenshot
Attached is the browser console screenshot showing the 404 response for
/api/v1/auth/register"