Veracode Findings API

Application security findings

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/veracode-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 email required.

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

OpenAPI Specification

veracode-findings-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Veracode Applications REST API Credentials Findings API
  description: The Veracode Applications REST API provides programmatic access to application profiles, sandboxes, and policy evaluations in the Veracode Platform. Enables automation of portfolio management, compliance tracking, and CI/CD integration. Authentication uses HMAC with API ID/key credentials.
  version: 1.0.0
  contact:
    name: Veracode Support
    url: https://community.veracode.com/
  termsOfService: https://www.veracode.com/legal-notice
servers:
- url: https://api.veracode.com
  description: Veracode Commercial Region API
security:
- HmacAuth: []
tags:
- name: Findings
  description: Application security findings
paths:
  /appsec/v2/applications/{applicationGuid}/findings:
    get:
      operationId: listFindings
      summary: List Findings
      description: Retrieves security findings for an application. Supports filtering by CWE, severity, scan type, CVSS score, policy violations, and annotation status.
      tags:
      - Findings
      parameters:
      - name: applicationGuid
        in: path
        required: true
        description: Application unique identifier
        schema:
          type: string
          format: uuid
      - name: scan_type
        in: query
        description: Filter by scan type
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - STATIC
            - DYNAMIC
            - MANUAL
            - SCA
      - name: severity
        in: query
        description: Filter by severity level (0=Informational, 1=Very Low, 2=Low, 3=Medium, 4=High, 5=Very High)
        required: false
        schema:
          type: integer
          minimum: 0
          maximum: 5
      - name: severity_gte
        in: query
        description: Filter findings with severity greater than or equal to this value
        required: false
        schema:
          type: integer
          minimum: 0
          maximum: 5
      - name: cwe
        in: query
        description: Filter by CWE ID
        required: false
        schema:
          type: string
      - name: cvss_gte
        in: query
        description: Filter findings with CVSS score greater than or equal to this value
        required: false
        schema:
          type: number
          minimum: 0
          maximum: 10
      - name: violates_policy
        in: query
        description: Filter to only policy-violating findings
        required: false
        schema:
          type: boolean
      - name: include_annot
        in: query
        description: Include annotation data in response
        required: false
        schema:
          type: boolean
          default: false
      - name: new
        in: query
        description: Filter to only new findings
        required: false
        schema:
          type: boolean
      - name: context
        in: query
        description: Sandbox GUID for sandbox-specific findings
        required: false
        schema:
          type: string
      - name: page
        in: query
        required: false
        schema:
          type: integer
          default: 0
      - name: size
        in: query
        required: false
        schema:
          type: integer
          default: 20
          maximum: 500
      responses:
        '200':
          description: List of findings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FindingsPage'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /appsec/v2/applications/{applicationGuid}/findings/{issueId}/dynamic_flaw_info:
    get:
      operationId: getDynamicFlawInfo
      summary: Get Dynamic Flaw Info
      description: Returns detailed information for a Dynamic Analysis vulnerability finding.
      tags:
      - Findings
      parameters:
      - name: applicationGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: issueId
        in: path
        required: true
        description: Finding issue ID
        schema:
          type: integer
      responses:
        '200':
          description: Dynamic flaw details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DynamicFlawInfo'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /appsec/v2/applications/{applicationGuid}/findings/{findingId}/static_flaw_info:
    get:
      operationId: getStaticFlawInfo
      summary: Get Static Flaw Info
      description: Returns static analysis flaw data and code paths for a finding.
      tags:
      - Findings
      parameters:
      - name: applicationGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: findingId
        in: path
        required: true
        description: Finding unique identifier
        schema:
          type: integer
      responses:
        '200':
          description: Static flaw details with code paths
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticFlawInfo'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    PageInfo:
      type: object
      properties:
        total_elements:
          type: integer
        total_pages:
          type: integer
        size:
          type: integer
        number:
          type: integer
    FindingsPage:
      type: object
      properties:
        _embedded:
          type: object
          properties:
            findings:
              type: array
              items:
                $ref: '#/components/schemas/Finding'
        page:
          $ref: '#/components/schemas/PageInfo'
    Error:
      type: object
      properties:
        _status:
          type: string
        message:
          type: string
        http_code:
          type: integer
    Finding:
      type: object
      properties:
        issue_id:
          type: integer
          description: Unique issue ID
        scan_type:
          type: string
          enum:
          - STATIC
          - DYNAMIC
          - MANUAL
          - SCA
          description: Type of scan that identified this finding
        severity:
          type: integer
          minimum: 0
          maximum: 5
          description: Severity level (0=Informational to 5=Very High)
        cwe:
          type: object
          properties:
            id:
              type: integer
            name:
              type: string
            href:
              type: string
        finding_status:
          type: object
          properties:
            status:
              type: string
              enum:
              - OPEN
              - CLOSED
              - MITIGATED
            new:
              type: boolean
            mitigation_review_status:
              type: string
            first_found_date:
              type: string
              format: date-time
            last_seen_date:
              type: string
              format: date-time
        violates_policy:
          type: boolean
          description: Whether this finding violates the applied policy
        cvss:
          type: number
          description: CVSS score
        finding_details:
          type: object
          description: Scan-type-specific details
        annotations:
          type: array
          items:
            $ref: '#/components/schemas/Annotation'
    DynamicFlawInfo:
      type: object
      properties:
        url:
          type: string
        http_transaction:
          type: object
          properties:
            request:
              type: string
            response:
              type: string
        exploit_evidence:
          type: string
    StaticFlawInfo:
      type: object
      properties:
        data_paths:
          type: array
          items:
            type: object
            properties:
              file_path:
                type: string
              line_number:
                type: integer
              file_name:
                type: string
    Annotation:
      type: object
      properties:
        action:
          type: string
          enum:
          - APPROVED
          - REJECTED
          - COMMENT
        comment:
          type: string
        created:
          type: string
          format: date-time
        modified:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid HMAC credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    HmacAuth:
      type: http
      scheme: veracode_hmac
      description: HMAC authentication with Veracode API ID and key credentials