Editor
GET
/videos/{id}/presentation-scenes

The scene timeline of a presentation video (subType: presentation): one entry per beat, each with its span in the video, the line of script it covers, and the visual template that renders it.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/videos/string/presentation-scenes"
{  "data": [    {      "id": "s1a2b3",      "startMs": 0,      "endMs": 3200,      "text": "Ship your first video in under a minute",      "emphasis": "under a minute",      "template": "heroTitle",      "tone": "light",      "caption": "show"    },    {      "id": "s4d5e6",      "startMs": 3200,      "endMs": 7400,      "text": "Three steps, no editing timeline",      "template": "flowSteps",      "tone": "accent",      "visual": {        "type": "flowSteps",        "items": 3      }    }  ]}