VTS

VTS Auth2.0 Access Token API

The Auth2.0 Access Token API from VTS — 1 operation(s) for auth2.0 access token.

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-auth2-0-access-token-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

vts-auth2-0-access-token-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  title: VTS Lease Account Admin Auth2.0 Access Token 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: Auth2.0 Access Token
paths:
  /oauth/v1/token:
    post:
      description: Get access token
      tags:
      - Auth2.0 Access Token
      summary: Get access token
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/models_api.AuthRequest'
        description: Auth request object
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models_api.AuthResponse'
      operationId: post_oauth-v1-token-1
components:
  schemas:
    models_api.AuthResponse:
      type: object
      properties:
        access_token:
          type: string
          description: 'Json Web Token. Use as ''authorization: Bearer <JWT>'' header'
        scope:
          type: string
          description: application scope
        expires_in:
          type: integer
          description: expiration duration
        token_type:
          type: string
          description: token_type
          default: Bearer
    models_api.AuthRequest:
      type: object
      properties:
        client_id:
          type: string
          description: client_id
        client_secret:
          type: string
          description: client_secret
        audience:
          type: string
          description: client_secret
          example: download-links
          default: download-links
        grant_type:
          type: string
          description: grant_type
          example: client_credentials
          default: client_credentials
  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)