Root (fka Slim.ai) Security Findings API

The Security Findings API from Root (fka Slim.ai) — 4 operation(s) for security findings.

Operations 4

GET /v3/security_findings List security findings with pagination
POST /v3/security_findings/remediation_counts Remediation vulnerability counts by tag
GET /v3/security_findings/summary Get security findings summary (counts by status and severity)
GET /v3/security_findings/summary/daily Get security findings daily summary (counts by day, status, and severity)

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/root-fka-slimai-security-findings-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

root-fka-slimai-security-findings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This is the API documentation for Root.io.
  title: Root.io Accounts Security Findings API
  termsOfService: https://www.root.io/terms-of-service
  contact: {}
  version: '1.0'
servers:
- url: https://api.root.io
tags:
- name: Security Findings
paths:
  /v3/security_findings:
    get:
      security:
      - BasicAuth: []
      description: Retrieves security findings for the authenticated org with cursor-based pagination and filtering
      tags:
      - Security Findings
      summary: List security findings with pagination
      parameters:
      - description: After cursor for next page
        name: after
        in: query
        schema:
          type: string
      - description: Before cursor for previous page
        name: before
        in: query
        schema:
          type: string
      - description: Page size (max 1000)
        name: limit
        in: query
        schema:
          type: integer
          default: 100
      - description: Ordering (e.g., 'created_at:desc', 'status_changed_at:desc')
        name: order
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - description: Filter by root registry tag ID (Image Report)
        name: rrt_id
        in: query
        schema:
          type: string
      - description: Filter by AVR ID (Image Report)
        name: avr_id
        in: query
        schema:
          type: string
      - description: Filter by package ID (Library Report)
        name: package_id
        in: query
        schema:
          type: string
      - description: Filter by CVE identifier
        name: cve_id
        in: query
        schema:
          type: string
      - description: Filter by package source name
        name: src_name
        in: query
        schema:
          type: string
      - description: Filter by package ecosystem
        name: ecosystem
        in: query
        schema:
          type: string
      - description: Filter by OS distro release
        name: os_distro_release
        in: query
        schema:
          type: string
      - description: Filter by package version
        name: version
        in: query
        schema:
          type: string
      - description: Filter by finding type ('image' or 'library')
        name: finding_type
        in: query
        schema:
          type: string
          enum:
          - image
          - library
      - description: Filter by remediation status
        name: status
        in: query
        schema:
          type: string
          enum:
          - researching
          - creating_a_patch
          - patch_available
          - fixed
      - description: Filter by severity; repeat for multiple
        name: severity
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            enum:
            - critical
            - high
            - medium
            - low
            - unknown
            type: string
      - description: os/app layer; repeat both to clear filter
        name: level
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            enum:
            - os
            - app
            type: string
      - description: Filter by supported ecosystem status (true = supported ecosystem, false = non-supported ecosystem)
        name: supported_ecosystem
        in: query
        schema:
          type: boolean
      - description: 'Filter: created_at >= (RFC3339 timestamp)'
        name: created_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: created_at < (RFC3339 timestamp)'
        name: created_at_lt
        in: query
        schema:
          type: string
      - description: 'Filter: fixed_at >= (RFC3339 timestamp)'
        name: fixed_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: fixed_at < (RFC3339 timestamp)'
        name: fixed_at_lt
        in: query
        schema:
          type: string
      - description: 'Filter: status_changed_at >= (RFC3339 timestamp)'
        name: status_changed_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: status_changed_at < (RFC3339 timestamp)'
        name: status_changed_at_lt
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSecurityFindingsPagedResponse'
  /v3/security_findings/remediation_counts:
    post:
      security:
      - BasicAuth: []
      description: 'Returns before/after vulnerability counts per image tag for remediation workflows (deduplicated per vulnerability).

        Before = fixed + patch_available + creating_a_patch + researching; after = researching + creating_a_patch + patch_available only.

        OS vs app layer follows the same rules as list/summary (non–app ecosystems vs app ecosystems). Request order preserved; duplicate IDs may repeat; missing tags are zeros.

        POST body fits long rrt_ids lists; levels includes os, app, or both (both → top-level + app_level).'
      tags:
      - Security Findings
      summary: Remediation vulnerability counts by tag
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemediationVulnerabilityCountsResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemediationVulnerabilityCountsRequest'
        description: rrt_ids + levels
        required: true
  /v3/security_findings/summary:
    get:
      security:
      - BasicAuth: []
      tags:
      - Security Findings
      summary: Get security findings summary (counts by status and severity)
      parameters:
      - description: Filter by root registry tag ID
        name: rrt_id
        in: query
        schema:
          type: string
      - description: Filter by AVR ID
        name: avr_id
        in: query
        schema:
          type: string
      - description: Filter by CVE identifier
        name: cve_id
        in: query
        schema:
          type: string
      - description: Filter by package source name
        name: src_name
        in: query
        schema:
          type: string
      - description: Filter by package ecosystem
        name: ecosystem
        in: query
        schema:
          type: string
      - description: Filter by OS distro release
        name: os_distro_release
        in: query
        schema:
          type: string
      - description: Filter by package version
        name: version
        in: query
        schema:
          type: string
      - description: Filter by finding type ('image' or 'library')
        name: finding_type
        in: query
        schema:
          type: string
          enum:
          - image
          - library
      - description: Filter by remediation status
        name: status
        in: query
        schema:
          type: string
          enum:
          - researching
          - creating_a_patch
          - patch_available
          - fixed
      - description: Filter by severity; repeat for multiple
        name: severity
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            enum:
            - critical
            - high
            - medium
            - low
            - unknown
            type: string
      - description: os/app layer; repeat both to clear filter
        name: level
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            enum:
            - os
            - app
            type: string
      - description: Filter by supported ecosystem status (true = supported ecosystem, false = non-supported ecosystem)
        name: supported_ecosystem
        in: query
        schema:
          type: boolean
      - description: 'Filter: created_at >= (RFC3339 timestamp)'
        name: created_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: created_at < (RFC3339 timestamp)'
        name: created_at_lt
        in: query
        schema:
          type: string
      - description: 'Filter: fixed_at >= (RFC3339 timestamp)'
        name: fixed_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: fixed_at < (RFC3339 timestamp)'
        name: fixed_at_lt
        in: query
        schema:
          type: string
      - description: 'Filter: status_changed_at >= (RFC3339 timestamp)'
        name: status_changed_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: status_changed_at < (RFC3339 timestamp)'
        name: status_changed_at_lt
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityFindingsSummaryResponse'
  /v3/security_findings/summary/daily:
    get:
      security:
      - BasicAuth: []
      description: Returns finding counts grouped by day, status, and severity. Use created_at_gte/created_at_lt for an explicit date range, or limit for the most recent N days (mutually exclusive; date range takes precedence).
      tags:
      - Security Findings
      summary: Get security findings daily summary (counts by day, status, and severity)
      parameters:
      - description: Number of most recent days to include (default 84 / 12 weeks, max 365). Ignored when created_at_gte or created_at_lt is set.
        name: limit
        in: query
        schema:
          type: integer
      - description: 'Filter: created_at >= (RFC3339 timestamp)'
        name: created_at_gte
        in: query
        schema:
          type: string
      - description: 'Filter: created_at < (RFC3339 timestamp)'
        name: created_at_lt
        in: query
        schema:
          type: string
      - description: Ordering (e.g., 'created_at:desc')
        name: order
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - description: Filter by supported ecosystem status (true = supported ecosystem, false = non-supported ecosystem)
        name: supported_ecosystem
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityFindingsDailySummaryResponse'
components:
  schemas:
    SecurityFindingsSummaryRow:
      type: object
      properties:
        count:
          type: integer
        severity:
          $ref: '#/components/schemas/v3.CVESeverity'
        status:
          $ref: '#/components/schemas/v3.FindingStatus'
    v3.FindingStatus:
      type: string
      enum:
      - researching
      - creating_a_patch
      - patch_available
      - fixed
      x-enum-varnames:
      - FindingStatusResearching
      - FindingStatusCreatingAPatch
      - FindingStatusPatchAvailable
      - FindingStatusFixed
    RemediationVulnerabilityCountsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RemediationVulnerabilityCountsItem'
    Cursor:
      type: object
      properties:
        after:
          type: string
        before:
          type: string
        limit:
          type: integer
        total_count:
          description: TotalCount is the number of rows matching the list filters for endpoints that populate it (e.g. security findings list). Response-only.
          type: integer
    v3.CVESeverity:
      type: string
      enum:
      - critical
      - high
      - medium
      - low
      - unknown
      x-enum-varnames:
      - CveSeverityCritical
      - CveSeverityHigh
      - CveSeverityMedium
      - CveSeverityLow
      - CveSeverityUnknown
    v3.VulnerabilityCountsBreakdown:
      type: object
      properties:
        critical:
          type: integer
        high:
          type: integer
        low:
          type: integer
        medium:
          type: integer
        unknown:
          type: integer
    SecurityFindingsSummaryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/SecurityFindingsSummaryRow'
    RemediationVulnerabilityCountsRequest:
      type: object
      required:
      - levels
      - rrt_ids
      properties:
        levels:
          type: array
          minItems: 1
          items:
            type: string
        rrt_ids:
          type: array
          minItems: 1
          items:
            type: string
    ListSecurityFindingsPagedResponse:
      type: object
      properties:
        cursor:
          $ref: '#/components/schemas/Cursor'
        data:
          type: array
          items:
            $ref: '#/components/schemas/SecurityFindingResponse'
    SecurityFindingResponse:
      type: object
      properties:
        asset:
          type: string
        avr_id:
          type: string
        created_at:
          type: string
        cve_id:
          type: string
        cvss_score:
          type: number
        cvss_vector:
          type: string
        description:
          type: string
        finding_type:
          $ref: '#/components/schemas/v3.FindingType'
        fixed_at:
          type: string
        fixed_in_version:
          type: string
        has_artifacts:
          type: boolean
        id:
          type: string
        nvd_link:
          type: string
        os_distro_release:
          type: string
        package_arch:
          type: string
        package_ecosystem:
          type: string
        package_id:
          type: string
        package_licenses:
          type: array
          items:
            type: string
        package_name:
          type: string
        package_src_name:
          type: string
        package_version:
          type: string
        severity:
          $ref: '#/components/schemas/v3.CVESeverity'
        status:
          $ref: '#/components/schemas/v3.FindingStatus'
        status_changed_at:
          type: string
        title:
          type: string
    SecurityFindingsDailySummaryRow:
      type: object
      properties:
        count:
          type: integer
        severity:
          $ref: '#/components/schemas/v3.CVESeverity'
        status:
          $ref: '#/components/schemas/v3.FindingStatus'
    SecurityFindingsDailySummaryResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/SecurityFindingsDailySummaryRow'
    v3.VulnerabilityCounts:
      type: object
      properties:
        app_level:
          description: App-level vulnerability counts (nil/omitted for old records)
          allOf:
          - $ref: '#/components/schemas/v3.VulnerabilityCountsBreakdown'
        critical:
          description: OS-level vulnerability counts (top-level for backward compatibility)
          type: integer
        high:
          type: integer
        low:
          type: integer
        medium:
          type: integer
        unknown:
          type: integer
    RemediationVulnerabilityCountsItem:
      type: object
      properties:
        after:
          $ref: '#/components/schemas/v3.VulnerabilityCounts'
        before:
          $ref: '#/components/schemas/v3.VulnerabilityCounts'
        root_registry_tag_id:
          type: string
    v3.FindingType:
      type: string
      enum:
      - library
      - image
      x-enum-varnames:
      - FindingTypeLibrary
      - FindingTypeImage
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic