> ## Documentation Index
> Fetch the complete documentation index at: https://docs.selcor.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Operating Hours

> Returns operating hours for the location.



## OpenAPI

````yaml https://api.selcor.ai/v1/openapi.json get /v1/workspaces/{workspaceId}/locations/{locationId}/hours
openapi: 3.1.0
info:
  title: Selcor Partner API
  version: 0.1.0
  description: API for managing workspaces, locations, voice agents, and relay executions.
servers:
  - url: https://api.selcor.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/workspaces/{workspaceId}/locations/{locationId}/hours:
    get:
      tags:
        - Hours
      summary: List Operating Hours
      description: Returns operating hours for the location.
      responses:
        '200':
          description: Operating hours list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/HourEntry'
                  request_id:
                    type: string
                required:
                  - data
                  - request_id
      security:
        - bearerAuth: []
components:
  schemas:
    HourEntry:
      type: object
      properties:
        id:
          type: string
        day_of_week:
          type: integer
        start_time:
          type: string
        end_time:
          type: string
        is_active:
          type: boolean
      required:
        - id
        - day_of_week
        - start_time
        - end_time
        - is_active
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key in format: sk_live_...'

````