GET
/api/public/v1/appointment-services

List appointment services

List bookable services for a location.

Query Parameters

NameTypeRequiredDescription
locationIdstring
Required
Location to query.
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/appointment-services" \
  -H "Authorization: Bearer your_access_token"
200Example response
json
{
  "message": "Appointment services retrieved successfully!",
  "content": {
    "services": [
      {
        "id": "svc_1",
        "name": "Consultation",
        "duration": 30,
        "price": 5000,
        "isActive": true
      }
    ]
  }
}