Get key insights from YouTube video
This endpoint extracts key insights from any given YouTube video.
Endpoint
POST /api/v1/get-key-insights-from-youtube-video
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
url | string | Yes | The YouTube video URL. Supported formats: youtu.be/[id], youtube.com/watch?v=[id], youtube.com/live/[id] |
amount | integer | No | Number of insights to extract (min: 3, max: 10, default: 3) |
preferred_language | string | No | Preferred transcript language code (e.g., "en", "es") |
Response
A successful response will return a JSON object with the following properties:
{
"data": {
"key_insights": [
"First key insight from the video",
"Second important point discussed",
"Third valuable concept explained"
]
}
}
Example
curl https://nobinge.com/api/v1/get-key-insights-from-youtube-video \
-X POST \
-H "Authorization: Bearer your_token_here" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"amount": 5
}'