Shortcut Entity Templates API

The Entity Templates API from Shortcut — 2 operation(s) for entity templates.

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-entity-templates-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-entity-templates-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Shortcut REST API v3 Categories Entity Templates API
  description: RESTful API providing CRUD access to Shortcut project management resources including stories, epics, iterations, workflows, projects, teams, members, files, labels, categories, documents, custom fields, entity templates, and webhooks. Authenticates with a Shortcut-Token header containing an API token generated in app.shortcut.com settings. Rate-limited to 200 requests per minute; excess requests return HTTP 429.
  version: v3
  contact:
    name: Shortcut Developer Support
    url: https://developer.shortcut.com/api/rest/v3
servers:
- url: https://api.app.shortcut.com/api/v3
  description: Shortcut REST API v3
security:
- ShortcutToken: []
tags:
- name: Entity Templates
paths:
  /entity-templates:
    get:
      summary: List Entity Templates
      operationId: listEntityTemplates
      tags:
      - Entity Templates
      responses:
        '200':
          description: OK
    post:
      summary: Create Entity Template
      operationId: createEntityTemplate
      tags:
      - Entity Templates
      responses:
        '201':
          description: Created
  /entity-templates/{entity-template-public-id}:
    parameters:
    - $ref: '#/components/parameters/EntityTemplatePublicId'
    get:
      summary: Get Entity Template
      operationId: getEntityTemplate
      tags:
      - Entity Templates
      responses:
        '200':
          description: OK
    put:
      summary: Update Entity Template
      operationId: updateEntityTemplate
      tags:
      - Entity Templates
      responses:
        '200':
          description: OK
    delete:
      summary: Delete Entity Template
      operationId: deleteEntityTemplate
      tags:
      - Entity Templates
      responses:
        '204':
          description: No Content
components:
  parameters:
    EntityTemplatePublicId:
      name: entity-template-public-id
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    ShortcutToken:
      type: apiKey
      in: header
      name: Shortcut-Token
      description: Personal API token generated at app.shortcut.com settings.