StoreBridge — Unified App Store & Google Play data avatar

StoreBridge — Unified App Store & Google Play data

Pricing

Pay per usage

Go to Apify Store
StoreBridge — Unified App Store & Google Play data

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

Isaiah Dupree

Maintained by Community

Actor 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:

ModeWhat it fetchesKey inputs
searchUnified app search resultsterm, store, country, limit
appDetailsFull normalized app details (40+ fields)appIds, store, country
reviewsPaginated reviews (Apple ≤ 500/app/country, Google deep)appIds, store, maxReviews
chartsTop-chart / ranking rowschartType (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():

EventChargedPrice (USD)
actor-startonce per run$0.01
app-detailper app-details record$0.0015
search-resultper search result$0.0008
reviewper review$0.0004
chart-recordper chart / ranking row$0.0003
aso-keywordper 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

VarPurposeDefault
STOREBRIDGE_BASE_URLStoreBridge API base hosthttps://storebridge-api.vercel.app
STOREBRIDGE_API_TOKENBearer token for the Apify route group— (recommended)

Example input

{
"mode": "search",
"store": "both",
"term": "budget app",
"country": "us",
"limit": 50
}