> ## 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.

# Captivate news ticker feed

> Captivate news ticker XML data feed — the rolling scroll at the bottom of screen.

Returns the 20 most recently updated published stories.
Captivate polls this and maps each <row> to one ticker item.

Setup in Captivate:
  Ticker/Scroll template → Data Source: URL
  URL: .../broadcast/graphics/ticker/
  Refresh: 30 seconds



## OpenAPI

````yaml /openapi/content.yaml get /api/v1/broadcast/graphics/ticker/
openapi: 3.0.3
info:
  title: Content Service API
  version: 1.0.0
  description: |2-

        **Content Service API** - Comprehensive content(story) and management system.
        
servers:
  - url: https://api.capedigital.co.ke/content
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /api/v1/broadcast/graphics/ticker/:
    get:
      tags:
        - Broadcast
      summary: Captivate news ticker feed
      description: >-
        Captivate news ticker XML data feed — the rolling scroll at the bottom
        of screen.


        Returns the 20 most recently updated published stories.

        Captivate polls this and maps each <row> to one ticker item.


        Setup in Captivate:
          Ticker/Scroll template → Data Source: URL
          URL: .../broadcast/graphics/ticker/
          Refresh: 30 seconds
      operationId: broadcast_graphics_ticker
      responses:
        '200':
          description: No response body
      security:
        - bearerAuth: []
        - {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your JWT token in the format: Bearer <token>'

````