New: Facebook profile pictures
Enable fbProfilePic to retrieve the picture linked to a Facebook leak. Images are versioned and remain available from cache.
শোকেসে ফিরে যান
cid-hackathon
devanshverma26070
Python
ড্যাশবোর্ড
cid-hackathon is a social-media-intelligence (SOCMINT) platform that uses the WhatsApp Data API more completely than any other tool in this list. Its WhatsApp adapter fans a single number out across five endpoints and merges the results into one profile record.
This is the reference example for the full surface of the API: beyond the core profile lookup it also queries carrier metadata, a dedicated picture route, the leak-check signal, and the device-count endpoint. If you want to see every capability wired up in one place, this is it.
এটি যে এন্ডপয়েন্টগুলি ব্যবহার করে
GET /number/{phone} — core presence + profile.
GET /carrier/{phone} — carrier / line metadata.
GET /picture/{phone} — dedicated profile-picture route.
GET /leakcheck/{phone} — breach / leak signal.
GET /device_count/{phone} — linked-device count.
একই কল
ENDPOINTS = ["number", "carrier", "picture", "leakcheck", "device_count"]
def enrich(phone, key):
out = {}
for ep in ENDPOINTS:
r = requests.get(
f"https://wp-data.p.rapidapi.com/{ep}/{phone}",
headers={"x-rapidapi-host": "wp-data.p.rapidapi.com",
"x-rapidapi-key": key},
)
out[ep] = r.json()
return outএকই API দিয়ে তৈরি করুন
এই প্রজেক্টটি পাবলিক হোয়াটসঅ্যাপ ডেটা এপিআই-এর ওপর চলে। একটি কী সংগ্রহ করুন এবং কয়েক মিনিটের মধ্যেই আপনার প্রথম অনুরোধটি করুন।
আমাদের ব্যবহারকারীরা যা বলেন
আমাদের সন্তুষ্ট গ্রাহকদের কাছ থেকে আসল পর্যালোচনা
4.5/5 (179 পর্যালোচনা)