Reputation: 11
I'm using this API https://itunes.apple.com/lookup?id=948595640 to get iTunes app/games based on lookup id and getting result correctly. The result with id=948595640 is the game "Princess wedding pose". Now my scenario is to get the game "Princess wedding pose" by giving its name not by lookup id. I'm doing as https://itunes.apple.com/search?term=Princess%20wedding%20pose but I'm not getting any result. Please give me any suggestions, Thank you.
Upvotes: 0
Views: 135
Reputation: 3300
You can include entity=software
in the query, i.e. https://itunes.apple.com/search?term=princess+wedding+pose&entity=software
Because the default search include types (movie
, album
, allArtist
, podcast
, musicVideo
, mix
, audiobook
, tvSeason
, allTrack
), which do not include software
.
For full API reference, you can check in this link.
Upvotes: 2