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

> Get full SUUMO (スーモ) new-build / pre-sale condominium (新築分譲マンション) project details by project path (or project URL): project name, price range (JPY), most-frequent price band, address, nearest stations, layouts, exclusive-area range, total units, units currently for sale, structure, site area, building area, total floor area, use district, land rights, completion and delivery dates, management and repair-reserve fees, parking, sales schedule, provider companies, inquiry contact, representative floor-plan types (layout, area, price, sales phase) and photos.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/suumo/projects
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/projects:
    post:
      tags:
        - /suumo
      summary: /suumo/projects
      description: >-
        Get full SUUMO (スーモ) new-build / pre-sale condominium (新築分譲マンション)
        project details by project path (or project URL): project name, price
        range (JPY), most-frequent price band, address, nearest stations,
        layouts, exclusive-area range, total units, units currently for sale,
        structure, site area, building area, total floor area, use district,
        land rights, completion and delivery dates, management and
        repair-reserve fees, parking, sales schedule, provider companies,
        inquiry contact, representative floor-plan types (layout, area, price,
        sales phase) and photos.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Project not found (well-formed path but the
        project page does not exist)
      operationId: __api_suumo_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SuumoProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SuumoProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SuumoProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    SuumoProject:
      properties:
        '@type':
          type: string
          default: SuumoProject
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_band:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        stations:
          items:
            $ref: '#/components/schemas/SuumoStation'
          type: array
          default: []
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area_range:
          anyOf:
            - type: string
            - type: 'null'
        other_area:
          anyOf:
            - type: string
            - type: 'null'
        total_units:
          anyOf:
            - type: integer
            - type: 'null'
        total_units_text:
          anyOf:
            - type: string
            - type: 'null'
        units_for_sale:
          anyOf:
            - type: integer
            - type: 'null'
        units_for_sale_text:
          anyOf:
            - type: string
            - type: 'null'
        structure:
          anyOf:
            - type: string
            - type: 'null'
        site_area:
          anyOf:
            - type: number
            - type: 'null'
        building_area:
          anyOf:
            - type: number
            - type: 'null'
        total_floor_area:
          anyOf:
            - type: number
            - type: 'null'
        use_district:
          anyOf:
            - type: string
            - type: 'null'
        land_rights:
          anyOf:
            - type: string
            - type: 'null'
        completion_date:
          anyOf:
            - type: string
            - type: 'null'
        delivery_time:
          anyOf:
            - type: string
            - type: 'null'
        management_fee:
          anyOf:
            - type: string
            - type: 'null'
        management_preparation_fee:
          anyOf:
            - type: string
            - type: 'null'
        repair_reserve_fund:
          anyOf:
            - type: string
            - type: 'null'
        repair_reserve_basic_fund:
          anyOf:
            - type: string
            - type: 'null'
        other_fees:
          anyOf:
            - type: string
            - type: 'null'
        parking:
          anyOf:
            - type: string
            - type: 'null'
        bicycle_parking:
          anyOf:
            - type: string
            - type: 'null'
        motorcycle_parking:
          anyOf:
            - type: string
            - type: 'null'
        management_form:
          anyOf:
            - type: string
            - type: 'null'
        property_kind:
          anyOf:
            - type: string
            - type: 'null'
        sales_schedule:
          anyOf:
            - type: string
            - type: 'null'
        restrictions:
          anyOf:
            - type: string
            - type: 'null'
        other_overview:
          anyOf:
            - type: string
            - type: 'null'
        terms_expire_at:
          anyOf:
            - type: string
            - type: 'null'
        sellers:
          items:
            type: string
          type: array
          default: []
        inquiry_name:
          anyOf:
            - type: string
            - type: 'null'
        inquiry_phone:
          anyOf:
            - type: string
            - type: 'null'
        floor_plans:
          items:
            $ref: '#/components/schemas/SuumoProjectFloorPlan'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    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
    SuumoProjectFloorPlan:
      properties:
        '@type':
          type: string
          default: SuumoProjectFloorPlan
        type:
          anyOf:
            - type: string
            - type: 'null'
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        sales_phase:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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

````