Back to Resources
services
read:servicesbizily://servicesGet the service catalog with pricing, duration, and variants. Services are what customers can book (haircuts, massages, consultations, etc.).
Parameters
Input Parameters
| Property | Type | Description |
|---|---|---|
includeVariants | boolean(default: true) | Include service variants in response |
Response
Response Schema
| Property | Type | Description |
|---|---|---|
servicesrequired | Service[] | 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}'