쇼케이스로 돌아가기

WhatsOSINT

HackUnderway302
Python
OSINT CLIs

WhatsOSINT is the most-starred community tool built on the WhatsApp Data API. It is a Python command-line investigator that takes a phone number and returns everything the API exposes about the associated WhatsApp account: whether the number is registered, the public display name (pushname), the about/status text, the business flag, and the profile picture URL.

It supports both the live RapidAPI host and the cached lookup path, and can fall back to the native checkleaked.cc proxy. That dual path lets it answer instantly from cache for numbers that were seen before, and hit the live endpoint only when fresh data is needed.

Because it wraps the exact same JSON the API returns, WhatsOSINT is a good reference for how a real integration parses the response — the field names below map one-to-one onto the API contract.

사용하는 엔드포인트

GET /number/{phone} — live lookup: existence, pushname, about, isBusiness, profile picture URL.
GET /number_cache/{phone} — same shape served from the cached-records dataset; near-zero latency, no live WhatsApp hit.
Optional native proxy fallback via whatsapp-proxy.checkleaked.cc for the same fields.

같은 전화

BASH
# Live lookup via RapidAPI
curl --request GET \
  --url 'https://wp-data.p.rapidapi.com/number/14155552671' \
  --header 'x-rapidapi-host: wp-data.p.rapidapi.com' \
  --header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'

실행 방법

1
Clone the repo and install requirements: pip install -r requirements.txt
2
Add your own RapidAPI key from the WhatsApp Data API listing.
3
Run the CLI with a target number in international format.

동일한 API를 사용하여 빌드하세요

이 프로젝트는 공개 WhatsApp 데이터 API를 사용합니다. API 키를 발급받아 몇 분 안에 첫 번째 요청을 보내세요.

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)