channel_search
Search YouTube channels by ID or query to find specific content creators, retrieve channel information, and explore related channels using the Youtube138 API.
Instructions
Channel Search
Query Parameters:
id: Channel ID
q: Search query
cursor: Cursor token
hl: Example value: en
gl: Example value: US
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Channel ID | |
| q | No | Search query | |
| cursor | No | Cursor token | |
| hl | No | Example value: en | |
| gl | No | Example value: US |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor token",
"type": "string"
},
"gl": {
"description": "Example value: US",
"type": "string"
},
"hl": {
"description": "Example value: en",
"type": "string"
},
"id": {
"description": "Channel ID",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
}
},
"required": [],
"type": "object"
}