Vers deploy API

The deploy API from Vers — 1 operation(s) for deploy.

Operations 1

POST /api/v1/deploy Deploy a GitHub repository to a new Vers project. #

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/vers-deploy-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

vers-deploy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orchestrator Control Plane commit_tags Deploy API
  description: ''
  license:
    name: ''
  version: 0.1.0
servers:
- url: https://api.vers.sh
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: deploy
paths:
  /api/v1/deploy:
    post:
      tags:
      - deploy
      summary: Deploy a GitHub repository to a new Vers project.
      operationId: deploy_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeployRequest'
        required: true
      responses:
        '202':
          description: Deploy initiated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeployResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Repository not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Project name conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '501':
          description: GitHub App not configured
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - bearer_auth: []
components:
  schemas:
    DeployResponse:
      type: object
      description: Response body for `POST /api/v1/deploy`.
      required:
      - project_id
      - vm_id
      - status
      properties:
        project_id:
          type: string
          format: uuid
        status:
          type: string
        vm_id:
          type: string
          format: uuid
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Reason of error
        success:
          type: boolean
          description: 'Is always: false'
    DeploySettings:
      type: object
      description: Settings for the deploy build pipeline.
      properties:
        build_command:
          type:
          - string
          - 'null'
        install_command:
          type:
          - string
          - 'null'
        run_command:
          type:
          - string
          - 'null'
        working_directory:
          type:
          - string
          - 'null'
    DeployRequest:
      type: object
      description: Request body for `POST /api/v1/deploy`.
      required:
      - repo
      properties:
        branch:
          type:
          - string
          - 'null'
          description: Git branch to clone (defaults to repo default branch).
        name:
          type:
          - string
          - 'null'
          description: Optional project name (defaults to repo name).
        repo:
          type: string
          description: GitHub repository in `owner/repo` format.
        settings:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/DeploySettings'
            description: Build/run settings.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: Token