/booking/businessBusiness profile and booking rules
Returns public business details, weekly opening hours, timezone, booking settings, and booking page display flags.
Request notes
- No query parameters are required.
- If no booking settings row exists, the API returns the documented default values.
Response
{
"name": "North Elm Studio",
"description": "Modern color and styling appointments",
"category": "Salon",
"logoUrl": "https://cdn.example.com/logo.png",
"phone": "(555) 555-1234",
"address": "123 Main St",
"timezone": "America/Chicago",
"hours": [
{
"day": "Sunday",
"isOpen": true,
"openTime": "09:00:00",
"closeTime": "19:00:00"
}
],
"bookingSettings": {
"bookingLeadTimeMinutes": 60,
"bookingWindowDays": 7,
"slotIntervalMinutes": 30
},
"bookingPage": {
"showStaffSelection": true,
"showServicePrices": true,
"showServiceDuration": true,
"requireCustomerEmail": true
}
}- hours[*].day uses the full English weekday name.
- openTime and closeTime may be null when the business is closed.
curl -X GET "https://api.booqara.com/booking/business" \
-H "x-private-key: pk_live_your_private_key"