For AI Agencies

Sign in to
your account

Manage your listing, update your profile, and track your performance.

What you can do in your dashboard
  • Edit your listing Update your services, bio, hourly rates, team size, and contact info at any time.
  • Track your profile views See how many businesses are visiting your listing each week.
  • Upgrade to Verified Get a verified badge and priority ranking for $89/month.
  • Keep your account secure Change your password anytime from account settings.
// Show error messages when redirected here with an error param (e.g. expired magic link) (function() { const params = new URLSearchParams(location.search); const error = params.get('error'); if (!error) return; const errDiv = document.getElementById('loginError'); const messages = { invalid_token: 'This magic link has expired or was already used. Please request a new one.', internal_error: 'Something went wrong. Please try again.', }; if (errDiv && messages[error]) { errDiv.textContent = messages[error]; errDiv.style.display = 'block'; } })();