API Reference · Control Plane
Get the workspace's inbound webhook URL
Anything that can POST JSON — an uptime checker, CI, alertmanager, a script — can send alerts into the workspace at this URL. The body is `{title, summary?, severity?, resource?}`; the alert rule decides what happens. The secret in the path is the credential; rotate it with the sibling endpoint.
GET/v1/tenants/{name}/hook-url
Authorization
x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.
Path parameters
namestringrequired
Workspace (tenant) name.
Response
200 — The URL (minted on first read).
urlstring
curl https://api.live-llm.com/v1/tenants/acme/hook-url \ -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/hook-url
Fill required path param: name.
Example response200
{
"url": "…"
}