> ## 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 lower-third data feed

> Newblue Captivate lower-third XML data feed.

Captivate polls this URL and maps the returned <field> values to template
variables (TITLE, REFERENCE, LOCATION, REPORTER, CATEGORY, SUMMARY).

Setup in Captivate:
  Template → Properties → Data → Data Source: URL
  URL: .../broadcast/graphics/lower-third/{story_id}/



## OpenAPI

````yaml /openapi/content.yaml get /api/v1/broadcast/graphics/lower-third/{story_id}/
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/lower-third/{story_id}/:
    get:
      tags:
        - Broadcast
      summary: Captivate lower-third data feed
      description: >-
        Newblue Captivate lower-third XML data feed.


        Captivate polls this URL and maps the returned <field> values to
        template

        variables (TITLE, REFERENCE, LOCATION, REPORTER, CATEGORY, SUMMARY).


        Setup in Captivate:
          Template → Properties → Data → Data Source: URL
          URL: .../broadcast/graphics/lower-third/{story_id}/
      operationId: broadcast_graphics_lower_third
      parameters:
        - in: path
          name: story_id
          schema:
            type: string
            format: uuid
          required: true
      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>'

````