VTS

VTS Coordination Projects API

The Coordination Projects API from VTS — 6 operation(s) for coordination projects.

Operations 6

GET /api/v1/coordination_project_milestones Gets a list of coordination project milestones #
GET /api/v1/coordination_project_milestones/{id} Gets specific coordination project milestones #
GET /api/v1/coordination_projects Gets coordination projects #
GET /api/v1/coordination_projects/{id} Retrieves specific coordination project #
GET /api/v1/coordination_projects/{project_id}/milestones Gets a coordination project's milestones #
GET /api/v1/deals/{deal_id}/coordination_projects Gets coordination projects for specific deal #

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-coordination-projects-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-coordination-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VTS Lease Account Admin Coordination Projects 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: Coordination Projects
paths:
  /api/v1/coordination_project_milestones:
    get:
      summary: Gets a list of coordination project milestones
      description: Contains all milestones of your portfolio
      tags:
      - Coordination Projects
      security:
      - basic_auth: []
      parameters:
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
      - name: page[before]
        in: query
        required: false
        schema:
          type: string
      - name: page[after]
        in: query
        required: false
        schema:
          type: string
      - name: filter[updated_since]
        in: query
        schema:
          type: string
          format: date-time
        required: false
        description: Only display records that have been modified after the given date/timestamp. Should be in `YYYY-MM-DD HH:MM:SS` (ISO8601) format. (Hours, minutes, and seconds are optional.)
        example: '2021-03-15'
      responses:
        '200':
          description: Returns a list of milestones associated with your portfolio
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                        attributes:
                          type: object
                          properties:
                            description:
                              type:
                              - string
                              - 'null'
                            completed_at:
                              type:
                              - string
                              - 'null'
                            target_date:
                              type:
                              - string
                              - 'null'
                            notes:
                              type:
                              - string
                              - 'null'
                            created_at:
                              type: string
                            updated_at:
                              type: string
                            category_description:
                              type:
                              - string
                              - 'null'
                        relationships:
                          type: object
                          properties:
                            completed_by:
                              type: object
                              properties:
                                data:
                                  type:
                                  - object
                                  - 'null'
                                  properties:
                                    id:
                                      type: string
                                    type:
                                      type: string
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                            coordination_project:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/coordination_projects/1
                  links:
                    type: object
                    properties:
                      self:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/1/milestones
                      prev:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/12345/milestones?page%5Bbefore%5D=MzE2NTI%253D
                      next:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/12345/milestones?page%5Bafter%5D=MzE2NjQ%253D
                    required:
                    - self
        '403':
          description: API not authorized for use
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
      operationId: get_api-v1-coordination-project-milestones
  /api/v1/coordination_project_milestones/{id}:
    get:
      summary: Gets specific coordination project milestones
      description: Contains specific milestones of your portfolio
      tags:
      - Coordination Projects
      security:
      - basic_auth: []
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
      - name: page[before]
        in: query
        required: false
        schema:
          type: string
      - name: page[after]
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Returns a specific milestones associated with your portfolio
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                      attributes:
                        type: object
                        properties:
                          description:
                            type:
                            - string
                            - 'null'
                          completed_at:
                            type:
                            - string
                            - 'null'
                          target_date:
                            type:
                            - string
                            - 'null'
                          notes:
                            type:
                            - string
                            - 'null'
                          created_at:
                            type: string
                          updated_at:
                            type: string
                          category_description:
                            type:
                            - string
                            - 'null'
                      relationships:
                        type: object
                        properties:
                          completed_by:
                            type: object
                            properties:
                              data:
                                type:
                                - object
                                - 'null'
                                properties:
                                  id:
                                    type: string
                                  type:
                                    type: string
                              links:
                                type: object
                                properties:
                                  related:
                                    type: string
                          coordination_project:
                            type: object
                            properties:
                              links:
                                type: object
                                properties:
                                  related:
                                    type: string
                                    example: https://api.vts.com/api/v1/coordination_projects/1
        '403':
          description: API not authorized for use
      operationId: get_api-v1-coordination-project-milestones-id
  /api/v1/coordination_projects:
    get:
      summary: Gets coordination projects
      description: Contains the coordination projects in your portfolio
      tags:
      - Coordination Projects
      operationId: coordination_projects
      security:
      - basic_auth: []
      parameters:
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
      - name: page[before]
        in: query
        required: false
        schema:
          type: string
      - name: page[after]
        in: query
        required: false
        schema:
          type: string
      - name: filter[updated_since]
        in: query
        schema:
          type: string
          format: date-time
        required: false
        description: Only display records that have been modified after the given date/timestamp. Should be in `YYYY-MM-DD HH:MM:SS` (ISO8601) format. (Hours, minutes, and seconds are optional.)
        example: '2021-03-15'
      responses:
        '200':
          description: Returns a list of coordination projects associated with the current account
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: '1'
                        type:
                          type: string
                          example: coordination_projects
                        attributes:
                          type: object
                          properties:
                            target_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            current_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            created_at:
                              type: string
                              format: date-time
                            updated_at:
                              type: string
                              format: date-time
                            status:
                              type:
                              - string
                              - 'null'
                              example: on_track
                        relationships:
                          type: object
                          properties:
                            tenant:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/tenants/12345
                            deal:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/deals/1
                            asset:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/assets/1
                            next_milestone:
                              anyOf:
                              - type: object
                                properties:
                                  data:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milestones
                                  links:
                                    type: object
                                    properties:
                                      related:
                                        type: string
                                        example: https://api.vts.com/api/v1/coordination_project_milestones/1
                              - type: object
                                properties:
                                  data:
                                    type:
                                    - object
                                    - 'null'
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milestones
                  links:
                    type: object
                    properties:
                      self:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects
                      prev:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects?page%5Bbefore%5D=MzE2NTI%253D
                      next:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects?page%5Bafter%5D=MzE2NjQ%253D
                    required:
                    - self
        '403':
          description: API not authorized for use
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
  /api/v1/coordination_projects/{id}:
    get:
      summary: Retrieves specific coordination project
      description: Contains the coordination projects in your portfolio
      tags:
      - Coordination Projects
      operationId: coordination_project
      security:
      - basic_auth: []
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns requested coordination project if it exists
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: '1'
                        type:
                          type: string
                          example: coordination_projects
                        attributes:
                          type: object
                          properties:
                            target_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            current_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            created_at:
                              type: string
                              format: date-time
                            updated_at:
                              type: string
                              format: date-time
                            status:
                              type:
                              - string
                              - 'null'
                              example: on_track
                        relationships:
                          type: object
                          properties:
                            tenant:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/tenants/12345
                            deal:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/deals/1
                            asset:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/assets/1
                            next_milestone:
                              anyOf:
                              - type: object
                                properties:
                                  data:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milestones
                                  links:
                                    type: object
                                    properties:
                                      related:
                                        type: string
                                        example: https://api.vts.com/api/v1/coordination_project_milestones/1
                              - type: object
                                properties:
                                  data:
                                    type:
                                    - object
                                    - 'null'
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milestones
                  links:
                    type: object
                    properties:
                      self:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects
                      prev:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects?page%5Bbefore%5D=MzE2NTI%253D
                      next:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects?page%5Bafter%5D=MzE2NjQ%253D
                    required:
                    - self
        '403':
          description: API not authorized for use
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
        '404':
          description: Requested coordination project does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
  /api/v1/coordination_projects/{project_id}/milestones:
    get:
      summary: Gets a coordination project's milestones
      description: Contains the coordination projects in your portfolio
      tags:
      - Coordination Projects
      security:
      - basic_auth: []
      parameters:
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
      - name: page[before]
        in: query
        required: false
        schema:
          type: string
      - name: page[after]
        in: query
        required: false
        schema:
          type: string
      - name: filter[updated_since]
        in: query
        schema:
          type: string
          format: date-time
        required: false
        description: Only display records that have been modified after the given date/timestamp. Should be in `YYYY-MM-DD HH:MM:SS` (ISO8601) format. (Hours, minutes, and seconds are optional.)
        example: '2021-03-15'
      responses:
        '200':
          description: Returns a list of milestones associated with the coordination project
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                        attributes:
                          type: object
                          properties:
                            description:
                              type:
                              - string
                              - 'null'
                            completed_at:
                              type:
                              - string
                              - 'null'
                            target_date:
                              type:
                              - string
                              - 'null'
                            notes:
                              type:
                              - string
                              - 'null'
                            created_at:
                              type: string
                            updated_at:
                              type: string
                            category_description:
                              type:
                              - string
                              - 'null'
                        relationships:
                          type: object
                          properties:
                            completed_by:
                              type: object
                              properties:
                                data:
                                  type:
                                  - object
                                  - 'null'
                                  properties:
                                    id:
                                      type: string
                                    type:
                                      type: string
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                            coordination_project:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/coordination_projects/1
                  links:
                    type: object
                    properties:
                      self:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/1/milestones
                      prev:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/12345/milestones?page%5Bbefore%5D=MzE2NTI%253D
                      next:
                        type: string
                        example: https://api.vts.com/api/v1/coordination_projects/12345/milestones?page%5Bafter%5D=MzE2NjQ%253D
                    required:
                    - self
        '403':
          description: API not authorized for use
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
        '404':
          description: Referenced coordination project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errors_object'
      operationId: get_api-v1-coordination-projects-project-id-milestones
  /api/v1/deals/{deal_id}/coordination_projects:
    get:
      summary: Gets coordination projects for specific deal
      description: Contains the coordination projects in your portfolio for specific deal
      tags:
      - Coordination Projects
      operationId: coordination_projects_per_deal
      security:
      - basic_auth: []
      parameters:
      - name: deal_id
        in: path
        required: true
        schema:
          type: string
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
      - name: page[before]
        in: query
        required: false
        schema:
          type: string
      - name: page[after]
        in: query
        required: false
        schema:
          type: string
      - name: filter[updated_since]
        in: query
        schema:
          type: string
          format: date-time
        required: false
        description: Only display records that have been modified after the given date/timestamp. Should be in `YYYY-MM-DD HH:MM:SS` (ISO8601) format. (Hours, minutes, and seconds are optional.)
        example: '2021-03-15'
      responses:
        '200':
          description: Returns a list of coordination projects associated with the current account
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: '1'
                        type:
                          type: string
                          example: coordination_projects
                        attributes:
                          type: object
                          properties:
                            target_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            current_rent_commencement_date:
                              type:
                              - string
                              - 'null'
                              format: date
                            created_at:
                              type: string
                              format: date-time
                            updated_at:
                              type: string
                              format: date-time
                            status:
                              type:
                              - string
                              - 'null'
                              example: on_track
                        relationships:
                          type: object
                          properties:
                            tenant:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/tenants/12345
                            deal:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/deals/1
                            asset:
                              type: object
                              properties:
                                links:
                                  type: object
                                  properties:
                                    related:
                                      type: string
                                      example: https://api.vts.com/api/v1/assets/1
                            next_milestone:
                              anyOf:
                              - type: object
                                properties:
                                  data:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milestones
                                  links:
                                    type: object
                                    properties:
                                      related:
                                        type: string
                                        example: https://api.vts.com/api/v1/coordination_project_milestones/1
                              - type: object
                                properties:
                                  data:
                                    type:
                                    - object
                                    - 'null'
                                    properties:
                                      id:
                                        type: string
                                        example: '10'
                                      type:
                                        type: string
                                        example: coordination_milesto

# --- truncated at 32 KB (33 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/vts/refs/heads/main/openapi/vts-coordination-projects-api-openapi.yml