Shortcut Software Integrations API

The Integrations API from Shortcut Software — 2 operation(s) for integrations.

Operations 3

POST /api/v3/integrations/webhook Create Generic Integration #
GET /api/v3/integrations/webhook/{integration-public-id} Get Generic Integration #
DELETE /api/v3/integrations/webhook/{integration-public-id} Delete Generic Integration #

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/shortcut-software-integrations-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

shortcut-software-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shortcut Categories Integrations API
  version: '3.0'
  description: Shortcut API
servers:
- url: https://api.app.shortcut.com
security:
- api_token: []
tags:
- name: Integrations
paths:
  /api/v3/integrations/webhook:
    post:
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateGenericIntegration'
        required: true
      responses:
        '204':
          description: No Content
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: createGenericIntegration
      summary: Create Generic Integration
      tags:
      - Integrations
  /api/v3/integrations/webhook/{integration-public-id}:
    get:
      parameters:
      - in: path
        name: integration-public-id
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Resource
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: getGenericIntegration
      summary: Get Generic Integration
      tags:
      - Integrations
    delete:
      parameters:
      - in: path
        name: integration-public-id
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '204':
          description: No Content
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: deleteGenericIntegration
      summary: Delete Generic Integration
      tags:
      - Integrations
components:
  schemas:
    CreateGenericIntegration:
      type: object
      properties:
        webhook_url:
          pattern: ^https?://.+$
          maxLength: 2048
          type: string
        secret:
          maxLength: 128
          minLength: 1
          type: string
      additionalProperties: false
      required:
      - webhook_url
  securitySchemes:
    api_token:
      type: apiKey
      in: header
      name: Shortcut-Token