npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

silent-akinator-pro

v4.0.3

Published

Working Akinator API for Node.js (2025/2026). Fast, lightweight, Cloudflare-safe akinator client / wrapper / SDK / bot library — supports 22 regions, child mode, undo, win, exclude. The genie / 20-questions / character-guessing API that actually works aft

Readme

silent-akinator-pro

npm downloads license

The working Akinator API for Node.js — the only akinator wrapper that still works in 2025 / 2026 after Cloudflare blocked the legacy api-en4.akinator.com/ws/* endpoints. Fast, zero-config, Promise-based, fully typed. By Silent Tech.

The genie / twenty-questions / character-guessing SDK for Discord bots, Telegram bots, WhatsApp bots, web games, and CLIs.

Why this package

Most akinator npm packages (aki-api, akinator-api-node, older silent-akinator, etc.) hit JSON endpoints that now return HTTP 403 / Cloudflare Just-a-moment. This package uses the real HTML form flow the actual website uses — POST /game, /answer, /cancel_answer, /exclude, /list, /choice — no TLS spoofing, no proxies, no curl-impersonate. Just clean undici + cheerio.

  • Working in 2025 / 2026 (Cloudflare-safe)
  • 22 regions including en, en_objects, en_animals, fr, de, es, it, pt, ru, ar, jp, kr, cn, nl, pl, tr, il, id
  • Child mode supported
  • Full game lifecycle: start, answer, back, win, exclude, choice
  • TypeScript types included
  • Tiny: only undici + cheerio
  • MIT licensed

Install

npm i silent-akinator-pro

Usage

const Akinator = require('silent-akinator-pro');

(async () => {
  const aki = new Akinator({ region: 'en', childMode: false });
  await aki.start();
  console.log(aki.question);                   // first question

  // 0=yes 1=no 2=idk 3=probably 4=probably-not
  // (or 'y' / 'n' / 'idk' / 'p' / 'pn')
  const r = await aki.answer('y');
  console.log(r.question, r.progression);

  while (!aki.guessed && aki.step < 80) {
    await aki.answer('idk');
  }

  if (aki.guessed) {
    console.log('Akinator thinks of:', aki.guess.name);
    await aki.choice();   // confirm
  }
})();

API

| Method | Description | |---------------|----------------------------------------------| | start() | Begin a new game; returns first question | | answer(a) | Submit answer (0..4 or y/n/idk/p/pn) | | back() | Undo last answer | | win() | Force Akinator to guess now | | exclude() | Reject the guess and continue | | choice() | Confirm the guess (close session) |

Properties

region, childMode, question, step, progression, guess, guessed, finished.

Discord bot example

const Akinator = require('silent-akinator-pro');
const games = new Map();

client.on('messageCreate', async (msg) => {
  if (msg.content === '!aki') {
    const aki = new Akinator({ region: 'en' });
    await aki.start();
    games.set(msg.author.id, aki);
    return msg.reply(aki.question);
  }
  if (['y','n','idk','p','pn'].includes(msg.content)) {
    const aki = games.get(msg.author.id);
    if (!aki) return;
    await aki.answer(msg.content);
    if (aki.guessed) return msg.reply(`Is it **${aki.guess.name}**? (${aki.guess.description})`);
    msg.reply(aki.question);
  }
});

Keywords

akinator, akinator api, working akinator, akinator 2025, akinator 2026, akinator cloudflare bypass, akinator 403 fix, akinator discord bot, akinator telegram bot, akinator whatsapp bot, twenty questions, character guessing game, genie sdk, node akinator client, aki-api alternative, silent tech, silent-akinator, silent-akinator-pro.

License

MIT (c) Silent Tech