API Pública - Documentação
Integre a plataforma com suas ferramentas
Chave de API
sk_live_ydd93v⚠️ Mantenha sua chave segura. Não compartilhe publicamente.
GET
/api/v1/clipsLista todos os clips
Query Params:
limit
offset
status
Response:
{
"clips": [
{
"id": "clip_123",
"title": "Meu Clip",
"status": "published"
}
]
}POST
/api/v1/clipsCria um novo clip
Body:
{
"title": "string",
"video_id": "string",
"duration": "number"
}Response:
{
"id": "clip_123",
"status": "processing"
}GET
/api/v1/clips/:idBusca clip específico
Response:
{
"id": "clip_123",
"title": "Meu Clip",
"url": "https://..."
}PUT
/api/v1/clips/:idAtualiza clip
Body:
{
"title": "string",
"status": "string"
}Response:
{
"id": "clip_123",
"updated": true
}DELETE
/api/v1/clips/:idRemove clip
Response:
{
"deleted": true
}POST
/api/v1/videosCria vídeo
Body:
{
"title": "string",
"script": "string"
}Response:
{
"id": "video_456",
"status": "generating"
}GET
/api/v1/analyticsRetorna analytics
Query Params:
start_date
end_date
platform
Response:
{
"views": 100000,
"engagement": 8.5,
"roi": 250
}