StoreBridge — Unified App Store & Google Play data
Pricing
Pay per usage
StoreBridge — Unified App Store & Google Play data
Thin Apify Actor that wraps the StoreBridge REST API (one normalized schema over the Apple App Store and Google Play) and pushes normalized records to the dataset. Billed pay-per-event.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Isaiah Dupree
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
StoreBridge Actor
A thin Apify Actor that wraps the StoreBridge REST API — one normalized schema over the Apple App Store and Google Play — and pushes each normalized record to the run's dataset.
It does not scrape anything itself. It calls the deployed StoreBridge API
(https://storebridge-api.vercel.app/v1, overridable via STOREBRIDGE_BASE_URL) using the
Apify route group's bearer token (STOREBRIDGE_API_TOKEN), then relays and meters the
results.
Input modes
Set mode in the input:
| Mode | What it fetches | Key inputs |
|---|---|---|
search | Unified app search results | term, store, country, limit |
appDetails | Full normalized app details (40+ fields) | appIds, store, country |
reviews | Paginated reviews (Apple ≤ 500/app/country, Google deep) | appIds, store, maxReviews |
charts | Top-chart / ranking rows | chartType (free/paid/grossing), category, store, limit |
store can be apple, google, or both. both fans out to both stores for search
and appDetails; for reviews and charts (which are single-store upstream) the Actor
runs each store in turn.
Pay-per-event pricing
This Actor is billed pay-per-event (PPE) — a flat charge per run plus a charge per
object produced. Prices are declared in .actor/actor.json (pricingInfo) and charged
via Actor.charge():
| Event | Charged | Price (USD) |
|---|---|---|
actor-start | once per run | $0.01 |
app-detail | per app-details record | $0.0015 |
search-result | per search result | $0.0008 |
review | per review | $0.0004 |
chart-record | per chart / ranking row | $0.0003 |
aso-keyword | per ASO keyword row | $0.002 |
Apify's standard $5/mo free credit on paid plans acts as the free tier (≈ 3,300 app details/mo).
Environment
| Var | Purpose | Default |
|---|---|---|
STOREBRIDGE_BASE_URL | StoreBridge API base host | https://storebridge-api.vercel.app |
STOREBRIDGE_API_TOKEN | Bearer token for the Apify route group | — (recommended) |
Example input
{"mode": "search","store": "both","term": "budget app","country": "us","limit": 50}