Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/saasment-compliance-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Saasment Alerts Compliance API
description: Saasment API provides programmatic access to AI-powered SaaS security posture management (SSPM) and cloud cost optimization capabilities. The API enables automated security configuration scanning, compliance assessment, misconfiguration detection, breach and attack simulation, privileged access management, and cost optimization recommendations across your SaaS and cloud application estate.
version: 1.0.0
contact:
name: Saasment Support
url: https://www.saasment.com
servers:
- url: https://api.saasment.com/v1
description: Saasment API v1
security:
- BearerAuth: []
tags:
- name: Compliance
description: Compliance assessment and reporting
paths:
/compliance/frameworks:
get:
operationId: listComplianceFrameworks
summary: List Compliance Frameworks
description: Returns available compliance frameworks (SOC 2, ISO 27001, GDPR, etc.).
tags:
- Compliance
responses:
'200':
description: Compliance framework list
content:
application/json:
schema:
$ref: '#/components/schemas/ComplianceFrameworkList'
/compliance/assessments:
get:
operationId: listComplianceAssessments
summary: List Compliance Assessments
description: Returns compliance assessment results by framework.
tags:
- Compliance
parameters:
- name: framework_id
in: query
schema:
type: string
- name: app_id
in: query
schema:
type: string
responses:
'200':
description: Compliance assessment results
content:
application/json:
schema:
$ref: '#/components/schemas/ComplianceAssessmentList'
components:
schemas:
ComplianceAssessmentList:
type: object
properties:
items:
type: array
items:
type: object
properties:
framework_id:
type: string
framework_name:
type: string
app_id:
type: string
compliance_score:
type: number
controls_passed:
type: integer
controls_failed:
type: integer
assessed_at:
type: string
format: date-time
ComplianceFrameworkList:
type: object
properties:
items:
type: array
items:
type: object
properties:
id:
type: string
name:
type: string
version:
type: string
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: Bearer token from Saasment platform settings