cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/ai-youtube-title-generator \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/ai-youtube-title-generator"
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/ai-youtube-title-generator', 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/ai-youtube-title-generator",
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/ai-youtube-title-generator"
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/ai-youtube-title-generator")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/ai-youtube-title-generator")
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{
"search_optimized_titles": [
{
"title": "How to Earn Money Online: Ultimate Passive Income Guide",
"character_count": 48,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "10 Proven Ways to Make Money Online Fast and Easy",
"character_count": 44,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Listicle"
},
{
"title": "Earn Money Passively: 7 Secrets to Make Money Online",
"character_count": 51,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"viral_trending_titles": [
{
"title": "Shocking Ways to Make Money Online in 2024 Revealed!",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Online Without Any Investment – Watch Now!",
"character_count": 52,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "Make Money Online Fast: Top Passive Income Hacks 2024",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"ctr_curiosity_titles": [
{
"title": "Can You Really Earn Money Online? The Truth Revealed!",
"character_count": 49,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "Question-based"
},
{
"title": "Make Money Online Secrets Nobody Tells You About",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Using These 5 Little-Known Online Methods",
"character_count": 53,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"evergreen_title": {
"title": "How to Make Money Online: A Beginner’s Passive Income Guide",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Tutorial"
}
}
Social AI tools
YouTube Title Generator
Generate suitable titles for your videos.
GET
/
wf
/
ai-youtube-title-generator
cURL
curl --request GET \
--url https://riona.ai/api/1.1/wf/ai-youtube-title-generator \
--header 'Authorization: Bearer <token>'import requests
url = "https://riona.ai/api/1.1/wf/ai-youtube-title-generator"
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/ai-youtube-title-generator', 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/ai-youtube-title-generator",
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/ai-youtube-title-generator"
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/ai-youtube-title-generator")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://riona.ai/api/1.1/wf/ai-youtube-title-generator")
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{
"search_optimized_titles": [
{
"title": "How to Earn Money Online: Ultimate Passive Income Guide",
"character_count": 48,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "10 Proven Ways to Make Money Online Fast and Easy",
"character_count": 44,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Listicle"
},
{
"title": "Earn Money Passively: 7 Secrets to Make Money Online",
"character_count": 51,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"viral_trending_titles": [
{
"title": "Shocking Ways to Make Money Online in 2024 Revealed!",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Online Without Any Investment – Watch Now!",
"character_count": 52,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "Make Money Online Fast: Top Passive Income Hacks 2024",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"ctr_curiosity_titles": [
{
"title": "Can You Really Earn Money Online? The Truth Revealed!",
"character_count": 49,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "Question-based"
},
{
"title": "Make Money Online Secrets Nobody Tells You About",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Using These 5 Little-Known Online Methods",
"character_count": 53,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"evergreen_title": {
"title": "How to Make Money Online: A Beginner’s Passive Income Guide",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Tutorial"
}
}
{
"search_optimized_titles": [
{
"title": "How to Earn Money Online: Ultimate Passive Income Guide",
"character_count": 48,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "10 Proven Ways to Make Money Online Fast and Easy",
"character_count": 44,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Listicle"
},
{
"title": "Earn Money Passively: 7 Secrets to Make Money Online",
"character_count": 51,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"viral_trending_titles": [
{
"title": "Shocking Ways to Make Money Online in 2024 Revealed!",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Online Without Any Investment – Watch Now!",
"character_count": 52,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "How-to"
},
{
"title": "Make Money Online Fast: Top Passive Income Hacks 2024",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"ctr_curiosity_titles": [
{
"title": "Can You Really Earn Money Online? The Truth Revealed!",
"character_count": 49,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "High",
"style": "Question-based"
},
{
"title": "Make Money Online Secrets Nobody Tells You About",
"character_count": 48,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Shocking"
},
{
"title": "Earn Money Using These 5 Little-Known Online Methods",
"character_count": 53,
"primary_keywords_used": [
"earn money",
"make money online"
],
"predicted_ctr_score": "Medium",
"style": "Listicle"
}
],
"evergreen_title": {
"title": "How to Make Money Online: A Beginner’s Passive Income Guide",
"character_count": 54,
"primary_keywords_used": [
"make money online"
],
"predicted_ctr_score": "High",
"style": "Tutorial"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Title / Topic / Idea
Examples:
- Young professionals aged 25–35 seeking career growth.
- College students interested in budget travel.
- Parents looking for ealthy meal ideas for kids.
- Fitness enthusiasts aiming to build muscle at home.
- Tech lovers who want the latest gadget reviews.
- Small business owners wanting social media marketing tips.
- Eco-conscious consumers seeking sustainable lifestyle hacks.
- Cryptocurrency investors and blockchain enthusiasts.
- Sports fans following international football news.
- Beauty and fashion followers looking for makeup tutorials and styling tips.
Targeted Niche, if you would like to focus the ideas on a specific category or a niche add it here.
Categories Examples: Fitness & Health | Technology | Food
Niches Examples: ASMR | Shoes | Bicycles | NFT
If you would like to add a tone to the desired results.
Examples: increase engagement | grow followers | drive sales | boost brand awareness
Select the Targeted Keywords. One or more keywords. Separate keywords with a comma.
This is your account API Key. You can easily locate it in your account dashboard.
Response
200
OK
⌘I