Scalable Platforms website screenshot

Scalable Platforms

A subject-matter collection covering APIs, tools, and platforms for building and deploying scalable platform infrastructure. This topic encompasses Platform-as-a-Service (PaaS) providers, developer experience platforms, deployment automation, serverless computing, container platforms, and the tools that abstract infrastructure management so teams can focus on application delivery. Covers Railway, Render, Fly.io, Heroku, Vercel, Netlify, and Cloudflare Workers.

8 APIs 0 Features
Cloud InfrastructureDeploymentDeveloper ExperienceDevOpsPaaSPlatformScalabilityServerless

APIs

Vercel REST API

Vercel is the frontend cloud platform for deploying Next.js, React, and other JavaScript frameworks with zero configuration. The Vercel REST API manages deployments, projects, d...

Netlify API

Netlify is a web platform for building, deploying, and serving modern web projects. The Netlify API manages sites, deploys, environment variables, build hooks, functions, forms,...

Cloudflare API

Cloudflare's platform API manages DNS, CDN, Firewall rules, Workers (serverless edge functions), Pages (JAMstack deployments), R2 (object storage), D1 (serverless SQLite), KV, a...

Heroku Platform API

Heroku pioneered the "git push" deployment model and remains a leading PaaS for rapid application deployment. The Heroku Platform API manages apps, dynos, config vars, add-ons, ...

Fly.io Machines API

Fly.io deploys Docker containers globally on its own hardware, with low-latency routing to the nearest region. The Machines API manages apps, machines (VMs), volumes, networks, ...

Railway API

Railway is a modern deployment platform with usage-based pricing and arguably the best developer experience of any deployment platform. Launched in 2020, by 2026 it has matured ...

Render API

Render positioned itself as the modern Heroku with a free tier, managed databases, background workers, cron jobs, and static sites. The Render API manages services, deploys, env...

Northflank API

Northflank is a DevOps platform providing container deployment, managed databases, job scheduling, preview environments, and full Kubernetes-based infrastructure. The Northflank...

Collections

GraphQL

Pricing Plans

Rate Limits

Scalable Platforms Rate Limits

5 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Scalable Platforms Context

18 classes · 7 properties

JSON-LD

JSON Structure

Scalable Platforms Deployment Structure

0 properties

JSON STRUCTURE

Example Payloads

Resources

🔗
Developer Experience Comparison
Developer Experience Comparison
🔗
PaaS Alternatives
PaaS Alternatives
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONLD
JSONLD
🔗
Vocabulary
Vocabulary

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Vercel REST API
  version: 1.0.0
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Deployments
    type: folder
  items:
  - info:
      name: List deployments
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v6/deployments
    docs: List deployments
  - info:
      name: Create a new deployment
      type: http
    http:
      method: POST
      url: https://api.vercel.com/v13/deployments
      body:
        type: json
        data: '{}'
    docs: Create a new deployment
  - info:
      name: Get a deployment by ID or URL
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v13/deployments/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a deployment by ID or URL
  - info:
      name: Delete a deployment
      type: http
    http:
      method: DELETE
      url: https://api.vercel.com/v13/deployments/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a deployment
- info:
    name: Projects
    type: folder
  items:
  - info:
      name: List projects
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v9/projects
    docs: List projects
  - info:
      name: Create a project
      type: http
    http:
      method: POST
      url: https://api.vercel.com/v9/projects
      body:
        type: json
        data: '{}'
    docs: Create a project
  - info:
      name: Pause a project
      type: http
    http:
      method: POST
      url: https://api.vercel.com/v1/projects/:projectId/pause
      params:
      - name: projectId
        value: ''
        type: path
    docs: Pause a project
  - info:
      name: Unpause a project
      type: http
    http:
      method: POST
      url: https://api.vercel.com/v1/projects/:projectId/unpause
      params:
      - name: projectId
        value: ''
        type: path
    docs: Unpause a project
- info:
    name: Environments
    type: folder
  items:
  - info:
      name: Retrieve custom environments
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v9/projects/:idOrName/customenvironments
      params:
      - name: idOrName
        value: ''
        type: path
    docs: Retrieve custom environments
- info:
    name: Domains
    type: folder
  items:
  - info:
      name: List all the domains
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v5/domains
    docs: List all the domains
  - info:
      name: Add an existing domain to the Vercel platform
      type: http
    http:
      method: POST
      url: https://api.vercel.com/v5/domains
      body:
        type: json
        data: '{}'
    docs: Add an existing domain to the Vercel platform
  - info:
      name: Get a domain's configuration
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v6/domains/:domain/config
      params:
      - name: domain
        value: ''
        type: path
    docs: Get a domain's configuration
- info:
    name: Artifacts
    type: folder
  items:
  - info:
      name: Upload a cache artifact
      type: http
    http:
      method: PUT
      url: https://api.vercel.com/v8/artifacts/:hash
      params:
      - name: hash
        value: ''
        type: path
    docs: Upload a cache artifact
- info:
    name: Teams
    type: folder
  items:
  - info:
      name: List teams
      type: http
    http:
      method: GET
      url: https://api.vercel.com/v2/teams
    docs: List teams
bundled: true