Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Receive real-time event notifications from the B.O.O.B.I.E.™ engine.
{ "id": "evt_abc123", "type": "engine.job.completed", "data": {}, "created_at": "2026-06-12T09:00:00Z" }
engine.job.completed
engine.job.failed
creator.created
ip.registered
ip.verified
const crypto = require('crypto'); function verifyWebhook(payload, signature, secret) { const expected = crypto .createHmac('sha256', secret) .update(payload) .digest('hex'); return `sha256=${expected}` === signature; }