cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-screening \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-screening"
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-screening', 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-screening",
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-screening"
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-screening")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-screening")
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{
"executive_summary": {
"quick_decision_reference": "The influencer Jay Shetty is a well-known podcaster and motivational speaker with a significant following. Based on the analysis, the risk is medium due to past controversies and the nature of content. Proceed with caution."
},
"detailed_findings": {
"identity_verification": {
"profile_authenticity": true,
"content_ownership": true,
"follower_base_authenticity": "High authenticity with some potential bot followers."
},
"audience_demographics_quality": {
"location": [
"United States",
"India",
"United Kingdom"
],
"age_breakdown": {
"18-24": 30,
"25-34": 40,
"35-44": 20,
"45+": 10
},
"gender_breakdown": {
"male": 40,
"female": 60
},
"engagement_rate": 5.5,
"fake_inactive_followers_percentage": 10
},
"content_review": {
"niche_consistency": true,
"tone_quality": "Inspirational, motivational",
"alignment_with_brand_values": true,
"controversial_posts_history": [
"Accusations of content plagiarism in 2020"
]
},
"behavioral_reputation_audit": {
"past_online_behavior": "Generally positive with some controversies",
"language_use": "Professional and respectful",
"political_religious_statements": "Generally neutral",
"involvement_in_scandals": [
"Plagiarism accusations in 2020"
],
"offensive_conduct": false
},
"brand_association_history": {
"previous_sponsorships_partnerships": [
"Calm App",
"Blue Apron",
"Audible"
],
"alignment_with_brand": true,
"conflict_with_brand": false
},
"legal_compliance_risks": {
"potential_copyright_violations": "Past accusations of plagiarism",
"FTC_disclosure_compliance": true,
"adherence_to_platform_rules": true
},
"media_news_mentions": {
"press_coverage": [
"Forbes",
"Inc.",
"HuffPost"
],
"public_praise": [
"Recognized for motivational content"
],
"criticism": [
"Content originality questioned"
]
},
"competitive_overlap": {
"collaborations_with_competing_brands": false
}
},
"risk_assessment_table": {
"identity_verification": "Low",
"audience_demographics_quality": "Medium",
"content_review": "Medium",
"behavioral_reputation_audit": "Medium",
"brand_association_history": "Low",
"legal_compliance_risks": "Medium",
"media_news_mentions": "Medium",
"competitive_overlap": "Low"
},
"final_recommendation": {
"clear_next_steps": "Proceed with caution, ensuring alignment with brand values and addressing past controversies. Consider a trial partnership before long-term commitment."
}
}
Influencers
Background Screening
Social media Vetting and background screening is the process of analyzing a person’s public digital activity to assess potential risks, reputational issues, or behavioral red flags. It is a key part of modern social media screening strategies employers, brands, and institutions use to make informed decisions.
GET
/
wf
/
influencer-screening
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/influencer-screening \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/influencer-screening"
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-screening', 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-screening",
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-screening"
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-screening")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/influencer-screening")
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{
"executive_summary": {
"quick_decision_reference": "The influencer Jay Shetty is a well-known podcaster and motivational speaker with a significant following. Based on the analysis, the risk is medium due to past controversies and the nature of content. Proceed with caution."
},
"detailed_findings": {
"identity_verification": {
"profile_authenticity": true,
"content_ownership": true,
"follower_base_authenticity": "High authenticity with some potential bot followers."
},
"audience_demographics_quality": {
"location": [
"United States",
"India",
"United Kingdom"
],
"age_breakdown": {
"18-24": 30,
"25-34": 40,
"35-44": 20,
"45+": 10
},
"gender_breakdown": {
"male": 40,
"female": 60
},
"engagement_rate": 5.5,
"fake_inactive_followers_percentage": 10
},
"content_review": {
"niche_consistency": true,
"tone_quality": "Inspirational, motivational",
"alignment_with_brand_values": true,
"controversial_posts_history": [
"Accusations of content plagiarism in 2020"
]
},
"behavioral_reputation_audit": {
"past_online_behavior": "Generally positive with some controversies",
"language_use": "Professional and respectful",
"political_religious_statements": "Generally neutral",
"involvement_in_scandals": [
"Plagiarism accusations in 2020"
],
"offensive_conduct": false
},
"brand_association_history": {
"previous_sponsorships_partnerships": [
"Calm App",
"Blue Apron",
"Audible"
],
"alignment_with_brand": true,
"conflict_with_brand": false
},
"legal_compliance_risks": {
"potential_copyright_violations": "Past accusations of plagiarism",
"FTC_disclosure_compliance": true,
"adherence_to_platform_rules": true
},
"media_news_mentions": {
"press_coverage": [
"Forbes",
"Inc.",
"HuffPost"
],
"public_praise": [
"Recognized for motivational content"
],
"criticism": [
"Content originality questioned"
]
},
"competitive_overlap": {
"collaborations_with_competing_brands": false
}
},
"risk_assessment_table": {
"identity_verification": "Low",
"audience_demographics_quality": "Medium",
"content_review": "Medium",
"behavioral_reputation_audit": "Medium",
"brand_association_history": "Low",
"legal_compliance_risks": "Medium",
"media_news_mentions": "Medium",
"competitive_overlap": "Low"
},
"final_recommendation": {
"clear_next_steps": "Proceed with caution, ensuring alignment with brand values and addressing past controversies. Consider a trial partnership before long-term commitment."
}
}
Supported Platforms:
{
"executive_summary": {
"quick_decision_reference": "The influencer Jay Shetty is a well-known podcaster and motivational speaker with a significant following. Based on the analysis, the risk is medium due to past controversies and the nature of content. Proceed with caution."
},
"detailed_findings": {
"identity_verification": {
"profile_authenticity": true,
"content_ownership": true,
"follower_base_authenticity": "High authenticity with some potential bot followers."
},
"audience_demographics_quality": {
"location": [
"United States",
"India",
"United Kingdom"
],
"age_breakdown": {
"18-24": 30,
"25-34": 40,
"35-44": 20,
"45+": 10
},
"gender_breakdown": {
"male": 40,
"female": 60
},
"engagement_rate": 5.5,
"fake_inactive_followers_percentage": 10
},
"content_review": {
"niche_consistency": true,
"tone_quality": "Inspirational, motivational",
"alignment_with_brand_values": true,
"controversial_posts_history": [
"Accusations of content plagiarism in 2020"
]
},
"behavioral_reputation_audit": {
"past_online_behavior": "Generally positive with some controversies",
"language_use": "Professional and respectful",
"political_religious_statements": "Generally neutral",
"involvement_in_scandals": [
"Plagiarism accusations in 2020"
],
"offensive_conduct": false
},
"brand_association_history": {
"previous_sponsorships_partnerships": [
"Calm App",
"Blue Apron",
"Audible"
],
"alignment_with_brand": true,
"conflict_with_brand": false
},
"legal_compliance_risks": {
"potential_copyright_violations": "Past accusations of plagiarism",
"FTC_disclosure_compliance": true,
"adherence_to_platform_rules": true
},
"media_news_mentions": {
"press_coverage": [
"Forbes",
"Inc.",
"HuffPost"
],
"public_praise": [
"Recognized for motivational content"
],
"criticism": [
"Content originality questioned"
]
},
"competitive_overlap": {
"collaborations_with_competing_brands": false
}
},
"risk_assessment_table": {
"identity_verification": "Low",
"audience_demographics_quality": "Medium",
"content_review": "Medium",
"behavioral_reputation_audit": "Medium",
"brand_association_history": "Low",
"legal_compliance_risks": "Medium",
"media_news_mentions": "Medium",
"competitive_overlap": "Low"
},
"final_recommendation": {
"clear_next_steps": "Proceed with caution, ensuring alignment with brand values and addressing past controversies. Consider a trial partnership before long-term commitment."
}
}
⌘I