Developer platform
Build with the Shortsly API.
Create projects, generate clips and automate publishing from your own products.
Quickstart
Your first clip request.
Use the REST API to create a project from a public video URL, then subscribe to the completion webhook.
request.ts
const project = await shortsly.projects.create({
url: "https://youtube.com/watch?v=...",
language: "en",
clips: 8
});
console.log(project.id);Authentication
Send your API key as a bearer token. Keys can be created and revoked from workspace settings.
POST
/v1/projectsCreates a new clipping project