tldx helps you brainstorm available domain names fast.
tldx openai -p get,use -s ly,hub -t com,io,ai --only-available
βοΈ getopenaily.com is available
βοΈ useopenaihub.io is available
...- π Smart keyword-based domain permutations (prefixes, suffixes, TLDs)
- π― Regex pattern support for generating domain combinations (e.g., all 3-letter domains)
- π Fast and concurrent availability checks with RDAP
- π€ Streams results as they're found
- π¦ Supports multiple output formats (text, json, json-stream, json-array, csv, grouped, grouped-tld)
- π§ Supports TLD presets to quickly select groups of common or curated TLD sets
- π Optional filtering by domain length
- π§ Great for technical founders, indie hackers, and naming brainstorms
Usage:
tldx [keywords] [flags]
tldx [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
show-tld-presets Show available TLD presets
Flags:
-f, --format string Format of output (text, json, json-stream, json-array, csv, grouped, grouped-tld) (default "text")
-h, --help help for tldx
-m, --max-domain-length int Maximum length of domain name (default 64)
--no-color Disable colored output
-a, --only-available Show only available domains
-p, --prefixes strings Prefixes to add (e.g. get,my,use)
-r, --regex Enable regex pattern matching for domain keywords
--show-stats Show statistics at the end of execution
-s, --suffixes strings Suffixes to add (e.g. ify,ly)
--tld-preset string Use a tld preset (e.g. popular, tech)
-t, --tlds strings TLDs to check (e.g. com,io,ai)
-v, --verbose Show verbose output
--version version for tldx$ tldx google
β google.com is not available$ tldx google youtube reddit
β reddit.com is not available
β google.com is not available
β youtube.com is not availableUse regex patterns with the --regex flag to generate domain combinations based on patterns:
# Check all 3-letter .com domains
$ tldx '[a-z]{3}' --regex --tlds com --only-available
βοΈ aaa.com is available
βοΈ aab.com is available
βοΈ xyz.com is available
...# Check all 2-letter domains with specific TLDs
$ tldx '[a-z]{2}' --regex --tlds io,ai --only-available
βοΈ qa.io is available
βοΈ zx.ai is available
...# Combine patterns with prefixes
$ tldx '[a-z]{2}' --regex --prefixes my,get --tlds app --only-available
βοΈ myaa.app is available
βοΈ getab.app is available
...# Check domains starting with 'app'
$ tldx 'app[a-z]{2}' --regex --tlds dev,io --only-available
βοΈ appxy.dev is available
βοΈ appqz.io is available
...Note: Regex patterns are validated for safety. Patterns generating more than 500,000 combinations will be skipped.
You can use presets for tlds. For example:
$ tldx google --tld-preset popular
β google.com is not available
β google.co is not available
β google.io is not available
β google.net is not available
...$ tldx google --tld-preset geo
β google.au is not available
β google.de is not available
β google.us is not available
β google.eu is not available
...You can see all of the available presets:
$ tldx show-tld-presets
TLD Presets:
all (use all available TLDs)
cheap pw fun icu top xyz blog info shop site click
space store online website
popular ai me app com dev net org
tech io ai gg app dev tech codes tools cloud games
software digital network security systems
data technology
...
This permutates the keywords with the specified prefixes, suffixes, and TLDs, checking for availability:
$ tldx google --prefixes get,my --suffixes ly,hub --tlds com,io,ai
βοΈ mygooglely.com is available
βοΈ getgooglely.ai is available
β mygoogle.ai is not available
...Brace expansion is a built-in feature of most Unix shells (e.g., bash, zsh). You can use it like this:
tldx {get,use}{tldx,domains} {star,fork}ongithub
βοΈ gettldx.com is available
βοΈ starongithub.com is available
βοΈ forkongithub.com is available
β getdomains.com is not available
βοΈ usetldx.com is available
β usedomains.com is not available$ tldx google reddit facebook -p get,my -s ly,hub -t com,io,ai --only-available
βοΈ getgooglely.ai is available
βοΈ getreddithub.com is available
βοΈ getreddit.ai is available
βοΈ googlely.ai is available
βοΈ getredditly.com is available
βοΈ facebookly.io is available
...By default, output is human-readable (text). You can change it with the --format or -f flag:
$ tldx openai -p use -s ly -t io --format json
[
{
"domain": "openaily.io",
"available": true
},
{
"domain": "openai.io",
"available": false
},
...
]$ tldx openai -p use -s ly -t io --format json-stream
{"domain":"useopenaily.io","available":true}
{"domain":"openai.io","available":false}
...$ tldx openai -p use -s ly -t io --format csv
domain,available,error
openaily.io,true,
openai.io,false,
...Group and sort domains by their base keyword:
$ tldx openai google -p get,use -t com,io --format grouped
google
getgoogle.com
getgoogle.io
google.com
google.io
usegoogle.com
usegoogle.io
openai
getopenai.com
getopenai.io
openai.com
openai.io
useopenai.com
useopenai.ioGroup and sort domains by their top-level domain:
$ tldx openai google -p get,use -t com,io --format grouped-tld
.com
getgoogle.com
getopenai.com
google.com
openai.com
usegoogle.com
useopenai.com
.io
getgoogle.io
getopenai.io
google.io
openai.io
usegoogle.io
useopenai.iobrew install tldxor
brew tap brandonyoungdev/tldx
brew install tldxwinget install --id=brandonyoungdev.tldx -eTwo options are available for Arch Linux users:
Visit the Releases page.
Download the archive for your OS and architecture:
-
macOS / Linux:
tldx_<version>_<os>_<arch>.tar.gz -
Windows:
tldx_<version>_windows_<arch>.zip
Extract the binary and move it to a directory in your $PATH:
# Example for Linux/macOS
tar -xzf tldx_<version>_<os>_<arch>.tar.gz
mv tldx /usr/local/bin/go install github.com/brandonyoungdev/tldx@latest
