API Docs

v1.0.0Latest
GET

Get Channel Info

Retrieve channel information for youtube.

Endpoint
GET /ask/yt/channel/info?handle={handle}
Request Query Parameters
Query parameters for fetching channel information
Field
Type
Required
Description
handle
string
Yes
Handle to fetch info for
Example Request
curl -X GET "https://api.gateway.walee.ai/api/ask/yt/channel/info?handle={handle}" \
  -H "x-api-key: YOUR_API_KEY"
Success Response
Successful channel info retrieval
200OK
{
"success": true,
"message": "YouTube channel info fetched successfully",
"payload": {
"success": true,
"channel_info": {
"channel_id": "string",
"custom_url": "string",
"username": "string",
"is_removed": true,
"is_hidden": true,
"is_verified": true,
"fullname": "string",
"picture": "string",
"description": "string",
"country": "string",
"followers": 0,
"joined_at": "2025-07-07T09:58:48.672Z",
"total_views": 0,
"links": [
"string"
]
}
}
}
Error Response
Error retrieving channel info
400Bad Request
{
  "success": false,
  "message": "Failed to fetch channel info"
  "payload": {}
}
Error Response
Unexpected error occurred
500Internal Server Error
{
  "success": false,
  "message": "Something went wrong. Please try again later."
  "payload": {}
}