Saasment Security Posture API

SaaS security posture assessment and monitoring

Operations 2

GET /posture/score Get Security Posture Score #
GET /posture/applications List Monitored Applications #

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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/saasment-security-posture-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

saasment-security-posture-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Saasment Alerts Security Posture 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: Security Posture
  description: SaaS security posture assessment and monitoring
paths:
  /posture/score:
    get:
      operationId: getPostureScore
      summary: Get Security Posture Score
      description: Returns the overall SaaS security posture score and breakdown by security domain including identity, access, data, and compliance.
      tags:
      - Security Posture
      parameters:
      - name: app_ids
        in: query
        schema:
          type: string
        description: Comma-separated list of application IDs to filter
      responses:
        '200':
          description: Security posture score
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostureScore'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /posture/applications:
    get:
      operationId: listMonitoredApplications
      summary: List Monitored Applications
      description: Returns a list of SaaS applications being monitored by Saasment.
      tags:
      - Security Posture
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          default: 1
      - name: per_page
        in: query
        schema:
          type: integer
          default: 20
      responses:
        '200':
          description: List of monitored applications
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationList'
components:
  schemas:
    PostureScore:
      type: object
      properties:
        overall_score:
          type: number
          minimum: 0
          maximum: 100
        grade:
          type: string
          enum:
          - A
          - B
          - C
          - D
          - F
        domains:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              score:
                type: number
              misconfigurations:
                type: integer
        last_updated:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        code:
          type: integer
    Application:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        category:
          type: string
          example: Identity & Access Management
        vendor:
          type: string
        connected:
          type: boolean
        posture_score:
          type: number
        misconfiguration_count:
          type: integer
        last_scanned:
          type: string
          format: date-time
    ApplicationList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Application'
        total:
          type: integer
        page:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token from Saasment platform settings