Complete API reference, integration guides, and implementation examples for building compliance monitoring into your applications.
Get started with the Compliance API in minutes
All API requests require authentication using API keys
Authorization: Bearer your-api-key
Get your API key from the dashboard settings page
API usage limits based on your subscription tier
Complete REST API endpoints for compliance scanning
/api/webhooks/results
Receive scan completion notifications
Parameters: callback_url, events[]
Implementation examples in popular languages
import { ComplianceAPI } from '@compliance/sdk';
const client = new ComplianceAPI({
apiKey: 'your-api-key'
});
const scan = await client.scans.create({
url: 'https://example.com',
regulations: ['GDPR', 'CCPA']
});
console.log('Scan ID:', scan.id);
from compliance_api import ComplianceClient
client = ComplianceClient(api_key='your-api-key')
scan = client.scans.create(
url='https://example.com',
regulations=['GDPR', 'CCPA']
)
print(f'Scan ID: {scan.id}')
curl -X POST https://api.compliancecheck.com/v1/scans \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"regulations": ["GDPR", "CCPA"]
}'
Step-by-step guides for common integration scenarios
Connect compliance scanning to your automated workflows
Automated compliance checks in your deployment pipeline
Real-time notifications for scan completion and alerts
Embed compliance status widgets in your applications
Comprehensive coverage of global privacy regulations
European General Data Protection Regulation
Consent management, data subject rights, breach notification, cookie compliance
California Consumer Privacy Act & Amendment
Consumer rights, opt-out mechanisms, data sale disclosures, sensitive data handling
Personal Information Protection Law
Cross-border transfers, consent requirements, data localization compliance
25+ State Privacy Regulations
VCDPA, CPA, CTDPA, UCPA, TDPSA, and emerging state privacy laws
Interactive API documentation with examples
Official SDKs for JavaScript, Python, PHP, and more
Understanding regulations and implementation best practices
Get your API key and start integrating compliance monitoring today