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

# /yahoo/realestate/listings/search

> Search Yahoo! Real Estate Japan (Yahoo!不動産) rental listings by prefecture, optionally narrowed to a municipality, with filters: rent range, floor-area range, walking distance to the nearest station, floor-plan layouts, building types, building structures, maximum building age, an extensive amenity catalogue (separate bath/toilet, auto-lock, pets, floor heating, delivery box, elevator, corner room, south-facing, ...), rent-cost conditions (management fee included, no deposit, no key money), online support options, information-published recency, a free-text keyword and sort order. Returns listing cards with building name/type, address, nearest stations, age, floor, rent, management fee, deposit, key money, layout, area and image.

**Price:** 20 credits per 25 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/yahoo/realestate/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/yahoo/realestate/listings/search:
    post:
      tags:
        - /yahoo/realestate
      summary: /yahoo/realestate/listings/search
      description: >-
        Search Yahoo! Real Estate Japan (Yahoo!不動産) rental listings by
        prefecture, optionally narrowed to a municipality, with filters: rent
        range, floor-area range, walking distance to the nearest station,
        floor-plan layouts, building types, building structures, maximum
        building age, an extensive amenity catalogue (separate bath/toilet,
        auto-lock, pets, floor heating, delivery box, elevator, corner room,
        south-facing, ...), rent-cost conditions (management fee included, no
        deposit, no key money), online support options, information-published
        recency, a free-text keyword and sort order. Returns listing cards with
        building name/type, address, nearest stations, age, floor, rent,
        management fee, deposit, key money, layout, area and image.


        **Price:** 20 credits per 25 results
      operationId: __api_yahoo_realestate_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/YahooRealestateListingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooRealestateListingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooRealestateListingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        pref:
          $ref: '#/components/schemas/YahooRealestatePref'
        city:
          anyOf:
            - type: string
            - type: 'null'
        rent_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        rent_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        area_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        area_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        walk_max:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        layouts:
          items:
            $ref: '#/components/schemas/YahooRealestateLayout'
          type: array
          default: []
        building_types:
          items:
            $ref: '#/components/schemas/YahooRealestateBuildingType'
          type: array
          default: []
        structures:
          items:
            $ref: '#/components/schemas/YahooRealestateStructure'
          type: array
          default: []
        max_age:
          anyOf:
            - $ref: '#/components/schemas/YahooRealestateMaxAge'
            - type: 'null'
        facets:
          items:
            $ref: '#/components/schemas/YahooRealestateFacet'
          type: array
          default: []
        rent_conditions:
          items:
            $ref: '#/components/schemas/YahooRealestateRentCondition'
          type: array
          default: []
        online:
          items:
            $ref: '#/components/schemas/YahooRealestateOnline'
          type: array
          default: []
        info_open:
          anyOf:
            - $ref: '#/components/schemas/YahooRealestateInfoOpen'
            - type: 'null'
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/YahooRealestateListingSort'
          default: newest
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - pref
        - count
    YahooRealestateListingCard:
      properties:
        '@type':
          type: string
          default: YahooRealestateListingCard
        id:
          type: string
        url:
          type: string
        structure_id:
          anyOf:
            - type: string
            - type: 'null'
        building_name:
          anyOf:
            - type: string
            - type: 'null'
        building_type:
          anyOf:
            - type: string
            - type: 'null'
        stations:
          items:
            $ref: '#/components/schemas/YahooRealestateStation'
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        age:
          anyOf:
            - type: string
            - type: 'null'
        total_floors:
          anyOf:
            - type: string
            - type: 'null'
        structure:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        rent:
          anyOf:
            - type: integer
            - type: 'null'
        management_fee:
          anyOf:
            - type: integer
            - type: 'null'
        deposit:
          anyOf:
            - type: string
            - type: 'null'
        key_money:
          anyOf:
            - type: string
            - type: 'null'
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooRealestatePref:
      type: string
      enum:
        - 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
    YahooRealestateLayout:
      type: string
      enum:
        - one_room
        - 1k
        - 1dk
        - 1ldk
        - 2k
        - 2dk
        - 2ldk
        - 3k
        - 3dk
        - 3ldk
        - 4k
        - 4dk
        - 4ldk
        - 5k_plus
    YahooRealestateBuildingType:
      type: string
      enum:
        - mansion
        - house
        - apartment
    YahooRealestateStructure:
      type: string
      enum:
        - reinforced_concrete
        - steel
        - wood
        - block_other
    YahooRealestateMaxAge:
      type: string
      enum:
        - new
        - within_2_years
        - within_5_years
        - within_10_years
        - within_15_years
        - within_20_years
    YahooRealestateFacet:
      type: string
      enum:
        - air_conditioner
        - auto_lock
        - two_plus_balconies
        - bicycle_parking
        - bathroom_dryer
        - bed
        - barrier_free
        - bs_antenna
        - separate_bath_toilet
        - counter_kitchen
        - closet
        - parking
        - satellite_broadcast
        - cable_tv
        - delivery_box
        - elevator
        - first_floor
        - floor_heating
        - flooring
        - free_rent
        - garage
        - gas_stove_ok
        - reheating_bath
        - ih_stove
        - immediate_move_in
        - card_key
        - lighting
        - loft
        - women_only
        - maisonette
        - instruments_ok
        - resident_manager
        - video_intercom
        - south_facing
        - elderly_welcome
        - two_plus_parking
        - pets_ok
        - propane_gas
        - roof_balcony
        - corner_room
        - refrigerator
        - security_24h
        - second_floor_or_higher
        - system_kitchen
        - condo_type
        - students_only
        - specified_quality_rental
        - storage
        - top_floor
        - city_gas
        - terrace_garden
        - two_person_ok
        - exclude_fixed_term
        - trunk_room
        - veranda
        - walk_in_closet
        - washlet
        - washer_space
        - washstand
    YahooRealestateRentCondition:
      type: string
      enum:
        - management_fee_included
        - no_deposit
        - no_key_money
    YahooRealestateOnline:
      type: string
      enum:
        - video_call
        - online_viewing
        - it_explanation
    YahooRealestateInfoOpen:
      type: string
      enum:
        - today
        - within_3_days
        - within_5_days
        - within_7_days
    YahooRealestateListingSort:
      type: string
      enum:
        - newest
        - price_incl_asc
        - price_incl_desc
        - price_asc
        - price_desc
        - area_desc
        - station_near
        - age_newest
        - most_viewed
    YahooRealestateStation:
      properties:
        '@type':
          type: string
          default: YahooRealestateStation
        line:
          anyOf:
            - type: string
            - type: 'null'
        station:
          anyOf:
            - type: string
            - type: 'null'
        walk_min:
          anyOf:
            - type: integer
            - 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

````