Integrate SalonIQ into your tools with the REST API or MCP endpoint.
/api/v1/statsReturns key business intelligence metrics for a salon.
user_idstring (required) — Your user/salon ID{ "todayRevenue": 450, "monthRevenue": 12500, "utilizationPct": 72, "noShowRate": 14, "stylistCount": 3 }/api/appointmentsCreate a new appointment.
{ "user_id": "...", "stylist_id": "...", "client_name": "Sarah L", "service": "Color", "price": 120, "scheduled_at": "2025-03-01T10:00:00Z", "status": "scheduled" }{ "data": { "id": "...", "status": "scheduled", ... } }Use SalonIQ with Claude, Cursor, and other MCP-compatible AI tools.
POST /api/mcpget_stats— Get utilization, no-show rate, and revenue statsadd_appointment— Create a new appointmentget_stylists— List active stylists for a salon// Example: initialize
POST /api/mcp
{ "jsonrpc": "2.0", "method": "initialize", "id": 1 }
// Example: get stats
{ "jsonrpc": "2.0", "method": "tools/call", "id": 2, "params": { "name": "get_stats", "arguments": { "user_id": "your-user-id" } } }