app-intel-api (Python)
Python client for the App Intel API — App Store & Google Play app data: search, full app details (screenshots, preview videos, in-app purchase price lists, install brackets), reviews, top charts & rankings, similar apps, keyword suggestions (ASO), download & revenue estimates, daily rank/rating history. Sync and async (httpx).
Free tier: 300 requests/month → https://rapidapi.com/kotuaigor/api/app-intel-api-app-store-google-play-data · Plans & pricing
pip install app-intel-api
from app_intel_api import AppIntel
api = AppIntel("YOUR_RAPIDAPI_KEY", country="us") # or set RAPIDAPI_KEY
hits = api.search("candy crush", store="ios")["data"]
app = api.app(hits[0]["id"], estimate=True)["data"]
print(app["name"], app["iap"]["items"], app["previewVideos"], app["estimate"])
api.app("com.king.candycrushsaga") # Android by package name
api.app("com.burbn.instagram", store="ios") # iOS by bundle id
api.reviews("com.king.candycrushsaga", sort="rating", limit=50)
api.charts(store="android", chart="top-grossing", category="GAME", country="gb")
api.suggest("medit", country="de")
api.similar("553834731"); api.estimates("553834731"); api.history("553834731", days=30)
api.developer_apps("526656015")
Async:
from app_intel_api import AsyncAppIntel
async with AsyncAppIntel("YOUR_RAPIDAPI_KEY") as api:
top = await api.charts(store="ios", chart="top-grossing", category="Health & Fitness")
Every call returns {"data": ..., "meta": {"cached": bool, "stale": bool, "fetchedAt": iso}}. Errors raise AppIntelError (.status, .code, .request_id).
Full endpoint reference and interactive playground: https://rapidapi.com/kotuaigor/api/app-intel-api-app-store-google-play-data
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file app_intel_api-0.1.0.tar.gz.
File metadata
- Download URL: app_intel_api-0.1.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
296cefc675e7d5e684171c2c02ce0f6bfc9aa2957574f8c55362538fd9b4c514
|
|
| MD5 |
666030fe4ba6101fe4e1c8cc29528148
|
|
| BLAKE2b-256 |
56c095de7896c4e69296e33b7f7e859e7344617339cc85af7e1d88f2b80b2299
|
File details
Details for the file app_intel_api-0.1.0-py3-none-any.whl.
File metadata
- Download URL: app_intel_api-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d72e10287b6b1873e4f68d08f7bb5fb856ba9f98ec0a02e665c7a2cbea1a25ae
|
|
| MD5 |
62c7953065701bc8058d5aa62f3a2396
|
|
| BLAKE2b-256 |
dccad9876e5f0fd5bd2650bfa4360f6ca5a12c3cf18bb16aac5398992390c713
|