Skip to main content
GET
/
v1alpha1
/
inference
/
deployments
/
parameters
Get deployment parameters
curl --request GET \
  --url https://api.coreweave.com/v1alpha1/inference/deployments/parameters \
  --header 'Authorization: Bearer <token>'
{
  "gatewayIds": [
    "<string>"
  ],
  "runtimeParameters": {
    "runtimeVersions": {},
    "runtimeConfigOptions": {}
  },
  "resourceParameters": {
    "instanceTypes": [
      "<string>"
    ]
  }
}

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 response includes:
  • gatewayIds: gateway IDs in the caller’s organization that can be referenced by a new deployment.
  • runtimeParameters.runtimeVersions: map keyed by engine name; each entry lists the available version strings.
  • runtimeParameters.runtimeConfigOptions: map keyed by engine name; each entry lists the engine-specific config keys allowed under runtime.engineConfig.
  • resourceParameters.instanceTypes: instance types available for deployment.
Example request
curl -X GET https://api.coreweave.com/v1alpha1/inference/deployments/parameters \
       -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.

Response

OK

Response for GetDeploymentParameters

gatewayIds
string[]
required

The gateway IDs in the caller's organization that can be referenced by a new deployment.

runtimeParameters
object

The available runtime parameters for the deployments

resourceParameters
object

The available resource parameters for the deployments

Last modified on May 22, 2026