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
| Option | Type | Required | Description |
|---|---|---|---|
| container | string | Yes | CSS selector for the widget container |
| partnerId | string | Yes | Your unique partner ID for referral tracking |
| baseUrl | string | No | Override 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