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

# /suumo/properties

> Get full SUUMO (スーモ) for-sale property details by property path (or property URL): price, layout, floor area, land area and building area, floor, facing, structure, building age, address, nearest stations, management fee and repair reserve fund, total units, building coverage and floor-area ratios, land category and status, transaction type, zoning/building restrictions and remarks, handling agent and photos. Covers used/new condominiums, houses and land.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/suumo/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/suumo/properties:
    post:
      tags:
        - /suumo
      summary: /suumo/properties
      description: >-
        Get full SUUMO (スーモ) for-sale property details by property path (or
        property URL): price, layout, floor area, land area and building area,
        floor, facing, structure, building age, address, nearest stations,
        management fee and repair reserve fund, total units, building coverage
        and floor-area ratios, land category and status, transaction type,
        zoning/building restrictions and remarks, handling agent and photos.
        Covers used/new condominiums, houses and land.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Property not found (well-formed path but the
        property page does not exist)
      operationId: __api_suumo_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SuumoPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SuumoProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SuumoPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    SuumoProperty:
      properties:
        '@type':
          type: string
          default: SuumoProperty
        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/SuumoStation'
          type: array
          default: []
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        land_area:
          anyOf:
            - type: number
            - type: 'null'
        building_area:
          anyOf:
            - type: number
            - type: 'null'
        other_area:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        structure:
          anyOf:
            - type: string
            - type: 'null'
        total_units:
          anyOf:
            - type: integer
            - type: 'null'
        units_for_sale:
          anyOf:
            - type: integer
            - type: 'null'
        built_year_month:
          anyOf:
            - type: string
            - type: 'null'
        management_fee:
          anyOf:
            - type: string
            - type: 'null'
        repair_reserve_fund:
          anyOf:
            - type: string
            - type: 'null'
        land_rights:
          anyOf:
            - type: string
            - type: 'null'
        use_district:
          anyOf:
            - type: string
            - type: 'null'
        building_coverage:
          anyOf:
            - type: string
            - type: 'null'
        floor_area_ratio:
          anyOf:
            - type: string
            - type: 'null'
        land_category:
          anyOf:
            - type: string
            - type: 'null'
        land_status:
          anyOf:
            - type: string
            - type: 'null'
        private_road:
          anyOf:
            - type: string
            - type: 'null'
        parking:
          anyOf:
            - type: string
            - type: 'null'
        delivery_time:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        other_fees:
          anyOf:
            - type: string
            - type: 'null'
        renovation:
          anyOf:
            - type: string
            - type: 'null'
        restrictions:
          anyOf:
            - type: string
            - type: 'null'
        notes:
          anyOf:
            - type: string
            - type: 'null'
        agent_comment:
          anyOf:
            - type: string
            - type: 'null'
        info_provided_at:
          anyOf:
            - type: string
            - type: 'null'
        next_update_at:
          anyOf:
            - type: string
            - type: 'null'
        terms_expire_at:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/SuumoListingAgent'
            - 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
    SuumoStation:
      properties:
        '@type':
          type: string
          default: SuumoStation
        line:
          anyOf:
            - type: string
            - type: 'null'
        station:
          anyOf:
            - type: string
            - type: 'null'
        walk_min:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    SuumoListingAgent:
      properties:
        '@type':
          type: string
          default: SuumoListingAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          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

````