शोकेस पर वापस जाएँ

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 डेटा API पर चलता है। एक कुंजी प्राप्त करें और कुछ ही मिनटों में अपना पहला अनुरोध भेजें।

हमारे उपयोगकर्ता क्या कहते हैं

हमारे संतुष्ट ग्राहकों की वास्तविक समीक्षाएं

4.5/5 (176 समीक्षाएं)