Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
youtube
/
channel
/
videos
YouTube Channel Videos
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/youtube/channel/videos \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "videos": [
      {}
    ]
  },
  "meta": {}
}

Parameters

channelId
string
The YouTube channel ID (e.g., UCtest123). Either channelId or handle is required.
handle
string
The YouTube channel handle (e.g., @MrBeast). Either channelId or handle is required.
limit
integer
Maximum number of results to return (default: 10)

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/youtube/channel/videos?handle=@PatMcAfeeShow&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "videos": [
      {
        "type": "video",
        "id": "5EWaxmWgQMI",
        "url": "https://www.youtube.com/watch?v=5EWaxmWgQMI",
        "title": "Russell Wilson Hopes To Finish Career As A Steeler, Reflects On NFL Career With Pat McAfee",
        "description": "Welcome to The Pat McAfee Show LIVE from Noon-3PM EST Mon-Fri...",
        "thumbnail": "https://i.ytimg.com/vi/5EWaxmWgQMI/hq720.jpg"
      }
    ]
  },
  "meta": {
    "platform": "youtube",
    "endpoint": "channel/videos",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}