cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-analyze-profile \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-analyze-profile"
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-analyze-profile', 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-analyze-profile",
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-analyze-profile"
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-analyze-profile")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-analyze-profile")
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{
"profile_overview": {
"short_bio": "Jay Shetty Podcast - Conversations with the world’s most insightful people.",
"brand_personality_tone": "Inspirational, Thoughtful, Conversational",
"target_audience": "Individuals interested in personal development, mindfulness, and motivational content."
},
"key_statistics": {
"followers_count": 600000,
"following_count": 0,
"post_count": 150,
"engagement_rate": 0.05,
"average_likes": 30000,
"average_comments": 500,
"posting_frequency": "Weekly"
},
"content_strategy": {
"types_of_content": [
"videos",
"shorts"
],
"most_common_themes": [
"personal growth",
"mindfulness",
"interviews with thought leaders"
],
"posting_style": "Long-form interviews and short motivational clips"
},
"audience_insights": {
"demographic_distribution": {
"age": "18-45",
"gender": "Mixed",
"location": "Global, primarily English-speaking countries"
},
"interaction_patterns": "High engagement on motivational clips and interviews with celebrities",
"best_performing_content": "Interviews with high-profile guests and actionable self-improvement tips"
},
"strengths": [
"High-quality production",
"Engaging and insightful content",
"Strong guest lineup"
],
"weaknesses": [
"Limited interaction with followers",
"No diversified content types beyond video"
],
"opportunities": [
"Incorporate more interactive content like Q&A sessions",
"Expand content to include behind-the-scenes or personal stories",
"Collaborate with other influencers for cross-promotion"
],
"top_performing_content": [
"Interviews with celebrities",
"Motivational clips with actionable advice"
],
"competitive_positioning": {
"comparison_to_similar_accounts": "Strong presence in the motivational podcast niche with unique guest insights, but could benefit from more diversified content strategies."
}
}
Social Analysis
Analyze Social Profile
Analyze any social profile
GET
/
wf
/
adv-analyze-profile
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-analyze-profile \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-analyze-profile"
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-analyze-profile', 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-analyze-profile",
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-analyze-profile"
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-analyze-profile")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-analyze-profile")
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{
"profile_overview": {
"short_bio": "Jay Shetty Podcast - Conversations with the world’s most insightful people.",
"brand_personality_tone": "Inspirational, Thoughtful, Conversational",
"target_audience": "Individuals interested in personal development, mindfulness, and motivational content."
},
"key_statistics": {
"followers_count": 600000,
"following_count": 0,
"post_count": 150,
"engagement_rate": 0.05,
"average_likes": 30000,
"average_comments": 500,
"posting_frequency": "Weekly"
},
"content_strategy": {
"types_of_content": [
"videos",
"shorts"
],
"most_common_themes": [
"personal growth",
"mindfulness",
"interviews with thought leaders"
],
"posting_style": "Long-form interviews and short motivational clips"
},
"audience_insights": {
"demographic_distribution": {
"age": "18-45",
"gender": "Mixed",
"location": "Global, primarily English-speaking countries"
},
"interaction_patterns": "High engagement on motivational clips and interviews with celebrities",
"best_performing_content": "Interviews with high-profile guests and actionable self-improvement tips"
},
"strengths": [
"High-quality production",
"Engaging and insightful content",
"Strong guest lineup"
],
"weaknesses": [
"Limited interaction with followers",
"No diversified content types beyond video"
],
"opportunities": [
"Incorporate more interactive content like Q&A sessions",
"Expand content to include behind-the-scenes or personal stories",
"Collaborate with other influencers for cross-promotion"
],
"top_performing_content": [
"Interviews with celebrities",
"Motivational clips with actionable advice"
],
"competitive_positioning": {
"comparison_to_similar_accounts": "Strong presence in the motivational podcast niche with unique guest insights, but could benefit from more diversified content strategies."
}
}
Supported Platforms:
{
"profile_overview": {
"short_bio": "Jay Shetty Podcast - Conversations with the world’s most insightful people.",
"brand_personality_tone": "Inspirational, Thoughtful, Conversational",
"target_audience": "Individuals interested in personal development, mindfulness, and motivational content."
},
"key_statistics": {
"followers_count": 600000,
"following_count": 0,
"post_count": 150,
"engagement_rate": 0.05,
"average_likes": 30000,
"average_comments": 500,
"posting_frequency": "Weekly"
},
"content_strategy": {
"types_of_content": [
"videos",
"shorts"
],
"most_common_themes": [
"personal growth",
"mindfulness",
"interviews with thought leaders"
],
"posting_style": "Long-form interviews and short motivational clips"
},
"audience_insights": {
"demographic_distribution": {
"age": "18-45",
"gender": "Mixed",
"location": "Global, primarily English-speaking countries"
},
"interaction_patterns": "High engagement on motivational clips and interviews with celebrities",
"best_performing_content": "Interviews with high-profile guests and actionable self-improvement tips"
},
"strengths": [
"High-quality production",
"Engaging and insightful content",
"Strong guest lineup"
],
"weaknesses": [
"Limited interaction with followers",
"No diversified content types beyond video"
],
"opportunities": [
"Incorporate more interactive content like Q&A sessions",
"Expand content to include behind-the-scenes or personal stories",
"Collaborate with other influencers for cross-promotion"
],
"top_performing_content": [
"Interviews with celebrities",
"Motivational clips with actionable advice"
],
"competitive_positioning": {
"comparison_to_similar_accounts": "Strong presence in the motivational podcast niche with unique guest insights, but could benefit from more diversified content strategies."
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Profile URL.
Supported Platforms: youtube | tiktok | instagram | facebook | twitter | telegram
This is your account API Key. You can easily locate it in your account dashboard.
Response
200
OK
⌘I