> ## 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/users

> Get an OpenRice reviewer profile by profile GUID, numeric user id or profile URL: username, self-written bio, avatar and cover image, membership level, VIP and vlogger flags, registration country and date, follower and following counts, profile views, review, photo, media and bookmark counters, plus the country codes the member is active in.

**Price:** 1 credit

**⚠️ Common errors:** 412: User not found



## OpenAPI

````yaml /openapi/local-places.json post /api/openrice/users
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/users:
    post:
      tags:
        - /openrice
      summary: /openrice/users
      description: >-
        Get an OpenRice reviewer profile by profile GUID, numeric user id or
        profile URL: username, self-written bio, avatar and cover image,
        membership level, VIP and vlogger flags, registration country and date,
        follower and following counts, profile views, review, photo, media and
        bookmark counters, plus the country codes the member is active in.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: User not found
      operationId: __api_openrice_users_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenriceUsersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenriceUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OpenriceUsersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/OpenriceRegion'
          default: hongkong
        lang:
          $ref: '#/components/schemas/OpenriceLang'
          default: en
        user:
          type: string
          minLength: 1
      type: object
      required:
        - user
    OpenriceUser:
      properties:
        '@type':
          type: string
          default: OpenriceUser
        id:
          type: integer
        sso_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        username:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        region_id:
          anyOf:
            - type: integer
            - type: 'null'
        register_country:
          anyOf:
            - type: string
            - type: 'null'
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
        grade:
          anyOf:
            - type: integer
            - type: 'null'
        grade_name:
          anyOf:
            - type: string
            - type: 'null'
        is_vip:
          type: boolean
          default: false
        is_vlogger:
          type: boolean
          default: false
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        following_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        editor_choice_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        photo_count:
          anyOf:
            - type: integer
            - type: 'null'
        media_count:
          anyOf:
            - type: integer
            - type: 'null'
        event_count:
          anyOf:
            - type: integer
            - type: 'null'
        bookmarked_restaurant_count:
          anyOf:
            - type: integer
            - type: 'null'
        bookmarked_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        bookmarked_voucher_count:
          anyOf:
            - type: integer
            - type: 'null'
        active_countries:
          items:
            type: string
          type: array
          default: []
        active_review_countries:
          items:
            type: string
          type: array
          default: []
        active_photo_countries:
          items:
            type: string
          type: array
          default: []
        short_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    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

````