쇼케이스로 돌아가기

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를 사용합니다. API 키를 발급받아 몇 분 안에 첫 번째 요청을 보내세요.

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)