Shortcut Software Member API

The Member API from Shortcut Software — 1 operation(s) for member.

Operations 1

GET /api/v3/member Get Current Member Info #

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-member-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-member-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shortcut Categories Member API
  version: '3.0'
  description: Shortcut API
servers:
- url: https://api.app.shortcut.com
security:
- api_token: []
tags:
- name: Member
paths:
  /api/v3/member:
    get:
      responses:
        '200':
          description: Resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberInfo'
        '400':
          description: Schema mismatch
        '404':
          description: Resource does not exist
        '422':
          description: Unprocessable
      operationId: getCurrentMemberInfo
      description: Returns information about the authenticated member.
      summary: Get Current Member Info
      tags:
      - Member
components:
  schemas:
    MemberInfo:
      type: object
      properties:
        id:
          type: string
          format: uuid
        is_owner:
          type: boolean
        mention_name:
          type: string
        name:
          type: string
        role:
          type: string
        workspace2:
          $ref: '#/components/schemas/BasicWorkspaceInfo'
        organization2:
          $ref: '#/components/schemas/MemberInfoOrganization2'
      additionalProperties: false
      required:
      - id
      - is_owner
      - mention_name
      - name
      - role
      - workspace2
      - organization2
    BasicWorkspaceInfo:
      type: object
      properties:
        id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        default_workflow_id:
          type: integer
          format: int64
        estimate_scale:
          type: array
          items:
            type: integer
            format: int64
        name:
          type: string
        url_slug:
          type: string
        utc_offset:
          type: string
        korey_enabled:
          type: boolean
      additionalProperties: false
      required:
      - id
      - created_at
      - default_workflow_id
      - estimate_scale
      - name
      - url_slug
      - utc_offset
    MemberInfoOrganization2:
      type: object
      properties:
        id:
          type: string
          format: uuid
      additionalProperties: false
      required:
      - id
  securitySchemes:
    api_token:
      type: apiKey
      in: header
      name: Shortcut-Token