Kiteworks shortLinks API

The shortLinks API from Kiteworks — 1 operation(s) for shortlinks.

Operations 1

GET /rest/shortLinks/{ref} Short Link

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/kiteworks-shortlinks-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

kiteworks-shortlinks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '28'
  title: Kiteworks API Documentation Short Links API
tags:
- name: shortLinks
paths:
  /rest/shortLinks/{ref}:
    get:
      tags:
      - shortLinks
      summary: Short Link
      description: Returns the properties of the specified short link, including the associated entity ID, entity type, and expiration date. Access to email-package short links is allowed without authentication when the package access control is set to no-auth.
      responses:
        '200':
          description: Short link details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Shortlink'
              examples:
                ShortlinkInfo:
                  summary: Details of a short link
                  value:
                    entityTypeId: 1
                    entityId: a1b2c3d4-e5f6-4789-abcd-ef1234567890
                    entityTypeName: object
                    expire: null
        '490':
          description: Request blocked by WAF
      deprecated: false
      parameters:
      - in: path
        name: ref
        description: The ref value of the short link
        required: true
        schema:
          type: string
      - in: query
        name: mode
        description: Determines the detail level of the response body.
        schema:
          type: string
          enum:
          - full_with_links
          - full
components:
  schemas:
    Shortlink:
      description: Class Shortlink
      properties:
        expire:
          description: Date and time after which the shortlink becomes invalid and can no longer be used
          type: string
          format: date
        entityTypeId:
          description: Unique identifier of the entity type this shortlink is associated with
          type: integer
        entityId:
          description: Unique identifier of the entity this shortlink points to, returned as a GUID from version 19 onwards
          type: string
        entityTypeName:
          description: Human-readable name of the entity type this shortlink is associated with
          type: string
        links:
          description: HATEOAS links associated with the entity
          type: array
          items:
            type: string