Webhooks

Configure webhooks to receive real-time notifications when transcription events occur

No webhooks configured yet

Webhook Payload Example
Your webhook endpoint will receive POST requests with the following payload structure
{
  "event": "transcription.completed",
  "timestamp": "2026-02-08T12:00:00Z",
  "data": {
    "transcriptionId": 123,
    "title": "播客标题",
    "status": "completed",
    "summary": "一句话总结",
    "keyPoints": ["观点1", "观点2"],
    "xiaoyuzhouUrl": "https://...",
    "shareUrl": "https://your-domain.com/share/abc123"
  }
}