Skip to main content
GET
/
v1
/
youtube
/
channel
/
videos
List video IDs from a YouTube channel
curl --request GET \
  --url https://api.urltodata.ai/v1/youtube/channel/videos \
  --header 'Authorization: Bearer <token>'
{
  "videoIds": [
    "<string>"
  ],
  "shortIds": [
    "<string>"
  ],
  "liveIds": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

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

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Query Parameters

id
string
required

Channel ID

type
enum<string>
default:video

Video type filter

Available options:
all,
video,
short,
live
limit
integer

Max results (1-1000)

Required range: 1 <= x <= 1000

Response

200 - application/json

Video ID listing

videoIds
string[]
shortIds
string[]
liveIds
string[]