GET/api/slas
Every service with its SLA tiers, credits and observed uptime
- vendorVendor slug, e.g. aws, microsoft, google-cloud, snowflake
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://uptime.fru.dev/api/slas?vendor=aws&limit=2"Sample response
JSON
{
"note": "Summaries of published SLAs; the contract you sign governs. Observed uptime is computed from vendors’ own status pages: see https://uptime...",
"services": [
{
"id": "aws-lambda",
"vendorSlug": "aws",
"vendorName": "AWS",
"domain": "aws.amazon.com",
"name": "AWS Lambda",
"category": "compute",
"slaUrl": "https://aws.amazon.com/lambda/sla/",
"slaVersion": "Last Updated: May 5, 2022",
"slaDate": "2022-05-05",
"measurement": "monthly",
"measurementNote": "Average of 5-minute Availability (share of requests not failing with 500/503) per AWS region",
"creditCap": "Up to 100% of Lambda charges in the affected region at the lowest tier; applied against future Lambda payments; issued only if over $1",
"claimWindow": "By the end of the second billing cycle after which the incident occurred",
"claimHow": "Open a case in the AWS Support Center with 'SLA Credit Request' in the subject line and request logs"
},
{
"id": "aws-bedrock",
"vendorSlug": "aws",
"vendorName": "AWS",
"domain": "aws.amazon.com",
"name": "Amazon Bedrock",
"category": "ai",
"slaUrl": "https://aws.amazon.com/bedrock/sla/",
"slaVersion": "Last Updated: October 4, 2023",
"slaDate": "2023-10-04",
"measurement": "monthly",
"measurementNote": "Average of 5-minute Availability (share of Bedrock API requests not returning a 500 error) per AWS region",
"creditCap": "Up to 100% of Bedrock charges in the affected region at the lowest tier; issued only if over $1",
"claimWindow": "By the end of the second billing cycle after which the incident occurred",
"claimHow": "Open a case in the AWS Support Center with 'SLA Credit Request' in the subject line and request logs"
}
],
"total": 6,
"limit": 2,
"offset": 0,
"next": "/api/slas?vendor=aws&limit=2&offset=2"
}