Developer-First Compliance API
Build compliance intelligence into your applications with our RESTful API. Real-time regulatory data, AI-powered insights, and seamless integrations.
Quick Start Guide
Sign up and get your API key from the dashboard
# Get your API key from dashboard
API_KEY=your_api_key_hereFetch regulatory obligations for your jurisdiction
curl -X GET "https://api.compeye.com/v1/obligations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Set up webhooks to receive real-time updates
{
"url": "https://your-app.com/webhooks/compeye",
"events": ["obligation.created", "obligation.updated"],
"jurisdictions": ["AU", "EU", "US"]
}API Reference
/v1/obligationsRetrieve regulatory obligations with filters
/v1/changesGet recent regulatory changes and updates
/v1/assessmentsCreate compliance risk assessments
/v1/jurisdictionsList available jurisdictions and their coverage
/v1/webhooksConfigure webhook endpoints for real-time updates
Official SDKs
npm install @compeye/sdkimport { CompEye } from '@compeye/sdk';
const client = new CompEye({
apiKey: process.env.COMPEYE_API_KEY
});
const obligations = await client.obligations.list({
jurisdiction: 'AU',
industry: 'financial-services'
});pip install compeye-pythonfrom compeye import CompEye
client = CompEye(api_key=os.environ['COMPEYE_API_KEY'])
obligations = client.obligations.list(
jurisdiction='AU',
industry='financial-services'
)go get github.com/compeye/go-sdkpackage main
import "github.com/compeye/go-sdk"
client := compeye.NewClient(os.Getenv("COMPEYE_API_KEY"))
obligations, err := client.Obligations.List(&compeye.ObligationListParams{
Jurisdiction: "AU",
Industry: "financial-services",
})Pre-built Integrations
ServiceNow GRC
Native integration with ServiceNow GRC platform
MetricStream
Real-time obligation sync with MetricStream
Workiva
Automated compliance reporting integration
Archer
Risk assessment and obligation mapping
Ready to Build?
Get started with our API today. Free tier includes 1,000 requests per month and access to all endpoints.