Goody Webhooks API

The Webhooks API from Goody — 2 operation(s) for webhooks.

Operations 2

POST /v1/webhooks Create a webhook endpoint
DELETE /v1/webhooks/{id} Delete a webhook endpoint

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

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

OpenAPI Specification

goody-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Goody Brands Webhooks API
  version: 1.0.0
  contact:
    name: Goody Support
    email: support@ongoody.com
servers:
- url: https://api.ongoody.com
  description: Production
- url: https://api.sandbox.ongoody.com
  description: Sandbox
tags:
- name: Webhooks
paths:
  /v1/webhooks:
    post:
      summary: Create a webhook endpoint
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters: []
      responses:
        '201':
          description: Webhook endpoint created
          content:
            application/json:
              examples:
                Webhook endpoint created:
                  value:
                    id: 106b2d34-eea8-4de3-8e41-46f6bb65a8c3
              schema:
                type: object
                properties:
                  id:
                    type: string
        '400':
          description: Webhook endpoint not created
          content:
            application/json:
              examples:
                Webhook endpoint failed to create:
                  value:
                    error: Unauthorized. You must be an admin to manage webhooks.
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookInput'
            examples:
              Webhook endpoint created:
                summary: Webhook endpoint created
                value:
                  url: https://ongoody.com/webhook-endpoint
                  events:
                  - order_batch.created
  /v1/webhooks/{id}:
    parameters:
    - name: id
      in: path
      description: Webhook endpoint ID
      required: true
      schema:
        type: string
    delete:
      summary: Delete a webhook endpoint
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters: []
      responses:
        '204':
          description: Webhook endpoint deleted
        '400':
          description: Webhook endpoint not deleted
          content:
            application/json:
              examples:
                Webhook endpoint failed to delete:
                  value:
                    error: Unauthorized
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookInput'
            examples:
              Webhook endpoint deleted:
                summary: Webhook endpoint deleted
                value:
                  url: https://ongoody.com/webhook-endpoint
                  events:
                  - order_batch.created
components:
  schemas:
    WebhookInput:
      type: object
      description: Input parameters for a webhook endpoint.
      properties:
        url:
          type: string
          description: The URL for the webhook to call.
        events:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Filter the events you want to get webhooks for. Refer to the Webhooks list for the event names.
    Error:
      type: object
      properties:
        error:
          type: string
      required:
      - error
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: Your Goody API key.