Capabilities
Summary
AI-generated video summaries with key topic extraction.
Summary generates a concise description of the video content along with extracted key topics.
When a job requests both transcription and summary, the transcript is fed into the summary, so spoken content is reflected in the result.
Summary analyzes frames, so it uses your plan's standard video ceiling — 1 minute on Free, 3 on Starter, 10 on
Pro, 20 on Scale. Longer videos fail with VIDEO_TOO_LONG.
curl -X POST https://api.netraflow.com/v1/jobs \
-H "Content-Type: application/json" \
-H "X-Api-Key: sk_live_your_key_here" \
-d '{
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"capabilities": ["summary"]
}'{
"data": {
"job_id": "job_abc123",
"status": "completed",
"results": {
"summary": {
"text": "A music video for Rick Astley's 1987 hit 'Never Gonna Give You Up', featuring Astley performing the song with choreographed dance sequences in various urban locations including a bridge underpass, a pub, and a fenced enclosure.",
"key_topics": [
"music video",
"Rick Astley",
"pop music",
"1980s",
"dance choreography"
]
}
}
}
}Response fields
| Prop | Type | Description |
|---|---|---|
| text | string | AI-generated summary of the video content. |
| key_topics | string[] | List of key topics, themes, or subjects identified in the video. |