शोकेस पर वापस जाएँ

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 पर चलता है। एक कुंजी प्राप्त करें और कुछ ही मिनटों में अपना पहला अनुरोध भेजें।

हमारे उपयोगकर्ता क्या कहते हैं

हमारे संतुष्ट ग्राहकों की वास्तविक समीक्षाएं

4.5/5 (176 समीक्षाएं)