Orbit Webhooks API

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

Operations 5

GET /{workspace_slug}/webhooks List webhooks in a workspace
POST /{workspace_slug}/webhooks Create a webhook
GET /{workspace_slug}/webhooks/{id} Get a webhook
PUT /{workspace_slug}/webhooks/{id} Update a webhook
DELETE /{workspace_slug}/webhooks/{id} Delete a webhook

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

orbit-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orbit Activities Webhooks API
  version: v1
  description: Please see the complete Orbit API documentation at [https://api.orbit.love/](https://api.orbit.love/).
servers:
- url: http://web.archive.org/web/20240303060821/https://app.orbit.love/api/v1
tags:
- name: Webhooks
paths:
  /{workspace_slug}/webhooks:
    get:
      summary: List webhooks in a workspace
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters:
      - name: workspace_slug
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: success
          content:
            application/json:
              example:
                data:
                - id: 6qyFL6
                  type: webhook
                  attributes:
                    name: My Test Webhook
                    enabled: true
                    updated_at: '2023-06-21T14:54:45.434Z'
                    created_at: '2023-06-21T14:54:45.434Z'
                    event_type: activity:created
                    url: http://web.archive.org/web/20240303060821/https://example.com/hook
                    activity_types: []
                    activity_tags: []
                    member_tags: []
                    activity_keywords: []
                    include_teammates: false
                links:
                  first: /fake-workspace/webhooks?page=1
                  last: /fake-workspace/webhooks?page=1
                  prev: null
                  next: null
    post:
      summary: Create a webhook
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters:
      - name: workspace_slug
        in: path
        required: true
        schema:
          type: string
      responses:
        '201':
          description: webhook created
        '403':
          description: forbidden
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/webhook_subscription'
  /{workspace_slug}/webhooks/{id}:
    get:
      summary: Get a webhook
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters:
      - name: workspace_slug
        in: path
        required: true
        schema:
          type: string
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: success
          content:
            application/json:
              example:
                data:
                  id: 6ZbFM6
                  type: webhook
                  attributes:
                    name: My Test Webhook
                    enabled: true
                    updated_at: '2023-06-21T14:54:45.849Z'
                    created_at: '2023-06-21T14:54:45.849Z'
                    event_type: activity:created
                    url: http://web.archive.org/web/20240303060821/https://example.com/hook
                    activity_types: []
                    activity_tags: []
                    member_tags: []
                    activity_keywords: []
                    include_teammates: false
    put:
      summary: Update a webhook
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters:
      - name: workspace_slug
        in: path
        required: true
        schema:
          type: string
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: webhook updated
        '403':
          description: forbidden
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/webhook_subscription'
    delete:
      summary: Delete a webhook
      tags:
      - Webhooks
      security:
      - bearer: []
      parameters:
      - name: workspace_slug
        in: path
        required: true
        schema:
          type: string
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: webhook deleted
        '403':
          description: forbidden
components:
  schemas:
    webhook_subscription:
      type: object
      properties:
        name:
          type: string
        url:
          type: string
        secret:
          type: string
        event_type:
          type: string
        activity_types:
          type: array
          items:
            type: string
        activity_tags:
          type: array
          items:
            type: string
        member_tags:
          type: array
          items:
            type: string
      required:
      - name
      - event_type
      - url
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: Provide a Authorization header with format 'Bearer <api_key>'. This is the recommended approach. Make sure to include the 'Bearer' part in the text box here.
    api_key:
      type: apiKey
      name: api_key
      in: query
      description: Provide the API key in a query param called api_key. This is the least secure method, please use only for testing.