Back to Resources

services

read:services
bizily://services

Get the service catalog with pricing, duration, and variants. Services are what customers can book (haircuts, massages, consultations, etc.).

Parameters

Input Parameters

PropertyTypeDescription
includeVariantsboolean(default: true)Include service variants in response

Response

Response Schema

PropertyTypeDescription
servicesrequiredService[]Array of service objects

Example

Requestjson
{
  "type": "resource",
  "name": "services",
  "params": {}
}
Responsejson
{
  "success": true,
  "data": {
    "services": [
      {
        "id": "service-uuid",
        "name": "Haircut",
        "description": "Professional haircut with styling",
        "duration": 45,
        "price": 50,
        "pricingType": "fixed",
        "variants": [
          {
            "id": "variant-uuid",
            "duration": 60,
            "price": 65,
            "isDefault": false
          }
        ]
      }
    ]
  }
}

cURL Example

curl -X POST https://app.bizily.io/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{\n  "type": "resource",\n  "name": "services",\n  "params": {}\n}'