TailCheck Widget

Embed aircraft lookup directly on your website. Give your visitors instant access to FAA registration data.

Live Preview

Integration Guide

1. Add the container element

Place a container element wherever you want the widget to appear on your page.

<div id="tailcheck"></div>

2. Include the widget script

Add the TailCheck widget script before your closing </body> tag.

<script src="https://tailcheckai.com/widget/tailcheck-widget.js"></script>

3. Initialize the widget

Call TailCheck.init() with your partner ID and container selector.

<script>
  TailCheck.init({
    container: '#tailcheck',
    partnerId: 'your-partner-id'
  });
</script>

Complete Example

<!DOCTYPE html>
<html>
<head>
  <title>My Aviation Website</title>
</head>
<body>

  <h1>Aircraft Lookup</h1>
  <div id="tailcheck"></div>

  <script src="https://tailcheckai.com/widget/tailcheck-widget.js"></script>
  <script>
    TailCheck.init({
      container: '#tailcheck',
      partnerId: 'your-partner-id',
      // Optional: override base URL for testing
      // baseUrl: 'http://localhost:3000'
    });
  </script>
</body>
</html>

Configuration Options

OptionTypeRequiredDescription
containerstringYesCSS selector for the widget container
partnerIdstringYesYour unique partner ID for referral tracking
baseUrlstringNoOverride API base URL (defaults to https://tailcheckai.com)

Become a Partner

Earn referral revenue by embedding TailCheck on your aviation website. Contact us to get your partner ID.

Contact Us