Skip to main content
GET
/
frameworks
/
{slug}
/
annexes
/
{annex_number}
Get a single annex
curl --request GET \
  --url https://demo.law4devs.eu/api/v1/frameworks/{slug}/annexes/{annex_number}
{
  "data": {
    "id": 123,
    "annex_number": "I",
    "title": "Essential Requirements",
    "framework_slug": "cra",
    "content": "<string>"
  }
}

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.

Path Parameters

slug
string
required

Framework slug (e.g. cra, nis2, gdpr)

Pattern: ^[a-z0-9_]+$
Example:

"cra"

annex_number
string
required

Annex identifier (e.g. "I", "II", "III", "IV")

Example:

"I"

Response

Annex with full content

data
object