Rest API
Get Webhooks
Fetch a list of all registered webhooks
GET /webhooks
Response
[
{
"webhook_id": 777,
"relevance": "global",
"callback_url": "http://127.0.0.1:5000",
"include_partials": true,
"include_lives": true,
"include_edits": true,
"include_extras": true,
"auth": true
},
{
"webhook_id": 999,
"relevance": "user",
"callback_url": "https://myawesomecallback.com/webhooks",
"include_partials": true,
"include_lives": false,
"include_edits": true,
"include_extras": true,
"auth": true
}
]
Code Samples
Bash
curl --request GET \
--url 'null/api/speech-v1/webhooks' \
--header 'X-API-Key: xxx'
Python
import requests
requests.get(
"null/api/speech-v1/webhooks",
headers={"X-API-Key": "xxx"}
)