Skip to main content

YouTube Summarizer

Summarize YouTube videos using various AI models through the 1min.AI API. This endpoint supports multiple language models for creating summaries of YouTube video content with customizable language settings.

Available Models

Loading available models...

Request Parameters

All models share the same request structure:

Field NameTypeSupported ValueDescriptionRequired
typetextYOUTUBE_SUMMARIZERFeature name✔️
modeltextSee available modelsModel identifier✔️
conversationIdtextYOUTUBE_SUMMARIZERConversation ID✔️
videoUrlstringYouTube URLFull YouTube video URL✔️
promptObject.videoUrlstringYouTube URLSame YouTube video URL✔️
promptObject.languagestringLanguage codeSummary language✔️

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Code Example

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "YOUTUBE_SUMMARIZER",
"model": "claude-3-5-haiku-20241022",
"conversationId": "YOUTUBE_SUMMARIZER",
"videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"promptObject": {
"videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"language": "English"
}
}'

Interactive Playground

Try the API directly in your browser:

Loading interactive playground...

Response Format

{
"aiRecord": {
"uuid": "da2d4c6e-9608-4322-bfb0-b3308160d97c",
"userId": "c937fbcc-fa8f-4565-a440-c4d87f56fcb2",
"teamId": "a4e176b2-dabb-451e-9c58-62b451fa9630",
"teamUser": {
"teamId": "a4e176b2-dabb-451e-9c58-62b451fa9630",
"userId": "c937fbcc-fa8f-4565-a440-c4d87f56fcb2",
"userName": "John Doe",
"userAvatar": "https://lh3.googleusercontent.com/a/ACg8ocLqgsNsHRfmWF9d-E1RvJetVsEzxNOsOg-NXWNTpMxLDPJbwELI=s96-c",
"status": "ACTIVE",
"role": "ADMIN",
"creditLimit": 100000000,
"usedCredit": 15289078,
"createdAt": "2025-10-20T04:13:40.847Z",
"createdBy": "SYSTEM",
"updatedAt": "2025-10-22T04:14:00.459Z",
"updatedBy": "SYSTEM"
},
"model": "claude-3-5-haiku-20241022",
"type": "YOUTUBE_SUMMARIZER",
"metadata": null,
"rating": null,
"feedback": null,
"conversationId": null,
"status": "SUCCESS",
"createdAt": "2025-10-22T04:18:27.249Z",
"aiRecordDetail": {
"promptObject": {
"language": "English",
"videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
},
"resultObject": [
"This is the lyrics to "Never Gonna Give You Up" by Rick Astley, a famous pop song from 1987 that later became an internet meme known as "Rickrolling". The song is an upbeat declaration of unwavering romantic commitment, with the singer promising to always be loyal, supportive, and truthful to his love interest.

The chorus repeatedly emphasizes the singer's promises: "Never gonna give you up, never gonna let you down, never gonna run around and desert you, never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you." These lyrics convey a message of complete devotion and steadfast love.

The verses suggest a deep emotional connection, with lines like "We've known each other for so long" and "Your heart's been aching but you're too shy to say it," implying a mutual understanding between the two people. The song's energetic, optimistic tone and memorable lyrics have made it an enduring pop culture phenomenon."
],
"responseObject": {}
},
"additionalData": null,
"temporaryUrl": ""
}
}