New: Facebook profile pictures
Enable fbProfilePic to retrieve the picture linked to a Facebook leak. Images are versioned and remain available from cache.
ပြခန်းသို့ ပြန်သွားပါ
phonium
scarlmao70
Python
OSINT CLI များ
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.
အတူတူပဲခေါ်တာ
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 Data API တွင် လုပ်ဆောင်ပါသည်။ သော့တစ်ခုကို ရယူပြီး မိနစ်ပိုင်းအတွင်း သင်၏ပထမဆုံးတောင်းဆိုမှုကို ပြုလုပ်ပါ။
ကျွန်ုပ်တို့ အသုံးပြုသူများ ပြောသည်များ
ကျွန်ုပ်တို့၏ ကျေနပ်သော ဖောက်သည်များမှ စစ်မှန်သော သုံးသပ်ချက်များ
4.5/5 (176 သုံးသပ်ချက်များ)