How to get apps review and ratings from itunes connect
up vote
8
down vote
favorite
Hello i am wondering if there is any way to get the app information like number of downloads, rating, review etc . from appstore or from itunes connect. If I call this url http://itunes.apple.com/US/lookup?bundleId=com.XXX.XXX it gives the some of the information related to that app like supported os, devices, images, etc. I would like to know do we have such permissions or such possibility to do that.
Any reference, link, or suggestions will be highly appreciated. Thanks in advance
ios objective-c app-store itunesconnect
add a comment |
up vote
8
down vote
favorite
Hello i am wondering if there is any way to get the app information like number of downloads, rating, review etc . from appstore or from itunes connect. If I call this url http://itunes.apple.com/US/lookup?bundleId=com.XXX.XXX it gives the some of the information related to that app like supported os, devices, images, etc. I would like to know do we have such permissions or such possibility to do that.
Any reference, link, or suggestions will be highly appreciated. Thanks in advance
ios objective-c app-store itunesconnect
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51
add a comment |
up vote
8
down vote
favorite
up vote
8
down vote
favorite
Hello i am wondering if there is any way to get the app information like number of downloads, rating, review etc . from appstore or from itunes connect. If I call this url http://itunes.apple.com/US/lookup?bundleId=com.XXX.XXX it gives the some of the information related to that app like supported os, devices, images, etc. I would like to know do we have such permissions or such possibility to do that.
Any reference, link, or suggestions will be highly appreciated. Thanks in advance
ios objective-c app-store itunesconnect
Hello i am wondering if there is any way to get the app information like number of downloads, rating, review etc . from appstore or from itunes connect. If I call this url http://itunes.apple.com/US/lookup?bundleId=com.XXX.XXX it gives the some of the information related to that app like supported os, devices, images, etc. I would like to know do we have such permissions or such possibility to do that.
Any reference, link, or suggestions will be highly appreciated. Thanks in advance
ios objective-c app-store itunesconnect
ios objective-c app-store itunesconnect
asked Dec 30 '14 at 13:47
Smile
557419
557419
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51
add a comment |
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51
add a comment |
2 Answers
2
active
oldest
votes
up vote
13
down vote
Edit
I found a new way by looking at what Apple does in iTunes Connect
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
add a comment |
up vote
0
down vote
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
- Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
- Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f27706628%2fhow-to-get-apps-review-and-ratings-from-itunes-connect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
13
down vote
Edit
I found a new way by looking at what Apple does in iTunes Connect
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
add a comment |
up vote
13
down vote
Edit
I found a new way by looking at what Apple does in iTunes Connect
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
add a comment |
up vote
13
down vote
up vote
13
down vote
Edit
I found a new way by looking at what Apple does in iTunes Connect
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Edit
I found a new way by looking at what Apple does in iTunes Connect
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
edited Dec 11 '17 at 12:35
answered Dec 30 '14 at 14:50
jfgrang
748813
748813
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
add a comment |
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is that what you expected ?
– jfgrang
Jan 6 '15 at 16:23
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
Is there any way to view ALL reviews from EVERYWHERE?
– durazno
Oct 22 '16 at 10:51
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
@durazno did you get the solution regarding all reviews from everywhere.?
– V.J.
Dec 26 '16 at 12:50
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't work anymore. Where do we access this info from iTunes Connect? I know I saw it once but can't find it now.
– galactikuh
Dec 9 '17 at 15:17
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
This doesn't give all reviews, is there a way to get all the reviews?
– Ajay Kumar
Jul 16 at 7:47
add a comment |
up vote
0
down vote
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
- Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
- Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
add a comment |
up vote
0
down vote
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
- Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
- Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
add a comment |
up vote
0
down vote
up vote
0
down vote
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
- Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
- Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
- Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
- Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
edited Nov 22 at 16:56
answered Nov 22 at 16:43
Ariel
3,92821623
3,92821623
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f27706628%2fhow-to-get-apps-review-and-ratings-from-itunes-connect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
www.appannie.com/ It will gives total number of downloads, reviews etc..
– vishnu
Dec 30 '14 at 13:57
@vishnu thanks for the suggestion but i am looking for the developer support not the app which meets my requirement. i have to add this feature to my app.
– Smile
Dec 30 '14 at 14:00
If you have itunes-connect account for an app you can get download information from itunes by simulating http request /response but not without credentials. For ratings and reviews you can easily scrap them from itunes app-info pages.
– cool
Jan 19 '15 at 19:51