Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.responsibleailabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint: POST /railscore/v1/compliance/check | Framework code: eu_ai_act | Credits: 5.0 per call
The EU Artificial Intelligence Act (Regulation 2024/1689) is the world’s first comprehensive AI regulation. It establishes a risk-based framework for AI systems deployed in the EU. The compliance check evaluates AI content against the Act’s requirements.

Supported checks

AreaArticlesWhat’s checked
Risk classificationArt. 6, Annex IIIWhether the system falls under high-risk, limited-risk, or minimal-risk
Prohibited practicesArt. 5Social scoring, real-time biometric identification, manipulation
High-risk obligationsArt. 8-15Data governance, documentation, transparency, human oversight, accuracy
TransparencyArt. 50Disclosure that content is AI-generated, deepfake labeling
Human oversightArt. 14Whether meaningful human control is maintained
Record-keepingArt. 12Automatic logging and traceability
Post-market monitoringArt. 72Ongoing monitoring obligations after deployment
Conformity assessmentArt. 43Whether assessment procedures are referenced

Request

curl -X POST https://api.responsibleailabs.ai/railscore/v1/compliance/check \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_RAIL_API_KEY" \
  -d '{
    "content": "Our AI system automatically scores job applicants and filters candidates for interviews.",
    "frameworks": ["eu_ai_act"],
    "context": "Automated recruitment tool used by EU employers"
  }'

Response

{
  "result": {
    "overall_compliant": false,
    "frameworks": {
      "eu_ai_act": {
        "compliant": false,
        "issues": [
          {
            "clause": "Article 6 / Annex III(4) — High-risk classification",
            "description": "AI systems used in employment, recruitment, and worker management are classified as high-risk under Annex III, point 4.",
            "severity": "high",
            "remediation": "Comply with high-risk requirements: implement risk management (Art. 9), data governance (Art. 10), technical documentation (Art. 11), record-keeping (Art. 12), transparency (Art. 13), and human oversight (Art. 14)."
          },
          {
            "clause": "Article 14 — Human oversight",
            "description": "No mention of human review or override capability for automated candidate filtering.",
            "severity": "high",
            "remediation": "Ensure the system allows qualified human reviewers to override automated decisions and that users understand the system's capabilities and limitations."
          }
        ]
      }
    }
  },
  "credits_consumed": 5.0
}
Dedicated EU AI Act endpoints for risk classification engine, conformity assessment workflows, and post-market monitoring are under development. Aligned with the August 2026 enforcement timeline.