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

# List reports

> Returns paginated list of reports for the current workspace.



## OpenAPI

````yaml /api-reference/openapi.json get /api/reports
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/reports:
    get:
      tags:
        - Reports
      summary: List reports
      description: Returns paginated list of reports for the current workspace.
      operationId: ReportsController_getMany
      parameters:
        - name: search
          required: false
          in: query
          schema:
            type: string
        - name: page
          required: false
          in: query
          schema:
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          schema:
            example: 10
            type: number
        - name: sortBy
          required: false
          in: query
          schema:
            example: createdAt
            type: string
        - name: sortOrder
          required: false
          in: query
          schema:
            example: DESC
            type: string
        - name: type
          required: false
          in: query
          description: Filter by report type
          schema:
            type: string
            enum:
              - SUMMARY
              - VULNERABILITY
        - name: X-Workspace-Id
          in: header
          description: Workspace ID
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetManyReportResponseDtoDto'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    GetManyReportResponseDtoDto:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ReportResponseDto'
        total:
          type: number
        page:
          type: number
        limit:
          type: number
        hasNextPage:
          type: boolean
        pageCount:
          type: number
      required:
        - data
        - total
        - page
        - limit
        - hasNextPage
        - pageCount
    ReportResponseDto:
      type: object
      properties:
        id:
          type: string
        userId:
          type: string
        path:
          type: string
        fileName:
          type: string
        type:
          type: string
          enum:
            - SUMMARY
            - VULNERABILITY
        createdAt:
          format: date-time
          type: string
        downloadUrl:
          type: string
          description: Presigned download URL (expires in 15 minutes)
      required:
        - id
        - userId
        - path
        - fileName
        - type
        - createdAt
        - downloadUrl

````