Înapoi la prezentare

phonium

scarlmao70
Python
Interfețe de comandă OSINT

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.

Puncte finale pe care le folosește

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

Același apel

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"))

Construiți cu aceeași API

Acest proiect rulează pe API-ul public WhatsApp Data. Ia o cheie și trimite prima ta solicitare în câteva minute.

Ce spun utilizatorii noștri

Recenzii reale de la clienții noștri mulțumiți

4.5/5 (176 recenzii)