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

# Get list of parsing models

> Retrieve a list of available document parsing models with their capabilities and supported file types.



## OpenAPI

````yaml /openapi.json get /v1/parsing-models
openapi: 3.1.0
info:
  title: DeepXL API
  description: >-
    Professional document analysis and verification API for fraud detection,
    identity verification, and data extraction.
  contact:
    name: DeepXL Support
    url: https://deepxl.ai/contact
    email: hello@deepxl.ai
  version: 1.1.0
servers:
  - url: https://api.deepxl.ai
    description: Production
security: []
tags:
  - name: Fraud Detection
    description: Detect manipulated or AI-generated content in documents and images.
  - name: Document Parsing
    description: Extract structured data from IDs, bank statements, and pay stubs.
  - name: ID Verification
    description: Match an ID document against a selfie.
  - name: File Retrieval
    description: Fetch original uploads or generated heatmaps from a prior analysis.
paths:
  /v1/parsing-models:
    get:
      tags:
        - Document Parsing
      summary: Get list of parsing models
      description: >-
        Retrieve a list of available document parsing models with their
        capabilities and supported file types.
      operationId: get_parsing_models_v1_parsing_models_get
      responses:
        '200':
          description: List of available parsing models
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RootModel_list_ModelMetadata__'
              example:
                - name: light
                  description: >-
                    Parsing light model. Data extraction is aimed at Driver
                    License, State ID, Residency Permit, Social Security Card,
                    Military ID
                  tags:
                    - id-parsing
                    - fast
                  category: document-parsing
                  validInputTypes:
                    - image
                    - document
                  validFileTypes:
                    - jpg
                    - jpeg
                    - png
                    - webp
                    - pdf
                  ownedBy: DeepXL
                  version: 1.0.0
                - name: performance
                  description: >-
                    Parsing performance model. Data extraction is aimed at Bank
                    statements, US pay stubs
                  tags:
                    - document-parsing
                    - comprehensive
                  category: document-parsing
                  validInputTypes:
                    - image
                    - document
                  validFileTypes:
                    - jpg
                    - jpeg
                    - png
                    - webp
                    - pdf
                  ownedBy: DeepXL
                  version: 1.0.0
        '401':
          description: Authentication required - API key or Clerk token missing/invalid
      security:
        - API Key: []
components:
  schemas:
    RootModel_list_ModelMetadata__:
      items:
        $ref: '#/components/schemas/ModelMetadata'
      type: array
      title: RootModel[list[ModelMetadata]]
    ModelMetadata:
      properties:
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        tags:
          items:
            type: string
          type: array
          title: Tags
        category:
          type: string
          title: Category
        validInputTypes:
          items:
            type: string
          type: array
          title: Validinputtypes
        validFileTypes:
          items:
            type: string
          type: array
          title: Validfiletypes
        ownedBy:
          type: string
          title: Ownedby
        version:
          type: string
          title: Version
      type: object
      required:
        - name
        - description
        - tags
        - category
        - validInputTypes
        - validFileTypes
        - ownedBy
        - version
      title: ModelMetadata
  securitySchemes:
    API Key:
      type: apiKey
      description: API key created in the dashboard
      in: header
      name: x-api-key

````