Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Availability of a name for an app in the AppStore

Is there a way to check if a name is available in the AppStore with an HTTP request? Without manually creating the App in iTunes Connect?

like image 226
Engin Kurutepe Avatar asked Apr 22 '11 15:04

Engin Kurutepe


People also ask

How do I check if an app name is available?

Go to the Google Play Store for Apps. Search by app name. Click the result for your app.

Can you reserve a name on the App Store?

You cannot reserve a name but you can have multiple apps with the same name.

How do you name an app in the App Store?

NOTE: You can only edit application name for the app store if your app is as an updated version or rejected state. Live app can not be able to change the name if you want to change name you must be create a new version of your live app.

Can two apps have the same name in Apple Store?

Two iOS apps currently can not have the same App store name (as entered in iTunes Connect), nor the same bundle ID suffix. They can, however, have the same name under the icon (the Bundle Display Name as entered in the app's plist).


1 Answers

UPDATE 2015-01-05, per SarahR:

If you already have an app created, you can use its SKU for the app you want to check, and you'll get an error on submission that that SKU has already been used. If you don't remember the SKU you used for an existing app, you can go to the app details page, choose "MORE", then "about this app". If you don't already have an app created, it is plausible that you could create a dummy app with a name nobody would ever want to use, and then use its SKU to bounce the names you really want to test (though again, be wary of terms of service on that).


ORIGINAL:

The trick to checking the availability of a name while brainstorming is to not fill in the other required fields. Each field is checked individually. You do have to use iTunes Connect — "Manage Your Applications" -> "Add New App" (don't fill in a SKU Number or bundle id); if the name has been reserved, it will give you the following errors:

  • You must select a Bundle ID.
  • The App Name you entered has already been used.
  • provide a SKU.

The second one is the winner, while the other two errors make sure you don't accidentally reserve the name before you're ready.

If you need to automate this process (which is probably against their terms of service), you can use any standard scraper. Mechanize is probably the most robust out of the box, but I think that's another question....

like image 95
Kaolin Fire Avatar answered Sep 28 '22 01:09

Kaolin Fire