cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-compare-profiles \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-compare-profiles"
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-compare-profiles', 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-compare-profiles",
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-compare-profiles"
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-compare-profiles")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-compare-profiles")
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": {
"basic_info": {
"platform": {
"profile_1": "YouTube",
"profile_2": "TikTok"
},
"account_type": {
"profile_1": "Podcast Channel",
"profile_2": "Influencer/Content Creator"
},
"niche": {
"profile_1": "Self-help, Motivation, Personal Development",
"profile_2": "Humor, Entertainment"
},
"target_audience": {
"profile_1": "Adults interested in personal growth",
"profile_2": "Teens and young adults seeking entertainment"
}
},
"engagement_metrics": {
"followers": {
"profile_1": 5000000,
"profile_2": 160000000
},
"average_likes": {
"profile_1": 50000,
"profile_2": 2500000
},
"comments": {
"profile_1": 5000,
"profile_2": 150000
},
"shares": {
"profile_1": 1000,
"profile_2": 30000
},
"engagement_rate": {
"profile_1": 1,
"profile_2": 1.6
}
},
"content_strategy": {
"posting_frequency": {
"profile_1": "Weekly",
"profile_2": "Daily"
},
"content_types": {
"profile_1": [
"Interviews",
"Thought Pieces",
"Guided Meditations"
],
"profile_2": [
"Short Skits",
"Visual Gags",
"Silent Comedy"
]
},
"tone_style": {
"profile_1": "Informative, Inspirational",
"profile_2": "Humorous, Light-hearted"
},
"quality_of_visuals": {
"profile_1": "High",
"profile_2": "Moderate"
}
},
"audience_insights": {
"demographics": {
"profile_1": "25-45 years, diverse gender",
"profile_2": "13-24 years, diverse gender"
},
"geographic_distribution": {
"profile_1": [
"US",
"UK",
"India"
],
"profile_2": [
"Global",
"Italy",
"US"
]
},
"audience_interests": {
"profile_1": [
"Self-improvement",
"Mindfulness",
"Spirituality"
],
"profile_2": [
"Comedy",
"Trends",
"Pop Culture"
]
}
},
"growth_trends": {
"recent_follower_growth": {
"profile_1": "Stable",
"profile_2": "Rising"
},
"engagement_trend": {
"profile_1": "Stable",
"profile_2": "Rising"
}
},
"strengths_weaknesses": {
"strengths": {
"profile_1": [
"Strong brand identity",
"Deep, meaningful content"
],
"profile_2": [
"Massive follower base",
"High engagement rates"
]
},
"weaknesses": {
"profile_1": [
"Niche audience",
"Lower engagement rate"
],
"profile_2": [
"Limited depth in content",
"Over-reliance on trends"
]
}
},
"key_opportunities": {
"profile_1": [
"Expand into short-form content",
"Collaborate with popular TikTok influencers"
],
"profile_2": [
"Introduce more in-depth content",
"Collaborate with motivational speakers"
]
}
},
"key_findings": "Profile 2 has a significant follower base and higher engagement rates due to its humorous, easily consumable content. Profile 1 offers deep, meaningful content that resonates well with its niche audience but could benefit from diversifying its content strategy to reach a broader audience.",
"actionable_recommendations": {
"profile_1": [
"Increase posting frequency",
"Experiment with short-form content",
"Engage with TikTok trends"
],
"profile_2": [
"Incorporate educational or motivational content",
"Leverage YouTube for longer-form videos",
"Engage with audience through interactive content"
]
}
}
Social Analysis
Compare Profiles
Compare and analyze two social profiles.
GET
/
wf
/
adv-compare-profiles
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-compare-profiles \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-compare-profiles"
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-compare-profiles', 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-compare-profiles",
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-compare-profiles"
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-compare-profiles")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-compare-profiles")
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": {
"basic_info": {
"platform": {
"profile_1": "YouTube",
"profile_2": "TikTok"
},
"account_type": {
"profile_1": "Podcast Channel",
"profile_2": "Influencer/Content Creator"
},
"niche": {
"profile_1": "Self-help, Motivation, Personal Development",
"profile_2": "Humor, Entertainment"
},
"target_audience": {
"profile_1": "Adults interested in personal growth",
"profile_2": "Teens and young adults seeking entertainment"
}
},
"engagement_metrics": {
"followers": {
"profile_1": 5000000,
"profile_2": 160000000
},
"average_likes": {
"profile_1": 50000,
"profile_2": 2500000
},
"comments": {
"profile_1": 5000,
"profile_2": 150000
},
"shares": {
"profile_1": 1000,
"profile_2": 30000
},
"engagement_rate": {
"profile_1": 1,
"profile_2": 1.6
}
},
"content_strategy": {
"posting_frequency": {
"profile_1": "Weekly",
"profile_2": "Daily"
},
"content_types": {
"profile_1": [
"Interviews",
"Thought Pieces",
"Guided Meditations"
],
"profile_2": [
"Short Skits",
"Visual Gags",
"Silent Comedy"
]
},
"tone_style": {
"profile_1": "Informative, Inspirational",
"profile_2": "Humorous, Light-hearted"
},
"quality_of_visuals": {
"profile_1": "High",
"profile_2": "Moderate"
}
},
"audience_insights": {
"demographics": {
"profile_1": "25-45 years, diverse gender",
"profile_2": "13-24 years, diverse gender"
},
"geographic_distribution": {
"profile_1": [
"US",
"UK",
"India"
],
"profile_2": [
"Global",
"Italy",
"US"
]
},
"audience_interests": {
"profile_1": [
"Self-improvement",
"Mindfulness",
"Spirituality"
],
"profile_2": [
"Comedy",
"Trends",
"Pop Culture"
]
}
},
"growth_trends": {
"recent_follower_growth": {
"profile_1": "Stable",
"profile_2": "Rising"
},
"engagement_trend": {
"profile_1": "Stable",
"profile_2": "Rising"
}
},
"strengths_weaknesses": {
"strengths": {
"profile_1": [
"Strong brand identity",
"Deep, meaningful content"
],
"profile_2": [
"Massive follower base",
"High engagement rates"
]
},
"weaknesses": {
"profile_1": [
"Niche audience",
"Lower engagement rate"
],
"profile_2": [
"Limited depth in content",
"Over-reliance on trends"
]
}
},
"key_opportunities": {
"profile_1": [
"Expand into short-form content",
"Collaborate with popular TikTok influencers"
],
"profile_2": [
"Introduce more in-depth content",
"Collaborate with motivational speakers"
]
}
},
"key_findings": "Profile 2 has a significant follower base and higher engagement rates due to its humorous, easily consumable content. Profile 1 offers deep, meaningful content that resonates well with its niche audience but could benefit from diversifying its content strategy to reach a broader audience.",
"actionable_recommendations": {
"profile_1": [
"Increase posting frequency",
"Experiment with short-form content",
"Engage with TikTok trends"
],
"profile_2": [
"Incorporate educational or motivational content",
"Leverage YouTube for longer-form videos",
"Engage with audience through interactive content"
]
}
}
Supported Platforms:
{
"comparison_table": {
"basic_info": {
"platform": {
"profile_1": "YouTube",
"profile_2": "TikTok"
},
"account_type": {
"profile_1": "Podcast Channel",
"profile_2": "Influencer/Content Creator"
},
"niche": {
"profile_1": "Self-help, Motivation, Personal Development",
"profile_2": "Humor, Entertainment"
},
"target_audience": {
"profile_1": "Adults interested in personal growth",
"profile_2": "Teens and young adults seeking entertainment"
}
},
"engagement_metrics": {
"followers": {
"profile_1": 5000000,
"profile_2": 160000000
},
"average_likes": {
"profile_1": 50000,
"profile_2": 2500000
},
"comments": {
"profile_1": 5000,
"profile_2": 150000
},
"shares": {
"profile_1": 1000,
"profile_2": 30000
},
"engagement_rate": {
"profile_1": 1,
"profile_2": 1.6
}
},
"content_strategy": {
"posting_frequency": {
"profile_1": "Weekly",
"profile_2": "Daily"
},
"content_types": {
"profile_1": [
"Interviews",
"Thought Pieces",
"Guided Meditations"
],
"profile_2": [
"Short Skits",
"Visual Gags",
"Silent Comedy"
]
},
"tone_style": {
"profile_1": "Informative, Inspirational",
"profile_2": "Humorous, Light-hearted"
},
"quality_of_visuals": {
"profile_1": "High",
"profile_2": "Moderate"
}
},
"audience_insights": {
"demographics": {
"profile_1": "25-45 years, diverse gender",
"profile_2": "13-24 years, diverse gender"
},
"geographic_distribution": {
"profile_1": [
"US",
"UK",
"India"
],
"profile_2": [
"Global",
"Italy",
"US"
]
},
"audience_interests": {
"profile_1": [
"Self-improvement",
"Mindfulness",
"Spirituality"
],
"profile_2": [
"Comedy",
"Trends",
"Pop Culture"
]
}
},
"growth_trends": {
"recent_follower_growth": {
"profile_1": "Stable",
"profile_2": "Rising"
},
"engagement_trend": {
"profile_1": "Stable",
"profile_2": "Rising"
}
},
"strengths_weaknesses": {
"strengths": {
"profile_1": [
"Strong brand identity",
"Deep, meaningful content"
],
"profile_2": [
"Massive follower base",
"High engagement rates"
]
},
"weaknesses": {
"profile_1": [
"Niche audience",
"Lower engagement rate"
],
"profile_2": [
"Limited depth in content",
"Over-reliance on trends"
]
}
},
"key_opportunities": {
"profile_1": [
"Expand into short-form content",
"Collaborate with popular TikTok influencers"
],
"profile_2": [
"Introduce more in-depth content",
"Collaborate with motivational speakers"
]
}
},
"key_findings": "Profile 2 has a significant follower base and higher engagement rates due to its humorous, easily consumable content. Profile 1 offers deep, meaningful content that resonates well with its niche audience but could benefit from diversifying its content strategy to reach a broader audience.",
"actionable_recommendations": {
"profile_1": [
"Increase posting frequency",
"Experiment with short-form content",
"Engage with TikTok trends"
],
"profile_2": [
"Incorporate educational or motivational content",
"Leverage YouTube for longer-form videos",
"Engage with audience through interactive content"
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
URL of profile 1
URL of profile 2
This is your account API Key. You can easily locate it in your account dashboard.
Response
200
OK
⌘I