VOOZH about

URL: https://apify.com/automationagents/youtube-video/api/python

⇱ YouTube Video Details API in Python Β· Apify


Pricing

from $20.00 / 1,000 successful api calls

Go to Apify Store

YouTube Video Details

Get full video details: title, description, view/like counts, duration, tags, chapters.

Pricing

from $20.00 / 1,000 successful api calls

Rating

0.0

(0)

Developer

πŸ‘ Alex Jordan

Alex Jordan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

18 days ago

Last modified

Categories

Share

You might also like

🎬 YouTube Video Details Scraper

scrapeengine/youtube-video-details-scraper

🎬 YouTube Video Details Scraper (youtube-video-details-scraper) extracts full YouTube metadataβ€”title, description, tags, views, likes, comments, duration, upload date, channel info & thumbnails. ⚑ Ideal for SEO, competitor research, analytics & reporting. πŸ”Ž Fast, accurate, API-ready.

YouTube Video Details Scraper

maged120/youtube-video-details

Extract full metadata from any YouTube video or Short β€” title, views, likes, comments, subtitles, chapters, tags, and more. No YouTube API key needed.

Youtube Video Details Scraper

scraper-engine/youtube-video-details-scraper

YouTube Video Details Scraper extracts metadata from public YouTube videos, including title, description, channel name, view count, likes, tags, upload date, and more. Ideal for research, SEO, analytics, or automationβ€”just input video URLs and get structured data effortlessly.

πŸ‘ User avatar

Scraper Engine

58

5.0

🎬 YouTube Video Details Scraper

scraply/youtube-video-details-scraper

🎬 YouTube Video Details Scraper extracts full video metadata β€” title, description, channel, publish date, views, likes, comments, tags, duration & thumbnails. πŸ” Ideal for SEO audits, competitor analysis, content research, and reporting. πŸš€ Fast, accurate, scalable.

🎬 YouTube Video Details Scraper β€” Extract Metadata &...

scrapepilotapi/youtube-video-details-scraper

🎬 YouTube Video Details Scraper pulls rich video metadata from YouTube β€” title, description, tags, channel, views, likes, duration, publish date & thumbnails. πŸ”Ž Ideal for SEO audits, competitor research, content planning & reporting. πŸ“Š CSV/JSON export-ready. πŸš€

🎬 YouTube Video Details Scraper β€” Extract Metadata

scrapebase/youtube-video-details-scraper

🎬 YouTube Video Details Scraper extracts video metadataβ€”title, description, tags, channel, views, likes, publish date, duration, thumbnails & captions. πŸ”Ž Ideal for SEO audits, content research, competitor analysis, and reporting. ⚑ Fast, reliable, API-ready. πŸ“¦ CSV/JSON export.

Youtube Video Details Scraper

scrapevanta/youtube-video-details-scraper

YouTube Video Details Scraper extracts video titles, descriptions, tags, view counts, likes, comments, upload dates, channel information, and more from YouTube videos. Ideal for SEO analysis, competitor research, content tracking, market research, and data-driven decision-making.

🎬 YouTube Video Details Scraper

scrapium/youtube-video-details-scraper

🎬 YouTube Video Details Scraper (youtube-video-details-scraper) extracts titles, descriptions, views, likes, publish date, duration, tags, channel, thumbnails & more at scale. πŸ“Š Ideal for SEO, content research, trend tracking & reporting. ⚑ API-ready metadata for analytics & growth.

Youtube Video Details Scraper

scrapedrift/youtube-video-details-scraper

πŸš€ YouTube Video Details Scraper extracts key metadata like title, channel, description, tags, views, likes & upload date. 🧠 Great for SEO research, competitor analysis & content planning β€” fast, reliable, and easy to integrate. πŸ“ˆβœ¨

YouTube Video Details Scraper

deanter/youtube-video-details-scraper

Input: YouTube video link | πŸ‘‰ Output: Transcript, video description, video title πŸ‘ŒπŸ‘‰ This actor processes a YouTube video link and extracts the transcript, description, and title of the video. It's perfect for gathering video metadata and subtitles for further analysis or content creation.

You can access the YouTube Video Details programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

πŸ‘ Python

Python

πŸ‘ JavaScript

JavaScript

CLI

πŸ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={
9"url":"https://www.youtube.com/watch?v=dQw4w9WgXcQ",
10"include_captions":False,
11"cache":True,
12}
13
14# Run the Actor and wait for it to finish
15run = client.actor("automationagents/youtube-video").call(run_input=run_input)
16
17# Fetch and print Actor results from the run's dataset (if there are any)
18print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20print(item)
21
22# πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/python/docs/quick-start

YouTube Video Details API in Python

The Apify API client for Python is the official library that allows you to use YouTube Video Details API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

YouTube Video Details API in JavaScript

YouTube Video Details API through CLI

YouTube Video Details OpenAPI definition

YouTube Video Details API