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

> List every listing a Jimoty (jmty.jp) member has posted, across all eleven sections at once — second-hand goods, cars, property, jobs, lessons, events, services and the rest. Each row carries the listing id, title, description, headline price, the section badge the site prints on the card, the municipality and nearest station, whether the listing is already sold or closed, the thumbnail and the listing URL. This is the full inventory view for a Japanese used-car dealer, letting agency or high-volume private seller, and the id on every row feeds jmty/listings for the complete record.

**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/listings
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/listings:
    post:
      tags:
        - /jmty
      summary: /jmty/users/listings
      description: >-
        List every listing a Jimoty (jmty.jp) member has posted, across all
        eleven sections at once — second-hand goods, cars, property, jobs,
        lessons, events, services and the rest. Each row carries the listing id,
        title, description, headline price, the section badge the site prints on
        the card, the municipality and nearest station, whether the listing is
        already sold or closed, the thumbnail and the listing URL. This is the
        full inventory view for a Japanese used-car dealer, letting agency or
        high-volume private seller, and the id on every row feeds jmty/listings
        for the complete record.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No jmty.jp profile with this id exists
      operationId: __api_jmty_users_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JmtyUsersListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JmtyUserListingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JmtyUsersListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        user:
          type: string
        count:
          type: integer
          maximum: 10000
          minimum: 1
      type: object
      required:
        - user
        - count
    JmtyUserListingCard:
      properties:
        '@type':
          type: string
          default: JmtyUserListingCard
        key:
          type: string
        listing_title:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_label:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          type: string
          default: JPY
        vertical:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        vertical_label:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        updated_date:
          anyOf:
            - type: string
            - type: 'null'
        is_closed:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - key
        - listing_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````