{
  "openapi": "3.0.1",
  "info": {
    "title": "Naver Place Review Scraper (한국어)",
    "description": "네이버 플레이스 리뷰 추출: 방문자 리뷰 본문, 별점, 방문일, 방문자 선택 키워드, 사장님 답글, 사진, 네이버 블로그 리뷰까지. JSON, CSV, Excel로 내보내기.",
    "version": "1.0",
    "x-build-id": "VanKmr3fV2dXkcJyz"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parsebird~naver-place-review-scraper-korean/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parsebird-naver-place-review-scraper-korean",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/parsebird~naver-place-review-scraper-korean/runs": {
      "post": {
        "operationId": "runs-sync-parsebird-naver-place-review-scraper-korean",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/parsebird~naver-place-review-scraper-korean/run-sync": {
      "post": {
        "operationId": "run-sync-parsebird-naver-place-review-scraper-korean",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "placeUrls": {
            "title": "플레이스 URL 또는 ID",
            "type": "array",
            "description": "네이버 플레이스 URL 또는 순수 플레이스 ID를 추가하세요. 예: https://map.naver.com/p/entry/place/11571707 또는 11571707. naver.me 단축 링크는 자동으로 해석됩니다.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "시작 URL (대체 입력)",
            "type": "array",
            "description": "연동을 위한 대체 입력 형식: [{\"url\": \"https://map.naver.com/p/entry/place/11571707\"}]. 더 간단한 입력을 원하면 플레이스 URL 또는 ID를 사용하세요.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "searchKeywords": {
            "title": "검색 키워드",
            "type": "array",
            "description": "네이버 플레이스 검색 키워드를 추가하세요. 예: 강남 맛집 또는 Seoul BBQ. 일치하는 장소를 찾아 리뷰를 수집합니다.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "maxPlacesPerKeyword": {
            "title": "키워드당 최대 장소 수",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "각 키워드 검색에서 가져올 최대 장소 수입니다.",
            "default": 5
          },
          "maxReviews": {
            "title": "장소당 최대 방문자 리뷰 수",
            "minimum": 1,
            "maximum": 50000,
            "type": "integer",
            "description": "장소당 수집할 최대 방문자 리뷰 수입니다. 설정하면 최대 리뷰 페이지 수보다 우선 적용됩니다. 비워두면 최대 리뷰 페이지 수를 대신 사용합니다."
          },
          "maxReviewPages": {
            "title": "최대 리뷰 페이지 수",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "장소당 가져올 방문자 리뷰 페이지 수이며, 페이지당 리뷰 50개입니다. 약 50개는 1로, 약 500개는 10으로 설정하세요. 장소당 최대 방문자 리뷰 수가 설정되면 이 값은 무시됩니다.",
            "default": 1
          },
          "reviewSort": {
            "title": "리뷰 정렬 순서",
            "enum": [
              "NEWEST",
              "RANKING"
            ],
            "type": "string",
            "description": "방문자 리뷰의 정렬 순서입니다. NEWEST는 최신 리뷰를 먼저 반환합니다. RANKING은 네이버의 추천 순서를 요청하지만, 현재 이를 제공하는 장소에서만 적용됩니다.",
            "default": "NEWEST"
          },
          "includeReviewPhotos": {
            "title": "리뷰 사진 포함",
            "type": "boolean",
            "description": "각 방문자 리뷰에 첨부된 사진 URL을 추가합니다. 사진 개수는 항상 포함됩니다.",
            "default": false
          },
          "includeBlogReviews": {
            "title": "블로그 리뷰 포함",
            "type": "boolean",
            "description": "각 장소와 연결된 네이버 블로그 및 네이버 카페 게시글도 함께 수집합니다.",
            "default": true
          },
          "maxBlogReviewPages": {
            "title": "최대 블로그 리뷰 페이지 수",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "장소당 가져올 블로그 리뷰 페이지 수이며, 페이지당 게시글 10개입니다. 네이버는 이 피드를 장소당 약 100개 게시글로 제한합니다.",
            "default": 10
          },
          "includeReviewStats": {
            "title": "리뷰 통계 포함",
            "type": "boolean",
            "description": "평균 평점, 별점 분포, 인기 투표 키워드를 담은 통계 행을 장소당 하나씩 추가합니다.",
            "default": true
          },
          "maxConcurrency": {
            "title": "최대 동시 처리 장소 수",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "동시에 수집할 장소 수입니다. 값이 높을수록 여러 장소를 다룰 때 빨라지지만, 프록시 없이는 속도 제한에 걸릴 위험이 커집니다.",
            "default": 5
          },
          "proxyConfiguration": {
            "title": "프록시 설정",
            "type": "object",
            "description": "프록시 설정입니다. 대규모 실행 시 속도 제한을 피하기 위해 권장됩니다.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}