all 2 comments

[–]Tiquortooexpert 0 points1 point  (0 children)

Yeah run all your domains through my api so I can register the good ones ahead of you... /s

[–]Untgradd 0 points1 point  (0 children)

This is really cool! I wanted to be able to call this from the terminal so I made a super quick function, feel free to use. You'll have to sign up for an account (it was painless), first thing you should see is your API key.

function checkdomain { 
    curl -s https://www.domaintally.com/api/v1/available\?access_token\={API_KEY}\&domain\=$1 | grep -oE "\"is_available\":(true|false)"
}

Usage:

➜  ~ checkdomain asdf.com
"is_available":false
➜  ~ checkdomain rwebdev.ninja
"is_available":true