---
title: "VPC 목록 조회"
slug: "analytics-vpcsearchengine-cluster-getvpclist"
tags: ["Search Engine Service"]
updated: 2026-04-23T08:56:11Z
published: 2026-04-23T09:02:33Z
canonical: "api.ncloud-docs.com/analytics-vpcsearchengine-cluster-getvpclist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# VPC 목록 조회

<p class="platform-info type-vpc">VPC 환경에서 이용 가능합니다.</p>

사용할 수 있는 VPC 목록을 조회합니다.

## 요청 <a name="요청"></a>

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| :--- | :--- |
| GET | /api/v2/cluster/getVpcList (한국 리전) |
| GET | /api/sgn-v2/cluster/getVpcList (싱가포르 리전) |
| GET | /api/jpn-v2/cluster/getVpcList (일본 리전) |

### 요청 헤더 <a name="요청헤더"></a>

Search Engine Service API에서 공통으로 사용하는 헤더에 대한 정보는 [Search Engine Service 요청 헤더](/docs/analytics-vpcsearchengine#요청헤더)를 참조해 주십시오.

### 요청 예시 <a name="요청예시"></a>

요청 예시는 다음과 같습니다.

```shell
curl --location --request GET 'https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/getVpcList' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
```

## 응답 <a name="응답"></a>

응답 형식을 설명합니다.

### 응답 바디 <a name="응답바디"></a>

응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `code` | Integer | - | 응답 코드 |
| `message` | String | - | 응답 메시지 |
| `result` | Object | - | 응답 결과 |
| `result.content` | Array | - | VPC 목록: [content](#content) |
| `requestId` | String | - | 요청에 대한 아이디<ul><li>UUID 형식</li></ul> |

#### `content` <a name="content"></a>

`content`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `createdDate` | Object | - | 생성 일시 |
| `createdDate.formattedDate` | String | - | 생성 일자<ul><li>yyyy-MM-dd 형식</li></ul> |
| `createdDate.formattedDateTime` | String | - | 생성 일시<ul><li>yyyy-MM-dd HH:mm:ss SSSSSS 형식</li></ul> |
| `createdDate.utc` | Integer | - | 생성 일시(밀리초)<ul><li>Unix Timestamp 형식</li></ul> |
| `ipv4Cidr` | String | - | VPC의 IPv4 CIDR 블록 |
| `regionNo` | String | - | 리전 번호 |
| `statusCode` | String | - | VPC 상태 |
| `vpcName` | String | - | VPC 이름 |
| `vpcNo` | Integer | - | VPC 번호 |
| `permission` | String | - | 서브 계정의 사용 가능 여부<ul><li>`Allow` \| `Deny`<ul><li>`Allow`: 사용 가능</li><li>`Deny`: 사용 불가</li></ul></li><li>`Deny`인 경우, 서브 계정에 [getVPCDetail](/docs/networking-vpc-vpcmanagement-getvpcdetail) 권한 부여 시 사용 가능</li></ul> |

### 응답 상태 코드 <a name="응답상태코드"></a>

Search Engine Service API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [Search Engine Service 응답 상태 코드](/docs/analytics-vpcsearchengine#응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>

응답 예시는 다음과 같습니다.

```json
{
    "code": 0,
    "message": "SUCCESS",
    "result": {
        "content": [
            {
                "createdDate": {
                    "formattedDate": "2025-02-18",
                    "formattedDateTime": "2025-02-18 11:22:39 000936",
                    "utc": 1739845359936
                },
                "ipv4Cidr": "10.0.0.0/16",
                "regionNo": "1",
                "statusCode": "RUN",
                "vpcName": "myvpc",
                "vpcNo": 9****,
                "permission": "Allow"
            }
        ]
    },
    "requestId": "52bd6303-****-****-****-4e97b5af00f7"
}
```
