Skip to main content
PATCH
/
v1alpha1
/
inference
/
capacityclaims
/
{id}
Update capacity claim
curl --request PATCH \
  --url https://api.coreweave.com/v1alpha1/inference/capacityclaims/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "resources": {
    "instanceId": "<string>",
    "instanceCount": 123,
    "zones": [
      "<string>"
    ],
    "capacityType": "CAPACITY_TYPE_SERVERLESS"
  }
}
'
{
  "capacityClaim": {
    "spec": {
      "id": "<string>",
      "name": "<string>",
      "resources": {
        "instanceId": "<string>",
        "instanceCount": 123,
        "zones": [
          "<string>"
        ],
        "capacityType": "CAPACITY_TYPE_SERVERLESS"
      },
      "organizationId": "<string>"
    },
    "status": {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "conditions": [
        {
          "type": "<string>",
          "lastUpdateTime": "2023-11-07T05:31:56Z",
          "reason": "<string>",
          "message": "<string>",
          "zone": "<string>",
          "status": "True"
        }
      ],
      "allocatedInstances": 123,
      "pendingInstances": 123,
      "status": "STATUS_CREATING"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt

Use this file to discover all available pages before exploring further.

The request body must include the full resources block — this endpoint does not accept a field mask. Substitute {id} with the CapacityClaim ID.
Example request
curl -X PATCH https://api.coreweave.com/v1alpha1/inference/capacityclaims/{id} \
       -H "Content-Type: application/json" \
       -H "Authorization: Bearer {API_ACCESS_TOKEN}" \
       -d @data.json

Authorizations

Authorization
string
header
default:Bearer {API_ACCESS_TOKEN}
required

CoreWeave API access token sent as a bearer token.

Path Parameters

id
string
required

The unique identifier of the CapacityClaim to update, UUID format

Body

application/json

Request to update a CapacityClaim

id
string
required

The unique identifier of the CapacityClaim to update, UUID format

resources
object
required

The specification for the resources to reserve

Response

OK

Response for UpdateCapacityClaim

capacityClaim
object

The updated CapacityClaim

Last modified on May 14, 2026