Skip to main content
GET
/
content
/
{id}
/
compliance
Get compliance report
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/content/{id}/compliance \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "article_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "not_checked",
    "report": {
      "score": 123,
      "issues": [
        {
          "severity": "<string>",
          "rule": "<string>",
          "message": "<string>",
          "location": "<string>"
        }
      ],
      "checked_at": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Content ID

Response

Compliance report

data
object
Last modified on March 1, 2026