{"id":19964053,"url":"https://github.com/ilhamridho04/get-contact.js","last_synced_at":"2025-08-17T11:11:32.846Z","repository":{"id":195873405,"uuid":"693886415","full_name":"ilhamridho04/get-contact.js","owner":"ilhamridho04","description":"About A GetContact client library for NodeJS that connects through the GetContact Web browser app","archived":false,"fork":false,"pushed_at":"2025-05-26T10:45:28.000Z","size":22996,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T06:56:35.001Z","etag":null,"topics":["api","bot","get-contact","getcontact"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilhamridho04.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["ilhamridho04"],"buy_me_a_coffee":"ilhamridho04"}},"created_at":"2023-09-19T23:07:40.000Z","updated_at":"2025-06-16T12:19:01.000Z","dependencies_parsed_at":"2023-09-20T00:14:13.575Z","dependency_job_id":"542f621f-fb25-47a2-a59c-008329d763b8","html_url":"https://github.com/ilhamridho04/get-contact.js","commit_stats":null,"previous_names":["ilhamridho04/get-contact.js"],"tags_count":5,"template":true,"template_full_name":null,"purl":"pkg:github/ilhamridho04/get-contact.js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilhamridho04%2Fget-contact.js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilhamridho04%2Fget-contact.js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilhamridho04%2Fget-contact.js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilhamridho04%2Fget-contact.js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilhamridho04","download_url":"https://codeload.github.com/ilhamridho04/get-contact.js/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilhamridho04%2Fget-contact.js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270837583,"owners_count":24654391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","bot","get-contact","getcontact"],"created_at":"2024-11-13T02:19:01.857Z","updated_at":"2025-08-17T11:11:32.824Z","avatar_url":"https://github.com/ilhamridho04.png","language":"JavaScript","funding_links":["https://github.com/sponsors/ilhamridho04","https://buymeacoffee.com/ilhamridho04"],"categories":[],"sub_categories":[],"readme":"# This api unofficial from GetContact\n\n[![npm](https://img.shields.io/npm/v/get-contact.js.svg)](https://www.npmjs.com/package/get-contact.js)\n\n# get-contact.js\n\nA GetContact API gclient that connects through the GetContact Web browser app\n\nIt uses Puppeteer to run a real instance of GetContact Web to avoid getting blocked.\n\n**NOTE:** I can't guarantee you will not be blocked by using this method, although it has worked for me. GetContact does not allow bots or unofficial clients on their platform, so this shouldn't be considered totally safe.\n\n## Quick Links\n\n- [GitHub](https://github.com/ilhamridho04/get-contact.js)\n- [npm](https://npmjs.org/package/get-contact.js)\n\n## Installation on no-gui systems\nFor puppeteer to work, you need to install the following dependencies with the apt-get command (remember to apt-get update before you install).\n\n```\nsudo apt install -y gconf-service libgbm-dev libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget\n```\n\n## Installation\n\nThe module is now available on npm! `npm i get-contact.js`\n\nPlease note that Node v12+ is required.\n\n## Example usage\n\n```js\nconst { GClient } = require(\"get-contact.js\");\n\nconst gclient = new GClient();\n\ngclient.on(\"qr\", (qr) =\u003e {\n  // Generate and scan this code with your phone\n  console.log(\"QR RECEIVED\", qr);\n});\n\ngclient.on(\"ready\", () =\u003e {\n  console.log(\"Client is ready!\");\n});\n\ngclient.initialize();\n```\n\nTake a look at [example.js](https://github.com/ilhamridho04/get-contact.js/blob/main/test/searchNumber.test.js) for another example with more use cases.\n\n## Reference\n\nhttps://github.com/pedroslopez/whatsapp-web.js\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filhamridho04%2Fget-contact.js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filhamridho04%2Fget-contact.js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filhamridho04%2Fget-contact.js/lists"}