A simple proxy service for fetching YouTube video information
Welcome to the SparkYTBProxy API documentation. This service allows you to search for YouTube videos and retrieve their basic information.
All API requests should be made to:
http://localhost:8080
/youtube?q={query}
Searches for YouTube videos based on the provided query and returns the first matching video's information.
q
(required): The youtube query stringReturns a JSON object containing the video ID and channel name.
GET /youtube?q=example+search+query
{ "video_id": "dQw4w9WgXcQ", "channel_name": "Example Channel" }