Create Channel API Endpoint
curl --request POST \
--url https://backend.clipvision.ai/api/channel/create/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_country": "<string>",
"channel_url": "<string>",
"channel_name": "<string>",
"channel_website": "<string>",
"channel_content_category": "<string>",
"estimated_monthly_earnings": "<string>",
"estimated_yearly_earnings": "<string>"
}
'import requests
url = "https://backend.clipvision.ai/api/channel/create/"
payload = {
"channel_country": "<string>",
"channel_url": "<string>",
"channel_name": "<string>",
"channel_website": "<string>",
"channel_content_category": "<string>",
"estimated_monthly_earnings": "<string>",
"estimated_yearly_earnings": "<string>"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
channel_country: '<string>',
channel_url: '<string>',
channel_name: '<string>',
channel_website: '<string>',
channel_content_category: '<string>',
estimated_monthly_earnings: '<string>',
estimated_yearly_earnings: '<string>'
})
};
fetch('https://backend.clipvision.ai/api/channel/create/', 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://backend.clipvision.ai/api/channel/create/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'channel_country' => '<string>',
'channel_url' => '<string>',
'channel_name' => '<string>',
'channel_website' => '<string>',
'channel_content_category' => '<string>',
'estimated_monthly_earnings' => '<string>',
'estimated_yearly_earnings' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://backend.clipvision.ai/api/channel/create/"
payload := strings.NewReader("{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://backend.clipvision.ai/api/channel/create/")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://backend.clipvision.ai/api/channel/create/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"channel_id": 1,
"disabled": false,
"user_id": 1,
"channel_country": "US",
"channel_website": "https://youtube.com",
"add_date": "2024-03-17T00:00:00.000Z",
"channel_content_category": "Gaming",
"estimated_monthly_earnings": "1000",
"estimated_yearly_earnings": "12000",
"channel_name": "PewDiePie",
"channel_url": "https://www.youtube.com/channel/UCi8e0iOVk1fEOogdfu4YgfA",
"thumbnail": null
}This response has no body data.{
"success": false,
"error": "Internal Server Error"
}api
Create Channel API Endpoint
This API endpoint allows a user to create a new channel.
POST
/
api
/
channel
/
create
/
Create Channel API Endpoint
curl --request POST \
--url https://backend.clipvision.ai/api/channel/create/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_country": "<string>",
"channel_url": "<string>",
"channel_name": "<string>",
"channel_website": "<string>",
"channel_content_category": "<string>",
"estimated_monthly_earnings": "<string>",
"estimated_yearly_earnings": "<string>"
}
'import requests
url = "https://backend.clipvision.ai/api/channel/create/"
payload = {
"channel_country": "<string>",
"channel_url": "<string>",
"channel_name": "<string>",
"channel_website": "<string>",
"channel_content_category": "<string>",
"estimated_monthly_earnings": "<string>",
"estimated_yearly_earnings": "<string>"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
channel_country: '<string>',
channel_url: '<string>',
channel_name: '<string>',
channel_website: '<string>',
channel_content_category: '<string>',
estimated_monthly_earnings: '<string>',
estimated_yearly_earnings: '<string>'
})
};
fetch('https://backend.clipvision.ai/api/channel/create/', 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://backend.clipvision.ai/api/channel/create/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'channel_country' => '<string>',
'channel_url' => '<string>',
'channel_name' => '<string>',
'channel_website' => '<string>',
'channel_content_category' => '<string>',
'estimated_monthly_earnings' => '<string>',
'estimated_yearly_earnings' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://backend.clipvision.ai/api/channel/create/"
payload := strings.NewReader("{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://backend.clipvision.ai/api/channel/create/")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://backend.clipvision.ai/api/channel/create/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"channel_country\": \"<string>\",\n \"channel_url\": \"<string>\",\n \"channel_name\": \"<string>\",\n \"channel_website\": \"<string>\",\n \"channel_content_category\": \"<string>\",\n \"estimated_monthly_earnings\": \"<string>\",\n \"estimated_yearly_earnings\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"channel_id": 1,
"disabled": false,
"user_id": 1,
"channel_country": "US",
"channel_website": "https://youtube.com",
"add_date": "2024-03-17T00:00:00.000Z",
"channel_content_category": "Gaming",
"estimated_monthly_earnings": "1000",
"estimated_yearly_earnings": "12000",
"channel_name": "PewDiePie",
"channel_url": "https://www.youtube.com/channel/UCi8e0iOVk1fEOogdfu4YgfA",
"thumbnail": null
}This response has no body data.{
"success": false,
"error": "Internal Server Error"
}Authorizations
Basicapi_key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Response
Successfully created the channel
⌘I