Llm Model Deployments /
List LLM model deployments
Lists all LLM model deployments for a project
Required permission
Project > AiModels > General > Read
Path parameters
projectId
string requiredID of the project
Query parameters
per_page
integerThe number of results to display per request. Maximum of 100 results per page.page
integerThe page number to access.cursor
stringThe cursor returned from the previous page of results, used to request the next page.
Response body
- {object}Response object.
data
{object} requiredResult data.llmModelDeployments
[array] requiredAn array of LLM model deployments in this project.- {object}An LLM model deployment.
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 updatepagination
{object} requiredData about the endpoint pagination.hasNextPage
boolean requiredIs there another page of results available?cursor
stringThe cursor to access the next page of results.count
number requiredThe number of results returned by this request.
API
CLI
JS Client
GET /v1/projects/{projectId}/llm-model-deployments
Example response
200 OK
A list of LLM model deployments that belong to the project.
JSON
{
"data": {
"llmModelDeployments": [
{
"name": "deepseek-v3-deployment",
"description": "A deployment for DeepSeek V3 model",
"spec": {
"configuration": {
"nodeConfiguration": {
"storage": {
"storageClass": "nvme",
"storageSize": 6144
}
}
}
},
"projectId": "default-project"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}