cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-competitor-analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-competitor-analysis"
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-competitor-analysis', 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-competitor-analysis",
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-competitor-analysis"
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-competitor-analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-competitor-analysis")
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{
"comparison_table": {
"target_profile": {
"account_type": "Podcast",
"niche": "Self-help, Personal Development",
"audience_focus": "Individuals seeking personal growth",
"followers": 5000000,
"engagement_rate": 0.05,
"average_likes": 250000,
"average_comments": 5000,
"average_shares": 10000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Motivational Talks"
],
"tone": "Inspirational, Educational",
"hashtags_keywords": [
"#SelfHelp",
"#PersonalGrowth"
],
"demographics": {
"age_range": "18-45",
"gender": "Mixed",
"location": [
"USA",
"UK",
"India"
],
"interests": [
"Self-improvement",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Mid-year"
},
"competitors": [
{
"name": "Lewis Howes",
"account_type": "Podcast",
"niche": "Self-help, Business",
"audience_focus": "Entrepreneurs, Personal Development Seekers",
"followers": 4000000,
"engagement_rate": 0.06,
"average_likes": 240000,
"average_comments": 4000,
"average_shares": 8000,
"post_frequency": "Bi-weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Success Stories"
],
"tone": "Motivational, Educational",
"hashtags_keywords": [
"#Success",
"#Entrepreneurship"
],
"demographics": {
"age_range": "20-50",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Business",
"Leadership"
]
},
"growth_rate": 0.03,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "End of Year, Start of Quarter"
},
{
"name": "Tim Ferriss",
"account_type": "Podcast",
"niche": "Self-help, Productivity",
"audience_focus": "High-achievers, Personal Development Enthusiasts",
"followers": 3500000,
"engagement_rate": 0.07,
"average_likes": 245000,
"average_comments": 4500,
"average_shares": 9000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Productivity Hacks",
"Life Lessons"
],
"tone": "Informative, Casual",
"hashtags_keywords": [
"#Productivity",
"#LifeHacks"
],
"demographics": {
"age_range": "25-55",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Germany"
],
"interests": [
"Productivity",
"Lifestyle"
]
},
"growth_rate": 0.025,
"viral_content_performance": "Consistent viral reach",
"seasonal_spikes": "New Year, Back to School"
},
{
"name": "Gary Vaynerchuk",
"account_type": "Podcast",
"niche": "Business, Motivation",
"audience_focus": "Aspiring Entrepreneurs, Business Enthusiasts",
"followers": 6000000,
"engagement_rate": 0.04,
"average_likes": 240000,
"average_comments": 6000,
"average_shares": 11000,
"post_frequency": "Daily",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Business Advice",
"Motivational Talks"
],
"tone": "Direct, Energetic",
"hashtags_keywords": [
"#Hustle",
"#Entrepreneur"
],
"demographics": {
"age_range": "18-40",
"gender": "Mixed",
"location": [
"USA",
"India",
"UK"
],
"interests": [
"Business",
"Motivation"
]
},
"growth_rate": 0.04,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "Year-end, Business Conferences"
},
{
"name": "Tony Robbins",
"account_type": "Podcast",
"niche": "Self-help, Motivation",
"audience_focus": "Individuals Seeking Motivation",
"followers": 4500000,
"engagement_rate": 0.05,
"average_likes": 225000,
"average_comments": 5500,
"average_shares": 9500,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Motivational Talks",
"Personal Growth"
],
"tone": "Inspirational, Uplifting",
"hashtags_keywords": [
"#Motivation",
"#PersonalDevelopment"
],
"demographics": {
"age_range": "30-60",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Self-improvement",
"Wellness"
]
},
"growth_rate": 0.015,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Summer"
},
{
"name": "Oprah's Super Soul",
"account_type": "Podcast",
"niche": "Self-help, Spirituality",
"audience_focus": "Individuals Seeking Spiritual Growth",
"followers": 5500000,
"engagement_rate": 0.06,
"average_likes": 330000,
"average_comments": 7000,
"average_shares": 12000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Spiritual Conversations",
"Life Lessons"
],
"tone": "Reflective, Deep",
"hashtags_keywords": [
"#Spirituality",
"#Soulful"
],
"demographics": {
"age_range": "35-65",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Australia"
],
"interests": [
"Spirituality",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Regularly viral",
"seasonal_spikes": "New Year, Holidays"
}
]
},
"key_insights": {
"target_profile_strengths": "Strong engagement with a focus on personal growth and motivational content.",
"target_profile_weaknesses": "Lower follower growth rate compared to some competitors.",
"competitor_strengths": "High engagement rates, frequent viral content, diverse audience interests.",
"competitor_weaknesses": "Saturation in similar niches, potential for audience overlap."
},
"actionable_recommendations": {
"increase_post_frequency": "Consider increasing post frequency to bi-weekly to match competitors.",
"diversify_content_formats": "Explore additional content formats like live streams or short clips.",
"enhance_viral_potential": "Analyze competitors' viral content to identify successful elements.",
"target_new_demographics": "Expand audience targeting to include younger demographics interested in self-improvement.",
"optimize_hashtags": "Refine hashtag strategy to include trending and niche-specific tags."
}
}
Social Analysis
Competitor Analysis
Get competitor analysis report for any social profile.
GET
/
wf
/
adv-competitor-analysis
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-competitor-analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-competitor-analysis"
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-competitor-analysis', 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-competitor-analysis",
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-competitor-analysis"
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-competitor-analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-competitor-analysis")
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{
"comparison_table": {
"target_profile": {
"account_type": "Podcast",
"niche": "Self-help, Personal Development",
"audience_focus": "Individuals seeking personal growth",
"followers": 5000000,
"engagement_rate": 0.05,
"average_likes": 250000,
"average_comments": 5000,
"average_shares": 10000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Motivational Talks"
],
"tone": "Inspirational, Educational",
"hashtags_keywords": [
"#SelfHelp",
"#PersonalGrowth"
],
"demographics": {
"age_range": "18-45",
"gender": "Mixed",
"location": [
"USA",
"UK",
"India"
],
"interests": [
"Self-improvement",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Mid-year"
},
"competitors": [
{
"name": "Lewis Howes",
"account_type": "Podcast",
"niche": "Self-help, Business",
"audience_focus": "Entrepreneurs, Personal Development Seekers",
"followers": 4000000,
"engagement_rate": 0.06,
"average_likes": 240000,
"average_comments": 4000,
"average_shares": 8000,
"post_frequency": "Bi-weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Success Stories"
],
"tone": "Motivational, Educational",
"hashtags_keywords": [
"#Success",
"#Entrepreneurship"
],
"demographics": {
"age_range": "20-50",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Business",
"Leadership"
]
},
"growth_rate": 0.03,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "End of Year, Start of Quarter"
},
{
"name": "Tim Ferriss",
"account_type": "Podcast",
"niche": "Self-help, Productivity",
"audience_focus": "High-achievers, Personal Development Enthusiasts",
"followers": 3500000,
"engagement_rate": 0.07,
"average_likes": 245000,
"average_comments": 4500,
"average_shares": 9000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Productivity Hacks",
"Life Lessons"
],
"tone": "Informative, Casual",
"hashtags_keywords": [
"#Productivity",
"#LifeHacks"
],
"demographics": {
"age_range": "25-55",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Germany"
],
"interests": [
"Productivity",
"Lifestyle"
]
},
"growth_rate": 0.025,
"viral_content_performance": "Consistent viral reach",
"seasonal_spikes": "New Year, Back to School"
},
{
"name": "Gary Vaynerchuk",
"account_type": "Podcast",
"niche": "Business, Motivation",
"audience_focus": "Aspiring Entrepreneurs, Business Enthusiasts",
"followers": 6000000,
"engagement_rate": 0.04,
"average_likes": 240000,
"average_comments": 6000,
"average_shares": 11000,
"post_frequency": "Daily",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Business Advice",
"Motivational Talks"
],
"tone": "Direct, Energetic",
"hashtags_keywords": [
"#Hustle",
"#Entrepreneur"
],
"demographics": {
"age_range": "18-40",
"gender": "Mixed",
"location": [
"USA",
"India",
"UK"
],
"interests": [
"Business",
"Motivation"
]
},
"growth_rate": 0.04,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "Year-end, Business Conferences"
},
{
"name": "Tony Robbins",
"account_type": "Podcast",
"niche": "Self-help, Motivation",
"audience_focus": "Individuals Seeking Motivation",
"followers": 4500000,
"engagement_rate": 0.05,
"average_likes": 225000,
"average_comments": 5500,
"average_shares": 9500,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Motivational Talks",
"Personal Growth"
],
"tone": "Inspirational, Uplifting",
"hashtags_keywords": [
"#Motivation",
"#PersonalDevelopment"
],
"demographics": {
"age_range": "30-60",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Self-improvement",
"Wellness"
]
},
"growth_rate": 0.015,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Summer"
},
{
"name": "Oprah's Super Soul",
"account_type": "Podcast",
"niche": "Self-help, Spirituality",
"audience_focus": "Individuals Seeking Spiritual Growth",
"followers": 5500000,
"engagement_rate": 0.06,
"average_likes": 330000,
"average_comments": 7000,
"average_shares": 12000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Spiritual Conversations",
"Life Lessons"
],
"tone": "Reflective, Deep",
"hashtags_keywords": [
"#Spirituality",
"#Soulful"
],
"demographics": {
"age_range": "35-65",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Australia"
],
"interests": [
"Spirituality",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Regularly viral",
"seasonal_spikes": "New Year, Holidays"
}
]
},
"key_insights": {
"target_profile_strengths": "Strong engagement with a focus on personal growth and motivational content.",
"target_profile_weaknesses": "Lower follower growth rate compared to some competitors.",
"competitor_strengths": "High engagement rates, frequent viral content, diverse audience interests.",
"competitor_weaknesses": "Saturation in similar niches, potential for audience overlap."
},
"actionable_recommendations": {
"increase_post_frequency": "Consider increasing post frequency to bi-weekly to match competitors.",
"diversify_content_formats": "Explore additional content formats like live streams or short clips.",
"enhance_viral_potential": "Analyze competitors' viral content to identify successful elements.",
"target_new_demographics": "Expand audience targeting to include younger demographics interested in self-improvement.",
"optimize_hashtags": "Refine hashtag strategy to include trending and niche-specific tags."
}
}
Supported Platforms:
{
"comparison_table": {
"target_profile": {
"account_type": "Podcast",
"niche": "Self-help, Personal Development",
"audience_focus": "Individuals seeking personal growth",
"followers": 5000000,
"engagement_rate": 0.05,
"average_likes": 250000,
"average_comments": 5000,
"average_shares": 10000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Motivational Talks"
],
"tone": "Inspirational, Educational",
"hashtags_keywords": [
"#SelfHelp",
"#PersonalGrowth"
],
"demographics": {
"age_range": "18-45",
"gender": "Mixed",
"location": [
"USA",
"UK",
"India"
],
"interests": [
"Self-improvement",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Mid-year"
},
"competitors": [
{
"name": "Lewis Howes",
"account_type": "Podcast",
"niche": "Self-help, Business",
"audience_focus": "Entrepreneurs, Personal Development Seekers",
"followers": 4000000,
"engagement_rate": 0.06,
"average_likes": 240000,
"average_comments": 4000,
"average_shares": 8000,
"post_frequency": "Bi-weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Interviews",
"Success Stories"
],
"tone": "Motivational, Educational",
"hashtags_keywords": [
"#Success",
"#Entrepreneurship"
],
"demographics": {
"age_range": "20-50",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Business",
"Leadership"
]
},
"growth_rate": 0.03,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "End of Year, Start of Quarter"
},
{
"name": "Tim Ferriss",
"account_type": "Podcast",
"niche": "Self-help, Productivity",
"audience_focus": "High-achievers, Personal Development Enthusiasts",
"followers": 3500000,
"engagement_rate": 0.07,
"average_likes": 245000,
"average_comments": 4500,
"average_shares": 9000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Productivity Hacks",
"Life Lessons"
],
"tone": "Informative, Casual",
"hashtags_keywords": [
"#Productivity",
"#LifeHacks"
],
"demographics": {
"age_range": "25-55",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Germany"
],
"interests": [
"Productivity",
"Lifestyle"
]
},
"growth_rate": 0.025,
"viral_content_performance": "Consistent viral reach",
"seasonal_spikes": "New Year, Back to School"
},
{
"name": "Gary Vaynerchuk",
"account_type": "Podcast",
"niche": "Business, Motivation",
"audience_focus": "Aspiring Entrepreneurs, Business Enthusiasts",
"followers": 6000000,
"engagement_rate": 0.04,
"average_likes": 240000,
"average_comments": 6000,
"average_shares": 11000,
"post_frequency": "Daily",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Business Advice",
"Motivational Talks"
],
"tone": "Direct, Energetic",
"hashtags_keywords": [
"#Hustle",
"#Entrepreneur"
],
"demographics": {
"age_range": "18-40",
"gender": "Mixed",
"location": [
"USA",
"India",
"UK"
],
"interests": [
"Business",
"Motivation"
]
},
"growth_rate": 0.04,
"viral_content_performance": "Frequent viral content",
"seasonal_spikes": "Year-end, Business Conferences"
},
{
"name": "Tony Robbins",
"account_type": "Podcast",
"niche": "Self-help, Motivation",
"audience_focus": "Individuals Seeking Motivation",
"followers": 4500000,
"engagement_rate": 0.05,
"average_likes": 225000,
"average_comments": 5500,
"average_shares": 9500,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Motivational Talks",
"Personal Growth"
],
"tone": "Inspirational, Uplifting",
"hashtags_keywords": [
"#Motivation",
"#PersonalDevelopment"
],
"demographics": {
"age_range": "30-60",
"gender": "Mixed",
"location": [
"USA",
"Canada",
"Australia"
],
"interests": [
"Self-improvement",
"Wellness"
]
},
"growth_rate": 0.015,
"viral_content_performance": "Occasional viral hits",
"seasonal_spikes": "New Year, Summer"
},
{
"name": "Oprah's Super Soul",
"account_type": "Podcast",
"niche": "Self-help, Spirituality",
"audience_focus": "Individuals Seeking Spiritual Growth",
"followers": 5500000,
"engagement_rate": 0.06,
"average_likes": 330000,
"average_comments": 7000,
"average_shares": 12000,
"post_frequency": "Weekly",
"content_formats": [
"Video",
"Audio"
],
"themes": [
"Spiritual Conversations",
"Life Lessons"
],
"tone": "Reflective, Deep",
"hashtags_keywords": [
"#Spirituality",
"#Soulful"
],
"demographics": {
"age_range": "35-65",
"gender": "Mixed",
"location": [
"USA",
"UK",
"Australia"
],
"interests": [
"Spirituality",
"Mindfulness"
]
},
"growth_rate": 0.02,
"viral_content_performance": "Regularly viral",
"seasonal_spikes": "New Year, Holidays"
}
]
},
"key_insights": {
"target_profile_strengths": "Strong engagement with a focus on personal growth and motivational content.",
"target_profile_weaknesses": "Lower follower growth rate compared to some competitors.",
"competitor_strengths": "High engagement rates, frequent viral content, diverse audience interests.",
"competitor_weaknesses": "Saturation in similar niches, potential for audience overlap."
},
"actionable_recommendations": {
"increase_post_frequency": "Consider increasing post frequency to bi-weekly to match competitors.",
"diversify_content_formats": "Explore additional content formats like live streams or short clips.",
"enhance_viral_potential": "Analyze competitors' viral content to identify successful elements.",
"target_new_demographics": "Expand audience targeting to include younger demographics interested in self-improvement.",
"optimize_hashtags": "Refine hashtag strategy to include trending and niche-specific tags."
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Profile URL. Examples:
https://www.youtube.com/@MrBeasthttps://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVAhttps://www.tiktok.com/@khaby.lamehttps://www.instagram.com/therockhttps://www.facebook.com/Cristianohttps://www.facebook.com/81221197163https://x.com/elonmuskhttps://twitter.com/elonmuskhttps://t.me/cristiano
This is your account API Key. You can easily locate it in your account dashboard.
Response
200
OK
⌘I