Skip to main content
GET
/
v3
/
workflows
List Workflows
curl --request GET \
  --url https://verification.didit.me/v3/workflows/ \
  --header 'x-api-key: <api-key>'
[
  {
    "uuid": "a1b2c3d4-5678-90ab-cdef-111111111111",
    "workflow_label": "Standard KYC",
    "workflow_type": "kyc",
    "is_default": true,
    "is_archived": false,
    "total_price": "0.15",
    "min_price": "0.15",
    "max_price": "0.15",
    "features": [
      "OCR",
      "LIVENESS",
      "FACE_MATCH"
    ],
    "is_simple_workflow": true,
    "is_editable": true,
    "workflow_url": "https://verify.didit.me/session/abc123",
    "max_retry_attempts": 3,
    "retry_window_days": 7
  },
  {
    "uuid": "b2c3d4e5-6789-01bc-defg-222222222222",
    "workflow_label": "Full Verification + AML",
    "workflow_type": "kyc",
    "is_default": false,
    "is_archived": false,
    "total_price": "0.25",
    "min_price": "0.25",
    "max_price": "0.25",
    "features": [
      "OCR",
      "LIVENESS",
      "FACE_MATCH",
      "AML"
    ],
    "is_simple_workflow": true,
    "is_editable": false,
    "workflow_url": "https://verify.didit.me/session/def456",
    "max_retry_attempts": 3,
    "retry_window_days": 7
  }
]

Authorizations

x-api-key
string
header
required

Response

200 - application/json

List of workflows.