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

# /jmty/users/reviews

> Read the reviews a Jimoty (jmty.jp) member has received. Every review names the counterparty, states whether they were the poster or the enquirer on the deal, links to the listing the deal was about, and carries the good, neutral or bad rating with its free-text comment and timestamp. Because the rating is tied to a concrete listing, this is the trail that shows what a Japanese local-classifieds seller actually traded and how counterparties judged it; the rating filter isolates the negative feedback. Where the reviewed member answered the review, that reply comes back with it.

**Price:** 1 credit

**⚠️ Common errors:** 412: No jmty.jp profile with this id exists



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/jmty/users/reviews
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/jmty/users/reviews:
    post:
      tags:
        - /jmty
      summary: /jmty/users/reviews
      description: >-
        Read the reviews a Jimoty (jmty.jp) member has received. Every review
        names the counterparty, states whether they were the poster or the
        enquirer on the deal, links to the listing the deal was about, and
        carries the good, neutral or bad rating with its free-text comment and
        timestamp. Because the rating is tied to a concrete listing, this is the
        trail that shows what a Japanese local-classifieds seller actually
        traded and how counterparties judged it; the rating filter isolates the
        negative feedback. Where the reviewed member answered the review, that
        reply comes back with it.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No jmty.jp profile with this id exists
      operationId: __api_jmty_users_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JmtyUsersReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JmtyUserReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JmtyUsersReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        user:
          type: string
        rating:
          anyOf:
            - $ref: '#/components/schemas/JmtyEvaluationType'
            - type: 'null'
        count:
          type: integer
          maximum: 10000
          minimum: 1
      type: object
      required:
        - user
        - count
    JmtyUserReview:
      properties:
        '@type':
          type: string
          default: JmtyUserReview
        author_id:
          anyOf:
            - type: string
            - type: 'null'
        author_name:
          anyOf:
            - type: string
            - type: 'null'
        author_image:
          anyOf:
            - type: string
            - type: 'null'
        author_url:
          anyOf:
            - type: string
            - type: 'null'
        author_role:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        listing:
          anyOf:
            - $ref: '#/components/schemas/JmtyUserReviewListing'
            - type: 'null'
        reply:
          anyOf:
            - $ref: '#/components/schemas/JmtyUserReviewReply'
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JmtyEvaluationType:
      type: string
      enum:
        - good
        - normal
        - bad
    JmtyUserReviewListing:
      properties:
        '@type':
          type: string
          default: JmtyUserReviewListing
        key:
          anyOf:
            - type: string
            - type: 'null'
        listing_title:
          anyOf:
            - type: string
            - type: 'null'
        vertical_label:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    JmtyUserReviewReply:
      properties:
        '@type':
          type: string
          default: JmtyUserReviewReply
        author_name:
          anyOf:
            - type: string
            - type: 'null'
        author_role:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      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

````