cURL
curl -X GET 'https://verification.didit.me/v3/workflows/' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Accept: application/json'import requests
resp = requests.get(
"https://verification.didit.me/v3/workflows/",
headers={"x-api-key": "YOUR_API_KEY"},
timeout=10,
)
resp.raise_for_status()
page = resp.json()
for workflow in page["results"]:
print(workflow["uuid"], workflow["workflow_label"], workflow["status"])const res = await fetch("https://verification.didit.me/v3/workflows/", {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
if (!res.ok) throw new Error(`Didit ${res.status}`);
const page = await res.json();
page.results.forEach((w) => console.log(w.uuid, w.workflow_label, w.status));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/workflows/",
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/"
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/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/workflows/")
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{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"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_white_label_enabled": false,
"total_price": 0.15,
"min_price": 0.15,
"max_price": 0.15,
"features": "OCR + LIVENESS + FACE_MATCH",
"is_simple_workflow": true,
"is_editable": false,
"workflow_url": "https://verify.didit.me/u/_yljPOx8RWG3UAz5ZRQGVQ",
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 2,
"status": "published",
"has_draft": false,
"created_by": {
"name": "Alex Mateo",
"email": "alex@example.com",
"type": "user"
},
"updated_at": "2026-04-12T10:30:00Z"
},
{
"uuid": "b2c3d4e5-6789-01bc-defa-222222222222",
"workflow_id": "b2c3d4e5-6789-01bc-defa-222222222222",
"workflow_label": "Full Verification + AML",
"workflow_type": "kyc",
"is_default": false,
"is_archived": false,
"is_white_label_enabled": 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": true,
"workflow_url": "https://verify.didit.me/u/Aq3kPOx8RWG3UAz5ZRQGVQ",
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 1,
"status": "draft",
"has_draft": true,
"created_by": null,
"updated_at": "2026-04-15T18:05:21Z"
}
]
}{
"detail": "You do not have permission to perform this action."
}Workflows
List Workflows
List your workflows, newest first, in a limit/offset pagination envelope ({count, next, previous, results}, default page size 50). Each row is one version; workflow_id is the stable group ID and new sessions use the latest published version.
GET
/
v3
/
workflows
/
cURL
curl -X GET 'https://verification.didit.me/v3/workflows/' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Accept: application/json'import requests
resp = requests.get(
"https://verification.didit.me/v3/workflows/",
headers={"x-api-key": "YOUR_API_KEY"},
timeout=10,
)
resp.raise_for_status()
page = resp.json()
for workflow in page["results"]:
print(workflow["uuid"], workflow["workflow_label"], workflow["status"])const res = await fetch("https://verification.didit.me/v3/workflows/", {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
if (!res.ok) throw new Error(`Didit ${res.status}`);
const page = await res.json();
page.results.forEach((w) => console.log(w.uuid, w.workflow_label, w.status));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/workflows/",
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/"
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/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/workflows/")
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{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"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_white_label_enabled": false,
"total_price": 0.15,
"min_price": 0.15,
"max_price": 0.15,
"features": "OCR + LIVENESS + FACE_MATCH",
"is_simple_workflow": true,
"is_editable": false,
"workflow_url": "https://verify.didit.me/u/_yljPOx8RWG3UAz5ZRQGVQ",
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 2,
"status": "published",
"has_draft": false,
"created_by": {
"name": "Alex Mateo",
"email": "alex@example.com",
"type": "user"
},
"updated_at": "2026-04-12T10:30:00Z"
},
{
"uuid": "b2c3d4e5-6789-01bc-defa-222222222222",
"workflow_id": "b2c3d4e5-6789-01bc-defa-222222222222",
"workflow_label": "Full Verification + AML",
"workflow_type": "kyc",
"is_default": false,
"is_archived": false,
"is_white_label_enabled": 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": true,
"workflow_url": "https://verify.didit.me/u/Aq3kPOx8RWG3UAz5ZRQGVQ",
"max_retry_attempts": 3,
"retry_window_days": 7,
"session_expiration_time": 604800,
"version": 1,
"status": "draft",
"has_draft": true,
"created_by": null,
"updated_at": "2026-04-15T18:05:21Z"
}
]
}{
"detail": "You do not have permission to perform this action."
}Authorizations
Query Parameters
Page size (number of workflows per page).
Number of rows to skip before the first returned workflow.
Response
One page of workflows ordered by created_at descending, wrapped in the pagination envelope. Each item in results is a WorkflowListItem.
⌘I