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

# /lifull/listings/search

> Search LIFULL HOME'S (homes.co.jp) property listings (rent or buy) by prefecture with optional filters: price range, exclusive area range, walking minutes from station, building age, structure and sort order. Returns listing cards with id, name, price, layout, area, facing, floor, address, transit and image.

**Price:** 10 credits per 20 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/lifull/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/lifull/listings/search:
    post:
      tags:
        - /lifull
      summary: /lifull/listings/search
      description: >-
        Search LIFULL HOME'S (homes.co.jp) property listings (rent or buy) by
        prefecture with optional filters: price range, exclusive area range,
        walking minutes from station, building age, structure and sort order.
        Returns listing cards with id, name, price, layout, area, facing, floor,
        address, transit and image.


        **Price:** 10 credits per 20 results
      operationId: __api_lifull_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/LifullSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LifullSearchCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LifullSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        deal_type:
          $ref: '#/components/schemas/LifullDealType'
          default: rent
        pref:
          type: string
          minLength: 1
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        area_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        area_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        walk_minutes:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        built_within:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        structure:
          anyOf:
            - $ref: '#/components/schemas/LifullStructure'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/LifullSort'
          default: recommended
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - pref
        - count
    LifullSearchCard:
      properties:
        '@type':
          type: string
          default: LifullSearchCard
        id:
          type: string
        deal_type:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        room_number:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        transit:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - deal_type
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    LifullDealType:
      type: string
      enum:
        - rent
        - buy
    LifullStructure:
      type: string
      enum:
        - rebar
        - wooden
        - steelframe
        - blockother
    LifullSort:
      type: string
      enum:
        - recommended
        - price_asc
        - price_desc
        - area_desc
        - newest_built
        - newest
    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

````