API deWozzly

Integra la potencia de Wozzly en tus aplicaciones con nuestra API RESTful

Generar Token de API

Límites por Plan

Free
1,000/mes
  • Presentaciones básicas
  • Preguntas simples
Pro
10,000/mes
  • Moderación
  • Analytics básicos
  • CSV export
Booster
50,000/mes
  • AI Moderation
  • Analytics avanzados
  • Webhooks
Enterprise
Ilimitado
  • Todo incluido
  • Soporte prioritario
  • SLA garantizado

Endpoints Disponibles

GET
/api/v1/presentations
Free+

Obtener todas las presentaciones del usuario

curl -X GET "https://api.wozzly.com/v1/presentations" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
POST
/api/v1/presentations
Free+

Crear una nueva presentación

curl -X POST "https://api.wozzly.com/v1/presentations" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Nueva Presentación",
    "description": "Descripción",
    "settings": {
      "maxParticipants": 50,
      "moderationEnabled": true
    }
  }'
GET
/api/v1/presentations/{id}/questions
Pro+

Obtener preguntas de una presentación

curl -X GET "https://api.wozzly.com/v1/presentations/pres_123/questions" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
POST
/api/v1/presentations/{id}/questions
Free+

Agregar una pregunta a la presentación

curl -X POST "https://api.wozzly.com/v1/presentations/pres_123/questions" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "¿Cómo funciona la moderación AI?",
    "author": "user_789"
  }'
GET
/api/v1/analytics/{id}
Booster+

Obtener analytics de una presentación

curl -X GET "https://api.wozzly.com/v1/analytics/pres_123" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
PUT
/api/v1/presentations/{id}/moderate
Pro+

Moderar preguntas (aprobar/rechazar)

curl -X PUT "https://api.wozzly.com/v1/presentations/pres_123/moderate" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "questionId": "q_789",
    "action": "approve"
  }'

SDKs y Librerías

Integra Wozzly fácilmente con nuestras librerías oficiales

JavaScript/Node.js

SDK oficial para aplicaciones web y Node.js

Python

SDK para aplicaciones Python y Django

PHP

SDK para aplicaciones PHP y Laravel