VTS

VTS Download Links API

The Download Links API from VTS — 1 operation(s) for download links.

Operations 1

GET / Download files URIs #

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/vts-download-links-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vts-download-links-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VTS Lease Account Admin Download Links API
  version: v1
  description: VTS Lease REST API — the commercial real estate leasing, asset management, and portfolio data surface of the VTS platform. Resources include assets, spaces, leases, deals, deal terms, lease terms, financials, budgets, tenants, buildings, listings, and the Leasing Availability API. Harvested verbatim from the VTS developer portal (readme.vts.com) per-operation OpenAPI fragments.
  contact:
    name: VTS API Support
    url: https://readme.vts.com/
  termsOfService: https://www.vts.com/services-terms
servers:
- url: https://api.vts.com
- url: https://sandbox.vts.com
  description: Sandbox
security:
- basic_auth: []
tags:
- name: Download Links
paths:
  /:
    get:
      description: Download AWS CloudFront pre-signed URIs
      tags:
      - Download Links
      summary: Download files URIs
      parameters:
      - description: Defines the export.
        name: export_name
        in: query
        required: true
        schema:
          type: string
          enum:
          - activate_reservations
          - activate_analytics_events
          - activate_user_channel_details
          - sample_export
      - description: Specifies the generated date of the requested export file (YYYY-MM-DD).
        name: generated_date
        in: query
        schema:
          type: string
      - description: Authentication JSON Web Token with correct claims and identifier information.
        name: authorization
        in: header
        required: true
        schema:
          type: string
          default: Bearer
      - description: JSON content type header.
        name: Content-Type
        in: header
        required: true
        schema:
          type: string
          default: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models_api.DownloadLinksResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models_api.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models_api.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models_api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: string
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                type: string
      operationId: get_-1
components:
  schemas:
    models_api.UriEntity:
      type: object
      properties:
        error:
          type: string
          example: explanation of the error
        uri:
          type: string
          example: https://example.vts.com
    models_api.ErrorResponse:
      type: object
      properties:
        error:
          type: string
          example: error description
    models_api.DownloadLinksResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/models_api.DataEntity'
    models_api.DataEntity:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/models_api.UriEntity'
        id:
          type: string
          example: e8a6be19-9676-4bb2-9c5d-8d76cf8dcc23
        type:
          type: string
          example: download_link
  securitySchemes:
    basic_auth:
      type: http
      scheme: basic
    oauth2:
      type: oauth2
      description: OAuth 2.0 Authorization Code flow with PKCE (VTS Activate / OIDC).
      flows:
        authorizationCode:
          authorizationUrl: https://sandbox.vts.com/oauth/authorize
          tokenUrl: https://sandbox.vts.com/oauth/token
          refreshUrl: https://sandbox.vts.com/oauth/token
          scopes:
            read_write: Read and write access
            openid: OpenID Connect
            profile: Profile claims
            email: Email claim
x-apis-json:
  generated: '2026-07-21'
  method: searched
  source: https://readme.vts.com/reference (per-operation OpenAPI fragments, harvested & merged)