{
  "version": "1.0.0",
  "exported_at": "2026-06-03T00:00:00.000Z",
  "project": {
    "name": "SUUMO Rental Property Listing Scraper",
    "description": "Best-effort UScraper equivalent of the Octoparse SUUMO Rental Property Listing Scraper. Target site: SUUMO rental listing pages on suumo.jp/chintai. Default URL set targets Tokyo/Shinjuku rental listing pages 1-20 using SUUMO's ?page= pagination pattern. Extracts rental property/listing data such as property name, address, access, building age/floors, unit floor, rent, management fee, deposit, key money, layout, area, detail URL, image URL, and available unit count. Pagination strategy: known URL list + loop-continue, appending all configured pages into one CSV. Extend the Navigate urls array to cover more result pages for a larger search. SUUMO may show CAPTCHA or anti-bot checks; if encountered, solve manually in the browser before continuing.",
    "color": "bg-[#4589ff]",
    "template_id": "ai-generated"
  },
  "blocks": [
    {
      "block_id": "navigate-1",
      "block_type": "process",
      "title": "Navigate",
      "description": "Go to a URL",
      "position_x": 120,
      "position_y": 220,
      "config": {
        "urls": [
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=1",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=2",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=3",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=4",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=5",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=6",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=7",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=8",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=9",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=10",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=11",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=12",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=13",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=14",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=15",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=16",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=17",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=18",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=19",
          "https://suumo.jp/chintai/tokyo/sc_shinjuku/?page=20"
        ],
        "color": "bg-[#4589ff]",
        "tags": [
          "suumo",
          "rental",
          "listing",
          "real-estate",
          "paginated"
        ]
      }
    },
    {
      "block_id": "wait-for-page-load-1",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 480,
      "position_y": 220,
      "config": {
        "timeout": 30
      }
    },
    {
      "block_id": "wait-for-element-1",
      "block_type": "process",
      "title": "Wait for Element",
      "description": "Wait until element appears",
      "position_x": 840,
      "position_y": 220,
      "config": {
        "selector": ".cassetteitem",
        "timeout": 45,
        "visible": true
      }
    },
    {
      "block_id": "structured-export-1",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 1200,
      "position_y": 220,
      "config": {
        "rowSelector": ".cassetteitem",
        "fileName": "suumo-rental-property-listings.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "columns": [
          {
            "name": "property_name",
            "selector": ".cassetteitem_content-title",
            "attribute": "text"
          },
          {
            "name": "address",
            "selector": ".cassetteitem_detail-col1",
            "attribute": "text"
          },
          {
            "name": "access",
            "selector": "Array.from(ROW.querySelectorAll('.cassetteitem_detail-text')).map(e => e.textContent.trim()).filter(Boolean).join(' | ')",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "building_age_and_floors",
            "selector": ".cassetteitem_detail-col3",
            "attribute": "text"
          },
          {
            "name": "unit_floor",
            "selector": "ROW.querySelector('.cassetteitem_other tbody tr td:nth-child(3)')?.textContent?.replace(/\\s+/g, ' ')?.trim() || ''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "rent",
            "selector": ".cassetteitem_other-emphasis, .cassetteitem_price--rent",
            "attribute": "text"
          },
          {
            "name": "management_fee",
            "selector": ".cassetteitem_price--administration",
            "attribute": "text"
          },
          {
            "name": "deposit",
            "selector": ".cassetteitem_price--deposit",
            "attribute": "text"
          },
          {
            "name": "key_money",
            "selector": ".cassetteitem_price--gratuity",
            "attribute": "text"
          },
          {
            "name": "layout",
            "selector": ".cassetteitem_madori",
            "attribute": "text"
          },
          {
            "name": "area",
            "selector": ".cassetteitem_menseki",
            "attribute": "text"
          },
          {
            "name": "detail_url",
            "selector": "const a = ROW.querySelector('a.js-cassette_link_href, .cassetteitem_content-title a, a[href*=\"/chintai/\"]'); a ? new URL(a.getAttribute('href'), location.origin).href : ''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url",
            "selector": "const img = ROW.querySelector('img'); img ? (img.getAttribute('rel') || img.getAttribute('data-src') || img.getAttribute('src') || '') : ''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "available_units_count",
            "selector": "ROW.querySelectorAll('.cassetteitem_other tbody tr').length.toString()",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "sleep-1",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1560,
      "position_y": 220,
      "config": {
        "duration": 1
      }
    },
    {
      "block_id": "loop-continue-1",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 1920,
      "position_y": 220,
      "config": {}
    }
  ],
  "connections": [
    {
      "from_block_id": "navigate-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-page-load-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-page-load-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-element-1",
      "from_connector_id": "right",
      "to_block_id": "structured-export-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "structured-export-1",
      "from_connector_id": "right",
      "to_block_id": "sleep-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-1",
      "from_connector_id": "right",
      "to_block_id": "loop-continue-1",
      "to_connector_id": "left"
    }
  ],
  "canvas_elements": [
    {
      "id": "group-load",
      "element_type": "group",
      "title": "Page Load",
      "color": "#08bdba",
      "position_x": 48,
      "position_y": 116,
      "width": 1760,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "navigate-1",
          "wait-for-page-load-1",
          "wait-for-element-1",
          "sleep-1"
        ]
      }
    },
    {
      "id": "group-extract",
      "element_type": "group",
      "title": "Data Extraction",
      "color": "#42be65",
      "position_x": 1128,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "structured-export-1"
        ]
      }
    },
    {
      "id": "group-pagination",
      "element_type": "group",
      "title": "Pagination Loop",
      "color": "#ff832b",
      "position_x": 1848,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Best-effort UScraper equivalent of the Octoparse SUUMO Rental Property Listing Scraper. Target site: SUUMO rental listing pages on suumo.jp/chintai. Default URL set targets Tokyo/Shinjuku rental listing pages 1-20 using SUUMO's ?page= pagination pattern. Extracts rental property/listing data such as property name, address, access, building age/floors, unit floor, rent, management fee, deposit, key money, layout, area, detail URL, image URL, and available unit count. Pagination strategy: known URL list + loop-continue, appending all configured pages into one CSV. Extend the Navigate urls array to cover more result pages for a larger search. SUUMO may show CAPTCHA or anti-bot checks; if encountered, solve manually in the browser before continuing.",
      "color": "#f1c21b",
      "position_x": 80,
      "position_y": 20,
      "width": 480,
      "height": 160,
      "z_index": 22,
      "data": {}
    },
    {
      "id": "note-block-navigate-1",
      "element_type": "note",
      "title": "Note: Navigate",
      "content": "Multi-URL loop over 20 pages. Pair with loop-continue at the end of each iteration.",
      "color": "#ee5396",
      "position_x": 320,
      "position_y": 200,
      "width": 332,
      "height": 107,
      "z_index": 22,
      "data": {
        "block_id": "navigate-1"
      }
    },
    {
      "id": "note-block-structured-export-1",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (access, unit_floor, detail_url, image_url, available_units_count). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 1400,
      "position_y": 200,
      "width": 340,
      "height": 135,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-1"
      }
    },
    {
      "id": "note-block-loop-continue-1",
      "element_type": "note",
      "title": "Note: Loop Continue",
      "content": "Loop Continue advances a multi-URL or multi-text loop. Place at the end of the loop body with a clear back-edge to the loop start.",
      "color": "#ee5396",
      "position_x": 2120,
      "position_y": 200,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}