Skip to main content
GET
/
v1
/
detection-models
Get available fraud detection models
curl --request GET \
  --url https://api.deepxl.ai/v1/detection-models \
  --header 'Authorization: Bearer <token>'
[
  {
    "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"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of available fraud detection models

name
string
required
description
string
required
tags
string[]
required
category
string
required
validInputTypes
string[]
required
validFileTypes
string[]
required
ownedBy
string
required
version
string
required