cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-monetization-analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-monetization-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-monetization-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-monetization-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-monetization-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-monetization-analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-monetization-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{
"CPM_RPM_Table": [
{
"Niche_Sub_Niche": "Fashion",
"CPM_Range": [
5,
15
],
"RPM_Range": [
3,
10
],
"Top_Countries": [
"USA",
"UK",
"Australia"
],
"Trend_Direction": "upward"
},
{
"Niche_Sub_Niche": "Health & Fitness",
"CPM_Range": [
8,
20
],
"RPM_Range": [
5,
15
],
"Top_Countries": [
"Canada",
"Germany",
"France"
],
"Trend_Direction": "stable"
},
{
"Niche_Sub_Niche": "Technology",
"CPM_Range": [
10,
25
],
"RPM_Range": [
8,
18
],
"Top_Countries": [
"India",
"USA",
"Japan"
],
"Trend_Direction": "upward"
}
],
"Sponsorship_Rate_Table": [
{
"Content_Type": "Short-form Video",
"Follower_Tier": "10k-50k",
"Engagement_Tier": "High",
"Rate_Range": [
100,
500
],
"Example_Campaigns": [
"Fashion Hauls",
"Tech Reviews"
]
},
{
"Content_Type": "Carousel",
"Follower_Tier": "50k-100k",
"Engagement_Tier": "Medium",
"Rate_Range": [
500,
1000
],
"Example_Campaigns": [
"Product Launches",
"Event Highlights"
]
},
{
"Content_Type": "Live Stream",
"Follower_Tier": "100k-500k",
"Engagement_Tier": "High",
"Rate_Range": [
2000,
5000
],
"Example_Campaigns": [
"Live Product Demos",
"Q&A Sessions"
]
}
],
"Top_Advertisers_Table": [
{
"Industry": "Fashion",
"Example_Brands": [
"Gucci",
"Zara"
],
"Avg_CPM": 18,
"Demand_Trend": "increasing"
},
{
"Industry": "Tech",
"Example_Brands": [
"Apple",
"Samsung"
],
"Avg_CPM": 22,
"Demand_Trend": "stable"
},
{
"Industry": "Health & Wellness",
"Example_Brands": [
"Nike",
"Adidas"
],
"Avg_CPM": 15,
"Demand_Trend": "increasing"
}
],
"ROI_Forecast_Table": [
{
"Campaign_Type": "Sponsored Post",
"Ad_Spend": 1000,
"Expected_Reach": 50000,
"Expected_Conversions": 200,
"ROI_Score": "medium"
},
{
"Campaign_Type": "Influencer Takeover",
"Ad_Spend": 5000,
"Expected_Reach": 200000,
"Expected_Conversions": 1000,
"ROI_Score": "high"
}
],
"Audience_Monetization_Summary": [
"High purchasing power: millennials",
"Engagement-to-purchase likelihood: high for tech and fashion",
"Content types triggering sales: product demos, influencer endorsements",
"Behavioral trends: increased time spent on platform, preference for video content"
],
"Strategic_Recommendations": [
"Increase ad spend in trending categories like technology and fashion",
"Leverage short-form video for higher engagement",
"Optimize for regional markets showing upward trends",
"Focus on high-engagement influencers for better ROI"
]
}
Social Analysis
Monetization Analysis
Get a Monetization Potential Analysis Report for any of the supported platforms: YouTube, TikTok, Instagram, Facebook, Twitter, Telegram.
GET
/
wf
/
adv-monetization-analysis
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/adv-monetization-analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/adv-monetization-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-monetization-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-monetization-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-monetization-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-monetization-analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/adv-monetization-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{
"CPM_RPM_Table": [
{
"Niche_Sub_Niche": "Fashion",
"CPM_Range": [
5,
15
],
"RPM_Range": [
3,
10
],
"Top_Countries": [
"USA",
"UK",
"Australia"
],
"Trend_Direction": "upward"
},
{
"Niche_Sub_Niche": "Health & Fitness",
"CPM_Range": [
8,
20
],
"RPM_Range": [
5,
15
],
"Top_Countries": [
"Canada",
"Germany",
"France"
],
"Trend_Direction": "stable"
},
{
"Niche_Sub_Niche": "Technology",
"CPM_Range": [
10,
25
],
"RPM_Range": [
8,
18
],
"Top_Countries": [
"India",
"USA",
"Japan"
],
"Trend_Direction": "upward"
}
],
"Sponsorship_Rate_Table": [
{
"Content_Type": "Short-form Video",
"Follower_Tier": "10k-50k",
"Engagement_Tier": "High",
"Rate_Range": [
100,
500
],
"Example_Campaigns": [
"Fashion Hauls",
"Tech Reviews"
]
},
{
"Content_Type": "Carousel",
"Follower_Tier": "50k-100k",
"Engagement_Tier": "Medium",
"Rate_Range": [
500,
1000
],
"Example_Campaigns": [
"Product Launches",
"Event Highlights"
]
},
{
"Content_Type": "Live Stream",
"Follower_Tier": "100k-500k",
"Engagement_Tier": "High",
"Rate_Range": [
2000,
5000
],
"Example_Campaigns": [
"Live Product Demos",
"Q&A Sessions"
]
}
],
"Top_Advertisers_Table": [
{
"Industry": "Fashion",
"Example_Brands": [
"Gucci",
"Zara"
],
"Avg_CPM": 18,
"Demand_Trend": "increasing"
},
{
"Industry": "Tech",
"Example_Brands": [
"Apple",
"Samsung"
],
"Avg_CPM": 22,
"Demand_Trend": "stable"
},
{
"Industry": "Health & Wellness",
"Example_Brands": [
"Nike",
"Adidas"
],
"Avg_CPM": 15,
"Demand_Trend": "increasing"
}
],
"ROI_Forecast_Table": [
{
"Campaign_Type": "Sponsored Post",
"Ad_Spend": 1000,
"Expected_Reach": 50000,
"Expected_Conversions": 200,
"ROI_Score": "medium"
},
{
"Campaign_Type": "Influencer Takeover",
"Ad_Spend": 5000,
"Expected_Reach": 200000,
"Expected_Conversions": 1000,
"ROI_Score": "high"
}
],
"Audience_Monetization_Summary": [
"High purchasing power: millennials",
"Engagement-to-purchase likelihood: high for tech and fashion",
"Content types triggering sales: product demos, influencer endorsements",
"Behavioral trends: increased time spent on platform, preference for video content"
],
"Strategic_Recommendations": [
"Increase ad spend in trending categories like technology and fashion",
"Leverage short-form video for higher engagement",
"Optimize for regional markets showing upward trends",
"Focus on high-engagement influencers for better ROI"
]
}
Supported Platforms:
This report provides a compiled data analysis of the past 14 days.
{
"CPM_RPM_Table": [
{
"Niche_Sub_Niche": "Fashion",
"CPM_Range": [
5,
15
],
"RPM_Range": [
3,
10
],
"Top_Countries": [
"USA",
"UK",
"Australia"
],
"Trend_Direction": "upward"
},
{
"Niche_Sub_Niche": "Health & Fitness",
"CPM_Range": [
8,
20
],
"RPM_Range": [
5,
15
],
"Top_Countries": [
"Canada",
"Germany",
"France"
],
"Trend_Direction": "stable"
},
{
"Niche_Sub_Niche": "Technology",
"CPM_Range": [
10,
25
],
"RPM_Range": [
8,
18
],
"Top_Countries": [
"India",
"USA",
"Japan"
],
"Trend_Direction": "upward"
}
],
"Sponsorship_Rate_Table": [
{
"Content_Type": "Short-form Video",
"Follower_Tier": "10k-50k",
"Engagement_Tier": "High",
"Rate_Range": [
100,
500
],
"Example_Campaigns": [
"Fashion Hauls",
"Tech Reviews"
]
},
{
"Content_Type": "Carousel",
"Follower_Tier": "50k-100k",
"Engagement_Tier": "Medium",
"Rate_Range": [
500,
1000
],
"Example_Campaigns": [
"Product Launches",
"Event Highlights"
]
},
{
"Content_Type": "Live Stream",
"Follower_Tier": "100k-500k",
"Engagement_Tier": "High",
"Rate_Range": [
2000,
5000
],
"Example_Campaigns": [
"Live Product Demos",
"Q&A Sessions"
]
}
],
"Top_Advertisers_Table": [
{
"Industry": "Fashion",
"Example_Brands": [
"Gucci",
"Zara"
],
"Avg_CPM": 18,
"Demand_Trend": "increasing"
},
{
"Industry": "Tech",
"Example_Brands": [
"Apple",
"Samsung"
],
"Avg_CPM": 22,
"Demand_Trend": "stable"
},
{
"Industry": "Health & Wellness",
"Example_Brands": [
"Nike",
"Adidas"
],
"Avg_CPM": 15,
"Demand_Trend": "increasing"
}
],
"ROI_Forecast_Table": [
{
"Campaign_Type": "Sponsored Post",
"Ad_Spend": 1000,
"Expected_Reach": 50000,
"Expected_Conversions": 200,
"ROI_Score": "medium"
},
{
"Campaign_Type": "Influencer Takeover",
"Ad_Spend": 5000,
"Expected_Reach": 200000,
"Expected_Conversions": 1000,
"ROI_Score": "high"
}
],
"Audience_Monetization_Summary": [
"High purchasing power: millennials",
"Engagement-to-purchase likelihood: high for tech and fashion",
"Content types triggering sales: product demos, influencer endorsements",
"Behavioral trends: increased time spent on platform, preference for video content"
],
"Strategic_Recommendations": [
"Increase ad spend in trending categories like technology and fashion",
"Leverage short-form video for higher engagement",
"Optimize for regional markets showing upward trends",
"Focus on high-engagement influencers for better ROI"
]
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Supported Platforms: youtube | tiktok | instagram | facebook | twitter | telegram
If you would like to focus the analysis on a specific category or a niche add it here.
Categories Examples: Fitness & Health | Technology | Food
Niches Examples: ASMR | Shoes | Bicycles | NFT
This is your account API Key. You can easily locate it in your account dashboard.
Response
200
OK
⌘I