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

Whatsapp-Osint

Whomrx66623
Python
OSINT CLI

Whomrx666/Whatsapp-Osint is a compact Python lookup tool. It reads the API host and key from configuration and calls the profile endpoint for a single number, printing the presence and profile fields.

The repository obfuscates its request configuration (base64), but the underlying call is the standard GET /number/{phone} against the WhatsApp Data API. Its README links to the API listing as the data source.

এটি যে এন্ডপয়েন্টগুলি ব্যবহার করে

GET /number/{phone} — standard presence + profile block.

একই কল

PYTHON
import requests

resp = requests.get(
    f"https://wp-data.p.rapidapi.com/number/{number}",
    headers={
        "x-rapidapi-host": "wp-data.p.rapidapi.com",
        "x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
    },
)
print(resp.json())

একই API দিয়ে তৈরি করুন

এই প্রজেক্টটি পাবলিক হোয়াটসঅ্যাপ ডেটা এপিআই-এর ওপর চলে। একটি কী সংগ্রহ করুন এবং কয়েক মিনিটের মধ্যেই আপনার প্রথম অনুরোধটি করুন।

আমাদের ব্যবহারকারীরা যা বলেন

আমাদের সন্তুষ্ট গ্রাহকদের কাছ থেকে আসল পর্যালোচনা

4.5/5 (179 পর্যালোচনা)