Search domains with expressions. Insert numbers, letters, and any TLDs in one query with Domine. It uses reverse-engineered Instant Domain Search API, so it could break at any time.
To install Domine without any additional steps, you can use a Docker:
$ docker run breitburg/domine check "example [1-12]am.co"
Alternatively, if you have Dart installed, you can run the following command in your terminal:
$ dart pub global activate domine
This command will install all the required dependencies and make $ domine
accessible.
- Numbers: Interate from 1 to 12 with
domine check "[1-12]am.com"
to check domains such as1am.com
,2am.com
... - Letters: Check the whole alphabet with
domine check "letter-[a-z].com"
forletter-a.com
,letter-b.com
... - Popular TLDs at once: Use the asterisk symbol to check multiple TLDs at once with
domine check "domine.*"
fordomine.com
,domine.org
... - Multiple queries: Ask Domine to make multiple queries at one command
domine check "[1-12]am.com" "letter-[a-z].com"
. - Combine expressions: Use
domine check "l[a-z]n[1-2].*"
to getlan1.com
,lan2.com
...
Shout out to Robert-Jan Keizer's
domainchecker
for some inspiration.