{"id":15048472,"url":"https://github.com/hacxk/hacxkapkpure","last_synced_at":"2025-04-10T01:23:59.613Z","repository":{"id":247593090,"uuid":"826375347","full_name":"hacxk/hacxkapkpure","owner":"hacxk","description":"A Simple and Accurate Module to Scrape and Get Data from APKPURE","archived":false,"fork":false,"pushed_at":"2024-07-11T06:06:10.000Z","size":7,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-30T00:42:46.880Z","etag":null,"topics":["apk","apkpure","apkpure-data-scraper","apkpure-scraper","apktool","app","md","new"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hacxk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2024-07-09T15:31:40.000Z","updated_at":"2024-08-23T15:01:12.000Z","dependencies_parsed_at":"2024-07-09T16:26:02.438Z","dependency_job_id":null,"html_url":"https://github.com/hacxk/hacxkapkpure","commit_stats":null,"previous_names":["hacxk/hacxkapkpure"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacxk%2Fhacxkapkpure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacxk%2Fhacxkapkpure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacxk%2Fhacxkapkpure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacxk%2Fhacxkapkpure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacxk","download_url":"https://codeload.github.com/hacxk/hacxkapkpure/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219855377,"owners_count":16556096,"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","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":["apk","apkpure","apkpure-data-scraper","apkpure-scraper","apktool","app","md","new"],"created_at":"2024-09-24T21:13:21.009Z","updated_at":"2024-10-12T16:41:37.766Z","avatar_url":"https://github.com/hacxk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# APKPure Scraper\n\n\n\n[![npm version](https://img.shields.io/npm/v/hacxkapkpure.svg)](https://www.npmjs.com/package/hacxkapkpure) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n\n\nA Node.js scraper for extracting APK information and search results from the APKPure website.\n\n\n\n## Features\n\n\n\n- **Fetch Detailed APK Data:** Get comprehensive details about a specific APK, including title, rating, version, description, developer, release date, and more.\n\n- **Search for APKs:** Perform searches on APKPure and retrieve a list of relevant APKs with their essential information.\n\n- **Promise-based:** Utilizes Promises for clean and asynchronous code flow.\n\n- **Error Handling:** Includes error handling to gracefully manage potential issues during scraping.\n\n\n\n## Installation\n\n\n\n1. Make sure you have Node.js and npm (Node Package Manager) installed.\n\n2. Install the scraper via npm:\n\n\n\n```bash\n\nnpm install hacxkapkpure\n\n```\n\n\n\n## Usage\n\n\n\n```javascript\n\nconst APKPureScraper = require('hacxkapkpure'); \n\n\n\nconst scraper = new APKPureScraper();\n\n\n\n// Fetch detailed APK data by URL\n\nscraper.fetchAPKData('[https://apkpure.com/pubg-mobile-for-android/com.tencent.ig](https://apkpure.com/pubg-mobile-for-android/com.tencent.ig)')\n\n    .then(data =\u003e {\n\n        console.log(data); // { title: 'PUBG MOBILE', rating: '8.7', ... }\n\n    })\n\n    .catch(error =\u003e console.error('Error fetching APK data:', error));\n\n\n\n// Search for APKs\n\nscraper.fetchAPKPureListData('free fire')\n\n    .then(results =\u003e {\n\n        console.log(results); \n\n        /*\n\n        {\n\n            author: 'HACXK', \n\n            version: '1.0.3',\n\n            result: [\n\n                { name: 'Free Fire MAX', developer: 'Garena International I', ...},\n\n                { name: 'PUBG MOBILE', developer: 'Level Infinite', ...},\n\n                // ... (more results)\n\n            ]\n\n        }\n\n        */\n\n    })\n\n    .catch(error =\u003e console.error('Error searching for APKs:', error));\n\n```\n\n\n\n## API Reference\n\n\n\n### `fetchAPKData(url)`\n\n\n\n- **Parameters:**\n\n  - `url` (string): The APKPure URL of the app.\n\n- **Returns:**\n\n  - A Promise that resolves with an object containing the detailed APK data.\n\n  \n\n### `fetchAPKPureListData(query)`\n\n- **Parameters:**\n\n  - `query` (string): The search query for APKs.\n\n- **Returns:**\n\n  - A Promise that resolves with an object containing the search results and scraper information. \n\n\n\n\n\n## License\n\n\n\nThis project is licensed under the MIT License.\n\n\n\n## Disclaimer\n\n\n\nThis scraper is for educational and informational purposes only. Please use it responsibly and respect the terms of service of APKPure and the app developers.\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacxk%2Fhacxkapkpure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacxk%2Fhacxkapkpure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacxk%2Fhacxkapkpure/lists"}