peekanapp 0.0.2 copy "peekanapp: ^0.0.2" to clipboard
peekanapp: ^0.0.2 copied to clipboard

Get details about an app on the Google Play Store and Apple App Store.

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');

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');

For more information about the library APIs, please refer to the API reference here: https://pub.dev/documentation/peekanapp/latest/

License #

MIT.

1
likes
130
points
60
downloads

Publisher

verified publishersallai.me

Weekly Downloads

Get details about an app on the Google Play Store and Apple App Store.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

http

More

Packages that depend on peekanapp