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:
REQUESTGET https://getsla.cloud/api?services=aws-lambda
RESPONSEStatus 200
{
"aws-lambda": 99.95
}
Get multiple services:
REQUESTGET https://getsla.cloud/api?services=aws-lambda,amazon-cloudfront
RESPONSEStatus 200
{
"aws-lambda": 99.95,
"amazon-cloudfront": 99.9
}
Get all services from a given cloud provider:
REQUESTGET https://getsla.cloud/api?services=aws
RESPONSEStatus 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