Skip to main content
GET
/
frameworks
/
{slug}
/
articles
/
{article_number}
Get a single article
curl --request GET \
  --url https://demo.law4devs.eu/api/v1/frameworks/{slug}/articles/{article_number}
{
  "data": {
    "id": 1,
    "article_number": 1,
    "title": "Subject matter",
    "framework_slug": "cra",
    "position": 1,
    "paragraph_count": 0,
    "processed_date": "2023-11-07T05:31:56Z",
    "tags": [
      {
        "id": 1,
        "slug": "vulnerability-reporting",
        "name": "Vulnerability Reporting",
        "description": "Requirements related to disclosing and reporting software vulnerabilities.",
        "keywords": [
          "vulnerability",
          "CVE",
          "disclose",
          "disclosure"
        ],
        "color": "#e74c3c",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "content": "<string>",
    "paragraphs": [
      {
        "paragraph_ref": "1",
        "content": "<string>",
        "position": 123
      }
    ]
  }
}

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"

article_number
integer
required

Article number (e.g. 1, 2, 14)

Example:

1

Response

Article with full content

data
object