App Store link formats

A reference for the parts of an App Store URL, since most of them are optional and a few change behaviour.

6 August 2026 by PAD team

The canonical form

https://apps.apple.com/us/app/example-app/id123456789
PartRequiredNotes
/us/nocountry code, omit to use the visitor's store
example-appnocosmetic slug, ignored by Apple
id123456789yesthe only part that identifies the app

The shortest working form is https://apps.apple.com/app/id123456789. Dropping the country code is usually right for international audiences, since Apple sends visitors to their own storefront.

Useful parameters

ParameterEffect
?ct=namecampaign token reported in App Store Connect
?pt=idprovider token identifying you
?mt=8media type, apps, largely vestigial
?action=write-reviewopens the review sheet directly

The review one is worth knowing: linking to it from inside your app is the polite way to ask, and it skips a step for the user.

Schemes

itms-appss:// is what Apple redirects https store URLs to, and it opens the native App Store. itms-apps:// is the older form. Neither can be followed by an in-app browser, which is the root of the blank page problem.

Other Apple domains

Google Play, for comparison

https://play.google.com/store/apps/details?id=com.example.app
  &referrer=utm_source%3Dinstagram

Play uses a package name rather than a numeric identifier, and its attribution parameter is a single encoded query string rather than two flat values.

We build the final URL correctly per platform, including the parameters that matter.

Create a link

Related