> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hacktron.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get batch verdicts

> Get fast dependency verdicts for many packages at once.

Returns fast dependency verdicts for a list of packages in a single request, used by landing-page and GitHub Action scans to flag known-malicious dependencies. Pass the packages to check in the `packages` array of the request body.

To look up a single package instead, use [Get package verdict](/api-reference/hfw/get-package-verdict).

<Info>
  This is a public, fast-mode endpoint and does **not** require authentication.
  It is scoped to feed-backed verdicts and returns immediately.
</Info>


## OpenAPI

````yaml openapi.json POST /hfw/verdicts/batch
openapi: 3.0.0
info:
  title: Hacktron REST API
  description: Public REST API for programmatic access to Hacktron
  version: '1.0'
  contact: {}
servers:
  - url: https://api.hacktron.ai/v1
security:
  - api-key: []
tags: []
paths:
  /hfw/verdicts/batch:
    post:
      tags:
        - REST API - HFW
      summary: Get fast dependency verdicts for landing and GitHub Action scans
      description: >-
        Public, fast-mode HFW batch verdict proxy. This endpoint is
        intentionally scoped to feed-backed verdicts and can be moved behind
        X-Api-Key later.
      operationId: RestHfwController_getBatchVerdicts
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RestHfwBatchRequestDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestHfwBatchResponseDto'
      security: []
components:
  schemas:
    RestHfwBatchRequestDto:
      type: object
      properties:
        packages:
          type: array
          items:
            $ref: '#/components/schemas/RestHfwBatchPackageDto'
      required:
        - packages
    RestHfwBatchResponseDto:
      type: object
      properties:
        status:
          type: string
        verdicts:
          type: array
          items:
            $ref: '#/components/schemas/RestHfwVerdictResponseDto'
        errors:
          type: array
          items:
            type: object
      required:
        - status
        - verdicts
        - errors
    RestHfwBatchPackageDto:
      type: object
      properties:
        ecosystem:
          type: string
          enum:
            - npm
            - pypi
        package:
          type: string
        version:
          type: string
      required:
        - ecosystem
        - package
        - version
    RestHfwVerdictResponseDto:
      type: object
      properties:
        status:
          type: string
          enum:
            - ready
            - pending
            - scanning
        ecosystem:
          type: string
          enum:
            - npm
            - pypi
        package:
          type: string
        version:
          type: string
        level:
          type: string
          enum:
            - clean
            - suspicious
            - malicious
            - unknown
        confidence:
          type: string
        summary:
          type: string
        findings:
          type: array
          items:
            type: object
        source:
          type: string
        osv_id:
          type: string
      required:
        - status
        - ecosystem
        - package
        - version
        - level
        - confidence
        - summary
        - findings
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key

````