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

# Cybersecurity Act (CSA)

> Regulation (EU) 2019/881 on ENISA and on ICT Cybersecurity Certification.

## Overview

| Field        | Value                                                                                          |
| ------------ | ---------------------------------------------------------------------------------------------- |
| **CELEX**    | 32019R0881                                                                                     |
| **Status**   | Active                                                                                         |
| **Articles** | 69                                                                                             |
| **Recitals** | 110                                                                                            |
| **EUR-Lex**  | [View Official Text](https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0881) |

## Compliance Deadlines

| Date       | Type             | Description                                       |
| ---------- | ---------------- | ------------------------------------------------- |
| 2019-06-27 | Entry into force | Regulation enters into force and full application |

## Stakeholder Roles

The Cybersecurity Act defines obligations for the following stakeholder roles:

* **manufacturer** - ICT product and service providers seeking certification
* **importer** - Entities bringing certified ICT products into the EU
* **distributor** - Providers of certified cybersecurity services
* **authorized\_representative** - EU representatives for non-EU manufacturers
* **notified\_body** - Conformity assessment bodies for cybersecurity certification
* **market\_surveillance** - National certification authorities and ENISA
* **consumer** - Users of certified ICT products and services

## Requirement Types

Requirements in the Cybersecurity Act are classified as:

* **obligation** - Mandatory requirements for certification schemes
* **prohibition** - Restricted certification claims and practices
* **right** - Rights of certificate holders and users
* **procedure** - Certification and peer review procedures
* **general** - General provisions and definitions

## API Usage

```bash theme={null}
# Get all Cybersecurity Act articles
curl https://api.law4devs.eu/v1/frameworks/cybersecurity_act/articles

# Get Cybersecurity Act framework details
curl https://api.law4devs.eu/v1/frameworks/cybersecurity_act

# Get Cybersecurity Act requirements
curl https://api.law4devs.eu/v1/frameworks/cybersecurity_act/requirements

# Get Cybersecurity Act recitals
curl https://api.law4devs.eu/v1/frameworks/cybersecurity_act/recitals
```

```python theme={null}
# Python SDK
from law4devs import Law4Devs

client = Law4Devs(api_key="your-api-key")

# List all Cybersecurity Act articles
articles = client.articles.list("cybersecurity_act")

# Get Cybersecurity Act requirements by stakeholder role
requirements = client.requirements.list("cybersecurity_act", role="manufacturer")

# Search Cybersecurity Act articles by tag
articles = client.articles.search("cybersecurity_act", query="certification")
```

```typescript theme={null}
// TypeScript SDK
import { Law4Devs } from '@law4devs/sdk';

const client = new Law4Devs({ apiKey: 'your-api-key' });

// List all Cybersecurity Act articles
const articles = await client.articles.list('cybersecurity_act');

// Get Cybersecurity Act requirements by stakeholder role
const requirements = await client.requirements.list('cybersecurity_act', { role: 'manufacturer' });
```

## Key Topics

* ENISA (European Union Agency for Cybersecurity) mandate and governance
* European cybersecurity certification schemes
* ICT product, service, and process certification
* Assurance levels (basic, substantial, high)
* Mutual recognition of certificates across Member States
* Peer review mechanisms for certification bodies
* Relationship with sector-specific regulations
