쇼케이스로 돌아가기

phonium

scarlmao70
Python
OSINT CLIs

phonium is a phone-number intelligence toolkit that aggregates several signals about a number. Its WhatsApp module calls the WhatsApp Data API's profile endpoint and surfaces the full presence block: whether the number is a WhatsApp user, whether it is a business account, the display name, the about text, and the profile picture.

It is a clean example of consuming a single GET call and mapping the response fields straight into a report, without any caching or fallback logic — the minimal viable integration.

사용하는 엔드포인트

GET /number/{phone} — returns isUser, isBusiness, pushname, about, and the profile picture URL in one call.

같은 전화

PYTHON
import requests

url = "https://wp-data.p.rapidapi.com/number/14155552671"
headers = {
    "x-rapidapi-host": "wp-data.p.rapidapi.com",
    "x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
}
data = requests.get(url, headers=headers).json()
print(data["isBusiness"], data.get("pushname"))

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

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

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)