मुख्य सामग्री पर जाएं

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: ccpa | Credits: 5.0 प्रति call
California Consumer Privacy Act (CPRA द्वारा amended) California residents को अपनी personal information पर rights देता है और जो businesses उसे collect या sell करते हैं उन पर obligations लगाता है। Compliance check, AI content को CCPA requirements के against evaluate करता है।

Supported checks

क्षेत्रSectionsक्या check होता है
Right to know1798.100, 110Consumers को data collection और use के बारे में बताया गया है या नहीं
Right to delete1798.105Deletion mechanisms और disclosures मौजूद हैं या नहीं
Right to opt-out1798.120Sale/sharing से opt-out offer किया गया है या नहीं
Sale of PI1798.115Data की “sale” या “sharing” disclose की गई है या नहीं
Financial incentives1798.125Incentive programs properly disclose किए गए हैं या नहीं
Sensitive data1798.121Sensitive PI categories अतिरिक्त protections के साथ handle की गई हैं या नहीं
Service providers1798.140(ag)Processor/service provider contracts 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": "We share user purchase history with advertising partners to show relevant ads.",
    "frameworks": ["ccpa"],
    "context": "E-commerce platform with California users"
  }'

Response

{
  "result": {
    "overall_compliant": false,
    "frameworks": {
      "ccpa": {
        "compliant": false,
        "issues": [
          {
            "clause": "1798.120 — Right to opt-out of sale/sharing",
            "description": "Sharing purchase history with advertising partners constitutes 'sharing' under CPRA. No opt-out mechanism is mentioned.",
            "severity": "high",
            "remediation": "Provide a 'Do Not Sell or Share My Personal Information' link and honor Global Privacy Control (GPC) signals."
          },
          {
            "clause": "1798.100 — Right to know",
            "description": "Categories of third parties receiving data are not disclosed.",
            "severity": "medium",
            "remediation": "Disclose the categories of personal information shared and the categories of third parties receiving it."
          }
        ]
      }
    }
  },
  "credits_consumed": 5.0
}
Opt-out signal handling, CPRA amendment tracking, और privacy notice generation के लिए dedicated CCPA endpoints development के under हैं।