Apple's official RSS Feed Generator is limited to 200 results, here's an example: https://itunes.apple.com/us/rss/topfreeapplications/limit=200/xml
How is AppAnnie getting anything beyond that?
Is it possible to get those ranks by using the official iTunes Search API?
Related
From everything I have researched I have not been able to find a way to grab past subscriber count on a certain date. If I can't do it through Youtube API is there any other site that would have this kind of data I could grab for a bunch of different channels?
I'm not sure if this is possible with all of the updates to YouTube showing rounded subscriber counts. I would recommend checking out the YouTube Analytics & Reporting APIs at https://developers.google.com/youtube/analytics. Other than that, I would say not.
I'm looking for a way to get the number of video views from a video tweet.
With the search/tweets I can get the number of favorites and retweets but not the views. Is it possible?
In the twitter ads api there is a video metric where is possible to get the number of views. The problem is that it requires to be approved through the twitter review process and this api looks more like a way to fully manage the ads of the user.
But I finally found an undocumented api where I can get this information using the same access token used for everything else:
https://api.twitter.com/1.1/videos/tweet/config/{{id-tweet}}.json
Among other things, it returns a track.viewCount field.
Does Google provide an api for youtube TV? (tv.youtube.com) I'm using the youtube data v3 api and it seems to only works for regular youtube.com.
For instance, in my paid YouTube TV account, I have access to "BBC America". Using the https://www.googleapis.com/youtube/v3/search API call yields no correct matching results. On the other hand, a search for a free channel such as "France 24" yields an exact match.
Moreover, the search results do not have a field that indicates whether it is paid or free content leading one to believe only free video content shows up in search.
I am hoping a YouTube Google API developer could deliver a definitive answer on whether the capability to get search results for paid video content exists or not.
How to fetch instagram insights, engagement and media for a particular user. If you search like "instagram stats" in iOS, you could find many apps providing paid service to fetch the following details
Most comments by user
Least comments by user
Most likes by user
Least likes by user
Most popular media
Least popular media
Ghost followers
Who's interested in me
But instagram official API doesn't provide direct end points to fetch these details. How these many apps providing paid service to get these insights and engagement details ? Are there any open source api's to fetch these data from instagram?? If so please list out here I am implementing a similar stats app and I need these data to be fetched from instagram.
Official API provides follow, unfollow, like, unlike, fetching relationship status like followed by, not following me back, total comments count, total likes count for media.
But how to get the data for the list I mentioned??
To find the engagement rate, you might have to do some manual calculations.
Engagement rate is usually calculated as a portion of your followers. So likes + comments / number of followers. All three of those are endpoints provided by the API. You can calculate this average with PHP once you have the data.
$engagementRate = array_sum($totalLikesandComments) / count($followers);
You could also use an analytics service to calculate your engagement rate for you. Crowdbabble provides engagement rate and can export data to excel. https://www.crowdbabble.com/blog/how-to-find-your-instagram-engagement-rate/
In YouTube's V2 API one could obtain a video's rating from the following tag
<gd:rating average="4.254023" numRaters="20509">
I am not finding this information contained within the new V3 api however.
I am using the videos api. I reviewed all of the available properties that can be returned at this location but while I am finding information about "ratings", that information pertains to movie and tv ratings, not how the video was rated.
https://developers.google.com/youtube/v3/docs/videos#properties
Does anyone have experience with this that may know?
From the link you posted, see the statistics object, specifically statistics.likeCount and statistics.dislikeCount.