Endpoints
Get endpoint by ID
Retrieves details about a specific endpoint, including its current state, configuration, and scaling settings.
get/endpoints/{endpointId}
Path parameters
endpointIdstring required
The ID of the endpoint to retrieve
Example:endpoint-d23901de-ef8f-44bf-b3e7-de9c1ca8f2d7
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"
}