Skip to main content
GET
/
v1alpha1
/
inference
/
capacityclaims
List capacity claims
curl --request GET \
  --url https://api.coreweave.com/v1alpha1/inference/capacityclaims \
  --header 'Authorization: Bearer <token>'
{
  "capacityClaims": [
    {
      "spec": {
        "id": "<string>",
        "name": "<string>",
        "resources": {
          "instanceId": "<string>",
          "instanceCount": 123,
          "zones": [
            "<string>"
          ]
        },
        "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>"
          }
        ],
        "allocatedInstances": 123,
        "pendingInstances": 123
      }
    }
  ]
}

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.

Use this endpoint to enumerate every CapacityClaim the caller has access to. The optional updatedAfter query parameter filters results to claims updated after the given ISO-8601 timestamp.
Example request
curl -X GET https://api.coreweave.com/v1alpha1/inference/capacityclaims \
       -H "Content-Type: application/json" \
       -H "Authorization: Bearer {API_ACCESS_TOKEN}"

Authorizations

Authorization
string
header
default:Bearer {API_ACCESS_TOKEN}
required

CoreWeave API access token sent as a bearer token.

Query Parameters

updatedAfter
string<date-time>

Filter by those updated after this timestamp

Response

OK

Response for ListCapacityClaims

capacityClaims
object[]
read-only

The list of CapacityClaims

Last modified on May 22, 2026