peekanapp

Creator: coderz1093

Last updated:

0 purchases

peekanapp Image
peekanapp Images
Add to Cart

Description:

peekanapp

Peek-An-App Dart Client #
A Dart library for fetching information about applications on the Google Play
Store and Apple App Store using Peek-An-App.
Usage #
import 'package:peekanapp/peekanapp.dart';

// ...

PeekanappClient peekanapp = PeekanappClient();

// fetch information about an app on the Play Store
final info = peekanapp.getPlayStoreAppDetails(appId: 'com.example.app');

// fetch information about an app on the App Store
final info = peekanapp.getAppStoreAppDetails(appId: 'com.example.app');

// fetch information about an app on both app stores
final info = peekanapp.getAppDetails(androidAppId: 'com.example.app', iOSAppId: 'com.example.app');
copied to clipboard
You may also instnatiate a client with a custom API URL, if you're self-hosting
Peek-An-App.
import 'package:peekanapp/peekanapp.dart';

// ...

PeekanappClient peekanapp = PeekanappClient.withApiUrl('https://your.url.here');
copied to clipboard
For more information about the library APIs, please refer to the API reference
here: https://pub.dev/documentation/peekanapp/latest/
License #
MIT.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.