Skip to main content
POST
/
api
/
youtube
/
search
/
channels
/youtube/search/channels
curl --request POST \
  --url https://api.anysite.io/api/youtube/search/channels \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 300,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@youtube_search_channel",
    "name": "<string>",
    "alias": "<string>",
    "description": "<string>",
    "subscriber_count": 123,
    "image": "<string>",
    "is_verified": false
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Example:

"mrbeast"

count
integer
required

Max number of results

Required range: 1 <= x <= 600
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@youtube_search_channel
name
string | null
alias
string | null
description
string | null
subscriber_count
integer | null
image
string | null
is_verified
boolean
default:false