NetraFlow
Capabilities

Summary

AI-generated video summaries with key topic extraction.

Summary generates a concise description of the video content along with extracted key topics.

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

On this page