cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-sponsorship \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-sponsorship"
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-sponsorship', 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-sponsorship",
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-sponsorship"
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-sponsorship")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-sponsorship")
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{
"summary_table": {
"influencer_rating": 8,
"follower_count": 1000000,
"engagement_rate": 5.2,
"cost_range_usd": [
5000,
15000
],
"best_fit_niche": [
"self-help",
"wellness",
"personal development"
]
},
"detailed_analysis": {
"influencer_rating": {
"score": 8,
"explanation": "Jay Shetty has a strong reach with a large following and high-quality content. His engagement is solid, and he is known for authenticity in the personal development and wellness space."
},
"audience_demographics_fit": {
"age": "18-45",
"gender": [
"male",
"female"
],
"location": [
"United States",
"United Kingdom",
"India"
],
"interests": [
"self-help",
"mindfulness",
"personal growth"
],
"compatibility": "Highly compatible with brands targeting wellness and personal development audiences."
},
"engagement_reach_stats": {
"followers": 1000000,
"average_likes": 50000,
"average_comments": 2000,
"average_shares": 1000,
"average_video_views": 200000,
"engagement_rate": 5.2
},
"estimated_sponsorship_cost_usd": {
"range": [
5000,
15000
],
"explanation": "Based on the influencer's reach and engagement, the cost aligns with market benchmarks for YouTube sponsorships."
},
"best_fit_advertising_niches": {
"industries": [
"self-help",
"wellness",
"personal development"
],
"products": [
"books",
"online courses",
"meditation apps"
]
},
"performance_potential": {
"expected_roi": "High",
"campaign_reach": "Wide",
"conversion_potential": "Strong, especially for wellness and personal growth products."
},
"risks_limitations": {
"factors": [
"Content is niche-focused, which may limit appeal for broader products.",
"Potential saturation in the wellness space."
]
}
},
"final_recommendation": "sponsor",
"contact_information": {
"email": "contact@jayshetty.me",
"website": "https://jayshetty.me"
}
}
Influencers
Sponsorship Analysis
Analyze and rate the influencer for potential brand sponsorship.
GET
/
wf
/
influencer-sponsorship
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-sponsorship \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-sponsorship"
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-sponsorship', 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-sponsorship",
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-sponsorship"
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-sponsorship")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-sponsorship")
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{
"summary_table": {
"influencer_rating": 8,
"follower_count": 1000000,
"engagement_rate": 5.2,
"cost_range_usd": [
5000,
15000
],
"best_fit_niche": [
"self-help",
"wellness",
"personal development"
]
},
"detailed_analysis": {
"influencer_rating": {
"score": 8,
"explanation": "Jay Shetty has a strong reach with a large following and high-quality content. His engagement is solid, and he is known for authenticity in the personal development and wellness space."
},
"audience_demographics_fit": {
"age": "18-45",
"gender": [
"male",
"female"
],
"location": [
"United States",
"United Kingdom",
"India"
],
"interests": [
"self-help",
"mindfulness",
"personal growth"
],
"compatibility": "Highly compatible with brands targeting wellness and personal development audiences."
},
"engagement_reach_stats": {
"followers": 1000000,
"average_likes": 50000,
"average_comments": 2000,
"average_shares": 1000,
"average_video_views": 200000,
"engagement_rate": 5.2
},
"estimated_sponsorship_cost_usd": {
"range": [
5000,
15000
],
"explanation": "Based on the influencer's reach and engagement, the cost aligns with market benchmarks for YouTube sponsorships."
},
"best_fit_advertising_niches": {
"industries": [
"self-help",
"wellness",
"personal development"
],
"products": [
"books",
"online courses",
"meditation apps"
]
},
"performance_potential": {
"expected_roi": "High",
"campaign_reach": "Wide",
"conversion_potential": "Strong, especially for wellness and personal growth products."
},
"risks_limitations": {
"factors": [
"Content is niche-focused, which may limit appeal for broader products.",
"Potential saturation in the wellness space."
]
}
},
"final_recommendation": "sponsor",
"contact_information": {
"email": "contact@jayshetty.me",
"website": "https://jayshetty.me"
}
}
Supported Platforms:
{
"summary_table": {
"influencer_rating": 8,
"follower_count": 1000000,
"engagement_rate": 5.2,
"cost_range_usd": [
5000,
15000
],
"best_fit_niche": [
"self-help",
"wellness",
"personal development"
]
},
"detailed_analysis": {
"influencer_rating": {
"score": 8,
"explanation": "Jay Shetty has a strong reach with a large following and high-quality content. His engagement is solid, and he is known for authenticity in the personal development and wellness space."
},
"audience_demographics_fit": {
"age": "18-45",
"gender": [
"male",
"female"
],
"location": [
"United States",
"United Kingdom",
"India"
],
"interests": [
"self-help",
"mindfulness",
"personal growth"
],
"compatibility": "Highly compatible with brands targeting wellness and personal development audiences."
},
"engagement_reach_stats": {
"followers": 1000000,
"average_likes": 50000,
"average_comments": 2000,
"average_shares": 1000,
"average_video_views": 200000,
"engagement_rate": 5.2
},
"estimated_sponsorship_cost_usd": {
"range": [
5000,
15000
],
"explanation": "Based on the influencer's reach and engagement, the cost aligns with market benchmarks for YouTube sponsorships."
},
"best_fit_advertising_niches": {
"industries": [
"self-help",
"wellness",
"personal development"
],
"products": [
"books",
"online courses",
"meditation apps"
]
},
"performance_potential": {
"expected_roi": "High",
"campaign_reach": "Wide",
"conversion_potential": "Strong, especially for wellness and personal growth products."
},
"risks_limitations": {
"factors": [
"Content is niche-focused, which may limit appeal for broader products.",
"Potential saturation in the wellness space."
]
}
},
"final_recommendation": "sponsor",
"contact_information": {
"email": "contact@jayshetty.me",
"website": "https://jayshetty.me"
}
}
⌘I