web_data_youtube_videos
Extract structured YouTube video data using a video URL. Provides reliable access to video information through cached data retrieval, avoiding direct scraping limitations.
Instructions
Quickly read structured YouTube videos data. Requires a valid YouTube video URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}