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

# Audience Retention

> Audience Loyality & Retention Analysis

<Check>Supported Platforms:  <Icon icon="youtube" size={20} />  <Icon icon="tiktok" size={20} />  <Icon icon="instagram" size={20} />  <Icon icon="facebook" size={20} />  <Icon icon="x-twitter" size={20} />  <Icon icon="telegram" size={20} /></Check>

<Callout icon="database" color="#0099FF" iconType="solid">This report provides a compiled trends and analysis of the past +3 months.</Callout>

<ResponseExample>
  ```json 200 theme={null}
  {
    "loyalty_summary_table": [
      {
        "metric": "Active Engagement Rate",
        "value": 35,
        "trend": "Stable",
        "benchmark_comparison": "Above Average"
      },
      {
        "metric": "Active Audience Growth",
        "value": 5,
        "trend": "Increase",
        "benchmark_comparison": "Average"
      },
      {
        "metric": "Follower Retention Rate",
        "value": 90,
        "trend": "Stable",
        "benchmark_comparison": "Above Average"
      }
    ],
    "churn_triggers_table": [
      {
        "trigger": "Content Format Change",
        "impact": "Moderate",
        "platform": "YouTube",
        "mitigation_strategy": "Gradual Transition with Feedback"
      },
      {
        "trigger": "Inactivity Period",
        "impact": "High",
        "platform": "YouTube",
        "mitigation_strategy": "Consistent Posting Schedule"
      },
      {
        "trigger": "Controversial Topic",
        "impact": "Low",
        "platform": "YouTube",
        "mitigation_strategy": "Community Engagement and Clarification"
      }
    ],
    "inactive_audience_table": [
      {
        "inactive_period": "30 Days",
        "percent_followers": 20,
        "re_engagement_potential": "High"
      },
      {
        "inactive_period": "60 Days",
        "percent_followers": 10,
        "re_engagement_potential": "Moderate"
      },
      {
        "inactive_period": "90+ Days",
        "percent_followers": 5,
        "re_engagement_potential": "Low"
      }
    ],
    "engagement_consistency_loyalty_patterns": {
      "repeat_engagement_rate_per_month": 55,
      "consistent_multi_content_engagers": 40,
      "avg_time_active_before_disengage_days": 120,
      "cross_platform_loyalty_estimate": 30
    },
    "audience_quality_value": {
      "organic_followers_percent": 85,
      "paid_boosted_acquisition_percent": 15,
      "lifetime_value_loyal_follower_score": 75.5
    },
    "churn_analysis": {
      "unfollow_rate_6mo": 2.5,
      "notable_churn_events": [
        {
          "date": "2023-06-15",
          "description": "Content Format Change"
        },
        {
          "date": "2023-09-20",
          "description": "Controversial Topic Discussion"
        }
      ],
      "platform_specific_churn_patterns": "Higher churn during format changes"
    },
    "re_engagement_strategy_recommendations": [
      "Host a live Q&A session",
      "Create exclusive content for loyal followers",
      "Utilize polls to gather feedback",
      "Run a reactivation ad campaign targeting inactive users"
    ],
    "retention_optimization_tactics": [
      "Post 3-4 times a week, mixing short videos and community posts",
      "Create a subscriber-exclusive group on YouTube",
      "Engage followers with regular feedback loops"
    ],
    "risks_and_prevention": [
      "Monitor unexpected drops in engagement",
      "Prepare a crisis communication plan",
      "Track competitor activities to preempt follower migration"
    ],
    "loyalty_retention_score": {
      "score": 82,
      "trend": "Stable",
      "niche_benchmark": 75,
      "industry_percentile": 85
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/adv-audience-loyalty
openapi: 3.0.3
info:
  title: Riona API Docs
  version: 1.0.0
  contact:
    email: info@riona.ai
    url: https://riona.ai
servers:
  - url: https://riona.ai/api/1.1
security:
  - bearerAuth: []
tags:
  - name: Workflow
    description: Use this to trigger a workflow
  - name: Data
    description: Use this to fetch, modify and delete data
paths:
  /wf/adv-audience-loyalty:
    get:
      tags:
        - Workflow
      description: Triggers the workflow adv-audience-loyalty
      operationId: get_wf_adv-audience-loyalty
      parameters:
        - name: url
          in: query
          required: true
          description: profile url
          schema:
            type: string
        - name: api_key
          in: query
          required: true
          description: >-
            This is your account API Key. You can easily locate it in your
            account dashboard.
          schema:
            type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````