SuperAPI — YouTube

SuperAPI

A unified REST + MCP interface for YouTube, Instagram, Twitter, Telegram, TradingView, trading signals, news, sentiment, and more.

📺 YouTube

Video Information

Extract comprehensive video data including metadata, transcripts, and engagement metrics.

Endpoints:
  • GET /api/youtube/video?id=VIDEO_ID
  • POST /api/youtube/video
Request body (POST):
{ "videoId": "..." }
Example (YouTube Video):
fetch('/api/youtube/video?id=dQw4w9WgXcQ')
  .then(res => res.json())
  .then(data => console.log(data.video.title));
Google Sheets (IMPORTXML) Example:
=IMPORTXML(CONCAT("https://superapis.digitally.id/api/youtube/video?format=xml&id=",A1), "//response/data")
YouTube Video Test

Channel Information

Get detailed channel information including videos, playlists, and community posts.

Endpoints:
  • GET /api/youtube/channel?id=CHANNEL_ID
  • POST /api/youtube/channel
Request body (POST):
{ "channelId": "..." }
Example (YouTube Channel):
fetch('/api/youtube/channel?id=UCX6OQ3DkcsbYNE6H8uQQuVA')
  .then(res => res.json())
  .then(data => console.log(data.channel.name));
Google Sheets (IMPORTXML) Example:
=IMPORTXML(CONCAT("https://superapis.digitally.id/api/youtube/channel?format=xml&id=",A1), "//response/data")
YouTube Channel Test