mobile_app_stores_search 0.0.1 copy "mobile_app_stores_search: ^0.0.1" to clipboard
mobile_app_stores_search: ^0.0.1 copied to clipboard

Access metadata of all apps published in Apple App Store and Google Play Store via API.

Mobile App Stores Search #

Using this plugin, you can find all Android & iOS apps that match a given text query and Access data from Apple Store and Google Play Store via API.


Note: This plugin requires an API key and UUID for the search API.

You can get both API Key and UUID for free, here : waltsoft.net


Table of contents #

Search Features #

  • Android & iOS - Get all apps that match a given text query from google and apple store.
Google Play Store Apple Store
style1 style10
  • Search & Apps Data - You can search by app name, developer/publisher name, and you will get all the app Intelligence data you need for both store.
Search type Intelligence Data
style1 style10

Check the demo application #

Explore the full capabilities of your Flutter widgets on your device by installing our sample browser applications from the below app stores and view samples code in GitHub.

Take a look at the following to learn more about the Mobile App Store Search Flutter widget:

Installation #

📂 pubspec.yaml:

Note: Install the latest version from Pub.

dependencies:
  mobile_app_stores_search: '^1.0.0'

Mobile App Stores Search Example #

1. Import the following package.

import 'package:mobile_app_stores_search/mobile_app_stores_search.dart';

2. After importing the package, initialize the mobileAppStoresSearch widget.


  //-----> change it to your apikey and uuid,
  //You can get both [apiKey] and [uuid] for free, here : https://waltsoft.net/mobile_store_search_api <-----//
  String apiKey = 'MzCPrAGBoYai9FOj6iGCP61Q6SekVGLV1P6Jfjwh';
  String uuid = 'vRmIU18pFljK3ecnG13v';
  late MobileAppStoresSearch mobileAppStoresSearch;
  String query = 'youtube';

  @override
  void initState() {
    //initializing mobile app store search api
    mobileAppStoresSearch = MobileAppStoresSearch(apiKey: apiKey, uuid: uuid);
    super.initState();
  }

3. After initializing the package, call the searchAppInStoreResponseJson method and

  • pass query and the app store type in the parameter.
  • it will return a json list of app that match with the query.
  • if no match found then it will return null.

var json = await mobileAppStoresSearch.searchAppInStoreResponseJson(
        searchQuery: query,
        searchInAppleStore: true);

Check an example app Full Example

Support and feedback #

About #

  • Waltsoft is an AWS Technology Partner based in Toronto, Canada and focussed in Data Migration, Cloud ETL, DevOps, MLOps, Big Data, Analytics. Contact us: info (at) waltsoft.net
6
likes
120
pub points
28%
popularity

Publisher

unverified uploader

Access metadata of all apps published in Apple App Store and Google Play Store via API.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on mobile_app_stores_search