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

> Search Jimoty (jmty.jp), Japan's largest local classifieds board, across any of its eleven sections: second-hand goods and giveaways, used cars, pet rehoming, community groups, mutual help, part-time and full-time jobs, lessons and schools, events, real estate and local services. Geography is a first-class filter — nationwide or one of the 47 prefectures, narrowed further to a municipality, a railway station or a whole railway line. Also filters by category and genre, free-text keyword, headline price range including giveaway-only, private versus business posters, online-payment support, job wage period, and car model year and mileage ranges. Each result carries the listing id, title, description, price, category path, geography, the site's own keyword tags and image. Syndicated partner-site adverts and paid placements are removed from the output.

**Price:** 1 credit

**⚠️ Common errors:** 412: Jimoty does not index this combination — the area_id, station_id, line_id or genre_id does not belong to the prefecture and category you asked for. A combination that exists but currently holds nothing returns 200 with an empty list instead.



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/jmty/listings/search
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/search:
    post:
      tags:
        - /jmty
      summary: /jmty/listings/search
      description: >-
        Search Jimoty (jmty.jp), Japan's largest local classifieds board, across
        any of its eleven sections: second-hand goods and giveaways, used cars,
        pet rehoming, community groups, mutual help, part-time and full-time
        jobs, lessons and schools, events, real estate and local services.
        Geography is a first-class filter — nationwide or one of the 47
        prefectures, narrowed further to a municipality, a railway station or a
        whole railway line. Also filters by category and genre, free-text
        keyword, headline price range including giveaway-only, private versus
        business posters, online-payment support, job wage period, and car model
        year and mileage ranges. Each result carries the listing id, title,
        description, price, category path, geography, the site's own keyword
        tags and image. Syndicated partner-site adverts and paid placements are
        removed from the output.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Jimoty does not index this combination — the
        area_id, station_id, line_id or genre_id does not belong to the
        prefecture and category you asked for. A combination that exists but
        currently holds nothing returns 200 with an empty list instead.
      operationId: __api_jmty_listings_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JmtyListingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JmtyListingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JmtyListingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        vertical:
          $ref: '#/components/schemas/JmtyVertical'
        prefecture:
          $ref: '#/components/schemas/JmtyPrefectureCode'
          default: all
        category:
          anyOf:
            - $ref: '#/components/schemas/JmtyCategoryCode'
            - type: 'null'
        genre_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        area_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        station_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        line_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        keyword:
          type: string
          default: ''
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        poster_type:
          anyOf:
            - $ref: '#/components/schemas/JmtyPosterType'
            - type: 'null'
        online_payment:
          anyOf:
            - type: boolean
            - type: 'null'
        pay_system:
          anyOf:
            - $ref: '#/components/schemas/JmtyPaySystem'
            - type: 'null'
        min_model_year:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        max_model_year:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        min_mileage:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_mileage:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        event_date:
          type: string
          pattern: ^\d{4}-\d{2}-\d{2}$
          default: ''
        count:
          type: integer
          maximum: 50000
          minimum: 1
      type: object
      required:
        - vertical
        - count
    JmtyListingCard:
      properties:
        '@type':
          type: string
          default: JmtyListingCard
        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'
        genre:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        city:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        station:
          anyOf:
            - $ref: '#/components/schemas/JmtyRef'
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        labels:
          items:
            type: string
          type: array
          default: []
        created_date:
          anyOf:
            - type: string
            - type: 'null'
        updated_date:
          anyOf:
            - type: string
            - type: 'null'
        favorite_count:
          anyOf:
            - type: integer
            - type: 'null'
        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
    JmtyVertical:
      type: string
      enum:
        - sale
        - car
        - pet
        - com
        - coop
        - rec
        - job
        - les
        - eve
        - est
        - ser
    JmtyPrefectureCode:
      type: string
      enum:
        - all
        - hokkaido
        - aomori
        - iwate
        - miyagi
        - akita
        - yamagata
        - fukushima
        - ibaraki
        - tochigi
        - gunma
        - saitama
        - chiba
        - tokyo
        - kanagawa
        - niigata
        - toyama
        - ishikawa
        - fukui
        - yamanashi
        - nagano
        - gifu
        - shizuoka
        - aichi
        - mie
        - shiga
        - kyoto
        - osaka
        - hyogo
        - nara
        - wakayama
        - tottori
        - shimane
        - okayama
        - hiroshima
        - yamaguchi
        - tokushima
        - kagawa
        - ehime
        - kochi
        - fukuoka
        - saga
        - nagasaki
        - kumamoto
        - oita
        - miyazaki
        - kagoshima
        - okinawa
    JmtyCategoryCode:
      type: string
      enum:
        - adl
        - alf
        - amu
        - aud
        - auto
        - ban
        - bea
        - bic
        - bik
        - bmw
        - boo
        - buy
        - care
        - cat
        - cel
        - chat
        - chi
        - clo
        - con
        - cons
        - coo
        - cos
        - craf
        - cre
        - dai
        - dan
        - desk
        - dis
        - dog
        - eat
        - edu
        - ele
        - eng
        - ent
        - etc
        - fes
        - flo
        - food
        - free
        - fri
        - fur
        - gar
        - gard
        - gou
        - hcl
        - hea
        - help
        - hom
        - hon
        - hou
        - inc
        - it
        - jpn
        - kid
        - lan
        - land
        - les
        - lex
        - lif
        - lig
        - liv
        - mas
        - maz
        - medi
        - mer
        - min
        - mit
        - mob
        - mot
        - mov
        - mus
        - nis
        - npo
        - nurs
        - 'off'
        - oth
        - par
        - pc
        - pcp
        - pes
        - pet
        - peu
        - pic
        - plan
        - pro
        - qua
        - recy
        - rent
        - res
        - sab
        - sale
        - scr
        - sdri
        - sec
        - ser
        - sha
        - sho
        - shop
        - shou
        - sof
        - spo
        - stu
        - sub
        - suz
        - tic
        - tou
        - town
        - toy
        - trad
        - tran
        - tro
        - vol
        - volv
        - wed
        - whlp
        - wles
        - work
        - wrnt
    JmtyPosterType:
      type: string
      enum:
        - individual
        - corporate
    JmtyPaySystem:
      type: string
      enum:
        - hourly
        - daily
        - monthly
    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
    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

````