Documentation

Everything you need to integrate youreabot.lol into your website

Quick Start
Get up and running in under 5 minutes

Step 1: Add the Script

Add this single line to your HTML head section:

<script type="module" src="https://api.youreabot.lol/api/js.js"></script>

Step 2: That's It!

Your website is now protected. The script will automatically start analyzing user behavior and blocking bots without any user interaction required.

No Configuration Needed

The script works out of the box with intelligent defaults. No API keys, no setup required.

Installation Methods

HTML Integration

Add the script tag to your HTML document:

<!DOCTYPE html>
<html>
<head>
  <title>Your Website</title>
  <script type="module" src="https://api.youreabot.lol/api/js.js"></script>
</head>
<body>
  <!-- Your content -->
</body>
</html>

React/Next.js

For React applications, add to your layout or _document.js:

// In your layout.tsx or _document.js
export default function Layout({ children }) {
  return (
    <html>
      <head>
        <script 
          type="module" 
          src="https://api.youreabot.lol/api/js.js"
        />
      </head>
      <body>{children}</body>
    </html>
  )
}

WordPress

Add to your theme's functions.php file:

function add_youreabot_script() {
    wp_enqueue_script(
        'youreabot', 
        'https://api.youreabot.lol/api/js.js', 
        array(), 
        null, 
        false
    );
}
add_action('wp_enqueue_scripts', 'add_youreabot_script');
Domain Verification
Verify domain ownership for enhanced features

Why Verify Your Domain?

  • Access to analytics dashboard
  • Custom configuration options
  • Priority support
  • Advanced bot detection features

Verification Process

1

Add Your Domain

Go to your dashboard and add your domain

2

Add DNS Record

Add the provided TXT record to your DNS settings

3

Verify

Click verify in your dashboard (may take up to 24 hours for DNS propagation)

DNS Propagation

DNS changes can take up to 24 hours to propagate globally. If verification fails initially, please wait and try again later.