Skip to main content

Verify Email

After registering with email, you receive a verification link. Extract the token from the link and call:
curl -X POST https://neuralbox.top/api/v2/auth/verify-email \
  -H "Content-Type: application/json" \
  -d '{"token": "token_from_email_link"}'
Returns 200 OK on success.

Reset Password

Send a reset link to your email:
curl -X POST https://neuralbox.top/api/v2/auth/forgot-password \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com"}'
Then confirm the reset with the token from the email:
curl -X POST https://neuralbox.top/api/v2/auth/reset-password \
  -H "Content-Type: application/json" \
  -d '{"token": "token_from_email", "new_password": "newSecurePass123"}'
Returns 200 OK on success.
If you signed up via Telegram or Google, you can add an email/password in User Settings.