User management, authentication, and account controls.
Create a new user account. Password must be at least 8 characters with uppercase, lowercase, and a number.
https://your-domain.com/api/auth/YOUR_API_KEY/signup{
"email": "user@example.com",
"password": "SecurePass123",
"fullName": "John Doe"
}1const res = await fetch('https://your-domain.com/api/auth/YOUR_API_KEY/signup', {2 method: 'POST',3 headers: { 'Content-Type': 'application/json' },4 body: JSON.stringify({5 email: 'user@example.com',6 password: 'SecurePass123',7 fullName: 'John Doe',8 }),9});10const { success, data } = await res.json();11console.log(data.id); // user_123456
