Record Label Information through the API - beatsmusic

I was thinking about playing with the Beats API and I was really hoping to sort music by record label. I'm not seeing anything for labels in the documentation. Does anyone know where that info might be stored in the API?

It's not available through the API.

Related

Google MyBusinessInformation API, where are the services?

I'm stuck with the BusinessInformation API, actually I can add custom categories and services bound to it in the Google MyBusiness interface, but I'm still trying to figure out how to do the same using the API.
So far I found the way to get all the categories here, but I'd like to only get the categories that are bound with my current location.
Then about the services bound to each category, I couldn't figure it out what I only got similar is that link but it's deprecated.
Does someone know the way to do this?
Best
Sorry for this, actually it's OBVIOUS: those are attributes of the Location object.
I'll leave this here though, just in case that someone falls in the same trap.

How to get ACRID via ACRCloud API knowing the ISRC?

According to ACRCloud, they provide the ability to get songs metadata and links: https://console.acrcloud.com/metadata-links
So, knowing the ACRID, for example, we can find the ISRC via their Metadata API: https://docs.acrcloud.com/metadata/music
The question is: How to get ACRID if we know the ISRC?
Is it possible to do with help of ACRCloud API? Or what other method ACRCloud can provide? I couldn't find anything except the actual audio recognition.
You can't get acrid with this API, you can only get it with the audio recognition, why do you need acrid?

SoundCloud API using Soundmanager2 for streaming - reporting

I m currently using SC.stream (soundmanager2) on my own player to deliver track from my Website.
My question regards the Reporting. Is Soundcloud API
i m wondering what type of information soundcloud delivers in terms of music listening, number of plays. Abandoned sessions. Full listening and so on. Based on my account.
Best Regards
Xavier
If you're wondering about what metadata you can get from the SoundCloud API, the answer is quite a bit. The SC.Stream only does what is neccesary to get the underlying SoundManager2 instance to play, but if you GET track information specifically, you can get a ton of information.
See the API documentation here.

Is there a way to show all the App Store products from a company?

I tried SKStoreProductViewController but it seems it can only show one known products.I looked through the document of Search API and can't find a way to do this either.
Of course, I can do this by establishing my own database and put it in my server. But it would be better if I can do it in Apple's own way.Or is there a way to get the RSS feed for this?
Does anybody have any suggestions? Thanks
The Search API can help you do this - you just need to know the "artitstId" for the company.
Try this:
Lookup the "artistId" for a specific developer, I pulled it by looking up a single product by that artist.
http://itunes.apple.com/us/lookup?id=533451786
Now use the lookup API for that specific "artistId" and make sure to ask for the entity you want returned.
http://itunes.apple.com/us/lookup?id=298910979&entity=software,iPadSoftware,macSoftware
You can do the same for a Music artist as well. Suppose you want all albums by Adele.
http://itunes.apple.com/us/lookup?id=262836961&entity=album

iPhone: Looking for an API to store survey results

In my iPhone app I am trying to gather feedback on my game via an optional survey. I would like to send this data to a central server, where I could gather all the statistics and process them to have a bar chart or other convenient presentation.
The data being sent an integer representing the user's preference. ie) Given "How did you like our game?", the user could select from a button from :) :\ :( . Eventually I would also like to have audio feedback where the user could record their voice. The variable length sound clip would be sent and stored from an iPhone to some server, for playback later.
Has anybody done something similar? Google Spreadsheets offers an API which I can't make heads nor tails of but I think it will support a tally of responses. ie) I received 10 goods, 4 neutral, and 7 poor ratings. As far as I can tell I wouldn't be able to store a sound clip in a spreadsheet.
I also looked into Google App engine but if possible I'd like to avoid the networking code to transmit the survey data and the server side scripts to interpret the data. Can somebody recommend a simple API that I could use to store integers for viewing? Ideally I'd like to say something simple like
if (response == "Good") MyGoogleSpreadsheet.MyAppStats.Increment(positiveResponseTallyCell);
Later on I'd just log into Googlespreadsheets and the results would be there for me to read. By the way I don't have to necessarily use a spreadsheet. I just want this to be easy. Bonus points if the API supports the storage and playback of sound but integers will suffice for now.
You can do this with the Flurry API (flurry.com) which lets you specify which custom events to log, and gives you charts and downloadable CSV. Very easy to use:
[FlurryAPI startSession: flurryID];
[FlurryAPI logEvent:#"QUESTION1" withParameters:#"Good"];
Although Flurry is made for general usage statistics gathering, I think it would be a quick and easy way to accomplish what you want.
I know you said you've already taken a look at the Google Spreadsheets API, but you may not have seen the GData Objective-C framework which includes support for reading/writing to and from Google Docs spreadsheets (via the GDataServiceGoogleSpreadsheet class).