CaptchaKit/Games/Pac-Man Lite
๐Ÿ’

LIVE DEMO

Pac-Man Lite

Eat all 3 fruits before time runs out

0 of 3 fruits collected.
Security CheckPAC-MAN LITE
20s
๐Ÿ’?
๐ŸŒ?
๐Ÿ“?
๐Ÿ’
๐ŸŒ
๐Ÿ“

Swipe, tap arrows, or use arrow keys

โ†‘ This is exactly what your users will see

8s

Avg solve time

Easy

Difficulty

Pay what you want

Price

About this game

Navigate the maze and collect all 3 power fruits before the clock hits zero. Ghosts slow you down.

Bot-proofMobile friendlyNo cookiesGDPR safeGaming sites

PAY WHAT YOU WANT

Your price

All 18 games

Full pack available

Pay what you want โ†’

  • โœ“ Lifetime access
  • โœ“ Unlimited domains
  • โœ“ API + embed code
  • โœ“ Dashboard & site key
GET ALL 7 GAMES ยท PAY WHAT YOU WANT โ†’

Embed code

index.html
<!-- 1. Add the script -->
<script src="https://captchakit.com/embed.js" async></script>

<!-- 2. Drop in the widget -->
<div
  id="gc-widget"
  data-game="pacman"
  data-site-key="YOUR_SITE_KEY"
></div>

<!-- 3. Verify on your server -->
<script>
  document.getElementById('gc-widget').addEventListener('gc:pass', async (e) => {
    const res = await fetch('/api/verify-captcha', {
      method: 'POST',
      body: JSON.stringify({ token: e.detail.token }),
    });
    const { success } = await res.json();
    if (success) submitForm();
  });
</script>

Server verification

server.js
// Server-side token verification
const res = await fetch('https://captchakit.com/api/verify', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY',
  },
  body: JSON.stringify({
    token: req.body.token,
    siteKey: 'gc_pacman_xxxx',
  }),
});

const { success, gameId } = await res.json();
// success === true means a real human passed the Pac-Man Lite challenge