Create a dedicated endpoint
Creates a new dedicated endpoint for serving models. The endpoint starts automatically after creation. You can deploy any supported model on hardware configurations that meet the model's requirements.
Request body
Example request
{
"display_name": "My Llama3 70b endpoint",
"model": "deepseek-ai/DeepSeek-R1",
"hardware": "1x_nvidia_a100_80gb_sxm",
"autoscaling": {
"min_replicas": 2,
"max_replicas": 5
},
"state": "STARTED",
"inactive_timeout": 60
}Response
200
Example response
{
"id": "endpoint-d23901de-ef8f-44bf-b3e7-de9c1ca8f2d7",
"name": "devuser/deepseek-ai/DeepSeek-R1-a32b82a1",
"display_name": "My DeepSeek R1 endpoint",
"model": "deepseek-ai/DeepSeek-R1",
"hardware": "8x_nvidia_h200_140gb_sxm",
"type": "dedicated",
"owner": "devuser",
"state": "STARTED",
"autoscaling": {
"min_replicas": 2,
"max_replicas": 5
},
"created_at": "2025-02-04T10:43:55.405Z"
}Changes
Changed in 1 of the 14 revisions of this API.22
- ▲
the
autoscaling/max_replicasresponse's property type/format changed frominteger/int32tointeger/for status200response-property-type-changed
- ▲
the
autoscaling/min_replicasresponse's property type/format changed frominteger/int32tointeger/for status200response-property-type-changed
- ○
the
autoscaling/max_replicasrequest property type/format was generalized frominteger/int32tointeger/request-property-type-generalized
- ○
the
autoscaling/min_replicasrequest property type/format was generalized frominteger/int32tointeger/request-property-type-generalized
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲