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

> Get full LIFULL HOME'S (homes.co.jp) property listing details by URL or id (rent room or buy building): name, price, management/maintenance fees, deposit/key money, layout, area, balcony area, facing, floor, total floors and units, built date, address, transit (line/station/walk), structure, parking, status, contract terms, renewal fee, guarantor company, transaction type, real-estate company, listing number, location path and images.

**Price:** 10 credits

**⚠️ Common errors:** 412: Listing not found (well-formed id/URL but the listing page does not exist)



## OpenAPI

````yaml /openapi/real-estate.json post /api/lifull/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/lifull/listings:
    post:
      tags:
        - /lifull
      summary: /lifull/listings
      description: >-
        Get full LIFULL HOME'S (homes.co.jp) property listing details by URL or
        id (rent room or buy building): name, price, management/maintenance
        fees, deposit/key money, layout, area, balcony area, facing, floor,
        total floors and units, built date, address, transit
        (line/station/walk), structure, parking, status, contract terms, renewal
        fee, guarantor company, transaction type, real-estate company, listing
        number, location path and images.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed id/URL but the
        listing page does not exist)
      operationId: __api_lifull_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LifullListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LifullListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LifullListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        listing:
          type: string
          minLength: 1
      type: object
      required:
        - listing
    LifullListing:
      properties:
        '@type':
          type: string
          default: LifullListing
        id:
          type: string
        deal_type:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        management_fee:
          anyOf:
            - type: string
            - type: 'null'
        maintenance_fee:
          anyOf:
            - type: string
            - 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'
        balcony_area:
          anyOf:
            - type: number
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        total_floors:
          anyOf:
            - type: string
            - type: 'null'
        total_units:
          anyOf:
            - type: string
            - type: 'null'
        built:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        transit:
          items:
            $ref: '#/components/schemas/LifullTransit'
          type: array
          default: []
        structure:
          anyOf:
            - type: string
            - type: 'null'
        parking:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        available_from:
          anyOf:
            - type: string
            - type: 'null'
        contract_type:
          anyOf:
            - type: string
            - type: 'null'
        contract_period:
          anyOf:
            - type: string
            - type: 'null'
        renewal_fee:
          anyOf:
            - type: string
            - type: 'null'
        other_fees:
          anyOf:
            - type: string
            - type: 'null'
        guarantor_company:
          anyOf:
            - type: string
            - type: 'null'
        land_rights:
          anyOf:
            - type: string
            - type: 'null'
        use_district:
          anyOf:
            - type: string
            - type: 'null'
        management:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        pets:
          anyOf:
            - type: string
            - type: 'null'
        other_conditions:
          anyOf:
            - type: string
            - type: 'null'
        remarks:
          anyOf:
            - type: string
            - type: 'null'
        housing_insurance:
          anyOf:
            - type: string
            - type: 'null'
        handover:
          anyOf:
            - type: string
            - type: 'null'
        land_law_notification:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        listing_number:
          anyOf:
            - type: string
            - type: 'null'
        location_path:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - deal_type
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    LifullTransit:
      properties:
        '@type':
          type: string
          default: LifullTransit
        line:
          anyOf:
            - type: string
            - type: 'null'
        station:
          anyOf:
            - type: string
            - type: 'null'
        walk_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        raw:
          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

````