Skip to main content
GET
/
v1alpha1
/
inference
/
gateways
List gateways
curl --request GET \
  --url https://api.coreweave.com/v1alpha1/inference/gateways \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "spec": {
        "id": "<string>",
        "name": "<string>",
        "zones": [
          "<string>"
        ],
        "coreWeaveAuth": {},
        "weightsAndBiasesAuth": {
          "apiKey": "<string>",
          "serverUrl": "<string>",
          "enableUsageReports": true,
          "enableRateLimiting": true
        },
        "organizationId": "<string>",
        "endpointConfiguration": {
          "additionalDns": [
            "<string>"
          ]
        },
        "bodyBasedRouting": {
          "apiType": "API_TYPE_OPENAI"
        },
        "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>"
        ]
      }
    }
  ]
}
Use this endpoint to enumerate every gateway the caller has access to. The optional updatedAfter query parameter filters results to gateways updated after the given ISO-8601 timestamp.
Example request
curl -X GET https://api.coreweave.com/v1alpha1/inference/gateways \
       -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 ListGateways

items
object[]
read-only

The list of gateways

Last modified on June 10, 2026