Authentication
Enter your API key to test the endpoints. Get your free API key from the dashboard.
Don’t have an API key? Get one free
Select Endpoint
Choose which API endpoint you want to test
GET
/v1/youtube/video
Extract comprehensive video information including title, description, view count, and thumbnails.
You can paste a full YouTube URL or just the video ID
API Response
Make a request to see the API response here
Code Examples
Ready-to-use code snippets in multiple languages
Video Information
// Using fetch API const response = await fetch('https://api.vcyon.com/v1/youtube/video?videoId=UF8uR6Z6KLc', { headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' } }); const videoData = await response.json(); console.log(videoData); // Using axios import axios from 'axios'; const videoData = await axios.get('https://api.vcyon.com/v1/youtube/video', { params: { videoId: 'UF8uR6Z6KLc' }, headers: { 'Authorization': 'Bearer YOUR_API_KEY' } });
API Reference