Shortcut Software Key Results API

The Key Results API from Shortcut Software — 1 operation(s) for key results.

Operations 2

GET /api/v3/key-results/{key-result-public-id} Get Key Result #
PUT /api/v3/key-results/{key-result-public-id} Update Key Result #

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-key-results-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-key-results-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shortcut Categories Key Results API
  version: '3.0'
  description: Shortcut API
servers:
- url: https://api.app.shortcut.com
security:
- api_token: []
tags:
- name: Key Results
paths:
  /api/v3/key-results/{key-result-public-id}:
    get:
      parameters:
      - in: path
        name: key-result-public-id
        description: The ID of the Key Result.
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KeyResult'
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: getKeyResult
      description: Get Key Result returns information about a chosen Key Result.
      summary: Get Key Result
      tags:
      - Key Results
    put:
      parameters:
      - in: path
        name: key-result-public-id
        description: The ID of the Key Result.
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateKeyResult'
        required: true
      responses:
        '200':
          description: Resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KeyResult'
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: updateKeyResult
      description: Update Key Result allows updating a Key Result's name or initial, observed, or target values.
      summary: Update Key Result
      tags:
      - Key Results
components:
  schemas:
    UpdateKeyResult:
      type: object
      properties:
        name:
          maxLength: 1024
          description: The name of the Key Result.
          type: string
        initial_observed_value:
          $ref: '#/components/schemas/KeyResultValue'
        observed_value:
          $ref: '#/components/schemas/KeyResultValue'
        target_value:
          $ref: '#/components/schemas/KeyResultValue'
      additionalProperties: false
    KeyResultValue:
      description: The starting value of the Key Result.
      type: object
      properties:
        numeric_value:
          description: The numeric value, as a decimal string. No more than two decimal places are allowed.
          type: string
        boolean_value:
          description: The boolean value.
          type: boolean
      additionalProperties: false
    KeyResult:
      type: object
      properties:
        id:
          description: The ID of the Key Result.
          type: string
          format: uuid
        name:
          description: The name of the Key Result.
          type: string
        objective_id:
          description: The Objective to which this Key Result belongs.
          type: integer
          format: int64
        type:
          description: The type of the Key Result (numeric, percent, or boolean).
          type: string
          enum:
          - percent
          - boolean
          - numeric
        initial_observed_value:
          $ref: '#/components/schemas/KeyResultValue'
        current_observed_value:
          $ref: '#/components/schemas/KeyResultValue'
        current_target_value:
          $ref: '#/components/schemas/KeyResultValue'
        progress:
          description: The integer percentage of progress toward completion of the Key Result.
          type: integer
          format: int64
      additionalProperties: false
      required:
      - id
      - name
      - objective_id
      - type
      - initial_observed_value
      - current_observed_value
      - current_target_value
      - progress
  securitySchemes:
    api_token:
      type: apiKey
      in: header
      name: Shortcut-Token