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

# List Reports

> List all reports accessible to the user.

List the reports in a deployment, scoped to the reports the calling user can access.

Results are returned in pages using cursor-based pagination: pass `first` to set the page size and `after` (the previous response's `pageInfo.endCursor`) to fetch the next page.

Cursor pagination is not supported when sorting by `lastViewedAt` (a per-viewer sort with no stable cursor column).


## OpenAPI

````yaml /api-reference/openapi.json get /api/reports
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
servers: []
security: []
paths:
  /api/reports:
    get:
      tags:
        - reports
      summary: List Reports
      description: List all reports accessible to the user.
      operationId: list_reports_api_reports_get
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Project Id
        - name: dataset_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Dataset Id
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: blindsight_session
          in: cookie
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Blindsight Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReportRead'
                title: Response List Reports Api Reports Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ReportRead:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        status:
          type: string
          title: Status
        format:
          type: string
          title: Format
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
        dataset_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Dataset Id
        template_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Template Id
        scan_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Scan Ids
        file_path:
          anyOf:
            - type: string
            - type: 'null'
          title: File Path
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: File Size
        progress:
          type: integer
          title: Progress
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        content_summary:
          anyOf:
            - type: object
            - type: 'null'
          title: Content Summary
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
      type: object
      required:
        - id
        - name
        - description
        - status
        - format
        - project_id
        - dataset_id
        - template_id
        - scan_ids
        - file_path
        - file_size
        - progress
        - message
        - content_summary
        - created_at
        - updated_at
        - started_at
        - completed_at
      title: ReportRead
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````