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

# /naver/place/places

> Get a Naver Place (local business) by ID. Includes rating, reviews, address, phone, amenities.

**Price:** 10 credits

**⚠️ Common errors:** 412: Place not found for the given ID.



## OpenAPI

````yaml /openapi/local-places.json post /api/naver/place/places
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/naver/place/places:
    post:
      tags:
        - /naver/place
      summary: /naver/place/places
      description: >-
        Get a Naver Place (local business) by ID. Includes rating, reviews,
        address, phone, amenities.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Place not found for the given ID.
      operationId: __api_naver_place_places_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NaverPlacePlacesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NaverPlace'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NaverPlacePlacesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        place:
          type: string
          minLength: 1
      type: object
      required:
        - place
    NaverPlace:
      properties:
        '@type':
          type: string
          default: NaverPlace
        id:
          type: string
        name:
          type: string
        place_url:
          type: string
        category:
          anyOf:
            - type: string
            - type: 'null'
        business_category:
          anyOf:
            - type: string
            - type: 'null'
        category_codes:
          items:
            type: string
          type: array
          default: []
        micro_review:
          anyOf:
            - type: string
            - type: 'null'
        road_address:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        full_address:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        virtual_phone:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        visitor_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        text_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        blog_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        conveniences:
          items:
            type: string
          type: array
          default: []
        payment_info:
          items:
            type: string
          type: array
          default: []
        has_booking:
          type: boolean
          default: false
        has_npay:
          type: boolean
          default: false
        booking_url:
          anyOf:
            - type: string
            - type: 'null'
        talktalk_url:
          anyOf:
            - type: string
            - type: 'null'
        broadcast_program:
          anyOf:
            - type: string
            - type: 'null'
        is_michelin:
          type: boolean
          default: false
        save_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
        - place_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````