FireHydrant Webhooks API

Operations related to Webhooks

Operations 6

GET /v1/webhooks List webhooks #
POST /v1/webhooks Create a webhook #
GET /v1/webhooks/{webhook_id} Get a webhook #
DELETE /v1/webhooks/{webhook_id} Delete a webhook #
PATCH /v1/webhooks/{webhook_id} Update a webhook #
GET /v1/webhooks/{webhook_id}/deliveries List webhook deliveries #

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/firehydrant-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

firehydrant-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FireHydrant Webhooks API
  version: 0.0.1
  description: Operations related to Webhooks
servers:
- url: https://api.firehydrant.io/
security:
- api_key: []
tags:
- name: Webhooks
  description: Operations related to Webhooks
paths:
  /v1/webhooks:
    get:
      tags:
      - Webhooks
      summary: List webhooks
      description: Lists webhooks
      operationId: listWebhooks
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: int32
      - name: per_page
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Lists webhooks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_Entities_WebhookEntity'
    post:
      tags:
      - Webhooks
      summary: Create a webhook
      description: Create a new webhook
      operationId: createWebhook
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postV1Webhooks'
        required: true
      responses:
        '201':
          description: Create a new webhook
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_Entities_WebhookEntity'
      x-codegen-request-body-name: postV1Webhooks
  /v1/webhooks/{webhook_id}:
    get:
      tags:
      - Webhooks
      summary: Get a webhook
      description: Retrieve a specific webhook
      operationId: getWebhook
      parameters:
      - name: webhook_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Retrieve a specific webhook
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_Entities_WebhookEntity'
    delete:
      tags:
      - Webhooks
      summary: Delete a webhook
      description: Delete a specific webhook
      operationId: deleteWebhook
      parameters:
      - name: webhook_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Delete a specific webhook
          content: {}
    patch:
      tags:
      - Webhooks
      summary: Update a webhook
      description: Update a specific webhook
      operationId: updateWebhook
      parameters:
      - name: webhook_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/patchV1WebhooksWebhookId'
        required: true
      responses:
        '200':
          description: Update a specific webhook
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_Entities_WebhookEntity'
      x-codegen-request-body-name: patchV1WebhooksWebhookId
  /v1/webhooks/{webhook_id}/deliveries:
    get:
      tags:
      - Webhooks
      operationId: listWebhookDeliveries
      parameters:
      - name: webhook_id
        in: path
        description: ID of a webhook
        required: true
        schema:
          type: string
      responses:
        '200':
          description: get Delivery(s)
          content: {}
      summary: List webhook deliveries
components:
  schemas:
    Webhooks_Entities_WebhookEntity:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
        state:
          type: string
        created_by:
          $ref: '#/components/schemas/AuthorEntity'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        subscriptions:
          type: string
      description: Webhooks_Entities_WebhookEntity model
    postV1Webhooks:
      required:
      - url
      type: object
      properties:
        url:
          type: string
      description: Create a new webhook
    AuthorEntity:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        source:
          type: string
        email:
          type: string
    patchV1WebhooksWebhookId:
      type: object
      properties:
        url:
          type: string
        state:
          type: string
          enum:
          - active
          - inactive
      description: Update a specific webhook
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
x-speakeasy-test: true
x-original-swagger-version: '2.0'