Make every one of your 100 characters earn its place
The iOS keyword field is one of the highest-leverage ASO inputs and one of the most commonly wasted, because developers fill it with words Apple already indexes from the app name. This builder strips those out, removes duplicates and stop words, splits phrases into the single tokens Apple actually matches on, and greedily packs the highest-value terms into exactly 100 characters.
How it works
You enter your app title and subtitle, plus features, competitor names, and extra related terms. Apple already indexes title and subtitle words for search, so the builder excludes any single-word term that appears there. It also drops common stop words like the, app, and free, which Apple auto-indexes, and removes duplicates. Multi-word phrases are split into unique single tokens because the App Store recombines comma-separated keywords into multi-word searches on its own — so storing photo and editor separately also covers “photo editor”. Finally it fills the field greedily with commas and no spaces, since spaces consume bytes without helping matching, and shows you both what fit and what overflowed.
Tips and example
- Don’t repeat your app name — if your title is
PhotoFlow: Photo Editor, the builder will skipphotoandeditorautomatically. - Prefer single specific tokens over long phrases; Apple builds the phrases for you across the comma list.
- Put your most important terms first in the inputs — they get packed before lower-priority ones if space runs out.
- Review the “did not fit” list each release and rotate terms based on which searches actually convert.