Skip to main content
DELETE
/
v1alpha1
/
inference
/
gateways
/
{id}
Delete gateway
curl --request DELETE \
  --url https://api.coreweave.com/v1alpha1/inference/gateways/{id} \
  --header 'Authorization: Bearer <token>'
{
  "gateway": {
    "spec": {
      "id": "<string>",
      "name": "<string>",
      "zones": [
        "<string>"
      ],
      "coreWeaveAuth": {},
      "weightsAndBiasesAuth": {
        "apiKey": "<string>",
        "serverUrl": "<string>",
        "enableUsageReports": true,
        "enableRateLimiting": true
      },
      "organizationId": "<string>",
      "endpointConfiguration": {
        "additionalDns": [
          "<string>"
        ]
      },
      "bodyBasedRouting": {},
      "headerBasedRouting": {
        "headerName": "<string>"
      },
      "pathBasedRouting": {}
    },
    "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>"
        }
      ],
      "endpoints": [
        "<string>"
      ]
    }
  }
}
A successful response returns the deleted gateway object, including its final state at the moment of deletion.
Example request
curl -X DELETE https://api.coreweave.com/v1alpha1/inference/gateways/{id} \
       -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.

Path Parameters

id
string
required

The unique identifier of the gateway to delete, UUID format

Response

OK

Response for DeleteGateway

gateway
object

The gateway that was deleted

Last modified on May 22, 2026