메인 콘텐츠로 건너뛰기
GET
/
endpoints
/
{endpoint_id}
엔드포인트 상태 조회
curl --request GET \
  --url https://external.aieev.cloud:5007/external/api/v1/endpoints/{endpoint_id} \
  --header 'Authorization: Bearer <token>'
{
  "endpoint_id": "51c910f7-ecde-4c6c-88f8-d8e37ca9d598",
  "name": "aieev-endpoint",
  "endpoint_type": "container",
  "is_active": true,
  "status": "RUNNING",
  "num_replicas": 2,
  "enable_autoscaling": false,
  "instance_type_name": "RTX 5090",
  "serving_endpoint_url": "https://ap-1.aieev.cloud/ac/7/51c910f7-ecde-4c6c-88f8-d8e37ca9d598",
  "replica_status_summary": {
    "RUNNING": 2,
    "STARTING": 0
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

인증

Authorization
string
header
필수

API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

경로 매개변수

endpoint_id
string
필수

엔드포인트 고유 ID

예시:

"51c910f7-ecde-4c6c-88f8-d8e37ca9d598"

응답

엔드포인트 상태

endpoint_id
string

엔드포인트 고유 ID

예시:

"51c910f7-ecde-4c6c-88f8-d8e37ca9d598"

name
string

엔드포인트 이름

예시:

"aieev-endpoint"

endpoint_type
string

엔드포인트 유형

예시:

"container"

is_active
boolean

현재 활성 여부

예시:

true

status
string

현재 상태. 활성 시 Ray Serve에서 실시간 조회

예시:

"RUNNING"

num_replicas
integer

현재 레플리카 수

예시:

2

enable_autoscaling
boolean

오토스케일링 활성화 여부

예시:

false

instance_type_name
string | null

인스턴스 타입 이름

예시:

"RTX 5090"

serving_endpoint_url
string | null

엔드포인트 공개 URL

예시:

"https://ap-1.aieev.cloud/ac/7/51c910f7-ecde-4c6c-88f8-d8e37ca9d598"

replica_status_summary
object

상태별 레플리카 수. 활성 상태에서만 제공

예시:
{ "RUNNING": 2, "STARTING": 0 }
created_at
string<date-time>

생성 시간

updated_at
string<date-time>

수정 시간