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

> Fetch a Jimoty (jmty.jp) member profile: nickname, avatar, self description, gender, registration date, declared district and occupation, the verification badges the member holds (identity document, phone number, corporate paperwork, antique-dealer and real-estate licences), the good, neutral and bad rating counters, how many listings they currently have and how many reviews they have received. Jimoty's sellers range from private households to used-car dealers and letting agencies, so the badge set and the rating split are the practical trust signal for a Japanese local-classifieds counterparty.

**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
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:
    post:
      tags:
        - /jmty
      summary: /jmty/users
      description: >-
        Fetch a Jimoty (jmty.jp) member profile: nickname, avatar, self
        description, gender, registration date, declared district and
        occupation, the verification badges the member holds (identity document,
        phone number, corporate paperwork, antique-dealer and real-estate
        licences), the good, neutral and bad rating counters, how many listings
        they currently have and how many reviews they have received. Jimoty's
        sellers range from private households to used-car dealers and letting
        agencies, so the badge set and the rating split are the practical trust
        signal for a Japanese local-classifieds counterparty.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No jmty.jp profile with this id exists
      operationId: __api_jmty_users_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JmtyUsersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JmtyUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JmtyUsersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        user:
          type: string
      type: object
      required:
        - user
    JmtyUser:
      properties:
        '@type':
          type: string
          default: JmtyUser
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_text:
          anyOf:
            - type: string
            - type: 'null'
        is_business:
          type: boolean
          default: false
        sex:
          anyOf:
            - type: string
            - type: 'null'
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
        residence:
          anyOf:
            - type: string
            - type: 'null'
        occupation:
          anyOf:
            - type: string
            - type: 'null'
        certifications:
          items:
            type: string
          type: array
          default: []
        evaluation:
          anyOf:
            - $ref: '#/components/schemas/JmtyEvaluationCount'
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        store:
          anyOf:
            - $ref: '#/components/schemas/JmtyStore'
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JmtyEvaluationCount:
      properties:
        '@type':
          type: string
          default: JmtyEvaluationCount
        good_count:
          type: integer
          default: 0
        normal_count:
          type: integer
          default: 0
        bad_count:
          type: integer
          default: 0
        score:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    JmtyStore:
      properties:
        '@type':
          type: string
          default: JmtyStore
        name:
          anyOf:
            - type: string
            - type: 'null'
        business_hours:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        closed_days:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          anyOf:
            - type: string
            - type: 'null'
        remark:
          anyOf:
            - type: string
            - type: 'null'
        introduction_title:
          anyOf:
            - type: string
            - type: 'null'
        introduction_text:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      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

````