Skip to main content
GET
/
v1
/
workflows
List workflows
curl --request GET \
  --url https://api.example.com/v1/workflows

Request

curl https://identity.contra.id/v1/workflows \
  -H "x-api-key: $CONTRA_KEY"

Response · 200

{
  "workflows": [
    {
      "workflow_id": "standard_kyc",
      "name": "Standard KYC",
      "type": "user",
      "built_in": true,
      "nodes": [
        { "type": "document_verification", "required": true, "provider": "smile_id:job_6" },
        { "type": "aml_screening",         "required": true, "provider": "smile_id:aml" }
      ]
    }
    // …enhanced_kyc · institutional_kyc · aml_only · kyb · plus your custom workflows
  ]
}