Golly is a simple tool used to analyze endpoints availability worldwide.
See the docs (http://docs.gollyapi.apiary.io/)
Golly is being developed to analyze availability of services worldwide enabling API consumers to identify service failures and route issues through the internet.
Path: /syncAnalysis
Headers: Content-Type: application/json
Body:
{
"token":"anyGeneratedUniqueStringYouWantToSend",
"httpMethod":"GET",
"url":"http://google.com",
"headers":{"Content-Type":"application/json"},
"alwaysReturnBody":false
}
A request will be sent to google.com and the result will be returned synchronously.
Path : /analysis
Headers: Content-Type: application/json
Body:
{
"token":"anyGeneratedUniqueStringYouWantToSend",
"httpMethod":"GET",
"url":"http://google.com",
"alwaysReturnBody":false,
"body":"",
"headers":{"Content-Type":"application/json"},
"webhookAddress":"http://someAddressToSendResponse/somePath"
}
A request will be sent to google.com and the result will be returned asynchronously through a webhook.