Shortcut Software Repositories API

The Repositories API from Shortcut Software — 2 operation(s) for repositories.

Operations 2

GET /api/v3/repositories List Repositories #
GET /api/v3/repositories/{repo-public-id} Get Repository #

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-repositories-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-repositories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shortcut Categories Repositories API
  version: '3.0'
  description: Shortcut API
servers:
- url: https://api.app.shortcut.com
security:
- api_token: []
tags:
- name: Repositories
paths:
  /api/v3/repositories:
    get:
      responses:
        '200':
          description: Resource
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Repository'
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: listRepositories
      description: List Repositories returns a list of all Repositories and their attributes.
      summary: List Repositories
      tags:
      - Repositories
  /api/v3/repositories/{repo-public-id}:
    get:
      parameters:
      - in: path
        name: repo-public-id
        description: The unique ID of the Repository.
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Repository'
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: getRepository
      description: Get Repository returns information about the selected Repository.
      summary: Get Repository
      tags:
      - Repositories
components:
  schemas:
    Repository:
      description: Repository refers to a VCS repository.
      type: object
      properties:
        entity_type:
          description: A string description of this resource.
          type: string
        name:
          description: The shorthand name of the VCS repository.
          type:
          - string
          - 'null'
        type:
          description: The VCS provider for the Repository.
          type: string
          enum:
          - github
          - gitlab
          - bitbucket
        updated_at:
          description: The time/date the Repository was updated.
          type:
          - string
          - 'null'
          format: date-time
        external_id:
          description: The VCS unique identifier for the Repository.
          type:
          - string
          - 'null'
        id:
          description: The ID associated to the VCS repository in Shortcut.
          type:
          - integer
          - 'null'
          format: int64
        url:
          description: The URL of the Repository.
          type:
          - string
          - 'null'
        full_name:
          description: The full name of the VCS repository.
          type:
          - string
          - 'null'
        created_at:
          description: The time/date the Repository was created.
          type:
          - string
          - 'null'
          format: date-time
      additionalProperties: false
      required:
      - entity_type
      - name
      - type
      - updated_at
      - external_id
      - id
      - url
      - full_name
      - created_at
  securitySchemes:
    api_token:
      type: apiKey
      in: header
      name: Shortcut-Token