> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usecontra.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# List workflows

> Return the 5 built-in workflows plus any custom workflows owned by the calling tenant.

## Request

```bash theme={null}
curl https://identity.contra.id/v1/workflows \
  -H "x-api-key: $CONTRA_KEY"
```

## Response · 200

```json theme={null}
{
  "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
  ]
}
```
