cURL
curl -X GET 'https://verification.didit.me/v3/workflows/a1b2c3d4-5678-90ab-cdef-111111111111/' \
-H 'x-api-key: YOUR_API_KEY'import requests
resp = requests.get(
f"https://verification.didit.me/v3/workflows/{settings_uuid}/",
headers={"x-api-key": "YOUR_API_KEY"},
timeout=10,
)
resp.raise_for_status()
workflow = resp.json()
print(workflow["workflow_label"], workflow["status"])const res = await fetch(`https://verification.didit.me/v3/workflows/${settingsUuid}/`, {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
if (!res.ok) throw new Error(`Didit ${res.status}`);
const workflow = await res.json();
console.log(workflow.workflow_label, workflow.status);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/workflows/{settings_uuid}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://verification.didit.me/v3/workflows/{settings_uuid}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://verification.didit.me/v3/workflows/{settings_uuid}/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/workflows/{settings_uuid}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"uuid": "a1b2c3d4-5678-90ab-cdef-111111111111",
"workflow_id": "a1b2c3d4-5678-90ab-cdef-111111111111",
"workflow_label": "Standard KYC",
"workflow_type": "kyc",
"is_default": true,
"is_archived": false,
"is_liveness_enabled": true,
"face_liveness_method": "passive",
"face_liveness_score_decline_threshold": 50,
"face_liveness_score_review_threshold": 70,
"is_face_match_enabled": true,
"face_match_score_decline_threshold": 40,
"face_match_score_review_threshold": 60,
"is_aml_enabled": false,
"is_phone_verification_enabled": false,
"is_email_verification_enabled": false,
"is_database_validation_enabled": false,
"is_ip_analysis_enabled": false,
"is_nfc_enabled": false,
"duplicated_user_action": "no_action",
"documents_allowed": {
"ESP": {
"P": {
"sides": 1,
"enabled": 1,
"subtypes": [
"EPASSPORT",
"PASSPORT_GENERIC"
],
"preferred_characters": "latin",
"expiration_check_mode": "strict"
}
}
},
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 2,
"status": "published",
"published_at": "2026-04-12T10:30:00Z",
"is_simple_workflow": false,
"is_editable": false,
"workflow_url": "https://verify.didit.me/u/_yljPOx8RWG3UAz5ZRQGVQ",
"total_price": 0.15,
"min_price": 0.15,
"max_price": 0.15,
"features": "OCR + LIVENESS + FACE_MATCH",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2026-04-12T10:30:00Z"
}{
"detail": "You do not have permission to perform this action."
}{
"detail": "Not found."
}Workflows
Get Workflow
Fetch full configuration for one workflow version by settings_uuid: feature toggles, thresholds, allowed documents, graph, retry policy, callbacks, and pricing.
GET
/
v3
/
workflows
/
{settings_uuid}
/
cURL
curl -X GET 'https://verification.didit.me/v3/workflows/a1b2c3d4-5678-90ab-cdef-111111111111/' \
-H 'x-api-key: YOUR_API_KEY'import requests
resp = requests.get(
f"https://verification.didit.me/v3/workflows/{settings_uuid}/",
headers={"x-api-key": "YOUR_API_KEY"},
timeout=10,
)
resp.raise_for_status()
workflow = resp.json()
print(workflow["workflow_label"], workflow["status"])const res = await fetch(`https://verification.didit.me/v3/workflows/${settingsUuid}/`, {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
if (!res.ok) throw new Error(`Didit ${res.status}`);
const workflow = await res.json();
console.log(workflow.workflow_label, workflow.status);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/workflows/{settings_uuid}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://verification.didit.me/v3/workflows/{settings_uuid}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://verification.didit.me/v3/workflows/{settings_uuid}/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/workflows/{settings_uuid}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"uuid": "a1b2c3d4-5678-90ab-cdef-111111111111",
"workflow_id": "a1b2c3d4-5678-90ab-cdef-111111111111",
"workflow_label": "Standard KYC",
"workflow_type": "kyc",
"is_default": true,
"is_archived": false,
"is_liveness_enabled": true,
"face_liveness_method": "passive",
"face_liveness_score_decline_threshold": 50,
"face_liveness_score_review_threshold": 70,
"is_face_match_enabled": true,
"face_match_score_decline_threshold": 40,
"face_match_score_review_threshold": 60,
"is_aml_enabled": false,
"is_phone_verification_enabled": false,
"is_email_verification_enabled": false,
"is_database_validation_enabled": false,
"is_ip_analysis_enabled": false,
"is_nfc_enabled": false,
"duplicated_user_action": "no_action",
"documents_allowed": {
"ESP": {
"P": {
"sides": 1,
"enabled": 1,
"subtypes": [
"EPASSPORT",
"PASSPORT_GENERIC"
],
"preferred_characters": "latin",
"expiration_check_mode": "strict"
}
}
},
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 2,
"status": "published",
"published_at": "2026-04-12T10:30:00Z",
"is_simple_workflow": false,
"is_editable": false,
"workflow_url": "https://verify.didit.me/u/_yljPOx8RWG3UAz5ZRQGVQ",
"total_price": 0.15,
"min_price": 0.15,
"max_price": 0.15,
"features": "OCR + LIVENESS + FACE_MATCH",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2026-04-12T10:30:00Z"
}{
"detail": "You do not have permission to perform this action."
}{
"detail": "Not found."
}Authorizations
Path Parameters
Per-version UUID of the workflow (the uuid value returned by the list endpoint). Each version of a workflow has its own settings_uuid.
Response
Full workflow configuration. The shape is the raw VerificationSettings serialization (~190 fields: every feature toggle, threshold, warning action, allowed-documents config, the workflow_graph, retry policy, callbacks and pricing). The example below is abbreviated. Notes: features is a " + "-joined string (e.g. "OCR + LIVENESS"), prices are JSON numbers, and is_editable is true only for draft versions.
⌘I