Sonatype Developer Priorities API

Use this REST API to export Sonatype Developer component priorities data, including security reachability data.

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/sonatype-developer-priorities-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sonatype-developer-priorities-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Sonatype Lifecycle Public REST Advanced Search Developer Priorities API
  version: 1.201.0-02
  description: Use the Advanced Search REST API to perform searches on Lifecycle application scan reports.
security:
- BasicAuth: []
  BearerAuth: []
tags:
- description: Use this REST API to export Sonatype Developer component priorities data, including security reachability data.
  name: Developer Priorities
paths:
  /api/v2/developer/priorities/{applicationId}/{scanId}:
    get:
      description: 'Use this method to retrieve all priorities by providing the application ID and scan ID.


        Permissions required: View IQ Elements'
      operationId: getPriorities
      parameters:
      - description: Enter the applicationId.
        in: path
        name: applicationId
        required: true
        schema:
          type: string
      - description: Enter the scanId.
        in: path
        name: scanId
        required: true
        schema:
          type: string
      - description: Whether to include remediation type and version for the component or not
        in: query
        name: includeRemediation
        schema:
          default: false
          type: boolean
      - description: Current page number.
        in: query
        name: page
        schema:
          default: 1
          format: int32
          type: integer
      - description: Enter the no. of results that should be visible per page.
        in: query
        name: pageSize
        schema:
          default: 10
          format: int32
          type: integer
      - description: Component name to filter by
        in: query
        name: componentNameFilter
        schema:
          type: string
      - description: Whether to enable Fail/Warn policy action filter or not
        in: query
        name: filterOnPolicyActions
        schema:
          default: true
          type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DevelopmentPrioritizationResults'
          description: 'The response field `priorities` returns prioritized components for the specified

            application ID and scan ID. Each result has relevant component information, reachability

            information, policy information, and a priority number, sorted by priority in descending order.

            Pagination is supported, and the default page size is 10.

            The parameter `includeRemediation` is required for the paginated result to

            include remediation information.'
      tags:
      - Developer Priorities
  /api/v2/developer/priorities/{applicationId}/{scanId}/export:
    get:
      description: 'Use this method to retrieve the priorities, by providing the applicationId and scanId.


        Permissions required: View IQ Elements'
      operationId: getPrioritiesExport
      parameters:
      - description: Enter the applicationId.
        in: path
        name: applicationId
        required: true
        schema:
          type: string
      - description: Enter the scanId.
        in: path
        name: scanId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 'The response is a CSV that contains all the prioritized components for the specified

            applicationId and scanId. Each line has all relevant component information, reachability

            information, policy information, and the priority assigned to it.'
      tags:
      - Developer Priorities
components:
  schemas:
    DevelopmentPrioritizationResults:
      properties:
        hasAutoWaiversConfigured:
          type: boolean
        priorities:
          $ref: '#/components/schemas/ApiPageResultPrioritizedComponent'
        scanIdFromLatestBuildStageEvaluation:
          type: string
      type: object
    ApiPageResultPrioritizedComponent:
      description: Paginated response wrapper
      properties:
        page:
          description: Current page number
          format: int32
          type: integer
        pageCount:
          description: Total number of pages
          format: int64
          type: integer
        pageSize:
          description: Number of items per page
          format: int32
          type: integer
        results:
          description: List of items for the current page
          items:
            $ref: '#/components/schemas/PrioritizedComponent'
          type: array
        total:
          description: Total number of items
          format: int64
          type: integer
      type: object
    PrioritizedComponent:
      description: List of items for the current page
      properties:
        action:
          type: string
        componentHash:
          type: string
        componentIdentifier:
          $ref: '#/components/schemas/ComponentIdentifier'
        dependencyType:
          type: string
        displayName:
          type: string
        hasAutoWaiver:
          type: boolean
        hasExpiredWaiver:
          type: boolean
        hasFailActionOnComponent:
          type: boolean
        hasSameViolationsOnMain:
          type: boolean
        hasSoonToExpireWaiver:
          type: boolean
        highestReachableThreat:
          format: int32
          type: integer
        highestThreat:
          format: int32
          type: integer
        highestThreatPolicyConstraintName:
          type: string
        highestThreatPolicyName:
          type: string
        isAllViolationsWaived:
          type: boolean
        priority:
          format: int32
          type: integer
        remediationType:
          enum:
          - next-no-violations
          - next-non-failing
          - next-no-violations-with-dependencies
          - next-non-failing-with-dependencies
          - inner-source-latest-non-breaking
          - inner-source-latest
          - recommended-non-breaking
          - recommended-non-breaking-with-dependencies
          type: string
        remediationVersion:
          type: string
        securityReachable:
          type: boolean
        waivedViolationsCount:
          format: int32
          type: integer
        waiverExpirationDetails:
          type: string
      type: object
    ComponentIdentifier:
      properties:
        coordinates:
          additionalProperties:
            type: string
          type: object
        format:
          type: string
      type: object
  securitySchemes:
    BasicAuth:
      scheme: basic
      type: http
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http