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

> Fetch one Jimoty (jmty.jp) listing by its id across all eleven sections of the Japanese local classifieds board: second-hand goods and giveaways, used cars, pet rehoming, community groups, mutual help, part-time and full-time jobs, lessons, events, real estate and local services. Returns the title, full description, every photo, the headline price with its label, creation and update timestamps, favourite, inquiry and comment counters, the geography down to town, block and nearest station with coordinates, the poster with their verification badges and rating breakdown, plus the section-specific attribute block (rent, deposit, layout and building age for property, mileage, model year and inspection expiry for cars, pay and working hours for jobs, pet sex, age and neutering status for rehoming, event dates and venue for events), plus the online-payment state with the settlement methods offered and the handover and delivery options with the shipping fee the seller charges.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/jmty/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/listings:
    post:
      tags:
        - /jmty
      summary: /jmty/listings
      description: >-
        Fetch one Jimoty (jmty.jp) listing by its id across all eleven sections
        of the Japanese local classifieds board: second-hand goods and
        giveaways, used cars, pet rehoming, community groups, mutual help,
        part-time and full-time jobs, lessons, events, real estate and local
        services. Returns the title, full description, every photo, the headline
        price with its label, creation and update timestamps, favourite, inquiry
        and comment counters, the geography down to town, block and nearest
        station with coordinates, the poster with their verification badges and
        rating breakdown, plus the section-specific attribute block (rent,
        deposit, layout and building age for property, mileage, model year and
        inspection expiry for cars, pay and working hours for jobs, pet sex, age
        and neutering status for rehoming, event dates and venue for events),
        plus the online-payment state with the settlement methods offered and
        the handover and delivery options with the shipping fee the seller
        charges.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No listing with this id exists on jmty.jp
      operationId: __api_jmty_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JmtyListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JmtyListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JmtyListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        listing:
          type: string
        vertical:
          anyOf:
            - $ref: '#/components/schemas/JmtyVertical'
            - type: 'null'
      type: object
      required:
        - listing
    JmtyListing:
      properties:
        '@type':
          type: string
          default: JmtyListing
        id:
          anyOf:
            - type: string
            - type: 'null'
        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'
        vertical_name:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        sub_genre:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        favorite_count:
          anyOf:
            - type: integer
            - type: 'null'
        inquiry_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_closed:
          type: boolean
          default: false
        is_business:
          type: boolean
          default: false
        is_promoted:
          type: boolean
          default: false
        is_highlighted:
          type: boolean
          default: false
        is_online_purchasable:
          type: boolean
          default: false
        phone:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        location:
          anyOf:
            - $ref: '#/components/schemas/JmtyLocation'
            - type: 'null'
        author:
          anyOf:
            - $ref: '#/components/schemas/JmtyListingAuthor'
            - type: 'null'
        attributes:
          items:
            $ref: '#/components/schemas/JmtyListingAttribute'
          type: array
          default: []
        delivery:
          anyOf:
            - $ref: '#/components/schemas/JmtyDelivery'
            - type: 'null'
        settlement_methods:
          items:
            $ref: '#/components/schemas/JmtySettlementMethod'
          type: array
          default: []
        related_keywords:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - key
        - listing_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JmtyVertical:
      type: string
      enum:
        - sale
        - car
        - pet
        - com
        - coop
        - rec
        - job
        - les
        - eve
        - est
        - ser
    JmtyRef:
      properties:
        '@type':
          type: string
          default: JmtyRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_en:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    JmtyLocation:
      properties:
        '@type':
          type: string
          default: JmtyLocation
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        city:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        town:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        block:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        station:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        line:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        area_name:
          anyOf:
            - type: string
            - type: 'null'
        place_note:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    JmtyListingAuthor:
      properties:
        '@type':
          type: string
          default: JmtyListingAuthor
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        sex:
          anyOf:
            - type: string
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_text:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        evaluation:
          anyOf:
            - $ref: '#/components/schemas/JmtyEvaluationCount'
            - type: 'null'
        certification:
          anyOf:
            - $ref: '#/components/schemas/JmtyCertification'
            - type: 'null'
      type: object
    JmtyListingAttribute:
      properties:
        '@type':
          type: string
          default: JmtyListingAttribute
        name:
          type: string
        value:
          type: string
      type: object
      required:
        - name
        - value
    JmtyDelivery:
      properties:
        '@type':
          type: string
          default: JmtyDelivery
        is_shipped_by_seller:
          type: boolean
          default: false
        is_collected_by_purchaser:
          type: boolean
          default: false
        is_locker_handover:
          type: boolean
          default: false
        is_nationwide:
          type: boolean
          default: false
        shipping_fee:
          anyOf:
            - type: number
            - type: 'null'
        deliverable_cities:
          items:
            $ref: '#/components/schemas/JmtyRef'
          type: array
          default: []
      type: object
    JmtySettlementMethod:
      properties:
        '@type':
          type: string
          default: JmtySettlementMethod
        name:
          type: string
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        fee:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    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
    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
    JmtyCertification:
      properties:
        '@type':
          type: string
          default: JmtyCertification
        is_sms_authenticated:
          type: boolean
          default: false
        is_identified:
          type: boolean
          default: false
        is_multi_identified:
          type: boolean
          default: false
        is_business:
          type: boolean
          default: false
        is_antique_dealer:
          type: boolean
          default: false
        is_real_estate_notary:
          type: boolean
          default: false
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````