ပြခန်းသို့ ပြန်သွားပါ

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.

အတူတူပဲခေါ်တာ

PYTHON
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 ဖြင့်တည်ဆောက်ပါ

ဤပရောဂျက်သည် အများသုံး WhatsApp Data API တွင် လုပ်ဆောင်ပါသည်။ သော့တစ်ခုကို ရယူပြီး မိနစ်ပိုင်းအတွင်း သင်၏ပထမဆုံးတောင်းဆိုမှုကို ပြုလုပ်ပါ။

ကျွန်ုပ်တို့ အသုံးပြုသူများ ပြောသည်များ

ကျွန်ုပ်တို့၏ ကျေနပ်သော ဖောက်သည်များမှ စစ်မှန်သော သုံးသပ်ချက်များ

4.5/5 (176 သုံးသပ်ချက်များ)