Integra la potencia de Wozzly en tus aplicaciones con nuestra API RESTful
/api/v1/presentations
Obtener todas las presentaciones del usuario
curl -X GET "https://api.wozzly.com/v1/presentations" \
-H "Authorization: Bearer YOUR_API_TOKEN"
/api/v1/presentations
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
}
}'
/api/v1/presentations/{id}/questions
Obtener preguntas de una presentación
curl -X GET "https://api.wozzly.com/v1/presentations/pres_123/questions" \
-H "Authorization: Bearer YOUR_API_TOKEN"
/api/v1/presentations/{id}/questions
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"
}'
/api/v1/analytics/{id}
Obtener analytics de una presentación
curl -X GET "https://api.wozzly.com/v1/analytics/pres_123" \
-H "Authorization: Bearer YOUR_API_TOKEN"
/api/v1/presentations/{id}/moderate
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"
}'
Integra Wozzly fácilmente con nuestras librerías oficiales
SDK oficial para aplicaciones web y Node.js
SDK para aplicaciones Python y Django
SDK para aplicaciones PHP y Laravel