Test our CLE deadline calculation API instantly. No signup required. Select a jurisdiction, enter optional fields, and see real-time results.
Select the state or territory
Some states use surname for reporting group assignment
Bar admission date affects cycle calculation in some states
Used for birth month-based reporting periods (TX, etc.)
Ready to integrate?
Get your free API key and start making real requests. 100 calls/month included.
Get API KeyNo response yet
Select a jurisdiction and click Calculate to see results
This playground uses mock data to demonstrate API responses. Real API calls require authentication.
See CLE deadlines, credit requirements, and reporting periods calculated in real-time for all 52 jurisdictions.
Every response includes citations to official bar association rules and court requirements.
Here's how you would make this request in production with your API key:
const response = await fetch('https://api.cle-engine.com/v1/compute', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
jurisdiction: 'CA',
profession: 'lawyer'
})
});
const result = await response.json();
console.log(result);