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

# Get Sermon Insights

> Fetch published sermon summary, key points, scripture references, reflection questions, and discussion prompts for a sermon in the authenticated member's church. Returns data: null when no published insights are available.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/media/{mediaId}/insights
openapi: 3.1.0
info:
  title: TheFaithApp Partner API
  version: 1.0.0
  description: >-
    The v1 API for third-party apps that sign in TheFaithApp members and access
    church-scoped content and workflows.
  contact:
    name: TheFaithApp Support
    email: support@thefaithapp.com
servers:
  - url: https://api.thefaithapp.com
    description: Production
security:
  - apiKeyAuth: []
    bearerAuth: []
tags:
  - name: Hosted Auth
    description: Sign members in through the hosted TheFaithApp authentication flow.
  - name: Core Experience
    description: Load member context and the personalized home experience.
  - name: Content
    description: >-
      Read sermons, media, YouTube videos, devotionals, and streaming
      configuration.
  - name: Engagement
    description: Manage member favorites and devotional bookmarks.
  - name: Churches
    description: Read church profiles, public directory records, and branch information.
  - name: Events & Volunteers
    description: >-
      Browse events and volunteer opportunities, then manage registrations and
      commitments.
  - name: Notifications & Bulletins
    description: Read church and member notifications and published bulletins.
  - name: Prayer
    description: Submit a prayer request for the authenticated member.
  - name: Member Connections
    description: Manage the member’s campus and ministry connections.
  - name: Community Groups
    description: >-
      Discover groups and manage membership, feeds, attendance, study guides,
      and leader notes.
  - name: Community Preferences & Research
    description: >-
      Manage community preferences, summaries, and consent-based research
      participation.
  - name: Resource Sharing
    description: Offer shared resources and manage member loan requests and transitions.
  - name: Mutual Aid
    description: >-
      Manage needs and offers, private responses, safety reports, and member
      activity.
  - name: Analytics
    description: Record product analytics events and retrieve aggregate metrics.
  - name: Notification Analytics
    description: Record and summarize notification delivery, open, and click events.
paths:
  /v1/media/{mediaId}/insights:
    get:
      tags:
        - Content
      summary: Get Sermon Insights
      description: >-
        Fetch published sermon summary, key points, scripture references,
        reflection questions, and discussion prompts for a sermon in the
        authenticated member's church. Returns data: null when no published
        insights are available.
      operationId: getMediaMediaIdInsights
      parameters:
        - name: mediaId
          in: path
          description: Unique identifier of the audio or video sermon.
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Published sermon insights or null.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: Success
                  data:
                    anyOf:
                      - type: object
                        properties:
                          media_id:
                            type: integer
                            example: 30
                          summary:
                            type: string
                            example: A sermon about grace and the love of God.
                          key_points:
                            type: array
                            items:
                              type: string
                            example:
                              - God's love is active and sacrificial.
                          scripture_refs:
                            type: array
                            items:
                              type: string
                            example:
                              - John 3:16
                          reflection_questions:
                            type: array
                            items:
                              type: string
                            example:
                              - >-
                                Where do you need to receive God's grace this
                                week?
                          discussion_prompts:
                            type: array
                            items:
                              type: string
                            example:
                              - >-
                                How can the group practice sacrificial love this
                                week?
                      - type: 'null'
        '401':
          description: Unauthorized - Missing or invalid API key or member bearer token.
        '404':
          description: Authenticated member was not found.
        '500':
          description: Internal server error.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Client API key copied from Developer Access in the TheFaithApp
        dashboard.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum
      description: Member access token returned by `POST /v1/auth/token`.

````