LogoBetter Captcha

Captcha Fox

Privacy-focused CAPTCHA service with customizable themes and multiple challenge types

About Captcha Fox

Captcha Fox is a modern, privacy-focused CAPTCHA service that provides bot protection with customizable themes, multiple challenge types, and extensive internationalization support.

For more information, visit the official Captcha Fox documentation.

Showcase

Usage

import { CaptchaFox } from "@better-captcha/react/provider/captcha-fox";

<CaptchaFox sitekey="your-sitekey" options={{}} />
import { component$ } from "@builder.io/qwik";
import { CaptchaFox } from "@better-captcha/qwik/provider/captcha-fox";

export default component$(() => (
  <CaptchaFox sitekey="your-sitekey" options={{}} />
));
import { CaptchaFox } from "@better-captcha/solidjs/provider/captcha-fox";

<CaptchaFox sitekey="your-sitekey" options={{}} />
  <template>
  <CaptchaFox
    sitekey="your-sitekey"
    :options="{ lang: 'en' }"
  />
</template>

<script setup lang="ts">
import { CaptchaFox } from "@better-captcha/vue/provider/captcha-fox";
</script>
<script lang="ts">
import CaptchaFox from "@better-captcha/svelte/provider/captcha-fox";
</script>

<CaptchaFox sitekey="your-sitekey" options={{}} />
import { CaptchaFox } from "@better-captcha/lit/provider/captcha-fox";
<captcha-fox-captcha sitekey="your-sitekey"></captcha-fox-captcha>

Configuration

Provider Options

Prop

Type

Imperative Handle

Prop

Type

Best Practices

  • Customization: Take advantage of extensive theme customization options to match your brand
  • Internationalization: Use the lang option to provide localized experiences
  • Privacy: Captcha Fox is designed with privacy in mind - no unnecessary tracking
  • Analytics: Use the built-in analytics to understand bot traffic patterns
  • Auto Theme: Use theme: "auto" to automatically match your site's color scheme

On this page