---
title: "Create Webhook"
method: POST
path: "/v1/webhooks"
tags: ["webhooks"]
---

# Create Webhook

`POST /v1/webhooks`

## Request body

- CreateWebhookRequest
  - `url` string, required
  - `events` string[], required

## Response `200`

Successful Response

- SingleResponseWebhookCreateOut
  - `data` WebhookCreateOut, required
    - `id` integer, required — Webhook ID.
    - `url` string, required — HTTPS URL that receives webhook deliveries.
    - `events` string[], required — Subscribed event types (e.g. ['new_filing', 'amendment']).
    - `active` boolean, required — Whether the webhook is currently active.
    - `created_at` string, required — When the webhook was created (ISO 8601).
    - `secret` string, required — HMAC-SHA256 signing secret (64 hex chars). Shown once.
  - `meta` Meta, required
    - `total` integer, nullable — Total number of matching records (list endpoints only).
    - `limit` integer, nullable — Maximum records returned per page.
    - `offset` integer, nullable — Number of records skipped (offset-based pagination).
    - `next_cursor` string, nullable — Opaque cursor for the next page (keyset pagination). Null on the last page.
    - `request_id` string, required — Unique request identifier for tracing and support (e.g. 'req_abc123').

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/axioradev/apis/axiora-api.md) · [All operations](https://skmtc.net/axioradev/apis/axiora-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/axioradev/axiora-api/revisions/b8bf48556541/schema)
