> ## 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.

# List malware feed

> List known-malware feed entries.

Returns entries from the known-malware feed, used to generate the package sitemap. Page through the feed with the `limit` and `offset` query parameters.

<Info>This is a public endpoint and does **not** require authentication.</Info>


## OpenAPI

````yaml openapi.json GET /hfw/osv/feed
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/osv/feed:
    get:
      tags:
        - REST API - HFW
      summary: List known-malware feed entries for package sitemap generation
      operationId: RestHfwController_getOsvFeed
      parameters:
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 500
            default: 200
            type: number
        - name: offset
          required: false
          in: query
          schema:
            minimum: 0
            default: 0
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestHfwOsvFeedResponseDto'
      security: []
components:
  schemas:
    RestHfwOsvFeedResponseDto:
      type: object
      properties:
        total:
          type: number
        results:
          type: array
          items:
            $ref: '#/components/schemas/RestHfwOsvFeedResultDto'
      required:
        - results
    RestHfwOsvFeedResultDto:
      type: object
      properties:
        ecosystem:
          type: string
        package:
          type: string
        versions:
          type: array
          items:
            type: string
      required:
        - ecosystem
        - package
        - versions
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key

````