Authentication
All requests require Authorization: Bearer YOUR_API_KEY.
Sign up
Section titled “Sign up”curl -X POST https://memonic.dev/api/auth/signup \ -H "Content-Type: application/json" \ -d '{"orgName": "acme", "email": "you@acme.com"}'Rate limited: 5 signups per IP per hour.
Verify
Section titled “Verify”curl https://memonic.dev/api/auth/me \ -H "Authorization: Bearer YOUR_API_KEY"Rotate key
Section titled “Rotate key”curl -X POST https://memonic.dev/api/auth/rotate-key \ -H "Authorization: Bearer YOUR_API_KEY"Old key is immediately invalidated.