cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-audience-loyalty \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-audience-loyalty"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://riona.ai/api/1.1/wf/adv-audience-loyalty', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://riona.ai/api/1.1/wf/adv-audience-loyalty",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://riona.ai/api/1.1/wf/adv-audience-loyalty"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://riona.ai/api/1.1/wf/adv-audience-loyalty")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-audience-loyalty")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}
Social Analysis
Audience Retention
Audience Loyality & Retention Analysis
GET
/
wf
/
adv-audience-loyalty
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-audience-loyalty \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-audience-loyalty"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://riona.ai/api/1.1/wf/adv-audience-loyalty', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://riona.ai/api/1.1/wf/adv-audience-loyalty",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://riona.ai/api/1.1/wf/adv-audience-loyalty"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://riona.ai/api/1.1/wf/adv-audience-loyalty")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-audience-loyalty")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}
Supported Platforms:
This report provides a compiled trends and analysis of the past +3 months.
{
"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
}
}
⌘I