Interactive API Demo

Try the CLE Engine API

Test our CLE deadline calculation API instantly. No signup required. Select a jurisdiction, enter optional fields, and see real-time results.

Request Parameters

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 Key

API Response

No response yet

Select a jurisdiction and click Calculate to see results

Demo Mode

This playground uses mock data to demonstrate API responses. Real API calls require authentication.

Instant Results

See CLE deadlines, credit requirements, and reporting periods calculated in real-time for all 52 jurisdictions.

Official Sources

Every response includes citations to official bar association rules and court requirements.

Example API Request

Here's how you would make this request in production with your API key:

JavaScript
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);