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

# Get Severity History

<Info>Required API key permission: `metrics:read`.</Info>


## OpenAPI

````yaml /openapi.json get /v1/findings/severity-score-history
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API supports targets, assessments, finding lifecycle and
    analytics, and reports. Public responses use positive field allowlists and
    call informational non-vulnerable results `secured`.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/findings/severity-score-history:
    get:
      tags:
        - Analytics
      summary: Get Severity History
      operationId: getSeverityScoreHistory
      parameters:
        - name: target_id
          in: query
          required: false
          description: Optionally scope organization-wide results to one target
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicSeverityHistory'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Not permitted for this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    PublicSeverityHistory:
      properties:
        target_id:
          title: Target Id
          type:
            - string
            - 'null'
          format: uuid
        granularity:
          type: string
          enum:
            - day
            - week
            - month
          title: Granularity
        data:
          items:
            $ref: '#/components/schemas/SeverityScoreTimePoint'
          type: array
          title: Data
      type: object
      required:
        - granularity
        - data
      title: PublicSeverityHistory
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
    SeverityScoreTimePoint:
      properties:
        date:
          type: string
          format: date-time
          title: Date
        average_severity_score:
          type: number
          title: Average Severity Score
        finding_count:
          type: integer
          title: Finding Count
        assessment_count:
          type: integer
          title: Assessment Count
      type: object
      required:
        - date
        - average_severity_score
        - finding_count
        - assessment_count
      title: SeverityScoreTimePoint
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````