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

# Get a finding reported in a chat

> Returns the complete vulnerability row for a finding reported in the chat. The row includes findings that are not filed in the organization's issue list.



## OpenAPI

````yaml /openapi.json get /chat/{chatId}/findings/{findingId}
openapi: 3.1.0
info:
  title: Strix API
  version: 1.0.0
  description: >-
    Public REST API for the Strix autonomous penetration testing platform.
    Manage scans, vulnerabilities, assets, schedules, API tokens, and webhooks.
servers:
  - url: /api/v1
    description: Strix v1 API
security:
  - BearerAuth: []
tags:
  - name: Scans
    description: Launch, monitor, and manage security scans.
  - name: Vulnerabilities
    description: View and triage discovered vulnerabilities.
  - name: Assets
    description: Domains and repositories registered for scanning.
  - name: Schedules
    description: Recurring scan schedules (Pro plan).
  - name: Tokens
    description: Manage API tokens for authentication.
  - name: Webhooks
    description: Configure webhook subscriptions for real-time event notifications.
  - name: Organization
    description: Workspace configuration for the authenticated organization.
  - name: Members
    description: Manage organization members and roles.
  - name: Invitations
    description: List and revoke organization invitations.
  - name: PR Reviews
    description: Automated security review of pull requests.
  - name: Connectors
    description: Network connectors for scanning internal/private targets.
  - name: Knowledge
    description: >-
      Organization knowledge base: documents, policies, and repo profiles that
      steer the agent.
  - name: Uploads
    description: Upload source/code/documentation archives for whitebox scans.
  - name: Integrations
    description: Third-party integrations (GitLab, Bitbucket, ticketing).
  - name: Chat
    description: Conversational agent sessions.
  - name: Analytics
    description: Aggregate dashboard analytics.
  - name: Test Users
    description: >-
      Per-domain test accounts (with optional MFA) the agent authenticates as
      during scans.
  - name: License
    description: Self-hosted license state, entitlements, and aggregate usage.
  - name: Supply Chain
    description: >-
      SBOM inventory, supply-chain findings, scans, and policy for connected
      repositories.
paths:
  /chat/{chatId}/findings/{findingId}:
    get:
      tags:
        - Chat
      summary: Get a finding reported in a chat
      description: >-
        Returns the complete vulnerability row for a finding reported in the
        chat. The row includes findings that are not filed in the organization's
        issue list.
      operationId: getChatFinding
      parameters:
        - name: chatId
          in: path
          required: true
          description: Chat id.
          schema:
            type: string
            format: uuid
        - name: findingId
          in: path
          required: true
          description: Finding id.
          schema:
            type: string
      responses:
        '200':
          description: Chat finding.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/Vulnerability'
                  - type: object
                    properties:
                      chat_id:
                        type:
                          - string
                          - 'null'
                        format: uuid
                      filed_at:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        description: >-
                          Set after a member files the finding into the
                          organization's issue list.
                      filed_by:
                        type:
                          - string
                          - 'null'
                        description: Identifies the member who filed the finding.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - BearerAuth:
            - chat:read
components:
  schemas:
    Vulnerability:
      type: object
      properties:
        id:
          type: string
          format: uuid
        scan_id:
          type:
            - string
            - 'null'
          format: uuid
        pr_review_id:
          type:
            - string
            - 'null'
          format: uuid
        title:
          type: string
        description:
          type: string
        cve:
          type:
            - string
            - 'null'
        cvss:
          type:
            - number
            - 'null'
        created_at:
          type: string
          format: date-time
        potential_risk_saving:
          type:
            - number
            - 'null'
        risk_saving_description:
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/VulnerabilityStatus'
        severity:
          $ref: '#/components/schemas/VulnerabilitySeverity'
        impact:
          type:
            - string
            - 'null'
        endpoint:
          type:
            - string
            - 'null'
        method:
          type:
            - string
            - 'null'
        target:
          type:
            - string
            - 'null'
        technical_analysis:
          type:
            - string
            - 'null'
        poc_description:
          type:
            - string
            - 'null'
        poc_script_code:
          type:
            - string
            - 'null'
        code_diff:
          type:
            - string
            - 'null'
        code_file:
          type:
            - string
            - 'null'
        code_before:
          type:
            - string
            - 'null'
        code_after:
          type:
            - string
            - 'null'
        cwe:
          type:
            - array
            - 'null'
          items:
            type: string
        code_locations:
          type:
            - array
            - 'null'
          items:
            $ref: '#/components/schemas/CodeLocation'
        remediation_steps:
          type:
            - string
            - 'null'
        fix_pr_body:
          type:
            - string
            - 'null'
        evidence:
          type:
            - string
            - 'null'
        assumptions:
          type:
            - string
            - 'null'
        fix_effort:
          $ref: '#/components/schemas/FixEffort'
        cvss_breakdown:
          oneOf:
            - $ref: '#/components/schemas/CVSSBreakdown'
            - type: 'null'
        status_changed_at:
          type:
            - string
            - 'null'
          format: date-time
        status_changed_by:
          type:
            - string
            - 'null'
        status_note:
          type:
            - string
            - 'null'
        original_severity:
          $ref: '#/components/schemas/VulnerabilitySeverity'
        severity_changed_at:
          type:
            - string
            - 'null'
          format: date-time
        severity_changed_by:
          type:
            - string
            - 'null'
        severity_override_reason:
          type:
            - string
            - 'null'
        retest_of_vulnerability_id:
          type:
            - string
            - 'null'
          format: uuid
        display_number:
          type:
            - integer
            - 'null'
          description: Human-readable STRIX-ID number.
        location_meta:
          $ref: '#/components/schemas/LocationMeta'
        fix_pr_eligible:
          type: boolean
        fix_pr_reason:
          type:
            - string
            - 'null'
        fix_pr_url:
          type:
            - string
            - 'null'
      required:
        - id
        - title
        - description
        - status
        - severity
        - created_at
    VulnerabilityStatus:
      type: string
      enum:
        - open
        - in_progress
        - fixed
        - ignored
        - not_affected
    VulnerabilitySeverity:
      type: string
      enum:
        - critical
        - high
        - medium
        - low
    CodeLocation:
      type: object
      properties:
        file:
          type: string
        start_line:
          type: integer
        end_line:
          type: integer
        snippet:
          type: string
        label:
          type: string
        fix_before:
          type: string
        fix_after:
          type: string
      required:
        - file
        - start_line
    FixEffort:
      type: string
      enum:
        - trivial
        - low
        - medium
        - high
    CVSSBreakdown:
      type: object
      properties:
        attack_vector:
          type:
            - string
            - 'null'
        attack_complexity:
          type:
            - string
            - 'null'
        privileges_required:
          type:
            - string
            - 'null'
        user_interaction:
          type:
            - string
            - 'null'
        scope:
          type:
            - string
            - 'null'
        confidentiality:
          type:
            - string
            - 'null'
        integrity:
          type:
            - string
            - 'null'
        availability:
          type:
            - string
            - 'null'
    LocationMeta:
      type:
        - object
        - 'null'
      properties:
        branch:
          type: string
        provider:
          type: string
        repo_url:
          type: string
    ErrorResponse:
      type: object
      properties:
        detail:
          type: string
          description: Human-readable explanation of the error.
        code:
          type: string
          description: >-
            Stable machine-readable error code. `insufficient_scope` means the
            token does not hold the scope that this endpoint requires.
        required_scope:
          $ref: '#/components/schemas/ApiV1Scope'
          description: >-
            Scope that the caller must add to the token. Returned with the
            `insufficient_scope` code.
        docs:
          type: string
          format: uri
          description: Documentation page that explains how to resolve the error.
      required:
        - detail
    ApiV1Scope:
      type: string
      enum:
        - scans:read
        - scans:write
        - vulnerabilities:read
        - vulnerabilities:write
        - dependencies:read
        - schedules:read
        - schedules:write
        - assets:read
        - assets:write
        - organizations:read
        - organizations:write
        - members:read
        - members:write
        - invitations:read
        - invitations:write
        - webhooks:read
        - webhooks:write
        - tokens:write
        - audit:read
        - pr_reviews:read
        - pr_reviews:write
        - connectors:read
        - connectors:write
        - knowledge:read
        - knowledge:write
        - uploads:write
        - integrations:read
        - integrations:write
        - chat:read
        - chat:write
        - scans:message
        - analytics:read
        - llm:read
        - llm:write
        - test_users:read
        - test_users:write
        - license:read
        - supply_chain:read
        - supply_chain:write
  responses:
    Unauthorized:
      description: Missing or invalid API token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: >-
        Insufficient permissions or missing scope. A missing scope returns the
        `insufficient_scope` code and the `required_scope` field, so a client
        can request the correct scope and retry.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token obtained from the Tokens endpoint. Include as `Authorization:
        Bearer <token>`.

````