🚀 SuperAPI

A powerful collection of APIs for YouTube data extraction, Instagram profile scraping, article content parsing, website screenshot capture, social media monitoring, and TradingView market data

Category

📺 YouTube

📰 Article Extractor

🌐 Website Capture

💬 Telegram

🐦 Twitter

📸 Instagram

🎵 Spotify

📈 TradingView

🧮 Trading Signals

🧩 MCP Server

📺 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