Scalable Platforms Environments API

The Environments API from Scalable Platforms — 1 operation(s) for environments.

Documentation

Specifications

Other Resources

OpenAPI Specification

scalable-platforms-environments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Vercel REST Artifacts Environments API
  description: 'The Vercel REST API provides programmatic control of Vercel projects,

    deployments, domains, teams, and environment variables. The base URL is

    https://api.vercel.com and authentication uses a bearer token (personal

    or team access token). A full OpenAPI specification is published at

    https://openapi.vercel.sh/. This file is an API Evangelist research

    artifact for the scalable-platforms topic and captures a representative

    subset of endpoints.

    '
  version: 1.0.0
  contact:
    name: API Evangelist
    url: https://apievangelist.com
servers:
- url: https://api.vercel.com
  description: Vercel production API
security:
- BearerAuth: []
tags:
- name: Environments
paths:
  /v9/projects/{idOrName}/customenvironments:
    get:
      summary: Retrieve custom environments
      operationId: listCustomEnvironments
      tags:
      - Environments
      parameters:
      - name: idOrName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Custom environments list.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: VercelToken