Skip to main content
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>"
}'
{
  "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
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
channel_country
string
required
Minimum length: 1
channel_url
string<uri>
required
Minimum length: 1
channel_name
string
required
Minimum length: 1
channel_website
string<uri>
required
Minimum length: 1
channel_content_category
string
required
Minimum length: 1
estimated_monthly_earnings
string
required
Minimum length: 1
estimated_yearly_earnings
string
required
Minimum length: 1

Response

Successfully created the channel

Channel OpenAPI Schema

channel_id
integer
disabled
boolean
user_id
integer
channel_country
string
channel_website
string
add_date
string<date>
channel_content_category
string
estimated_monthly_earnings
string
estimated_yearly_earnings
string
channel_name
string
channel_url
string
thumbnail
string