> ## 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 available fraud detection models

> Get a list of available fraud detection models with their capabilities and supported file types.



## OpenAPI

````yaml /openapi.json get /v1/detection-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/detection-models:
    get:
      tags:
        - Fraud Detection
      summary: Get available fraud detection models
      description: >-
        Get a list of available fraud detection models with their capabilities
        and supported file types.
      operationId: get_detection_models_v1_detection_models_get
      responses:
        '200':
          description: List of available fraud detection models
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RootModel_list_ModelMetadata__'
              example:
                - name: document
                  description: >-
                    Advanced document fraud detection model that analyzes
                    documents for signs of manipulation and tampering.
                  tags:
                    - fraud-detection
                    - document-verification
                  category: fraud-detection
                  validInputTypes:
                    - image
                    - document
                  validFileTypes:
                    - jpg
                    - jpeg
                    - png
                    - webp
                    - pdf
                  ownedBy: DeepXL
                  version: 1.1.0
                - name: object
                  description: >-
                    AI-generated image detection model that identifies synthetic
                    or manipulated images.
                  tags:
                    - ai-detection
                    - image-verification
                  category: fraud-detection
                  validInputTypes:
                    - image
                  validFileTypes:
                    - jpg
                    - jpeg
                    - png
                    - webp
                  ownedBy: DeepXL
                  version: 1.0.0
      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

````