Skip to main content
GET
/
api
/
v1
/
business-hours
/
curl -X GET https://api.mindosoftware.com/api/v1/business-hours/ \
  -H "X-API-Key: mindo_xxxxxxxxxxxxxxxxxxxxxxxx"
[
  {
    "branchId": 5,
    "branchName": "Casa Central",
    "branchType": "PHYSICAL",
    "address": "Av. Siempre Viva 123, Mar del Plata",
    "schedules": [
      {
        "id": 41,
        "days": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"],
        "daysDisplay": "Lunes, Martes, Miércoles, Jueves, Viernes",
        "startTime": "09:00:00",
        "finishAt": "18:00:00",
        "isActive": true,
        "description": "Horario de semana",
        "specificDate": null
      },
      {
        "id": 42,
        "days": ["SATURDAY"],
        "daysDisplay": "Sábado",
        "startTime": "09:00:00",
        "finishAt": "13:00:00",
        "isActive": true,
        "description": "",
        "specificDate": null
      }
    ]
  }
]

Description

This endpoint returns the business’s fixed operating hours, grouped by branch. Each branch includes its list of schedules. Schedules can be weekly recurring (days field) or for a specific date (specificDate). This endpoint does not filter by date range: it returns the entire hours configuration. For special closing dates or reduced-hours days, see the holidays endpoint.

Authentication header

X-API-Key
string
required
Your Mindo API Key. Format: mindo_xxxxxxxxxxxxxxxxxxxxxxxx

Response

Returns an array of branches.
branchId
integer
Internal branch ID.
branchName
string
Branch name.
branchType
string
Branch type. Possible values: PHYSICAL (physical branch), ONLINE (online service).
address
string
Branch address.
schedules
array
Fixed schedules of the branch.
curl -X GET https://api.mindosoftware.com/api/v1/business-hours/ \
  -H "X-API-Key: mindo_xxxxxxxxxxxxxxxxxxxxxxxx"
[
  {
    "branchId": 5,
    "branchName": "Casa Central",
    "branchType": "PHYSICAL",
    "address": "Av. Siempre Viva 123, Mar del Plata",
    "schedules": [
      {
        "id": 41,
        "days": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"],
        "daysDisplay": "Lunes, Martes, Miércoles, Jueves, Viernes",
        "startTime": "09:00:00",
        "finishAt": "18:00:00",
        "isActive": true,
        "description": "Horario de semana",
        "specificDate": null
      },
      {
        "id": 42,
        "days": ["SATURDAY"],
        "daysDisplay": "Sábado",
        "startTime": "09:00:00",
        "finishAt": "13:00:00",
        "isActive": true,
        "description": "",
        "specificDate": null
      }
    ]
  }
]