tZERO Webhooks API

Webhook subscription management and event delivery

Operations 6

GET /api/v1/webhooks/events List available webhook events #
GET /api/v1/webhooks/ List webhook subscriptions #
POST /api/v1/webhooks/ Create webhook subscription #
PATCH /api/v1/webhooks/{id} Update webhook subscription #
DELETE /api/v1/webhooks/{id} Delete webhook subscription #
POST /api/v1/webhooks/{id}/test Send test webhook event #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tzero-webhooks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tzero-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: tZERO Institutional API Documents Webhooks API
  description: '## Overview


    The **tZERO Institutional API** — programmatic access to transfer-agent, tokenization, and custody operations for institutional issuers and partners.'
  version: 1.1.0
  contact:
    name: T0kenizer API Support
    email: api@t0direct.com
servers:
- url: https://api.t0direct.com
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Webhooks
  description: Webhook subscription management and event delivery
paths:
  /api/v1/webhooks/events:
    get:
      summary: List available webhook events
      tags:
      - Webhooks
      description: Returns all webhook event types that can be subscribed to. No authentication required.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: string
      operationId: getApiV1WebhooksEvents
      x-operation-id-source: derived
  /api/v1/webhooks/:
    get:
      summary: List webhook subscriptions
      tags:
      - Webhooks
      parameters:
      - schema:
          type: integer
        in: query
        name: page
        required: false
      - schema:
          type: integer
        in: query
        name: perPage
        required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/def-17'
                  pagination:
                    $ref: '#/components/schemas/def-0'
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-1'
      operationId: getApiV1Webhooks
      x-operation-id-source: derived
    post:
      summary: Create webhook subscription
      tags:
      - Webhooks
      description: Creates a new webhook subscription. A secret is auto-generated if not provided. The secret is returned ONCE on creation — store it securely. Use it to verify incoming webhook signatures (HMAC-SHA256).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - url
              - events
              properties:
                url:
                  type: string
                  format: uri
                  description: Must be an HTTPS URL
                events:
                  type: array
                  items:
                    type: string
                  minItems: 1
                secret:
                  type: string
      responses:
        '201':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    allOf:
                    - $ref: '#/components/schemas/def-17'
                    - type: object
                      properties:
                        secret:
                          type: string
                        _note:
                          type: string
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-1'
      operationId: postApiV1Webhooks
      x-operation-id-source: derived
  /api/v1/webhooks/{id}:
    patch:
      summary: Update webhook subscription
      tags:
      - Webhooks
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                url:
                  type: string
                events:
                  type: array
                  items:
                    type: string
                isActive:
                  type: boolean
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/def-17'
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-1'
      operationId: patchApiV1WebhooksById
      x-operation-id-source: derived
    delete:
      summary: Delete webhook subscription
      tags:
      - Webhooks
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '204':
          description: No content
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-1'
      operationId: deleteApiV1WebhooksById
      x-operation-id-source: derived
  /api/v1/webhooks/{id}/test:
    post:
      summary: Send test webhook event
      tags:
      - Webhooks
      description: Queues a `ta.test` event for delivery to the subscription's URL to verify the endpoint is reachable and the signature verification logic is correct. Delivery is asynchronous (fire-and-forget) — the response confirms the event was queued, not that the remote endpoint accepted it.
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      message:
                        type: string
                        example: Test event queued for delivery
                      event:
                        type: string
                        example: ta.test
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-1'
      operationId: postApiV1WebhooksByIdTest
      x-operation-id-source: derived
components:
  schemas:
    def-17:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
          format: uri
        events:
          type: array
          items:
            type: string
        isActive:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      title: WebhookSubscription
    def-0:
      type: object
      properties:
        total:
          type: integer
          description: Total number of matching records
        page:
          type: integer
          description: Current page number
        perPage:
          type: integer
          description: Records per page
        totalPages:
          type: integer
          description: Total number of pages
      title: PaginationMeta
    def-1:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
              example: T0K-V1-INV-001
            message:
              type: string
              example: Investor not found
      title: ErrorResponse
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key generated at app.t0kenizer.com/ta/api-keys