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

# /paypayfleamarket/users/reviews

> List the feedback a Yahoo!フリマ (formerly PayPay フリマ) member received: the verdict, the free-text comment, who left it and whether they were the buyer or the seller in that deal, and when it was posted. Can be narrowed to positive, neutral or negative feedback only.

**Price:** 1 credit

**⚠️ Common errors:** 412: User not found (well-formed id but no such member on Yahoo!フリマ)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/paypayfleamarket/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/paypayfleamarket/users/reviews:
    post:
      tags:
        - /paypayfleamarket
      summary: /paypayfleamarket/users/reviews
      description: >-
        List the feedback a Yahoo!フリマ (formerly PayPay フリマ) member received: the
        verdict, the free-text comment, who left it and whether they were the
        buyer or the seller in that deal, and when it was posted. Can be
        narrowed to positive, neutral or negative feedback only.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: User not found (well-formed id but no such
        member on Yahoo!フリマ)
      operationId: __api_paypayfleamarket_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/PaypayfleamarketUsersReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaypayfleamarketUserReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaypayfleamarketUsersReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        user:
          type: string
          minLength: 1
        score:
          anyOf:
            - $ref: '#/components/schemas/PaypayfleamarketRatingScore'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - user
        - count
    PaypayfleamarketUserReview:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketUserReview
        author_id:
          anyOf:
            - type: string
            - type: 'null'
        author_url:
          anyOf:
            - type: string
            - type: 'null'
        author_name:
          anyOf:
            - type: string
            - type: 'null'
        author_image:
          anyOf:
            - type: string
            - type: 'null'
        author_role:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PaypayfleamarketRatingScore:
      type: string
      enum:
        - good
        - normal
        - bad
    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

````