CoreWeave Clusters API

CKS cluster lifecycle operations

Operations 5

GET /v1beta1/cks/clusters List all clusters #
POST /v1beta1/cks/clusters Create a cluster #
GET /v1beta1/cks/clusters/{id} Get a cluster's information by ID #
PATCH /v1beta1/cks/clusters/{id} Update a cluster's configuration by ID #
DELETE /v1beta1/cks/clusters/{id} Delete a cluster by ID #

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/coreweave-clusters-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

coreweave-clusters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CoreWeave Kubernetes Service (CKS) Clusters API
  description: 'The CoreWeave CKS API provisions and manages CoreWeave Kubernetes Service

    clusters and node pools on bare-metal GPU and CPU hardware. Endpoints

    cover cluster lifecycle operations: list, create, retrieve, update, and

    delete clusters.

    '
  version: v1beta1
  contact:
    name: CoreWeave
    url: https://docs.coreweave.com
servers:
- url: https://api.coreweave.com
  description: CoreWeave control plane
security:
- BearerAuth: []
tags:
- name: Clusters
  description: CKS cluster lifecycle operations
paths:
  /v1beta1/cks/clusters:
    get:
      tags:
      - Clusters
      summary: List all clusters
      operationId: listClusters
      responses:
        '200':
          description: A list of CKS clusters.
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Cluster'
    post:
      tags:
      - Clusters
      summary: Create a cluster
      operationId: createCluster
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cluster'
      responses:
        '201':
          description: Cluster created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Cluster'
  /v1beta1/cks/clusters/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
      description: The cluster identifier.
    get:
      tags:
      - Clusters
      summary: Get a cluster's information by ID
      operationId: getCluster
      responses:
        '200':
          description: The cluster representation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Cluster'
    patch:
      tags:
      - Clusters
      summary: Update a cluster's configuration by ID
      operationId: updateCluster
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cluster'
      responses:
        '200':
          description: The updated cluster representation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Cluster'
    delete:
      tags:
      - Clusters
      summary: Delete a cluster by ID
      operationId: deleteCluster
      responses:
        '204':
          description: Cluster deleted.
components:
  schemas:
    Cluster:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Access Token
      description: 'Provide a CoreWeave API access token using the `Authorization: Bearer

        {API_ACCESS_TOKEN}` header.

        '