# Register a new user
curl -X POST https://your-app.insforge.app/api/auth/users \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com", "password": "securepassword123"}'
# Sign in and get token
curl -X POST https://your-app.insforge.app/api/auth/sessions \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com", "password": "securepassword123"}'
# Use the token for authenticated requests
curl https://your-app.insforge.app/api/database/records/posts \
-H "Authorization: Bearer your-jwt-token"