Skip to main content

List Processors

GET /processors

List all active pre-workflow processors for your account. Each processor includes its rule count and associated workflow names.

Example

curl -X GET https://api.getnexor.ai/api/public/processors \
-H "X-API-Key: nxr_live_your_api_key"

Responses

200 — Processors retrieved

{
"success": true,
"processors": [
{
"id": "abc-123-uuid",
"name": "Language Router",
"description": "Routes leads to ES or EN workflows based on metadata.language",
"default_workflow_id": "uuid-of-es-workflow",
"default_workflow": {
"id": "uuid-of-es-workflow",
"name": "Enlace de Pago Enviado"
},
"is_active": true,
"rules_count": 2,
"created_at": "2026-03-31T12:00:00Z",
"updated_at": "2026-03-31T12:00:00Z"
}
]
}

401 — Authentication error

See Authentication.

500 — Internal server error