user16252641
user16252641

Reputation:

Get app info with Apple Store Connect API

I'm researching a way to get data from a specific app on the Apple Store with Apple Store Connect API, but I'm having a bit of trouble finding a solution.

Has anyone been able to get app information from the Apple Store? Maybe even get with Python? Example: Ratings, number of downloads

Upvotes: 1

Views: 3498

Answers (2)

Charles Inwald
Charles Inwald

Reputation: 195

See here.

The main idea is you are going to get yourself KEY_ID, ISSUER_ID and PATH_TO_KEY if you haven't already, then make a REST call with those in the headers and payload, as the requests require a bearer token.

EDIT: Also I am assuming this app is yours, as of writing I cannot find explicit reference in their documentation to scraping information from apps other than your own, as it targets automating workflows.

Upvotes: 1

Sauvik Dolui
Sauvik Dolui

Reputation: 5660

It seems like you are looking for this https://developer.apple.com/documentation/appstoreconnectapi/read_app_information.

Upvotes: 1

Related Questions