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 Name | Type | Supported Value | Description | Required |
|---|---|---|---|---|
| type | text | YOUTUBE_SUMMARIZER | Feature name | ✔️ |
| model | text | See available models | Model identifier | ✔️ |
| conversationId | text | YOUTUBE_SUMMARIZER | Conversation ID | ✔️ |
| videoUrl | string | YouTube URL | Full YouTube video URL | ✔️ |
| promptObject.videoUrl | string | YouTube URL | Same YouTube video URL | ✔️ |
| promptObject.language | string | Language code | Summary language | ✔️ |
Endpoint
Request Headers
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Code Example
- cURL
- JavaScript
- Python
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"
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
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'
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
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"
}
}
response = requests.post(url, headers=headers, json=data)
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": ""
}
}