Created
March 3, 2021 16:17
-
-
Save rawnly/c3bb4f060a181d2392dd4fbc1c0e4408 to your computer and use it in GitHub Desktop.
downfor.io api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# https://downfor.io | |
# Usage: | |
# $ isDown google.com | |
# $ isDown fedevitale.dev | |
# | |
function isDown() { | |
curl "https://api-prod.downfor.cloud/httpcheck/$1" \ | |
--silent \ | |
--fail \ | |
-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:87.0) Gecko/20100101 Firefox/87.0' \ | |
-H 'Accept: */*' \ | |
-H 'Accept-Language: en' \ | |
-H 'Referer: https://downforeveryoneorjustme.com/' \ | |
-H 'Origin: https://downforeveryoneorjustme.com' \ | |
-H 'DNT: 1' \ | |
-H 'Connection: keep-alive' \ | |
--compressed | jq ".isDown" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment