Benzinga Data Webhook Engine

Push delivery of Benzinga calendar, signal, and sentiment data to customer endpoints with filterable, resilient webhooks and a test-delivery endpoint.

Operations 1

GET /api/v1/webhook/test Test Webhook Delivery #

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/benzinga-webhook-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 email required.

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

OpenAPI Specification

benzinga-webhook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  description: This REST API provides endpoints to get analyst report details.
  termsOfService: http://swagger.io/terms/
  title: Analyst Reports Raw Text Analyst Insights Webhook API
  version: 1.0.0
servers:
- url: https://api.benzinga.com
  description: PROD
tags:
- name: Webhook
paths:
  /api/v1/webhook/test:
    get:
      summary: Test Webhook Delivery
      description: This endpoint will send test data to your webhook endpoint so you may verify your integration
      operationId: get-webhook-test
      parameters:
      - name: destination
        in: query
        required: true
        description: The webhook endpoint URL where the test data will be sent
        schema:
          type: string
          format: uri
        example: https://your-endpoint.com/webhook
      - name: version
        in: query
        required: true
        description: API version, currently webhook/v1
        schema:
          type: string
          enum:
          - webhook/v1
          default: webhook/v1
      - name: kind
        in: query
        required: true
        description: Identifies the message kind for the test payload
        schema:
          type: string
          enum:
          - News/v1
          - Signals/v1
          - Earnings/v1
          - Ratings/v1
          - Dividends/v1
          - IPOs/v1
          - Guidance/v1
          - Splits/v1
          - OptionActivity/v1
          - Conference/v1
          - Economics/v1
          - Offerings/v1
          - MA/v1
          - Retail/v1
          - FDA/v1
          - WIIMs/v1
          - SECInsiderTransaction/v1
          - GovernmentTrade/v1
          default: News/v1
      - name: token
        in: query
        required: false
        description: Specify token to have data transformed for production usage
        schema:
          type: string
      responses:
        '200':
          description: Success - Test webhook delivery was sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
        '400':
          description: Invalid request - Inspect response body for details
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Invalid destination URL
        '424':
          description: Delivery error - System encountered an error delivering the test payload
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Failed to deliver test payload to destination
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Internal server error
      security:
      - ApiKeyAuth: []
      tags:
      - Webhook
components:
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: token
      type: apiKey