返回展示区

whatsapp-checker

官方的
eduair940
TypeScript
SDK 和工具

whatsapp-checker is the official TypeScript SDK for the WhatsApp Data API. It wraps the profile endpoint with a typed client, automatic rate-limit handling, retry-with-backoff, and bulk helpers so you don't have to reimplement the plumbing.

This is the recommended starting point for a new TypeScript or Node.js integration — install it, pass your key, and call check(number).

它使用的端点

GET /number/{phone} — typed response with presence and profile fields.
Bulk + rate-limit + retry helpers built in.

同样的通话

TYPESCRIPT
import { WhatsappChecker } from "whatsapp-checker";

const client = new WhatsappChecker({ apiKey: process.env.RAPIDAPI_KEY! });
const result = await client.check("14155552671");
console.log(result.isBusiness, result.pushname);

如何运行它

1
npm install whatsapp-checker
2
Provide your API key via environment variable.
3
Call client.check(number) or the bulk helper.

使用相同的 API 进行构建

本项目基于公开的 WhatsApp 数据 API 运行。获取密钥后,几分钟内即可发出您的第一个请求。

用户评价

来自满意客户的真实评价

4.5/5 (176 评论)