Getting Started
Quickstart
Go from a trained scorecard to a live scoring API in six steps. This guide assumes you already have a Calibr account and the desktop app installed.
Build a scorecard in Calibr Desktop
Open the Calibr desktop app, create a new project, and work through the modeling workflow: upload data, run EDA, configure binning, train a logistic regression, and generate a scorecard. The scorecard captures your model as a points-based system ready for deployment.
Configure risk grades in Cutoff Simulator
Navigate to the Scorecard tab and open the Cutoff Simulator. Define risk grade thresholds that map score ranges to letter grades (e.g., A through E). These grades will be included in every scoring response.
Deploy to the Scoring API
In the Scaling Configuration panel, click “Deploy to API”. Calibr packages your scorecard as a CalibrScorecardSpec v1 document and uploads it to the scoring service. You will receive a scorecard ID (e.g., sc_01HXYZ).
Create an API key
Go to the web dashboard at app.calibr.dev and navigate to Settings → API Keys. Click “Create Key”, give it a name, and select the score scope. Copy the key — it will only be shown once.
You can also create keys from the desktop app under Settings → API.
Score your first applicant
Send a scoring request with the applicant's features. The variable names must match those defined in your scorecard.
Check the results
The API returns a scoring response with the total score, probability of default, risk grade, and a breakdown of points per variable:
Visit the web dashboard to see scoring history, volume charts, and grade distribution for your deployed scorecard.
Next Steps
- Read the Authentication guide to learn about token refresh and API key scopes
- Explore the How Scoring Works guide for details on bin matching and PD calculation
- Set up Champion / Challenger testing to compare model versions in production
- Review Rate Limits before going to production