> ## 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.

# List document extractions for a brokerage firm



## OpenAPI

````yaml /openapi.json get /brokerage-firms/{brokerageFirmId}/document-extractions
openapi: 3.0.0
info:
  title: Korint Documentation
  description: Korint API Documentation
  version: 1.0.0
  contact: {}
servers: []
security:
  - bearerAuth: []
tags: []
paths:
  /brokerage-firms/{brokerageFirmId}/document-extractions:
    get:
      tags:
        - document-extractions
      summary: List document extractions for a brokerage firm
      operationId: BrokerageFirmDocumentExtractionController_getBrokerageFirmExtractions
      parameters:
        - name: brokerageFirmId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerageFirmExtractionsOutput'
components:
  schemas:
    GetBrokerageFirmExtractionsOutput:
      type: object
      properties:
        extractions:
          description: List of document extractions for the brokerage firm
          type: array
          items:
            $ref: '#/components/schemas/GetDocumentExtractionOutput'
      required:
        - extractions
    GetDocumentExtractionOutput:
      type: object
      properties:
        documentId:
          type: string
          description: Document ID
        status:
          type: string
          description: Extraction status
          enum:
            - PENDING
            - DONE
            - FAILED
            - SKIPPED
        fields:
          type: object
          description: Extracted fields
        aiOperationId:
          type: string
          description: AI operation ID
        errorMessage:
          type: string
          description: Error message if extraction failed
        metadata:
          type: object
          description: Extraction context metadata
        createdAt:
          type: string
          description: Creation timestamp
        updatedAt:
          type: string
          description: Last update timestamp
      required:
        - documentId
        - status
        - createdAt
        - updatedAt

````