العودة إلى العرض

phonium

scarlmao70
Python
واجهات سطر الأوامر للاستخبارات مفتوحة المصدر

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

يعتمد هذا المشروع على واجهة برمجة تطبيقات بيانات واتساب العامة. احصل على مفتاح وقم بإجراء طلبك الأول في غضون دقائق.

ما يقوله مستخدمونا

تقييمات حقيقية من عملائنا الراضين

4.5/5 (176 تقييمات)