Scalable Platforms Artifacts API

The Artifacts API from Scalable Platforms — 1 operation(s) for artifacts.

Documentation

Specifications

Other Resources

OpenAPI Specification

scalable-platforms-artifacts-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Vercel REST Artifacts 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: Artifacts
paths:
  /v8/artifacts/{hash}:
    put:
      summary: Upload a cache artifact
      operationId: uploadCacheArtifact
      tags:
      - Artifacts
      parameters:
      - name: hash
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              type: string
              format: binary
      responses:
        '202':
          description: Artifact accepted.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: VercelToken