# ShiftOps API Endpoint

**Last Updated:** 2026-01-20

## Overview

The ShiftOps API endpoint (`/v2/api/shiftops.php`) provides competitive analysis and scoring functionality for shift planning software evaluation.

## Endpoint

**URL:** `/v2/api/shiftops.php`  
**Method:** POST  
**Content-Type:** `application/json`

## Request Format

```json
{
  "team_size": 15,
  "locations": 2,
  "shifts_per_week": 50,
  "features": {
    "mobile_app": true,
    "integration_datev": true,
    "integration_personio": false
  }
}
```

## Response Format

```json
{
  "success": true,
  "score": 85,
  "recommendations": [...],
  "competitor_analysis": {...}
}
```

## Related Documentation

- **[ShiftOps System Documentation](../../systems/shiftops/README.md)** - Complete ShiftOps system documentation
- **[ShiftOps Backend Rules](../../../.cursor/rules/shiftops-backend.mdc)** - Backend patterns and scoring logic
- **[ShiftOps Frontend Rules](../../../.cursor/rules/shiftops-frontend-core.mdc)** - Frontend UI patterns
