Skip to main content
POST
/
api
/
auth
/
register
curl -X POST https://rolearn.dev/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "dev@example.com", "password": "securepass123"}'
{
  "access_token": "eyJhbGciOiJIUzI1NiIs...",
  "token_type": "bearer"
}
email
string
required
User’s email address
password
string
required
Password (minimum 6 characters)
curl -X POST https://rolearn.dev/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "dev@example.com", "password": "securepass123"}'
Registration signs the new account in immediately: the response sets the same auth cookies as login and returns the access token in the body for non-browser clients.
{
  "access_token": "eyJhbGciOiJIUzI1NiIs...",
  "token_type": "bearer"
}
You can also create an account via OAuth (Google / Roblox / Discord / Twitter-X) instead of email + password.