শোকেসে ফিরে যান

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.

একই কল

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 (179 পর্যালোচনা)