Llm Model Deployments /
Get LLM model deployment
Gets details about an LLM model deployment
Required permission
Project > AiModels > General > Read
Path parameters
projectId
string requiredID of the projectllmModelDeploymentId
string requiredID of the LLM model deployment
Response body
- {object}Response object.
data
{object} requiredResult data.name
string requiredThe name of the LLM model deployment.min length3max length100pattern^[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*$description
stringA description of the LLM model deployment.max length1024pattern^[\s\S]*$spec
{object} requiredid
string requiredThe unique identifier of the LLM model deployment.projectId
string requiredID of the project that the LLM model deployment belongs toentityId
string requiredThe entity ID (team) this deployment belongs to.entityType
string requiredone ofuser, team, orgcreatorId
string requiredThe user who created this deployment.dns
{object} requiredDNS configuration for the LLM model deployment.base
string requiredpattern^([a-zA-Z0-9-]{2,}\.){2,}[a-zA-Z]{2,}$zone
string requiredports
[array] requiredAn array of ports for the LLM model deployment.- {object}
id
string requiredThe id used to identify the port across requests.pattern^[a-z]-?[a-z0-9]+(-[a-z0-9]+)*$name
string requiredThe name of the port used in the public url and UI.pattern^[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$internalPort
integer requiredThe port number.protocol
string requiredThe protocol used by the port.public
boolean requiredIf true, the port is exposed publicly.dns
stringDNS entry for this port.disableNfDomain
booleanDisable routing on the default code.run domain for public HTTP ports with custom domains.status
string requiredThe current status of the LLM model deployment.one ofpending, provisioning, starting, crashed, paused, running, deletingcreatedAt
stringtime of creationupdatedAt
stringtime of update
API
CLI
JS Client
GET /v1/projects/{projectId}/llm-model-deployments/{llmModelDeploymentId}
Example response
200 OK
Details about an LLM model deployment.
JSON
{
"data": {
"name": "deepseek-v3-deployment",
"description": "A deployment for DeepSeek V3 model",
"spec": {
"configuration": {
"nodeConfiguration": {
"storage": {
"storageClass": "nvme",
"storageSize": 6144
}
}
}
},
"projectId": "default-project"
}
}