Developers

Arknox developer resources

Everything needed to integrate Arknox programmatically: outbound webhook events, payload shapes, signature verification, and embed code for every framework.

Reference formats

  • OpenAPI 3.1 spec — machine-readable webhook event and payload schemas
  • llms.txt — full product reference for AI agents and LLM tools
  • Integration guide — embed code snippets for every platform (HTML, React, Next.js, WordPress, Shopify, and more)

Webhooks

Configure a webhook URL under Settings → Webhooks in your dashboard. Arknox sends an HTTP POST with a JSON body for every subscribed event:

{
  "event": "form.submitted",
  "timestamp": "2026-08-23T09:00:00.000Z",
  "data": { "...": "event-specific fields" }
}

Events

EventFires when
form.submittedA lead capture, gate, or overlay form was submitted
quiz.submittedA viewer answered a multiple-choice quiz question
poll.submittedA viewer answered a poll
booking.submittedA booking widget was submitted
note.createdA timestamped viewer note was created
video.duplicatedA video was duplicated in the dashboard
video.expiredAn embed link's expiry date passed

Verifying the signature

If a secret is set on the webhook, every request carries an X-Webhook-Signature header — sha256=<hex>, an HMAC-SHA256 of the raw request body keyed with your secret. The event name is also sent unsigned as X-Webhook-Event for routing. Verify with a constant-time comparison before trusting the payload:

import crypto from 'crypto'
function isValidSignature(rawBody: string, header: string, secret: string) {
const expected = crypto
.createHmac('sha256', secret)
.update(rawBody)
.digest('hex')
return header === `sha256=${expected}`
}

Deliveries time out after 8 seconds and are not retried — respond with any 2xx status as soon as the payload is accepted. Works directly as a Zapier "Catch Hook" trigger, or with Make, n8n, and any HTTP-capable automation platform.

Embed integration

Arknox embeds are a standard <iframe> — no SDK or API key required client-side. See the full integration guide for framework-specific snippets, or the embed generator for a no-signup quick start.

Questions?

Reach the Arknox team at [email protected] or through the support center.