Shortcut Custom Fields API

The Custom Fields API from Shortcut — 2 operation(s) for custom fields.

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-custom-fields-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-custom-fields-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Shortcut REST API v3 Categories Custom Fields 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: Custom Fields
paths:
  /custom-fields:
    get:
      summary: List Custom Fields
      operationId: listCustomFields
      tags:
      - Custom Fields
      responses:
        '200':
          description: OK
  /custom-fields/{custom-field-public-id}:
    parameters:
    - $ref: '#/components/parameters/CustomFieldPublicId'
    get:
      summary: Get Custom Field
      operationId: getCustomField
      tags:
      - Custom Fields
      responses:
        '200':
          description: OK
    put:
      summary: Update Custom Field
      operationId: updateCustomField
      tags:
      - Custom Fields
      responses:
        '200':
          description: OK
    delete:
      summary: Delete Custom Field
      operationId: deleteCustomField
      tags:
      - Custom Fields
      responses:
        '204':
          description: No Content
components:
  parameters:
    CustomFieldPublicId:
      name: custom-field-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.