Brandable Domain Creation: Invent a Great Name from Scratch
Over the past decade, most common English words in .com have been registered, and the availability of "ideal domains" keeps shrinking. More teams are taking a different path: instead of hunting for an existing word, they invent one. Brands like Google, Kodak, Etsy, and Spotify are not dictionary words — they were created. These are brandable domains, a natural way out when good names are scarce.
What is a brandable domain
A brandable domain is a name invented, combined, or reshaped for the brand, rather than an existing word describing the business. Its advantages:
- High availability: coined spellings are rarely taken;
- Strong distinctiveness: unique spelling is easier to trademark and recognize;
- Room to grow: it does not bind to a single business keyword, so future pivots are not limited.
The risk is that memorability and spelling need deliberate design, or the name becomes an "unmemorable random string."
Six common methods of coining names
- Blends: join two meaningful words, like Face+Book, or root combinations like Grammarly;
- Short word + suffix: add syllables like -ly, -ify, -io, e.g., Snaply, Verify;
- Vowel swapping: modify a familiar word's vowels, e.g., Flickr from flicker;
- Latin/Greek roots: combine roots with meaning, e.g., Aqua, Nova, Vera;
- Reduplication and onomatopoeia: repeat a syllable or mimic a sound — short and punchy;
- Abbreviations and initials: shorten long full names, but watch readability.
These six methods rarely work in isolation; mature brands are usually the result of combining several. The table below lists well-known brandable domains alongside their coining method — a useful inspiration list:
| Brand domain | Method | Origin / association |
|---|---|---|
| Spotify | blend + respelling | spot (to see) + identify |
| Etsy | onomatopoeia / coinage | from Italian "eh, sì" ("oh yes") |
| Flickr | vowel swap | flicker minus the e |
| Zillow | onomatopoeia + suffix | a reshaping of zillions |
| Twilio | Latin root + suffix | a variant of "twilight" |
A complete coining walkthrough
Rather than abstract methods, let's work through a concrete example. Suppose you are naming a log-analysis tool for independent developers: it should sound lightweight and professional, and the .com should be available. Proceed in a few steps:
- List keywords first: log, insight, trace, pulse, signal, peek — words that roughly describe the product;
- Try blends: log + pulse gives LogPulse; trace + insight gives TraceInsight. The latter is 12 letters, hard to say, so drop it early;
- Short word plus suffix: extend with -ly or -io, e.g., Tracefly, Logview (respell if taken). Keep in mind the -ly family is already crowded with SaaS brands, so collisions are likely;
- Vowel swap: turn peak into Peek, echo into Echoa — short, memorable, and distinctive to spell;
- Cross-language association: the Latin root spec- (to see, to watch) yields Spective or Specly — expressing "watch your logs" while staying unique.
Then run bulk availability checks and word-of-mouth tests, and lock in one candidate. This "quantity first, then constrain, then verify" flow is far more efficient than staring at a dictionary and guessing, and it sharply reduces the cost of renaming later.
Verify availability
Once you coin a name, validate it immediately:
- Use a bulk check tool to test the main extensions at once (see TLD comparison);
- If .com is taken, evaluate new extensions or respelling (see strategies when your .com is taken);
- Check that the same handle is available on major social platforms to keep the brand consistent.
Bulk verification commands
One coining session typically produces dozens of candidates, and checking whois by hand through a web page is slow. A shell loop can probe them in bulk and reduce results to a list:
for name in loggly tracefly spective peeklog; do
whois "$name.com" 2>/dev/null | grep -qi "No match\|NOT FOUND" \
&& echo "$name.com AVAILABLE" || echo "$name.com taken"
done
Note that whois output format varies wildly between registries — the "no record" wording differs everywhere, so the script above is only a first pass. A more reliable route is a registrar's bulk lookup API (e.g., Namecheap or GoDaddy bulk endpoints) or a third-party service with a REST interface: submit the whole candidate list at once, get an available/taken report, then sort by price and spend the budget on candidates that also pass trademark screening.
Trademark and legal screening
Coining a word does not skip trademark screening. A unique spelling does not guarantee no infringement — a blend can still fall within the proximity of someone else's mark. Before registering:
- Search trademark databases in your target markets (see domain trademark screening);
- Search homophones and near spellings to assess confusion risk;
- Consider consulting a trademark professional, especially if you plan to register the mark.
Word-of-mouth testing checklist
- Oral test: read the name to friends and see if they spell it after one hearing;
- Spelling test: have different people relay it verbally and check for ambiguity;
- Word-break test: make sure letter combos cannot be misread as awkward words;
- Multilingual test: for overseas markets, check the name's meaning in other languages;
- Social test: check the same handle across major platforms.
The value of brandable domains
A highly distinctive brandable domain is itself an asset. As aftermarket prices rise (see the premium domain market), a well-nurtured brandable domain is often worth far more than the tens of dollars it cost to register.
FAQ
- What if nobody can spell my coined name? The construction is not "readable" enough. The bar is simple: read it aloud once and the other person should spell it within a few seconds; if not, go back to blends and common syllable patterns instead of forcing a spelling.
- Does a brandable domain guarantee a trademark? No. A unique spelling usually passes examination more easily, but the final call belongs to the trademark office. Run proximity searches first (see domain trademark screening) and evaluate homophones and near spellings.
- Can a completely unrelated word hurt marketing? Yes. Coining is not "random noise" — users should associate something with the name. Kodak has no dictionary meaning, yet it sounds like the "click" of a camera shutter; onomatopoeia is itself meaning, and a coinage without any association has no memory hook.
16IDC Takeaway
Coining names is a classic "trade creativity for scarcity" play. It suits teams that want to go global and are willing to invest in building brand awareness; if your business depends heavily on search traffic and obvious keywords, a conventional name may be safer. For more domain planning methods, see the Domain Planning category.
Source: https://www.namecheap.com/blog/how-to-name-your-startup/