Powerful privacy policy analysis at your fingertips. Integrate PII detection and compliance checking directly into your applications.
Everything you need to analyze privacy policies programmatically
Automatically identify personal information collection, processing, and sharing practices in privacy policies.
Get instant results with our high-performance API that processes policies in seconds, not minutes.
Check compliance with GDPR, CCPA, CPRA, and other major privacy regulations worldwide.
Receive analysis results in clean JSON format, perfect for integration with your existing systems.
Your data never leaves our secure processing environment. We don't store or log policy content.
From a few requests per day to millions per month - our API scales with your needs.
Get started with the PieEye API in minutes
Sign up for an account and get your API key from the dashboard.
curl -X POST https://api.pieeye.ai/auth/keys
Send a privacy policy URL or text content to our analysis endpoint.
curl -X POST https://api.pieeye.ai/v1/analyze \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/privacy-policy",
"format": "detailed"
}'
Get comprehensive analysis results in structured JSON format.
{
"analysis_id": "12345",
"url": "https://example.com/privacy-policy",
"compliance": {
"gdpr": "compliant",
"ccpa": "partial",
"cpra": "non_compliant"
},
"pii_detected": [
{
"type": "email_address",
"collection": "explicit",
"purpose": "marketing",
"sharing": "third_party"
}
],
"recommendations": [...]
}