> ## 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.

# /openrice/landmarks

> Get an OpenRice landmark (shopping mall, station, hotel or complex) by landmark id or landmark page URL: name, address, district, geo coordinates and, for landmarks with a managed mall page, description, official website and Facebook page, parking information, bookmark counter and logo, cover and banner images.

**Price:** 1 credit

**⚠️ Common errors:** 412: Landmark not found in this region



## OpenAPI

````yaml /openapi/local-places.json post /api/openrice/landmarks
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/openrice/landmarks:
    post:
      tags:
        - /openrice
      summary: /openrice/landmarks
      description: >-
        Get an OpenRice landmark (shopping mall, station, hotel or complex) by
        landmark id or landmark page URL: name, address, district, geo
        coordinates and, for landmarks with a managed mall page, description,
        official website and Facebook page, parking information, bookmark
        counter and logo, cover and banner images.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Landmark not found in this region
      operationId: __api_openrice_landmarks_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenriceLandmarksPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenriceLandmark'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OpenriceLandmarksPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/OpenriceRegion'
          default: hongkong
        lang:
          $ref: '#/components/schemas/OpenriceLang'
          default: en
        landmark:
          type: string
          minLength: 1
      type: object
      required:
        - landmark
    OpenriceLandmark:
      properties:
        '@type':
          type: string
          default: OpenriceLandmark
        id:
          type: integer
        url:
          type: string
        name:
          type: string
        address:
          anyOf:
            - type: string
            - type: 'null'
        district_id:
          anyOf:
            - type: integer
            - type: 'null'
        landmark_type_id:
          anyOf:
            - type: integer
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        landmark_title:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        facebook:
          anyOf:
            - type: string
            - type: 'null'
        parking_info:
          anyOf:
            - type: string
            - type: 'null'
        parking_url:
          anyOf:
            - type: string
            - type: 'null'
        bookmark_count:
          anyOf:
            - type: integer
            - type: 'null'
        restaurant_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        banners:
          items:
            type: string
          type: array
          default: []
        is_mall:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    OpenriceRegion:
      type: string
      enum:
        - hongkong
        - macau
        - shenzhen
        - guangzhou
        - zhuhai
        - dongguan
        - foshan
        - zhongshan
        - taipei
        - newtaipei-keelung
        - taoyuan
        - hsinchu-miaoli
        - taichung
        - changhua-nantou
        - yunlin-chiayi
        - tainan
        - kaohsiung-pingtung
        - eastern
        - tokyo-kanto
        - osaka-kobe
        - kyoto-kinki
        - nagoya-chubu
        - hokkaido
        - tohoku
        - hiroshima-chugoku
        - shikoku
        - fukuoka-kyushu
        - okinawa
        - bangkok
        - chonburi
        - phuket
        - prachuapkhirikhan
        - chiangmai
        - suratthani
        - nakhonratchasima
        - chiangrai
        - others
        - singapore
        - manila
    OpenriceLang:
      type: string
      enum:
        - en
        - tc
        - sc
        - tc-tw
        - ja
        - th
        - id
    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

````