1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Where to view the latest apps by niche being released onto gplay/apple?

Discussion in 'General Marketing' started by rob33, Aug 2, 2020.

  1. #1
    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.
     
    rob33, Aug 2, 2020 IP
  2. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #2
    sarahk, Aug 2, 2020 IP
  3. rob33

    rob33 Well-Known Member

    Messages:
    477
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    125
    #3
    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
     
    rob33, Aug 3, 2020 IP
  4. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #4
    You should be able to get latest listings from that and filter by keywords. Let us know how you get on.
     
    sarahk, Aug 8, 2020 IP
  5. rob33

    rob33 Well-Known Member

    Messages:
    477
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    125
    #5
    Do you have url path for this? i don't see any kw function without having to register an app of my creation.
     
    rob33, Aug 8, 2020 IP
  6. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #6
    Looks like I was wrong, but rapidapi have this

    upload_2020-8-9_10-22-21.png

    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):
     
    sarahk, Aug 8, 2020 IP
  7. rob33

    rob33 Well-Known Member

    Messages:
    477
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    125
    #7
    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
     
    rob33, Aug 8, 2020 IP
  8. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #8
    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.
     
    sarahk, Aug 8, 2020 IP
  9. rob33

    rob33 Well-Known Member

    Messages:
    477
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    125
    #9
    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
     
    rob33, Aug 9, 2020 IP