v1
latestOpenAPI 3.0.1MIT2026-07-2638658.5 KBWebhook
List Webhook Endpoints
Retrieve a list of all webhook endpoints configured for your account. Webhooks allow you to receive real-time notifications about events in your JoggAI workspace.
get/v2/endpoints
Response
Success
Example response
{
"msg": "Success",
"data": {
"endpoints": [
{
"endpoint_id": "wh_123456789",
"url": "https://your-domain.com/webhook",
"secret": "whsec_abc123xyz",
"status": "enabled",
"events": [
"generated_avatar_video_success",
"generated_avatar_video_failed"
],
"username": "johndoe",
"created_at": 1732806631
}
]
}
}