Rest API

Get Webhook

Return a specific webhook

GET /webhooks/{webhook_id}

Response

{
    "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/{webhook_id}' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.get(
    f"null/api/speech-v1/webhooks/{webhook_id}", 
    headers={"X-API-Key": "xxx"}
)
Previous
Get Webhooks