Your account
Account Verify
The verify endpoint is where the hosted-UI flow will land after sign-in. Today it describes the future redirect contract.
Callback
Processing sign-in
Verify status
Live callback endpoint
The hosted Clerk UI redirects here after sign-in or sign-up. The Clerk SDK reads the URL params, creates the session, and the callback block above forwards you to /account/profile/.
Endpoints
Local + hosted endpoint registry
| Endpoint | URL |
|---|---|
| sign_in_local | /account/sign-in/ |
| sign_up_local | /account/sign-up/ |
| verify_local | /account/verify/ |
| profile_local | /account/profile/ |
| sign_in_hosted_placeholder | https://<your-clerk-frontend>/sign-in |
| sign_up_hosted_placeholder | https://<your-clerk-frontend>/sign-up |
Authentication is LIVE via the hosted Clerk UI. Clerk holds the session; this site reads only the granted scopes (account.read + preferences.read by default). The PUBLIC publishable key is embedded by design; the SECRET key never leaves Vercel server env. Not investment advice.