getsla.cloud


A convenience API for people to get SLA values from cloud-sla over an API.

Please refer to cloud-sla for the service names you can use.


Get a single service:

REQUEST
GET https://getsla.cloud/api?services=aws-lambda
RESPONSE
Status 200 { "aws-lambda": 99.95 }

Get multiple services:

REQUEST
GET https://getsla.cloud/api?services=aws-lambda,amazon-cloudfront
RESPONSE
Status 200 { "aws-lambda": 99.95, "amazon-cloudfront": 99.9 }

Get all services from a given cloud provider:

REQUEST
GET https://getsla.cloud/api?services=aws
RESPONSE
Status 200 { "aws-lambda": 99.95, [...] }

You can also combine multiple full service sets, such as https://getsla.cloud/api?services=aws,azure


Built by Mikael Vesavuori