Deployments

List Deployments

GET/v1/deployments

Retrieve a list of all scoring deployments in your organization. Each deployment represents a scoring endpoint that routes requests to a champion model and optionally to challenger models for A/B testing.

Authentication: JWT token. Any authenticated team member can list deployments.

Error Responses

401unauthorized

JWT is missing or expired.

List Deployments
curl https://api.cali-br.com/v1/deployments \
  -H #a5d6ff">"Authorization: Bearer eyJhbGciOiJSUzI1NiIs..."
Response200
{
  "deployments": [
    {
      "id": "dep_xK8m",
      "slug": "dep_xK8m",
      "name": "Retail Unsecured - Production",
      "champion_model": {
        "name": "retail_unsecured_v3",
        "version": "1.2.0"
      },
      "is_active": true,
      "created_at": "2026-03-20T10: 15: 00Z"
    },
    {
      "id": "dep_tN3p",
      "slug": "dep_tN3p",
      "name": "Auto Loan - Staging",
      "champion_model": {
        "name": "auto_loan_v1",
        "version": "1.0.0"
      },
      "is_active": true,
      "created_at": "2026-02-14T09: 00: 00Z"
    }
  ]
}