EVEDEX Short Link API

The ShortLink API from EVEDEX — 3 operation(s) for shortlink.

Operations 5

PUT /api/user/{userId}/short-link/{shortLinkId}
DELETE /api/user/{userId}/short-link/{shortLinkId}
GET /api/user/{userId}/short-link
POST /api/user/{userId}/short-link
GET /api/user/short-link/check

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/evedex-shortlink-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

evedex-shortlink-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVEDEX - Referral Short Link API
  version: 1.0.0
servers:
- url: https://partner-api.evedex.com
tags:
- name: ShortLink
paths:
  /api/user/{userId}/short-link/{shortLinkId}:
    put:
      tags:
      - ShortLink
      security:
      - AccessToken: []
      parameters:
      - in: path
        name: userId
        schema:
          type: string
          format: uuid
        required: true
      - in: path
        name: shortLinkId
        schema:
          type: string
          format: uuid
        required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateShortLink'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShortLink'
    delete:
      tags:
      - ShortLink
      security:
      - AccessToken: []
      parameters:
      - in: path
        name: userId
        schema:
          type: string
          format: uuid
        required: true
      - in: path
        name: shortLinkId
        schema:
          type: string
          format: uuid
        required: true
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
  /api/user/{userId}/short-link:
    get:
      tags:
      - ShortLink
      security:
      - AccessToken: []
      parameters:
      - in: path
        name: userId
        schema:
          type: string
          format: uuid
        required: true
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ShortLink'
    post:
      tags:
      - ShortLink
      security:
      - AccessToken: []
      parameters:
      - in: path
        name: userId
        schema:
          type: string
          format: uuid
        required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateShortLink'
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShortLink'
  /api/user/short-link/check:
    get:
      tags:
      - ShortLink
      security:
      - AccessToken: []
      parameters:
      - in: query
        name: code
        schema:
          type: string
        required: true
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  isAccessible:
                    type: boolean
                required:
                - isAccessible
components:
  schemas:
    ShortLink:
      type: object
      properties:
        id:
          type: string
          format: uuid
        user:
          type: string
          format: uuid
        referralCode:
          type: string
        name:
          type: string
        destinationLink:
          type: string
        shortLinkCode:
          type: string
        createdAt:
          type: string
        shortLinkPath:
          type: string
      required:
      - id
      - user
      - referralCode
      - name
      - destinationLink
      - shortLinkCode
      - createdAt
      - shortLinkPath
    CreateShortLink:
      type: object
      properties:
        name:
          type: string
          description: Short link name
        shortLinkCode:
          type: string
          description: Unique code
        destinationLink:
          type: string
          format: uri
          description: Destination link
        referralCode:
          type: string
          description: Referral link code
      required:
      - name
      - shortLinkCode
      - destinationLink
      - referralCode
    EmptyResponse:
      type: object
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
    InternalKey:
      type: http
      scheme: bearer