Youtube Summary Tool & API

Paste the link of the video and get the summary

JSON Result

Markdown Result

API Instructions

To use the YouTube Summary API, send a GET request to the following endpoint:

GET https://app.digicord.site/api/v1/youtube/summary/{videoId}

Example using fetch:

const videoId = 'dQw4w9WgXcQ';
fetch(`https://app.digicord.site/api/v1/youtube/summary/${videoId}`)
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Response Schema

{
  // Status of the request: 0 for failure, 1 for success
  "status": 0 | 1,
  // Error message if status is 0
  "message": "string",
  // Transcript data
  "data": {
    // Summary content in markdown format
    "content": "string",
  }
}

Replace {videoId} with the actual YouTube video ID you want to summarize.

Version: 1.23.0