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

whatsapp-extract-processor

italofds9
Vue
ড্যাশবোর্ড

whatsapp-extract-processor is a Vue web app that ingests a WhatsApp chat export and enriches each participant. For every contact it calls the WhatsApp Data API to attach the display name, business status and profile picture, turning a flat chat log into a contact directory.

It is one of the few UI-based integrations in the ecosystem, and it explicitly credits CheckLeaked as the enrichment source in its interface. A good example of per-contact fan-out: one API call per unique account id parsed from the export.

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

GET /number/{accountId} — called once per unique contact to attach name, business flag and picture.

একই কল

JAVASCRIPT
// One enrichment call per unique contact
async function enrich(accountId) {
  const res = await fetch(
    `https://wp-data.p.rapidapi.com/number/${accountId}`,
    { headers: {
        "x-rapidapi-host": "wp-data.p.rapidapi.com",
        "x-rapidapi-key": globalThis._importMeta_.env.VITE_RAPIDAPI_KEY,
    } },
  );
  return res.json();
}

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

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

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

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

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