Required permission
Project > AiModels > General > Read
Path parameters
projectId
string requiredID of the projectllmModelDeploymentId
string requiredID of the AI model
Response body
- {object}Response object.
data
{object} requiredResult data.name
string requiredThe name of the AI model.min length3max length100pattern^[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*$description
stringA description of the AI model.max length1024pattern^[\s\S]*$spec
{object} requiredid
string requiredThe unique identifier of the AI model.projectId
string requiredID of the project that the AI model 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 AI model.base
string requiredpattern^([a-zA-Z0-9-]{2,}\.){2,}[a-zA-Z]{2,}$zone
string requiredports
[array] requiredAn array of ports for the AI model.- {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 AI model.one ofpending, provisioning, starting, crashed, paused, running, deletingcreatedAt
stringtime of creationupdatedAt
stringtime of update
GET /v1/projects/{projectId}/llm-model-deployments/{llmModelDeploymentId}
GET /v1/teams/{teamId}/projects/{projectId}/llm-model-deployments/{llmModelDeploymentId}
Example response
200 OK
JSON
{
"data": {
"name": "deepseek-v3-deployment",
"description": "A deployment for DeepSeek V3 model",
"spec": {
"configuration": {
"nodeConfiguration": {
"storage": {
"storageClass": "nvme",
"storageSize": 6144
}
}
}
},
"projectId": "default-project"
}
}