Webhook
List of Webhook Endpoints
QuickStart
API Documentation
URL to Video
Create Avatar Videos
Get Generated Video
AI Scripts
Upload Media
Avatar
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
The response is of type object
.
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
}
]
}