authorityfy.ai

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/clips

Lista todos os clips

Query Params:
limit
offset
status
Response:
{
  "clips": [
    {
      "id": "clip_123",
      "title": "Meu Clip",
      "status": "published"
    }
  ]
}
POST
/api/v1/clips

Cria um novo clip

Body:
{
  "title": "string",
  "video_id": "string",
  "duration": "number"
}
Response:
{
  "id": "clip_123",
  "status": "processing"
}
GET
/api/v1/clips/:id

Busca clip específico

Response:
{
  "id": "clip_123",
  "title": "Meu Clip",
  "url": "https://..."
}
PUT
/api/v1/clips/:id

Atualiza clip

Body:
{
  "title": "string",
  "status": "string"
}
Response:
{
  "id": "clip_123",
  "updated": true
}
DELETE
/api/v1/clips/:id

Remove clip

Response:
{
  "deleted": true
}
POST
/api/v1/videos

Cria vídeo

Body:
{
  "title": "string",
  "script": "string"
}
Response:
{
  "id": "video_456",
  "status": "generating"
}
GET
/api/v1/analytics

Retorna analytics

Query Params:
start_date
end_date
platform
Response:
{
  "views": 100000,
  "engagement": 8.5,
  "roi": 250
}