This endpoint assesses the transparency of a submitted privacy policy URL.
/api/grade/transparencySubmits a privacy policy URL for grading.
Content-Type: application/json
X-API-KEY: {your_api_key}
{
"policyUrl": "https://example.com/your-privacy-policy-url"
}
200 OK: The request was successful, and the response contains the grade and summary.
{
"grade": "A",
"summary": "The privacy policy is well-structured and transparent."
}
curl -X POST https://katz.ppgs.global/api/grade/transparency \
-H "Content-Type: application/json" \
-H "X-API-KEY: your_api_key" \
-d '{"policyUrl": "https://example.com/your-privacy-policy-url"}'