Models
List Models
GET/v1/models
Retrieve a list of all scorecard models in your organization. Returns models across all environments and statuses, sorted by creation date (newest first).
Authentication: JWT token. Any authenticated team member can list models.
Error Responses
401unauthorized
JWT is missing or expired.
List Models
curl https://api.cali-br.com/v1/models \
-H #a5d6ff">"Authorization: Bearer eyJhbGciOiJSUzI1NiIs..."Response200
{
"models": [
{
"id": "mod_r4Kw9xPm",
"name": "retail_unsecured_v3",
"version": "1.2.0",
"spec_version": "1.0",
"status": "active",
"environment": "production",
"description": "Q1 2026 retail model refresh",
"deployed_by": "user_jsmith",
"created_at": "2026-03-20T10: 15: 00Z"
},
{
"id": "mod_pL2nQ7Rv",
"name": "retail_unsecured_v2",
"version": "1.1.0",
"spec_version": "1.0",
"status": "archived",
"environment": "production",
"description": "Previous production model",
"deployed_by": "user_jsmith",
"created_at": "2025-11-05T08: 30: 00Z"
}
]
}