Hi, I'm trying to find where to locate the latest apps to come out. Gplay selects its own latest "hot" apps etc but all pre-selected/skewed data. Specifically the Education niche - when the next apps are due to come out? Appbrain is good, but looking to see if additional exists cheers.
No - I have no specific app I'm hunting. Would just like to get the heads up on new apps that you can teach English thru - like plafish/cambly etc But thanks for link, it looks like it could be useful, will explore, cheers
You should be able to get latest listings from that and filter by keywords. Let us know how you get on.
Do you have url path for this? i don't see any kw function without having to register an app of my creation.
Looks like I was wrong, but rapidapi have this It appears to let you query the app stores and give a category. <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://app-stores.p.rapidapi.com/search?language=en&store=google&term=sleep", CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", CURLOPT_HTTPHEADER => array( "x-rapidapi-host: app-stores.p.rapidapi.com", "x-rapidapi-key: 9ad31276camsha77a38c2028ef3ep12c69ajsn57b216d7ebf7" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } Code (markup):
I have no idea what you are showing me. May be you are confused. I am just looking for the release date for upcoming apps in specific niches - ie - whats coming out next mth - that is all
Most app releases aren't scheduled that far ahead, they go live when they go live. The code lets you query the app store for apps that have a particular term, in the example it's "sleep", you'd change that to education. You could then compare the list to one you have saved to identify the new entries.
I see - I mean I dont follow the path of how to "query the app store" with a piece of code, but will investigate - tks