{"id":28540989,"url":"https://github.com/globaltechinfo/api-qasim","last_synced_at":"2025-07-07T11:31:07.117Z","repository":{"id":269230898,"uuid":"906782992","full_name":"GlobalTechInfo/API-QASIM","owner":"GlobalTechInfo","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-30T22:34:08.000Z","size":475,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T23:26:40.306Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/GlobalTechInfo.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["GlobalTechInfo"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-12-21T22:19:41.000Z","updated_at":"2025-06-30T22:34:11.000Z","dependencies_parsed_at":"2024-12-22T00:25:16.013Z","dependency_job_id":"40cf0b11-67dc-46b8-97e5-82a65c43e205","html_url":"https://github.com/GlobalTechInfo/API-QASIM","commit_stats":null,"previous_names":["globaltechinfo/api-qasim"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/GlobalTechInfo/API-QASIM","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GlobalTechInfo%2FAPI-QASIM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GlobalTechInfo%2FAPI-QASIM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GlobalTechInfo%2FAPI-QASIM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GlobalTechInfo%2FAPI-QASIM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GlobalTechInfo","download_url":"https://codeload.github.com/GlobalTechInfo/API-QASIM/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GlobalTechInfo%2FAPI-QASIM/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262868879,"owners_count":23377272,"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":[],"created_at":"2025-06-09T19:37:42.526Z","updated_at":"2025-07-07T11:31:07.112Z","avatar_url":"https://github.com/GlobalTechInfo.png","language":"JavaScript","funding_links":["https://github.com/sponsors/GlobalTechInfo"],"categories":[],"sub_categories":[],"readme":"\u003ch3 align=\"center\"\u003e\n  \n  \u003cp align=\"center\"\u003e\u003cimg src=\"https://img.shields.io/badge/WELCOME%20TO -API QASIM-green?colorA=%23ff0000\u0026colorB=%23017e40\u0026style=flat-square\"\u003e  \n\n  [![npm package](https://img.shields.io/npm/v/api-qasim?logo=npm\u0026style=flat-square)](https://www.npmjs.org/package/api-qasim)\n\u003ca href=\"https://github.com/GlobalTechInfo/API-QASIM/issues\"\u003e\u003cimg title=\"Issues\" src=\"https://img.shields.io/github/issues/GlobalTechInfo/API-QASIM?label=Issues\u0026color=success\u0026style=flat-square\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/GlobalTechInfo/API-QASIM/issues?q=is%3Aissue+is%3Aclosed\"\u003e\u003cimg title=\"Issues\" src=\"https://img.shields.io/github/issues-closed/GlobalTechInfo/API-QASIM?label=Issues\u0026color=red\u0026style=flat-square\"\u003e\u003c/a\u003e\n  \n\u003c/h3\u003e\n\n### Instalation :\n```bash\n\u003e npm i api-qasim\n```\n**Or**\n\n```bash\n\u003e yarn add api-qasim\n```\n-----\n\n**Import In Common js**\n```js\nconst Qasim = require('api-qasim');\n\n```\n**Import In ESM Module**\n```js\nimport pkg from 'api-qasim';\nconst { ringtone } = pkg;\n```\n-----\n\n### Example Usage cjs\n\n```js\nconst Qasim = require('api-qasim');\n\n(async () =\u003e {\n\n     // === Google Image ===\n    const searchQuery = \"cat\";  // Example search query\n    let googleImageResponse = await Qasim.googleImage(searchQuery);  // Fetch image URLs for the search query\n    console.log('Google Image Search Results:', googleImageResponse);  // Log image URLs\n\n    // === GitHub Clone ===\n    const gitUrl = \"https://github.com/GlobalTechInfo/ULTRA-MD\";  // Example GitHub URL\n    let gitcloneResponse = await Qasim.gitclone(gitUrl);  // Fetch GitHub clone data\n    console.log('GitHub Clone Data:', gitcloneResponse);  // Log GitHub clone response\n\n    // === Facebook Usage ===\n    const fbtext = \"Facebook Url\";\n    let fbResponse = await Qasim.fbdl(fbtext);\n    let fbData = fbResponse.data;\n    console.log('Facebook Data:', fbData);\n\n    // === Instagram Usage ===\n    const instatext = \"Instagram Url\";\n    let igResponse = await Qasim.igdl(instatext);\n    let igData = igResponse.data;\n    console.log('Instagram Data:', igData);\n\n    // === Mediafire Dl ===\n    const mediafireUrl = \"Mediafire Url\";\n    let mediafireResponse = await Qasim.mediafire(mediafireUrl);\n    let mediafireData = mediafireResponse;\n    console.log('MediaFire Data:', mediafireData);\n} catch (error) {\n    console.error('Error:', error);\n  }\n}\n\n();\n```\n--------\n### Simplified Example Usage\n```js\nconst Qasim = require('api-qasim');\n\n(async () =\u003e {\n  try {\n\n    // === Ringtones Dl ===\n    const ringtoneResult = await Qasim.ringtone('Nokia');\n    console.log('Ringtones:', ringtoneResult);\n\n    // === Apk Search ===\n    const apksearchResult = await Qasim.apksearch('Telegram');\n    console.log('Android1 APK:', apksearchResult);\n\n    // === Weather Info ===\n    const weatherResult = await Qasim.weather('Karachi');\n    console.log('Weather of Karachi:', weatherResult);\n\n  } catch (error) {\n    console.error('Error:', error);\n  }\n})();\n\n  ```\n------\n\n## Following Functions/Endpoints Are Working\n\n\n\n**Usage Islamic Features**\n\n```js\n\nconst Qasim = require('api-qasim');\n\n// Use any of the functions, for example, NiatAshar:\nQasim.NiatAshar().then(result =\u003e {\n  console.log(result);\n}).catch(error =\u003e {\n  console.error('Error:', error);\n});\n\n```\n-------\n\n**Islamic Features**\n\n\n```js\n\nQasim.Tahlil();\n\nQasim.Wirid();\n\nQasim.AyatKursi();\n\nQasim.DoaHarian();\n\nQasim.NiatSalaht();\n\nQasim.NiatFajar();\n\nQasim.NiatZuhur();\n\nQasim.NiatAshar();\n\nQasim.NiatMaghrib();\n\nQasim.NiatIsha();\n\nQasim.BacaanSalaht();\n\nQasim.AsmaulHusna();\n\nQasim.QisaNabi();\n\n```\n-------\n\n**Downloads Features**\n```js\nQasim.ytsearch('query')  // search query for YouTube\n\n\nQasim.ytmp4('url')  // YouTube Video Url\n\n\nQasim.ytmp3('url')  // url of YouTube video/audio\n\n\nQasim.googleImage('query');  // search query for downloading image from google\n\n\nQasim.gitclone('git url');   // Some Github Repository Url\n\n\nQasim.igdl('Instagram url'); // Instagram Post Url, e.g link of reel,image, video etc.\n\n\nQasim.fbdl('facebook url');  // Facebook Post Url e.g reel, image, video etc.\n\n\nQasim.mediafire('mediafire url');  // url of some file on mediafire\n\n\nQasim.wallpapercraft('query');  // wallpaper search query e.g 'sky'\n\n\nQasim.wallpaper('query');   //wallpapers search query e.g 'technology'\n\n\nQasim.ringtone('title');  // title of the ringtone that you wana search e.g 'Shape of You'\n\n\nQasim.mediaumma('url');   // some media url from mediaumma website\n\n\nQasim.wikimedia('query');  // search query for images from Wikimedia e.g 'Laptop'\n\n\nQasim.tiktokDl('url');     // url of tiktok media, complete tiktok scraper\n\n\nQasim.xdown('url');       // url of twitter media, complete twitter scraper\n\n\nQasim.stickersearch('query');  // query for sticker search e.g 'Babar Azam'\n\n\nQasim.facebook('url');  // works well with reels\n\n\nQasim.pinterest('query');  // image search query e.g 'Electronics'\n\n\nQasim.Pinterest2('query');  // image search query e.g 'Cat'\n\n\nQasim.zerochan('query');     // some anime name e.g 'itachi'\n\n\nQasim.cariresep('url');  // Food Recipes web url e.g https://resepkoki.id/resep-nasi-daun-jeruk-praktis-untuk-menu-sehari-hari\n\n\nQasim.webtoons('query');  // some search query e.g 'ignite'\n\n\n```\n------\n\n**Stalk Features**\n\n```js\n\nQasim.githubStalk('user')  // Github Username e.g 'GlobalTechInfo'\n\nQasim.tiktokStalk('user')  // TikTok Username  e.g.  'discoverpakistantv'\n\nQasim.freefireStalk('userId')  // Free Fire User Id\n\nQasim.igStalk('userName')   // Instagram Username  e.g 'truepakistanofficial'\n\nQasim.npmStalk('query')  // npm package name e.g 'api-qasim'\n\n```\n-----\n\n**Some Tools**\n\n```js\n\nQasim.konachan('query');    // anime search query e.g 'neko'\n\nQasim.styletext('teks');   // text that you wana convert in various styles e.g 'hello'\n\nQasim.trendtwit('country');  // Trending Twitter Tags. use Country e.g 'Pakistan'\n\nQasim.bitly('url');     //  url that you wana convert/shorten to bit.ly\n\nQasim.ssweb('url');     // url of the page from where you wana get screenshot\n\nQasim.gempa();   // Earthquake info only for Indonesia\n\nQasim.tinyurl('url');    // Link shortener , url that you wana shorten\n\n```\n------\n\n**Apk Search**\n\n```js\n\nQasim.playstore('search');   // some apk search query e.g 'whatsapp'\n\nQasim.apkmirror('querry');   // some apk search query e.g 'whatsapp'\n\nQasim.apksearch('query');     // some apk search query e.g 'facebook'\n\nQasim.happymod('query');      // some apk search query e.g 'Telegram'\n\n```\n\n--------\n\n**Information**\n\n```js\nQasim.weather('city'); // weather info query e.g 'Lahore'\n\nQasim.mangatoon('search');  // some anime name e.g 'nezoku'\n\nQasim.quotesanime();\n\nQasim.artinama('query');    // some name for its meaning\n\nQasim.wattpad('query');    // wattpad search query e.g 'japan'\n\nQasim.wikisearch('query');    // wikipedia search query e.g 'heroku'\n\n\n```\n\n-------\n\n**Random Wallpapers**\n\n```js\nQasim.Game();\n\nQasim.Technology();\n\nQasim.Programming();\n\nQasim.Mountain();\n\nQasim.Islamic();\n\nQasim.CyberSpace();\n\n```\n\n-------\n\n### 🧑‍💻 Connect with the Developer\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/GlobalTechInfo\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/GitHub-GlobalTechInfo-blue?style=for-the-badge\u0026logo=github\u0026logoColor=white\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://t.me/GlobalTechOwner\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Telegram-@GlobalTechOwner-1DA1F2?style=for-the-badge\u0026logo=telegram\u0026logoColor=white\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://wa.me/message/923444844060\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/WhatsApp-Click%20Here%20to%20Message%20Me-25D366?style=for-the-badge\u0026logo=whatsapp\u0026logoColor=white\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://youtube.com/@GlobalTechInfo\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/YouTube-@GlobalTechInfo-000000?style=for-the-badge\u0026logo=youtube\u0026logoColor=white\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n------\n\n\u003ch1 align=\"center\"\u003e MY WHATSAPP BOT \u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/GlobalTechInfo/MEGA-AI\"\u003e\u003cimg title=\"Author\" src=\"https://img.shields.io/badge/MEGA-AI-black?style=for-the-badge\u0026logo=Github\"\u003e\u003c/a\u003e\n\u003cp/\u003e\n\n------\n  \n\u003cp align=\"center\"\u003e© GlobalTechInfo 2025\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobaltechinfo%2Fapi-qasim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglobaltechinfo%2Fapi-qasim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobaltechinfo%2Fapi-qasim/lists"}