Questions tagged [itunes-search-api]

The Search API allows you to place search fields in your website to search for content within the iTunes Store, App Store, iBookstore and Mac App Store.

Overview

The Search API allows you to place search fields in your website to search for content within the iTunes Store, App Store, iBookstore and Mac App Store. You can search for a variety of content; including apps, ebooks, movies, podcasts, music, music videos, audiobooks, and TV shows. You can also call an ID-based lookup request to create mappings between your content library and the digital catalog. Terms and conditions apply.

The Affiliate Program allows you to earn a commission on qualifying revenue generated by clicks initiated from your website or app into the iTunes Store, App Store, iBookstore, and Mac App Store. For more information on the Affiliate Program, see http://www.apple.com/itunes/affiliates.

Searching

To search for content from a field in your website and display the results in your website, you must create a search field that passes a fully-qualified URL content request to the iTunes Store, parse the JavaScript Object Notation (JSON) format returned from the search, and display the results in your website.

The fully-qualified URL must have the following format:

https://itunes.apple.com/search?parameterkeyvalue

Where parameterkeyvalue can be one or more parameter key and value pairs indicating the details of your query.

To construct a parameter key and value pair, you must concatenate each parameter key with an equal sign (=) and a value string. For example: key1=value1. To create a string of parameter key and value pairs, you must concatenate each pair using an ampersand (&). For example:

key1=value1&key2=value2&key3=value3

http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html

42 questions
0
votes
2 answers

How to provide callback function to iTunes search API

I am struggling to find a way to provide a callback function to correctly use the iTunes Store search API. I am trying to achieve this behaviour: const getiTunes = fetch(`https://itunes.apple.com/search?term=${search}&media=movie&limit=200`) …
Charklewis
  • 4,427
  • 4
  • 31
  • 69
0
votes
1 answer

Search through podcast-episodes via API

I am looking for a service(API) to search through Podcasts and their episodes. Goal: I would like to set a search term - football and the results are podcast episodes related to this term (Title, Description, Tag). I looked into…
P.R
  • 43
  • 1
  • 6
0
votes
0 answers

How to add (Listen on Apple Music) link on a website?

So basically, i am only trying to embed affiliate links of songs to my website that i am working on as an university project. The website fetches the lyrics of the song along with the albumart and other metadata. The one thing i cant find is that…
0
votes
1 answer

Is there a way to get pageCount from Itunes Search API? When retrieving an ebook?

I developing an app where you can search for books. In the response from Itunes Search API i can retrieve the title, author, book cover as need but i can't see the page count of each book anywhere in the response? Is it not possible to get from the…
0
votes
2 answers

Find out which apple music songs are playable in your country (e.g. via track_id)

Using the apple itunes search api it is possible to get information on songs such as artist, title and apple store track_id: Using an MPMusicPlayerController (i tried both system and application) one should be able to play songs using: player =…
David Schumann
  • 13,380
  • 9
  • 75
  • 96
0
votes
3 answers

Universal Links iOS

I am having some trouble in getting Universal links on my app working. Here are the things that i have already done. -- Created my apple-app-site-association file. Here is my file { "applinks": { "apps": [], …
Madu
  • 4,849
  • 9
  • 44
  • 78
0
votes
1 answer

How to get song info with "kind = music" (iTunes API)?

I'm trying to get songs info with iTunes API. For example if I make a query like this: https://itunes.apple.com/search?term=no+hero+elisa the problem is that the kind (in response) is music-video, while on iTunes Store there is the song only…
Ernesto Schiavo
  • 1,020
  • 2
  • 12
  • 33
0
votes
1 answer

Itunes Search API $http jsonp get - get rid of url encoding

i'm doing a $http.jsonp call in angular against Apple's iTunes Search API to retrieve data about songs from a specific artist. A normal get request to the endpoint would be…
steerben
  • 33
  • 1
  • 3
0
votes
1 answer

Apple search API get Customers Also Bought

Is there something for the Apple Search API to get Customers Also Bought with the app's id. I could get the app details, and app reviews but not customers also bought yet.
lbennet
  • 1,083
  • 5
  • 14
  • 31
0
votes
1 answer

Applying search terms only to specific fields in the iTunes search API. Possible?

Using the iTunes search api for app search, is it possible to pre-filter the results, so that the search terms get applied to a specific set of fields? For instance, the title. I am sick and tired of not finding anything, just because it is buried…
Preslav Rachev
  • 3,983
  • 6
  • 39
  • 63
-1
votes
2 answers

iTunes Search API get 0 results at c# programm but 1 result at Chrome browser

I created a C# programm which searches movie details with the title of the movie. I create the link: string link = "https://itunes.apple.com/search?"; link += "term="; string cTitle = Titel.Replace(" ", "+"); link…
moxmlb
  • 1,190
  • 3
  • 10
  • 18
-2
votes
1 answer

Any example code for NSUserActivity in SearchApi feature?

Can anybody please provide me tutorial or example code in NSUserActivity feature for SearchApi. I am doing lots of RND about this feature but didn't get proper code for this.
Abha
  • 1,032
  • 1
  • 13
  • 36
1 2
3