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

> Get full Yahoo! Real Estate Japan (Yahoo!不動産) for-sale property details by id or detail URL (used condo, used house, new house or land): price, address, layout, area, balcony area, building age, facing, floor, structure, land rights, management and repair fees, stations, equipment and handling agent.

**Price:** 10 credits

**⚠️ Common errors:** 412: Property not found (well-formed id but the property page does not exist)



## OpenAPI

````yaml /openapi/real-estate.json post /api/yahoo/realestate/properties
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/properties:
    post:
      tags:
        - /yahoo/realestate
      summary: /yahoo/realestate/properties
      description: >-
        Get full Yahoo! Real Estate Japan (Yahoo!不動産) for-sale property details
        by id or detail URL (used condo, used house, new house or land): price,
        address, layout, area, balcony area, building age, facing, floor,
        structure, land rights, management and repair fees, stations, equipment
        and handling agent.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Property not found (well-formed id but the
        property page does not exist)
      operationId: __api_yahoo_realestate_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YahooRealestatePropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooRealestateProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooRealestatePropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        property_type:
          $ref: '#/components/schemas/YahooRealestatePropertyType'
          default: used_mansion
      type: object
      required:
        - property
    YahooRealestateProperty:
      properties:
        '@type':
          type: string
          default: YahooRealestateProperty
        id:
          type: string
        url:
          type: string
        property_type:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        stations:
          items:
            $ref: '#/components/schemas/YahooRealestateStation'
          type: array
          default: []
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        building_area:
          anyOf:
            - type: number
            - type: 'null'
        land_area:
          anyOf:
            - type: number
            - type: 'null'
        balcony_area:
          anyOf:
            - type: number
            - type: 'null'
        land_category:
          anyOf:
            - type: string
            - type: 'null'
        building_coverage:
          anyOf:
            - type: string
            - type: 'null'
        floor_area_ratio:
          anyOf:
            - type: string
            - type: 'null'
        private_road:
          anyOf:
            - type: string
            - type: 'null'
        setback:
          anyOf:
            - type: string
            - type: 'null'
        road_access:
          anyOf:
            - type: string
            - type: 'null'
        built_year_month:
          anyOf:
            - type: string
            - type: 'null'
        age:
          anyOf:
            - type: string
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        total_floors:
          anyOf:
            - type: string
            - type: 'null'
        building_status:
          anyOf:
            - type: string
            - type: 'null'
        occupancy_status:
          anyOf:
            - type: string
            - type: 'null'
        handover_timing:
          anyOf:
            - type: string
            - type: 'null'
        use_district:
          anyOf:
            - type: string
            - type: 'null'
        structure:
          anyOf:
            - type: string
            - type: 'null'
        land_rights:
          anyOf:
            - type: string
            - type: 'null'
        leasehold:
          anyOf:
            - type: string
            - type: 'null'
        management_fee:
          anyOf:
            - type: integer
            - type: 'null'
        repair_reserve_fee:
          anyOf:
            - type: integer
            - type: 'null'
        manager:
          anyOf:
            - type: string
            - type: 'null'
        management_type:
          anyOf:
            - type: string
            - type: 'null'
        parking:
          anyOf:
            - type: string
            - type: 'null'
        common_facilities:
          items:
            type: string
          type: array
          default: []
        facilities:
          items:
            type: string
          type: array
          default: []
        storage:
          items:
            type: string
          type: array
          default: []
        water:
          anyOf:
            - type: string
            - type: 'null'
        gas:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        property_code:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/YahooRealestateAgent'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - property_type
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooRealestatePropertyType:
      type: string
      enum:
        - used_mansion
        - used_house
        - new_house
        - land
    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
    YahooRealestateAgent:
      properties:
        '@type':
          type: string
          default: YahooRealestateAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          anyOf:
            - type: string
            - type: 'null'
        business_hours:
          anyOf:
            - type: string
            - type: 'null'
        holidays:
          anyOf:
            - type: string
            - type: 'null'
        address:
          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

````