쇼케이스로 돌아가기

Whatsapp-Osint

Whomrx66623
Python
OSINT CLIs

Whomrx666/Whatsapp-Osint is a compact Python lookup tool. It reads the API host and key from configuration and calls the profile endpoint for a single number, printing the presence and profile fields.

The repository obfuscates its request configuration (base64), but the underlying call is the standard GET /number/{phone} against the WhatsApp Data API. Its README links to the API listing as the data source.

사용하는 엔드포인트

GET /number/{phone} — standard presence + profile block.

같은 전화

PYTHON
import requests

resp = requests.get(
    f"https://wp-data.p.rapidapi.com/number/{number}",
    headers={
        "x-rapidapi-host": "wp-data.p.rapidapi.com",
        "x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
    },
)
print(resp.json())

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

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

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)