cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-earnings-report \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-earnings-report"
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/influencer-earnings-report', 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/influencer-earnings-report",
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/influencer-earnings-report"
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/influencer-earnings-report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-earnings-report")
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{
"revenue_table_by_source": [
{
"source": "Platform_Ads_Earnings",
"monthly_earnings": 20000,
"yearly_earnings": 240000,
"percentage_of_total": 40
},
{
"source": "Sponsorship_&_Brand_Deals",
"monthly_earnings": 15000,
"yearly_earnings": 180000,
"percentage_of_total": 30
},
{
"source": "Affiliate_Marketing_Income",
"monthly_earnings": 5000,
"yearly_earnings": 60000,
"percentage_of_total": 10
},
{
"source": "Product/Service_Sales",
"monthly_earnings": 10000,
"yearly_earnings": 120000,
"percentage_of_total": 20
},
{
"source": "Memberships/Subscriptions",
"monthly_earnings": 0,
"yearly_earnings": 0,
"percentage_of_total": 0
}
],
"total_estimated_monthly_revenue": 50000,
"total_estimated_annual_revenue": 600000,
"analysis": {
"Platform_Ads_Earnings": "High due to large subscriber base and consistent viewership.",
"Sponsorship_&_Brand_Deals": "Frequent collaborations with brands due to niche audience.",
"Affiliate_Marketing_Income": "Moderate earnings from affiliate links in video descriptions.",
"Product/Service_Sales": "Revenue from books, courses, or merch related to podcast themes.",
"Memberships/Subscriptions": "Currently not utilized, potential for future growth."
},
"growth_suggestions": {
"Platform_Ads_Earnings": "Increase video output and optimize SEO to boost views.",
"Sponsorship_&_Brand_Deals": "Leverage audience insights to target new brands.",
"Affiliate_Marketing_Income": "Incorporate more affiliate links and highlight them in content.",
"Product/Service_Sales": "Expand product line and promote through exclusive offers.",
"Memberships/Subscriptions": "Introduce a membership plan with exclusive content."
},
"opportunities_to_add_new_streams": [
"Memberships/Subscriptions",
"Live events or workshops",
"Exclusive content series"
],
"note": "All figures are estimations based on available data and typical industry standards."
}
Influencers
Earnings & Revenue
Social Account Revenue Stream Breakdown Report.
GET
/
wf
/
influencer-earnings-report
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-earnings-report \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-earnings-report"
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/influencer-earnings-report', 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/influencer-earnings-report",
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/influencer-earnings-report"
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/influencer-earnings-report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-earnings-report")
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{
"revenue_table_by_source": [
{
"source": "Platform_Ads_Earnings",
"monthly_earnings": 20000,
"yearly_earnings": 240000,
"percentage_of_total": 40
},
{
"source": "Sponsorship_&_Brand_Deals",
"monthly_earnings": 15000,
"yearly_earnings": 180000,
"percentage_of_total": 30
},
{
"source": "Affiliate_Marketing_Income",
"monthly_earnings": 5000,
"yearly_earnings": 60000,
"percentage_of_total": 10
},
{
"source": "Product/Service_Sales",
"monthly_earnings": 10000,
"yearly_earnings": 120000,
"percentage_of_total": 20
},
{
"source": "Memberships/Subscriptions",
"monthly_earnings": 0,
"yearly_earnings": 0,
"percentage_of_total": 0
}
],
"total_estimated_monthly_revenue": 50000,
"total_estimated_annual_revenue": 600000,
"analysis": {
"Platform_Ads_Earnings": "High due to large subscriber base and consistent viewership.",
"Sponsorship_&_Brand_Deals": "Frequent collaborations with brands due to niche audience.",
"Affiliate_Marketing_Income": "Moderate earnings from affiliate links in video descriptions.",
"Product/Service_Sales": "Revenue from books, courses, or merch related to podcast themes.",
"Memberships/Subscriptions": "Currently not utilized, potential for future growth."
},
"growth_suggestions": {
"Platform_Ads_Earnings": "Increase video output and optimize SEO to boost views.",
"Sponsorship_&_Brand_Deals": "Leverage audience insights to target new brands.",
"Affiliate_Marketing_Income": "Incorporate more affiliate links and highlight them in content.",
"Product/Service_Sales": "Expand product line and promote through exclusive offers.",
"Memberships/Subscriptions": "Introduce a membership plan with exclusive content."
},
"opportunities_to_add_new_streams": [
"Memberships/Subscriptions",
"Live events or workshops",
"Exclusive content series"
],
"note": "All figures are estimations based on available data and typical industry standards."
}
Supported Platforms:
{
"revenue_table_by_source": [
{
"source": "Platform_Ads_Earnings",
"monthly_earnings": 20000,
"yearly_earnings": 240000,
"percentage_of_total": 40
},
{
"source": "Sponsorship_&_Brand_Deals",
"monthly_earnings": 15000,
"yearly_earnings": 180000,
"percentage_of_total": 30
},
{
"source": "Affiliate_Marketing_Income",
"monthly_earnings": 5000,
"yearly_earnings": 60000,
"percentage_of_total": 10
},
{
"source": "Product/Service_Sales",
"monthly_earnings": 10000,
"yearly_earnings": 120000,
"percentage_of_total": 20
},
{
"source": "Memberships/Subscriptions",
"monthly_earnings": 0,
"yearly_earnings": 0,
"percentage_of_total": 0
}
],
"total_estimated_monthly_revenue": 50000,
"total_estimated_annual_revenue": 600000,
"analysis": {
"Platform_Ads_Earnings": "High due to large subscriber base and consistent viewership.",
"Sponsorship_&_Brand_Deals": "Frequent collaborations with brands due to niche audience.",
"Affiliate_Marketing_Income": "Moderate earnings from affiliate links in video descriptions.",
"Product/Service_Sales": "Revenue from books, courses, or merch related to podcast themes.",
"Memberships/Subscriptions": "Currently not utilized, potential for future growth."
},
"growth_suggestions": {
"Platform_Ads_Earnings": "Increase video output and optimize SEO to boost views.",
"Sponsorship_&_Brand_Deals": "Leverage audience insights to target new brands.",
"Affiliate_Marketing_Income": "Incorporate more affiliate links and highlight them in content.",
"Product/Service_Sales": "Expand product line and promote through exclusive offers.",
"Memberships/Subscriptions": "Introduce a membership plan with exclusive content."
},
"opportunities_to_add_new_streams": [
"Memberships/Subscriptions",
"Live events or workshops",
"Exclusive content series"
],
"note": "All figures are estimations based on available data and typical industry standards."
}
⌘I