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

# Get Daily Schedule

> Return the MCR transmission schedule and summary stats for a given date.



## OpenAPI

````yaml /openapi/inventory.yaml get /api/v1/scheduler
openapi: 3.1.0
info:
  title: Cape Digi - Inventory Service
  description: >-
    Ad inventory catalog, rate cards, booking orders, campaign tracking, ad
    asset management, and commercial transmission scheduling.
  version: 1.0.0
servers:
  - url: https://api.capedigital.co.ke/inventory
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /api/v1/scheduler:
    get:
      tags:
        - Scheduler
      summary: Get Daily Schedule
      description: Return the MCR transmission schedule and summary stats for a given date.
      operationId: get_daily_schedule_api_v1_scheduler_get
      parameters:
        - name: scheduled_date
          in: query
          required: true
          schema:
            type: string
            format: date
            description: Date in YYYY-MM-DD format
            title: Scheduled Date
          description: Date in YYYY-MM-DD format
        - name: booking_order_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Booking Order Id
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/SlotStatus'
              - type: 'null'
            title: Status
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    SlotStatus:
      type: string
      enum:
        - PENDING
        - TRANSMITTED
        - MISSED
        - CANCELLED
      title: SlotStatus
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````