mobile_app_stores_search 1.0.0 copy "mobile_app_stores_search: ^1.0.0" to clipboard
mobile_app_stores_search: ^1.0.0 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.

Check live demo here.


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 = 'Your_Api_Key';
  String uuid = 'Your_UUID';
  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


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

Returns JSON list of apps, according to the search query & store you selected. When no app is found, the null is returned.

searchQuery

  • pass app name, developer/publisher name to this parameter.

searchInAppleStore

  • pass true if you want to search in Apple Store and false for Google Play Store.
  • by default is set to true(Apple Store)

Check a full example app. here

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
5
likes
120
pub points
44%
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