Skip to main content

Live catalog of all webhook events the platform emits.

Returns every registered webhook event with its category, description, emission call site, JSON Schema for the payload, and a synthesized sample. Sourced at request time from the in-process registry so a @register_event decorator change flows through without a deploy. Safe to cache for 5 minutes.

MethodPath
GET/api/v1/webhooks/events

Primary host: https://valara.cloud (legacy alias: https://dash.jacoballenmedia.com).

Parameters

(no path or query parameters)

Request body

(no request body)

Response

null

Responses

StatusDescription
200Successful Response

Examples

curl

curl -X GET "https://valara.cloud/api/v1/webhooks/events" \
-H "Authorization: Bearer $VALARA_API_KEY" \
-H "Content-Type: application/json"

Python

import os
import uuid
import httpx
res = httpx.request(
"GET",
"https://valara.cloud/api/v1/webhooks/events",
headers={
"Authorization": f"Bearer {os.environ['VALARA_API_KEY']}",
"Content-Type": "application/json",
},
)
res.raise_for_status()
print(res.json())

See also