Webhook
List of Webhook Endpoints
QuickStart
API Documentation
URL to Video
Create Avatar Videos
Get Generated Video
AI Scripts
Upload Media
Visual Style
Webhook
List of Webhook Endpoints
Get a list of configured webhook endpoints
GET
/
endpoints
curl --request GET \
--url https://api.jogg.ai/v1/endpoints \
--header 'x-api-key: <api-key>'
{
"data": [
{
"endpoint_id": "<string>",
"url": "<string>",
"secret": "<string>",
"status": "enabled",
"events": [
"<string>"
],
"username": "<string>",
"created_at": 123
}
]
}
Authorizations
Response
200 - application/json
Successful operation
Unique identifier for the webhook
Webhook URL
Secret for signature verification
Current webhook status
Available options:
enabled
, disabled
List of subscribed events
Username
Creation timestamp
curl --request GET \
--url https://api.jogg.ai/v1/endpoints \
--header 'x-api-key: <api-key>'
{
"data": [
{
"endpoint_id": "<string>",
"url": "<string>",
"secret": "<string>",
"status": "enabled",
"events": [
"<string>"
],
"username": "<string>",
"created_at": 123
}
]
}