Skip to content

Instantly share code, notes, and snippets.

@rawnly
Created March 3, 2021 16:17
Show Gist options
  • Save rawnly/c3bb4f060a181d2392dd4fbc1c0e4408 to your computer and use it in GitHub Desktop.
Save rawnly/c3bb4f060a181d2392dd4fbc1c0e4408 to your computer and use it in GitHub Desktop.
downfor.io api
#
# 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