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

# Validate, scan, classify, and extract document (SSE)

> Validates a document upload, waits for malware scan, classifies with AI, and extracts data. Streams progress updates via Server-Sent Events.



## OpenAPI

````yaml /openapi.json get /documents/validate
openapi: 3.0.0
info:
  title: Korint Documentation
  description: Korint API Documentation
  version: 1.0.0
  contact: {}
servers: []
security:
  - bearerAuth: []
tags: []
paths:
  /documents/validate:
    get:
      tags:
        - documents
      summary: Validate, scan, classify, and extract document (SSE)
      description: >-
        Validates a document upload, waits for malware scan, classifies with AI,
        and extracts data. Streams progress updates via Server-Sent Events.
      operationId: DocumentsController_validateAndProcessDocument
      parameters:
        - name: key
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
components: {}

````