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

# List Parsers

> Returns all parsers configured for the authenticated tenant and vertical

## Endpoint

## Authentication

Requires a valid JWT or API key with `parsers:read` permission.

| Role                                                                          | Access                                    |
| ----------------------------------------------------------------------------- | ----------------------------------------- |
| `wede_global_admin`, `wede_tech_ops`                                          | All parsers across all tenants            |
| `country_admin`                                                               | Parsers for tenants in assigned countries |
| `company_admin`, `company_tech`, `operational_supervisor`, `corporate_client` | Own tenant parsers only                   |

## Response

```json theme={null}
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "tenant_id": "tenant-uuid",
      "vertical": "logistics",
      "version": 1,
      "name": "Logistics v1",
      "is_active": true,
      "created_at": "2026-05-19T14:00:00Z"
    }
  ],
  "count": 1
}
```
