diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c8af9f0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci +on: + pull_request: + push: + branches: [ main, dev ] +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: hashicorp/setup-terraform@v3 + with: { terraform_version: 1.9.5 } + - name: Terraform fmt + run: terraform fmt -check -recursive + - name: Terraform validate + working-directory: terraform/envs/dev + run: | + terraform init -backend=false + terraform validate + - name: Python lint (ruff) + uses: chartboost/ruff-action@v1 + with: { src: "lambda" } diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0b55e16 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Python +__pycache__/ +*.pyc +.venv/ +.env + +# Build artifacts +build/ +dist/ +*.zip + +# Terraform +.terraform/ +.terraform.lock.hcl +terraform.tfstate +terraform.tfstate.* +crash.log + +# OS/editor +.DS_Store +Thumbs.db +*.swp +.vscode/ +.idea/ diff --git a/.pre-commit-config.yml b/.pre-commit-config.yml new file mode 100644 index 0000000..f0b42ed --- /dev/null +++ b/.pre-commit-config.yml @@ -0,0 +1,15 @@ +repos: +- repo: https://github.com/psf/black + rev: 24.8.0 + hooks: [{ id: black, args: ["--line-length=100"], additional_dependencies: ["click<8.1.8"] }] +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.6.8 + hooks: [{ id: ruff, args: ["--fix"] }] +- repo: https://github.com/antonbabenko/pre-commit-terraform + rev: v1.88.4 + hooks: + - id: terraform_fmt + - id: terraform_validate +- repo: https://github.com/Yelp/detect-secrets + rev: v1.5.0 + hooks: [{ id: detect-secrets, args: ["--baseline", ".secrets.baseline"] }] diff --git a/README.md b/README.md index 1844c9e..5e8a923 100644 --- a/README.md +++ b/README.md @@ -1,91 +1,245 @@ -# 🚀 Cloud Data Engineer Challenge +# NanLabs Cloud Data Engineer Challenge — README -Welcome to the **Cloud Data Engineer Challenge!** 🎉 This challenge is designed to evaluate your ability to work with **Infrastructure as Code (IaC), AWS data services, and data engineering workflows**, ensuring efficient data ingestion, storage, and querying. +**Author:** Renzo Burga (cookiezGit) +**Region:** `us-east-1` +**Name prefix:** `renzob-nanlabs-dev-*` + +This repository delivers a free‑tier–friendly AWS data pipeline using **Terraform + Python**: + +- **S3** (`incoming/`) → **Lambda (ingest)** → **RDS PostgreSQL (PostGIS)** +- **API Lambda (FastAPI + Mangum)** → **API Gateway** (`GET /aggregated-data`) +- **CloudWatch Logs** for both Lambdas +- **Networking**: VPC with public/private subnets; Lambdas in **private subnets** +- **No NAT cost**: Uses **VPC Endpoints** (S3 Gateway, Secrets/Logs Interface) instead of a NAT gateway +- **Local dev**: Docker Compose for **PostGIS**, **MinIO**, and **API (uvicorn)** + +> **NAT note (challenge requirement vs. implementation):** The challenge mentions a NAT gateway. To stay within free tier and still keep Lambdas private, this project uses **VPC Endpoints** for egress to AWS services. If a NAT is strictly required by reviewers, it can be enabled with a small module without changing any application code. + +--- -> [!NOTE] -> You can use **any IaC tool of your choice** (Terraform preferred, but alternatives are allowed). If you choose a different tool or a combination of tools, **justify your decision!** +## Repository Layout -## ⚡ Challenge Overview +``` +. +├── README.md # you are here +├── docs/ +├── examples/ +│ ├── airbnb_listings_sample.csv # example input +│ └── s3_put_event.json # sample S3 PUT event +├── docker-compose.yml # PostGIS + MinIO + API (uvicorn) +├── docker/ +│ ├── initdb/01_enable_postgis.sql # CREATE EXTENSION postgis; +│ └── lambda_layer/ # optional helpers (not required) +├── lambda/ +│ ├── ingest/ # S3-triggered CSV→aggregation→upsert +│ └── api/ # FastAPI + Mangum (GET /aggregated-data) +└── terraform/ + ├── envs/dev/main.tf # composes modules & S3→Lambda notify + ├── modules/{vpc,endpoints,s3,rds,iam,lambdas,apigw,backup} + ├── providers.tf + ├── variables.tf + └── outputs.tf +``` + +--- + +## Architecture (high level) + +- **S3** receives CSVs under `incoming/` +- **Ingest Lambda** (private subnet) is triggered on `ObjectCreated:*` with prefix `incoming/` and suffix `.csv` + - Parses CSV (`city`, optional `price`), normalizes city names, computes `listing_count` and `avg_price` + - Upserts into `aggregated_city_stats` on **RDS PostgreSQL (PostGIS)** + - Ensures PostGIS extension, table, and indexes exist (idempotent) +- **API Lambda** serves **FastAPI** via **Mangum** → **API Gateway HTTP API** (`GET /aggregated-data?limit=&city=`) +- **VPC Endpoints**: S3 (Gateway), Secrets Manager (Interface), CloudWatch Logs (Interface) +- **CloudWatch** log groups with retention; optional basic alarms to SNS + +**Indexes created:** +`idx_agg_count_city (listing_count DESC, city ASC)`, `idx_agg_city (city)`, and `idx_agg_geom (GIST)` + +--- + +## Prerequisites + +- **AWS CLI v2**, **Terraform ≥ 1.6**, **Docker Desktop** +- **Python 3.10** locally (only for vendoring) +- Windows users: `make` is optional (PowerShell alternatives below) + +Authenticate: +```bash +aws configure # set region to us-east-1 +aws sts get-caller-identity +``` + +--- + +## Build — Lambda zips with Linux-compatible wheels + +We vendor dependencies **inside** the Lambda Python 3.10 image to match Amazon Linux. + +### Windows (PowerShell) + +```powershell +# from repo root +make clean +make build-linux-all +``` + +If you don’t use `make`, use these one-liners (from repo root): +```powershell +# API +docker run --rm -v "${PWD}:/var/task" -w /var/task public.ecr.aws/lambda/python:3.10 ` + /bin/sh -lc "rm -rf build/api/package && mkdir -p build/api/package && pip install -r lambda/api/requirements.txt -t build/api/package && cp -r lambda/api/* build/api/package/ && cd build/api/package && zip -r ../../api.zip ." + +# Ingest +docker run --rm -v "${PWD}:/var/task" -w /var/task public.ecr.aws/lambda/python:3.10 ` + /bin/sh -lc "rm -rf build/ingest/package && mkdir -p build/ingest/package && pip install -r lambda/ingest/requirements.txt -t build/ingest/package && cp -r lambda/ingest/* build/ingest/package/ && cd build/ingest/package && zip -r ../../ingest.zip ." +``` + +--- + +## Deploy — Terraform (dev) + +```bash +cd terraform/envs/dev +terraform init +terraform apply -var="prefix=renzob-nanlabs" -var="env=dev" -auto-approve +``` + +Grab outputs: +```bash +terraform output -raw s3_bucket +terraform output -raw api_base_url +terraform output -raw db_endpoint +``` + +> The module sets `source_code_hash` on Lambdas so code changes re-deploy cleanly on `terraform apply`. + +--- + +## Test — End to End + +### 1) Trigger via S3 PUT (recommended) +```bash +BUCKET=$(terraform output -raw s3_bucket) +aws s3 cp ../../examples/airbnb_listings_sample.csv "s3://${BUCKET}/incoming/airbnb_listings_sample.csv" --content-type text/csv +aws logs tail "/aws/lambda/renzob-nanlabs-dev-ingest" --follow +``` +Expected logs: `s3_get_object_before`, `csv_parsed`, `db_connect_*`, `done` + +### 2) Query the API +```bash +API=$(terraform output -raw api_base_url) +curl "$API/healthz" +curl "$API/aggregated-data?limit=100" +curl "$API/aggregated-data?city=Berlin&limit=50" +``` + +### 3) Manual Lambda Test (optional) +```bash +BUCKET=$(terraform output -raw s3_bucket) +cat > event.json < 🎯 **Key Objectives:** +--- -- **An S3 bucket** that will receive data files as new objects. -- **A Lambda function** that is triggered by a `PUT` event in the S3 bucket. -- **The Lambda function must:** - - Process the ingested data and perform a minimal aggregation. - - Store the processed data in a **PostgreSQL database with PostGIS enabled**. - - Expose an API Gateway endpoint (`GET /aggregated-data`) to query and retrieve the aggregated data. -- **A PostgreSQL database** running in a private subnet with PostGIS enabled. -- **Networking must include:** VPC, public/private subnets, and security groups. -- **The Lambda must be in a private subnet** and use a NAT Gateway in a public subnet for internet access 🌍 -- **CloudWatch logs** should capture Lambda execution details and possible errors. +## Local Development (Docker Compose) -> [!IMPORTANT] -> Ensure that your solution is modular, well-documented, and follows best practices for security and maintainability. +```bash +docker compose up -d --build +# MinIO: http://localhost:9001 (user: minio / pass: minio123) +# Create bucket 'nanlabs' and upload examples/airbnb_listings_sample.csv to incoming/ +# API: http://localhost:8000/aggregated-data +``` -## 📌 Requirements +**Windows PowerShell:** +```powershell +docker compose up -d --build +# Then browse http://localhost:9001 (minio/minio123) +# Local API: Invoke-WebRequest http://localhost:8000/aggregated-data | Select-Object -ExpandProperty Content +``` -### 🛠 Tech Stack +--- -> ⚡ **Must Include:** +## Configuration Notes -- **IaC:** Any tool of your choice (**Terraform preferred**, but others are allowed if justified). -- **AWS Services:** S3, Lambda, API Gateway, CloudWatch, PostgreSQL with PostGIS (RDS or self-hosted on EC2). +- **Runtime:** Python `3.10` for both Lambdas +- **Handlers:** `main.handler` (zips root contain `main.py`) +- **Secrets:** Pulled at runtime from **AWS Secrets Manager** (host, port, db, user, password) +- **Indexes:** Created on first connect (idempotent); `ANALYZE` after each ingest +- **S3 Notification:** `ObjectCreated:*` with `prefix=incoming/`, `suffix=.csv` -### 📄 Expected Deliverables +--- -> 📥 **Your submission must be a Pull Request that includes:** +## Troubleshooting -- **An IaC module** that deploys the entire architecture. -- **A `README.md`** with deployment instructions and tool selection justification. -- **A working API Gateway endpoint** that returns the aggregated data stored in PostgreSQL. -- **CloudWatch logs** capturing Lambda execution details. -- **Example input files** to trigger the data pipeline (placed in an `examples/` directory). -- **A sample event payload** (JSON format) to simulate the S3 `PUT` event. +- **No logs on upload** + - Verify the notification configuration: + `aws s3api get-bucket-notification-configuration --bucket $BUCKET` + Should include `ObjectCreated:*`, `prefix=incoming/`, `suffix=.csv` and your Lambda ARN. + - Upload with a **new key** (e.g., timestamp suffix). -> [!TIP] -> Use the `docs` folder to store any additional documentation or diagrams that help explain your solution. -> Mention any assumptions or constraints in your `README.md`. +- **`psycopg2` missing on Lambda** + - Rebuild zips inside the Lambda Docker image: `make build-linux-all` + - Then `terraform apply` to update code (uses `source_code_hash`). -## 🌟 Nice to Have +- **API base URL empty** + - Run `terraform output -raw api_base_url` **in `terraform/envs/dev`**. + - Alternatively, discover via AWS CLI: + `aws apigatewayv2 get-apis --query "Items[?Name=='renzob-nanlabs-dev-api'].ApiEndpoint" --output text` -> 💡 **Bonus Points For:** +- **500 from API** + - Tail `/aws/lambda/renzob-nanlabs-dev-api`; ensure RDS is finished creating and Secrets are accessible. -- **Data Quality & Validation**: Implementing **schema validation before storing data in PostgreSQL**. -- **Indexing & Query Optimization**: Using **PostGIS spatial indexing** for efficient geospatial queries. -- **Monitoring & Alerts**: Setting up **AWS CloudWatch Alarms** for S3 event failures or Lambda errors. -- **Automated Data Backups**: Creating periodic **database backups to S3** using AWS Lambda or AWS Backup. -- **GitHub Actions for validation**: Running **`terraform fmt`, `terraform validate`**, or equivalent for the chosen IaC tool. -- **Pre-commit hooks**: Ensuring linting and security checks before committing. -- **Docker for local testing**: Using **Docker Compose to spin up**: - - Running a local PostgreSQL database with PostGIS to simulate the cloud environment 🛠 - - Providing a local S3-compatible service (e.g., MinIO) to test file ingestion before deployment 🖥 +- **S3 upload doesn’t trigger** + - Confirm region `us-east-1`, bucket exists, and you used `incoming/` + `.csv` suffix. -> [!TIP] -> Looking for inspiration or additional ideas to earn extra points? Check out our **[Awesome NaNLABS repository](https://github.com/nanlabs/awesome-nan)** for reference projects and best practices! 🚀 +--- -## 📥 Submission Guidelines +## Cleanup (avoid charges) -> 📌 **Follow these steps to submit your solution:** +```bash +cd terraform/envs/dev +terraform destroy -var="prefix=renzob-nanlabs" -var="env=dev" -auto-approve +docker compose down -v +``` -1. **Fork this repository.** -2. **Create a feature branch** for your implementation. -3. **Commit your changes** with meaningful commit messages. -4. **Open a Pull Request** following the provided template. -5. **Our team will review** and provide feedback. +--- -## ✅ Evaluation Criteria +## Extensibility & “Nice to Have” Highlights -> 🔍 **What we'll be looking at:** +- **Data Quality:** City normalization, tolerant price parsing, sanity ranges; invalids skipped (no DLQ by choice). +- **Indexing:** Composite ordering index, city lookup index, and GIST on `geom` to enable spatial queries. +- **Monitoring:** Optional CloudWatch alarms (`Errors > 0`) → SNS topic. +- **Backups:** Optional **AWS Backup** daily plan for the RDS instance. +- **CI / Pre-commit:** Optional GitHub Actions and pre-commit config for fmt/validate/lint/secrets checks. -- **Correctness and completeness** of the **data pipeline**. -- **Use of best practices for event-driven processing** (S3 triggers, Lambda execution). -- **Data transformation & aggregation logic** implemented in Lambda. -- **Optimization for geospatial queries** using PostGIS. -- **Data backup & integrity strategies** (optional, e.g., automated S3 backups). -- **CI/CD automation using GitHub Actions and pre-commit hooks** (optional). -- **Documentation clarity**: Clear explanation of data flow, transformation logic, and infrastructure choices. +--- + +## Assumptions + +- CSV minimal schema contains `city` and optional `price` columns; others ignored. +- Cities aggregated case-insensitively (Title Case stored). +- `geom` is nullable; future job can geocode and fill points. + +--- + +## License + +MIT (or per challenge repository’s default). -## 🎯 **Good luck and happy coding!** 🚀 diff --git a/destroy_nanlabs_dev.ps1 b/destroy_nanlabs_dev.ps1 new file mode 100644 index 0000000..c0e89d7 --- /dev/null +++ b/destroy_nanlabs_dev.ps1 @@ -0,0 +1,118 @@ +Param( + [switch]$Force = $false, + [string]$Profile = "nanlabs-dev", + [string]$Region = "us-east-1" +) + +$ErrorActionPreference = "Stop" + +function Fail($msg) { Write-Error $msg; exit 1 } +function Step($msg) { Write-Host "==> $msg" -ForegroundColor Cyan } +function Info($msg) { Write-Host " $msg" -ForegroundColor Gray } + +# Ensure repo root (terraform/envs/dev exists) +if (-not (Test-Path ".\terraform\envs\dev")) { + Fail "Run this script from the repository root (terraform\envs\dev must exist)." +} + +# Confirm +if (-not $Force) { + Write-Host "This will permanently delete AWS resources deployed by Terraform in env 'dev'." -ForegroundColor Yellow + $ans = Read-Host "Type 'DESTROY' to continue" + if ($ans -ne "DESTROY") { Fail "Aborted by user." } +} + +# AWS env +Step "Setting AWS profile/region" +$env:AWS_SDK_LOAD_CONFIG = "1" +$env:AWS_PROFILE = $Profile +$env:AWS_REGION = $Region + +try { + $id = aws sts get-caller-identity --output text 2>$null + if (-not $id) { Fail "AWS credentials not found for profile '$Profile'." } + else { Info "Caller identity: $id" } +} catch { + Fail "AWS CLI failed to use profile '$Profile'. Error: $($_.Exception.Message)" +} + +# Helper: empty S3 bucket including versions and delete markers +function Empty-S3BucketVersioned { + Param([Parameter(Mandatory=$true)][string]$Bucket) + + Step "Emptying S3 bucket s3://$Bucket (including versions)" + try { + # Remove all object versions + $versions = aws s3api list-object-versions --bucket $Bucket --output json | ConvertFrom-Json + if ($versions.Versions) { + $toDel = @() + foreach ($v in $versions.Versions) { + $toDel += @{ Key = $v.Key; VersionId = $v.VersionId } + } + if ($toDel.Count -gt 0) { + $payload = @{ Objects = $toDel; Quiet = $true } | ConvertTo-Json -Depth 5 -Compress + $tmp = New-TemporaryFile + Set-Content -Path $tmp -Value $payload -Encoding ascii + aws s3api delete-objects --bucket $Bucket --delete file://$tmp | Out-Null + Remove-Item $tmp -Force + } + } + # Remove delete markers + if ($versions.DeleteMarkers) { + $toDel2 = @() + foreach ($m in $versions.DeleteMarkers) { + $toDel2 += @{ Key = $m.Key; VersionId = $m.VersionId } + } + if ($toDel2.Count -gt 0) { + $payload2 = @{ Objects = $toDel2; Quiet = $true } | ConvertTo-Json -Depth 5 -Compress + $tmp2 = New-TemporaryFile + Set-Content -Path $tmp2 -Value $payload2 -Encoding ascii + aws s3api delete-objects --bucket $Bucket --delete file://$tmp2 | Out-Null + Remove-Item $tmp2 -Force + } + } + # Safety: try standard recursive delete (handles unversioned or remnants) + aws s3 rm "s3://$Bucket" --recursive | Out-Null + Info "Bucket emptied." + } catch { + Write-Warning "Failed to fully empty bucket: $($_.Exception.Message)" + } +} + +# Get terraform outputs (bucket name, api, etc.) to clean dependencies before destroy +Push-Location "terraform\envs\dev" +try { + Step "Reading Terraform outputs" + $BUCKET = "" + try { $BUCKET = (terraform output -raw s3_bucket).Trim() } catch {} + if ($BUCKET) { Info "Bucket: $BUCKET" } else { Info "Bucket output not found (may not exist yet)." } + + # Empty bucket to allow terraform destroy (if force_destroy=false) + if ($BUCKET) { Empty-S3BucketVersioned -Bucket $BUCKET } + + # Optional: delete CloudWatch log groups created by Lambda if not managed by TF + Step "Cleaning Lambda log groups (best-effort)" + $lgIngest = "/aws/lambda/renzob-nanlabs-dev-ingest" + $lgApi = "/aws/lambda/renzob-nanlabs-dev-api" + foreach ($lg in @($lgIngest,$lgApi)) { + try { + $exists = aws logs describe-log-groups --log-group-name-prefix $lg --query "logGroups[?logGroupName=='`"$lg`"'].logGroupName" --output text + if ($exists -eq $lg) { + Info "Deleting log group $lg" + aws logs delete-log-group --log-group-name $lg | Out-Null + } else { Info "Log group not present: $lg" } + } catch { + Write-Warning "Could not delete log group $lg: $($_.Exception.Message)" + } + } + + # Finally: terraform destroy + Step "Running terraform destroy" + terraform destroy -var="prefix=renzob-nanlabs" -var="env=dev" -auto-approve + if ($LASTEXITCODE -ne 0) { Fail "terraform destroy failed" } + else { Info "Terraform destroy completed." } +} finally { + Pop-Location +} + +Step "All done. Verify in AWS console if desired." diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..752189c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,52 @@ +services: + postgis: + image: postgis/postgis:16-3.4 + environment: + POSTGRES_USER: appuser + POSTGRES_PASSWORD: apppass + POSTGRES_DB: appdb + ports: + - "5432:5432" + volumes: + - ./docker/initdb:/docker-entrypoint-initdb.d + healthcheck: + test: ["CMD-SHELL", "pg_isready -U appuser -d appdb"] + interval: 10s + timeout: 3s + retries: 10 + + minio: + image: minio/minio:latest + command: server /data --console-address ":9001" + environment: + MINIO_ROOT_USER: minio + MINIO_ROOT_PASSWORD: minio123 + ports: + - "9000:9000" + - "9001:9001" + volumes: + - minio-data:/data + + api: + build: + context: ./lambda/api + dockerfile: Dockerfile + environment: + DB_HOST: postgis + DB_NAME: appdb + DB_USER: appuser + DB_PASS: apppass + DB_PORT: "5432" + TABLE_NAME: aggregated_city_stats + depends_on: + - postgis + ports: + - "8000:8000" + healthcheck: + test: ["CMD", "python", "-c", "import socket;s=socket.socket();s.connect(('localhost',8000));print('ok')"] + interval: 10s + timeout: 3s + retries: 10 + +volumes: + minio-data: {} diff --git a/docker/initdb/01_enable_postgis.sql b/docker/initdb/01_enable_postgis.sql new file mode 100644 index 0000000..7ae9fe3 --- /dev/null +++ b/docker/initdb/01_enable_postgis.sql @@ -0,0 +1,2 @@ +-- Enable PostGIS on first boot (local Docker only) +CREATE EXTENSION IF NOT EXISTS postgis; \ No newline at end of file diff --git a/docker/lambda_layer/build_layer.sh b/docker/lambda_layer/build_layer.sh new file mode 100644 index 0000000..cde17e1 --- /dev/null +++ b/docker/lambda_layer/build_layer.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash +set -euo pipefail +rm -rf dist build && mkdir -p build/python +pip install -r requirements.txt -t build/python +cd build && zip -r ../dist/python.zip python diff --git a/docker/lambda_layer/requirements.txt b/docker/lambda_layer/requirements.txt new file mode 100644 index 0000000..2a716a7 --- /dev/null +++ b/docker/lambda_layer/requirements.txt @@ -0,0 +1,5 @@ +psycopg2-binary==2.9.9 +fastapi==0.115.5 +mangum==0.17.0 +boto3==1.34.162 +pandas==2.2.2 \ No newline at end of file diff --git a/docs/base architecture.png b/docs/base architecture.png new file mode 100644 index 0000000..408e85c Binary files /dev/null and b/docs/base architecture.png differ diff --git a/docs/flow.png b/docs/flow.png new file mode 100644 index 0000000..b8158ff Binary files /dev/null and b/docs/flow.png differ diff --git a/examples/airbnb_listings_sample.csv b/examples/airbnb_listings_sample.csv new file mode 100644 index 0000000..ed622e6 --- /dev/null +++ b/examples/airbnb_listings_sample.csv @@ -0,0 +1,86187 @@ +id,name,host_id,host_name,city,price,reply time,guest favourite,host since,host Certification,room_type,host total listings count,consumer,total reviewers number,accommodates,bathrooms,bedrooms,beds,listing number,host response rate,host acceptance rate,sales,area +1,Beautiful Victorian Home,1368256,Robert,Toronto,250,0,0,4563,1,3,1,"6,81",47,6,"1,5",2,3,1,"0,9","0,42",102,North America +2,"World Class @ CN Tower, convention centre, Theatre",113345,Adela,Toronto,152,0,0,5120,1,3,5,"6,67",42,4,1,1,2,5,"0,9","0,42",166,North America +3,Furnished room in lovely Annex house June -Oct31,1466410,Susan,Toronto,120,0,0,4534,1,2,1,0,0,1,1,1,2,2,1,"0,65",181,North America +4,Executive Studio Unit- Ideal for One Person,118124,Brent,Toronto,75,1,1,5111,1,3,1,"6,86",29,1,1,0,1,1,1,1,365,North America +5,"Bright Beaches Apt, close to everything",175687,John,Toronto,90,0,0,5033,1,3,1,"6,57",7,2,1,1,1,4,1,"0,8",328,North America +6,Quiet Oasis near Eaton Centre,1704172,Vanessa,Toronto,102,1,1,4469,1,2,2,"6,78",121,1,1,1,1,3,1,1,144,North America +7,Cozy Room in Midtown Near Subway,1027776,Willy,Toronto,60,0,0,4631,1,2,1,"6,36",85,2,1,1,0,1,0,0,365,North America +8,Yonge & Bloor Studio Skyline,195095,Urbano,Toronto,126,0,0,5015,1,3,11,"6,23",66,2,1,1,1,11,1,"0,71",62,North America +9,Charming Century Cottage in Beaches,1816495,Katharine,Toronto,251,1,0,4447,1,3,3,"6,55",64,7,"1,5",3,4,3,1,"0,9",89,North America +10,Yonge & Bloor 2 Bedroom Apartment,195095,Urbano,Toronto,104,0,0,5015,1,2,11,"6,13",8,2,1,1,1,11,1,"0,71",0,North America +11,Spacious Modern Cozy King W Toronto,1015670,Grace,Toronto,361,0,0,4634,1,3,1,"6,44",9,2,1,1,1,1,0,0,7,North America +12,Fountain View Studio - Eaton center,195095,Urbano,Toronto,150,0,0,5015,1,3,11,"6,21",86,3,1,0,1,11,1,"0,71",88,North America +13,Yonge & Bloor 2 Bedroom Master,195095,Urbano,Toronto,105,0,0,5015,1,2,11,"6,44",9,2,1,1,1,11,1,"0,71",237,North America +14,"Fab, Private 1 Bdrm Suite Close to Everything!",1910540,Lesley,Toronto,108,1,1,4433,1,2,1,"6,76",120,2,1,1,1,1,1,"0,94",14,North America +15,Yonge & Bloor Lakeview Master BR,195095,Urbano,Toronto,90,0,0,5015,1,2,11,"6,21",22,1,1,1,1,11,1,"0,71",172,North America +16,Furnished Downtown Studio Suite 2,304551,Kintoo,Toronto,60,1,0,4902,1,2,8,"6,75",4,1,1,1,1,11,1,"0,97",23,North America +17,Yorkville one bedroom Condo,195095,Urbano,Toronto,163,0,0,5015,1,3,11,"6,52",59,3,1,1,1,11,1,"0,71",104,North America +18,SUNNY DBL CORKTOWN BREAKFAST EAST DOWNTOWN,1952926,Sean,Toronto,60,0,0,4427,1,2,1,"6,88",829,2,1,1,1,4,0,0,364,North America +19,"Sunny, Spacious, Downtown 1 Bedroom",1870492,Katie,Toronto,115,0,0,4439,1,3,1,"6,86",21,2,1,1,1,1,0,0,7,North America +20,Furnished Heritage Rooms Downtown 1,304551,Kintoo,Toronto,50,1,1,4902,1,2,8,"6,75",23,1,"0,5",1,1,11,1,"0,97",206,North America +21,Furnished Downtown Studio Suite 6,304551,Kintoo,Toronto,80,1,0,4902,1,3,8,"6,5",9,1,1,1,1,11,1,"0,97",175,North America +22,Furnished Heritage Rooms Downtown 2,304551,Kintoo,Toronto,50,1,0,4902,1,2,8,"6,41",17,1,"0,5",1,1,11,1,"0,97",112,North America +23,Furnished Heritage Rooms Downtown,304551,Kintoo,Toronto,50,1,1,4902,1,2,8,"6,61",24,1,"0,5",1,1,11,1,"0,97",226,North America +24,Yonge & Bloor Lakview Bedroom,195095,Urbano,Toronto,90,0,0,5015,1,2,11,"6,6",5,2,1,1,1,11,1,"0,71",173,North America +25,Furnished Downtown Room,304551,Kintoo,Toronto,50,1,1,4902,1,2,8,7,4,1,1,1,0,11,1,"0,97",115,North America +26,John & Bren's Queen West 3 bedroom townhouse,511506,Brenda,Toronto,309,1,1,4765,1,3,1,"6,93",154,5,2,3,3,1,1,"0,88",333,North America +27,1BR-Close to Don Mills & Eglinton 202,1854872,Nadarajah,Toronto,30,1,0,4441,1,2,5,"6,4",43,1,"1,5",1,1,5,1,"0,86",261,North America +28,Gorgeous Condo near High Park!!,575127,Micheline,Toronto,66,0,0,4740,,3,1,"6,83",12,2,1,1,1,2,0,0,267,North America +29,STYLISH LAKEVIEW / KING SIZE BED/DOWNTOWN+PARKING,174063,Denis,Toronto,200,1,1,5034,1,3,4,"6,78",84,2,1,1,1,4,1,1,143,North America +30,PRIVATE ROOM MIDTOWN TORONTO,2079464,Maddie,Toronto,62,1,0,4409,1,2,1,"6,47",125,2,1,1,0,1,1,1,72,North America +31,WATERFRONT LUXURY SUITE - Downtown,604233,Waterfront ExecSuites,Toronto,94,0,0,4731,,3,1,"6,64",11,2,1,1,1,1,0,"0,67",3,North America +32,Super Studio in the Upper Beach,377846,Nick & Nena,Toronto,69,0,0,4834,1,3,18,"6,66",47,2,1,1,1,19,1,"0,74",145,North America +33,2 bd Apt at Yonge & Bloor Yorkville,656777,Pere,Toronto,279,1,1,4717,1,3,1,"6,83",63,4,1,2,2,5,1,"0,96",53,North America +34,Quaint Mid-Town Toronto Guestroom,2297131,Liz,Toronto,55,0,0,4379,1,2,1,"6,56",34,2,1,1,1,1,0,0,277,North America +35,Spacious Scandinavian Style Home in King West,1039434,Juli,Toronto,279,1,1,4628,1,3,3,"6,76",72,2,1,1,1,3,1,1,217,North America +36,Spacious 1 Bedroom Suite on Subway Line!,957466,Karen,Toronto,92,1,1,4647,1,3,1,"6,87",53,2,1,1,1,1,1,"0,94",84,North America +37,Designer-inspired Toronto living,2349264,George,Toronto,115,0,0,4373,1,3,1,"6,82",100,2,1,1,1,1,0,1,192,North America +38,Your Home In Toronto,1241161,Danny,Toronto,106,0,0,4594,1,3,1,"6,75",115,2,1,0,1,2,0,0,275,North America +39,Beautiful Newly Renovated 2BDM Home,1019538,Stefan,Toronto,300,0,0,4633,1,3,1,"6,7",22,4,2,2,2,2,"0,75","0,79",31,North America +40,"Monthly, Cozy + Clean Studio in the Junction",533496,Eberhard,Toronto,100,1,1,4755,1,3,2,"6,79",182,2,1,0,0,8,1,"0,9",292,North America +41,Bright House with Vegetable Garden,2549053,Nathalie,Toronto,300,0,0,4349,1,3,1,"6,83",78,5,1,3,3,2,1,0,244,North America +42,"Location, Location downtown Toronto / Lower Rate",1170217,Frank,Toronto,80,1,1,4611,1,2,2,"6,66",38,2,1,1,1,2,1,1,193,North America +43,Small Dog friendly Apt Garden Free Park EV charger,2588098,Reiner,Toronto,108,0,0,4344,1,3,1,"5,83",6,2,1,1,1,1,1,0,186,North America +44,★ High-Tech Authentic Luxurious Loft -Queen West ★,1698603,Kyle,Toronto,399,0,0,4470,1,3,1,"6,82",73,3,1,1,1,1,1,"0,77",183,North America +45,Little Italy-4 bedroom house,2600229,Orsolya,Toronto,295,0,0,4343,1,3,1,"6,39",18,7,2,4,5,2,1,0,140,North America +46,Room in amazing retro modern space,2597290,Caroline,Toronto,97,0,0,4343,1,2,1,"6,66",113,2,1,1,1,1,0,0,0,North America +47,Best View in Downtown 5 Star Luxury 1+1 w/office,1019968,Roman,Toronto,234,1,1,4633,1,3,1,"6,78",178,3,1,1,2,1,1,"0,85",271,North America +48,Unrivaled location on Yorkville Ave/2000 sq ft,1218097,Susan,Toronto,200,0,0,4600,1,3,1,"6,8",5,2,1,1,2,1,1,0,239,North America +49,"Prime Annex 1 BR +balcony - UofT, Subway, Bloor",349772,Steven,Toronto,90,1,0,4854,1,3,1,"6,69",36,2,1,1,1,1,1,1,203,North America +50,Perfect for ONE,1304211,Nadia,Toronto,44,0,0,4580,1,2,2,"6,51",45,1,1,1,0,2,"0,8","0,97",268,North America +51,Chic Upper Beach 3 Bedroom Beauty,377846,Nick & Nena,Toronto,149,0,0,4834,1,3,18,"6,55",29,7,1,3,3,19,1,"0,74",23,North America +52,DOWNTOWN TORONTO LUXURY FURNISHED CORPORATE SUITE,2175675,Frank,Toronto,119,1,1,4395,1,3,4,"6,75",85,2,1,1,1,6,1,1,141,North America +53,Large bedroom with private bathroom and shower,2980659,Nanou,Toronto,84,0,0,4305,1,2,1,"6,54",39,2,"1,5",1,0,1,0,0,1,North America +54,PAN AM PENTHOUSE WITH SKYLINE VIEWS,5153529,Adrian,Toronto,160,1,1,4089,1,3,2,"6,89",9,2,1,2,0,3,1,"0,98",206,North America +55,Basement apartment (1 bdrm) in lower Junction,574360,Yvonne,Toronto,120,0,0,4740,,3,1,"6,75",4,2,1,1,1,1,0,0,84,North America +56,Furnished 1 Bedroom Appartment,5186386,Kc,Toronto,80,1,0,4086,1,3,1,"6,65",34,2,1,1,1,1,1,1,216,North America +57,Large 4 Bedroom House in Toronto Private Clean,3289972,Minoo,Toronto,190,1,1,4275,1,3,1,"6,94",18,8,"1,5",4,5,1,1,1,55,North America +58,YONGE - DUNDAS Fully Furnished,4477219,Vas,Toronto,60,0,0,4147,1,3,4,"6,45",11,2,1,2,0,4,1,"0,71",365,North America +59,Super Studio in the Upper Beach II,377846,Nick & Nena,Toronto,83,0,0,4834,1,3,18,"6,54",47,2,1,1,1,19,1,"0,74",23,North America +60,"1 BR DOWNTOWN CONDO, SLEEPS 4 W/PARKING",3272927,Sam,Toronto,128,0,0,4277,1,3,1,"6,7",71,4,1,1,2,2,"0,6","0,82",293,North America +61,Refreshing High Park Apt - close to Lake / Nature,3395349,Suzanna,Toronto,95,0,0,4264,,3,1,0,0,2,1,1,2,1,0,0,53,North America +62,Beautiful Garden Apt With Porches,3604846,Wies,Toronto,150,0,0,4243,1,3,4,"6,28",18,4,1,1,2,4,1,"0,5",84,North America +63,Casa Palma Azul,5214021,Michael,Toronto,100,0,0,4084,1,3,1,"6,67",33,1,1,1,1,1,1,"0,75",31,North America +64,Beautiful large 3 bdrm in High Park Roncesvalles,3604846,Wies,Toronto,200,0,0,4243,1,3,4,"6,63",24,7,1,3,4,4,1,"0,5",53,North America +65,2 BDRM 2000SF Executive Suite,3604846,Wies,Toronto,180,0,0,4243,1,3,4,"6,5",4,5,1,2,3,4,1,"0,5",25,North America +66,1 Bedroom Basement Apartment in Leslieville,2396097,Jean-Francois,Toronto,99,1,0,4367,1,2,1,"6,7",115,2,"1,5",1,1,1,1,1,0,North America +67,Bright Victorian Home in Roncesvalles Village,3783106,Jeremy,Toronto,550,0,0,4225,1,3,1,"6,64",14,7,"2,5",4,4,1,0,"0,5",212,North America +68,Winchester Suite / Large Modern Bedroom Downtown,3982898,Andrew,Toronto,111,1,1,4205,1,2,3,"6,84",111,1,1,1,1,5,1,"0,96",213,North America +69,Private room in Brockton Village.,5242437,Kristin,Toronto,80,0,0,4082,1,2,1,"6,89",18,1,"1,5",1,1,1,"0,9","0,73",29,North America +70,Hidden lakeview oasis downtown,4017316,Patricia,Toronto,109,0,0,4201,1,3,1,6,5,2,1,1,1,1,0,0,8,North America +71,Studio Loft/Walk to Eaton Center,4068231,Margaret,Toronto,90,1,0,4195,1,3,5,"6,47",34,2,1,0,1,5,"0,92","0,97",127,North America +72,"Fantastic private gem, just like a home.",377962,Coreen,Toronto,115,0,0,4834,1,3,6,"6,46",35,2,1,1,2,6,"0,94","0,77",109,North America +73,Private bedroom Queen W/Toronto Western Hospital,3131000,Janet,Toronto,60,1,1,4291,1,2,1,"6,96",168,2,1,1,1,1,1,"0,91",202,North America +74,Bloorcourt Village Apt. longer-term accommodations,5554523,Holly & Chad,Toronto,140,0,0,4060,1,3,1,"6,73",169,1,1,1,1,1,1,"0,8",353,North America +75,"Haven in the City: Parking, Workspace, Perfection",4111007,Stephanie,Toronto,600,0,0,4190,,3,1,7,1,6,4,4,4,1,1,0,53,North America +76,Beautiful Davisville Toronto Home,5630548,Daniel,Toronto,446,0,0,4054,1,3,1,"6,62",13,7,2,3,3,1,0,0,0,North America +77,Yonge & Wellesley Prime Downtown Shared Apartment,2056128,Robert,Toronto,143,1,1,4412,1,2,2,"6,91",507,2,1,1,1,2,1,1,285,North America +78,Modern 1 Bedroom Condo in Entertainment District,1984757,Michelle,Toronto,98,1,1,4424,1,3,1,"6,85",27,2,1,1,1,1,1,1,200,North America +79,The Great Gerrard - Paris Suite,377846,Nick & Nena,Toronto,70,0,0,4834,1,3,18,"6,64",50,2,1,1,1,19,1,"0,74",38,North America +80,DOWNTOWN TORONTO LUXURY PENTHOUSE CORPORATE SUITE,2175675,Frank,Toronto,129,1,0,4395,1,3,4,6,7,2,1,1,2,6,1,1,314,North America +81,Beautiful suite in Downtown Toronto,4186011,Oron,Toronto,279,1,1,4182,1,3,1,"6,9",142,2,1,1,1,1,1,"0,86",305,North America +82,Stunning modern bachelor apartment,4195876,Dale,Toronto,206,0,0,4181,1,2,2,"6,84",91,2,1,1,2,2,0,0,0,North America +83,Private Rooms with ensuite bathroom,5700231,Roxy,Toronto,68,0,0,4049,1,2,3,0,0,2,2,1,1,3,1,"0,67",0,North America +84,"LONG-TERM, FEMALES, CLEAN, COZY-AIRPORT P/U POSS.",1786233,Mina,Toronto,25,0,0,4453,1,2,1,"6,86",22,2,1,2,2,2,"0,5",0,70,North America +85,"Luxury Apt, Garden, small Dog welcome, Ev Charger",4468895,Melanie,Toronto,108,0,0,4148,1,3,1,"6,63",41,2,1,1,1,1,1,"0,43",126,North America +86,Private Room in Downtown Toronto RM2,4297691,Graeme,Toronto,81,1,1,4169,1,2,2,"6,82",574,1,"1,5",1,0,2,1,"0,98",31,North America +87,Little Italy 1 Bedroom Apt - Excellent Location!,149566,Vinita + Joe,Toronto,145,1,0,5062,1,3,1,"6,68",39,3,1,1,1,2,1,"0,96",49,North America +88,Beautiful Deluxe Toronto Home,4316883,Scott,Toronto,1016,0,0,4167,1,3,1,"6,86",8,9,5,5,6,1,0,0,2,North America +89,Beautiful Private room Downtown Toronto,2741400,Rk,Toronto,70,0,0,4328,1,2,1,"6,74",152,2,2,1,1,1,0,0,0,North America +90,"Owner's Suite on classic boulevard, great location",2575031,Johnny,Toronto,200,0,0,4346,1,3,1,"6,75",4,2,2,1,2,1,1,"0,75",360,North America +91,Central Downtown room with views,4435131,Olivia,Toronto,87,0,0,4152,1,2,1,"6,83",136,1,1,1,1,1,"0,8","0,46",17,North America +92,HOTEL ALTERNATIVE accommodation,4477219,Vas,Toronto,196,0,0,4147,1,3,4,"6,85",13,2,1,0,0,4,1,"0,71",365,North America +93,Downtown East One Bdrm and Spacious Bath,4010527,Diane,Toronto,255,0,0,4202,1,3,5,"6,72",29,2,1,1,2,5,1,"0,71",43,North America +94,Entire Suite with Private Entry/Bath/Garden,5867364,Emil,Toronto,189,1,1,4039,1,2,1,"6,83",663,2,1,1,1,1,1,"0,94",175,North America +95,Panoramic Views in Huge and Bright Loft w/ Parking,4448135,Hyung Min,Toronto,408,1,1,4151,1,3,1,"6,85",312,4,1,2,2,1,1,"0,94",299,North America +96,Great Danforth apt - parking & view,4871479,Jodi,Toronto,350,0,0,4112,1,3,1,"6,51",67,3,1,1,1,1,1,0,335,North America +97,Downtown Suite with the Best Views in the City,672978,Katy,Toronto,186,0,0,4712,1,3,2,"6,67",516,4,1,1,2,2,0,0,0,North America +98,Big Room in a Great Neighbourhood,4966594,Mark,Toronto,95,1,0,4104,1,2,2,"6,6",42,2,1,1,1,2,"0,94","0,89",297,North America +99,Quiet Bright 2 Bedroom Downtown!!!!,8300483,Michael,Toronto,100,0,0,3906,1,3,1,"6,67",7,3,1,2,2,1,0,0,296,North America +100,Great Gerrard - Mona Lisa Suite,377846,Nick & Nena,Toronto,70,0,0,4834,1,3,18,"6,85",33,2,1,0,0,19,1,"0,74",23,North America +101,Unbeatable Downtown Location,5559775,Aleksandra,Toronto,499,0,0,4059,1,3,1,"6,64",16,4,1,2,2,1,0,0,187,North America +102,Rare Trinity Bellwoods w/ Outdoor Kitchen & Living,6073307,Victoria,Toronto,275,0,0,4025,1,3,1,0,0,6,"1,5",4,4,2,1,0,92,North America +103,The Great Gerrard - New York Suite,377846,Nick & Nena,Toronto,70,0,0,4834,1,3,18,"6,53",38,2,1,1,0,19,1,"0,74",114,North America +104,Annex/Little Italy Private Room,4966594,Mark,Toronto,99,1,1,4104,1,2,2,"6,8",40,2,1,1,1,2,"0,94","0,89",294,North America +105,"Away to Relax! Lake View, 2nd floor, Private Bath",8546454,Marilyn Lucille,Toronto,125,1,1,3896,1,2,1,"6,93",456,2,1,1,1,2,1,1,202,North America +106,Garden Aptartment,6306986,William,Toronto,131,1,0,4010,1,3,1,"6,64",88,4,1,1,2,1,1,"0,97",302,North America +107,Serviced spacious two bedrooms apartment,8569918,Sharon,Toronto,285,0,0,3895,1,3,35,"6,45",38,8,1,2,4,35,"0,87","0,82",290,North America +108,One bedroom and private bath by the lake,6323589,Ranjani,Toronto,114,0,0,4009,1,2,1,7,5,2,"1,5",1,1,1,0,"0,77",1,North America +109,Modern Condo - Heart of Downtown!,2783292,Euge,Toronto,130,1,0,4324,1,3,1,"6,57",37,2,1,1,1,2,1,"0,92",0,North America +110,Queen Room with Shared Bathroom,8569918,Sharon,Toronto,149,0,0,3895,1,2,35,"6,59",17,2,1,1,1,35,"0,87","0,82",266,North America +111,Downtown Park-front Home,6351139,Julie,Toronto,72,0,0,4007,1,3,1,0,0,3,1,1,0,1,0,0,113,North America +112,Private Room in Downtown Toronto RM3,4297691,Graeme,Toronto,76,1,1,4169,1,2,2,"6,81",410,1,"1,5",1,1,2,1,"0,98",40,North America +113,Chic Downtown Condo Loft + parking,6255603,Fojan,Toronto,152,0,0,4013,1,3,1,"6,63",52,2,1,1,1,1,"0,8",1,83,North America +114,"Stylish, Sophisticated Apartment with Shaded Patio",8702985,Clarence,Toronto,218,1,1,3888,1,3,10,"6,91",126,2,1,1,1,11,1,"0,95",86,North America +115,"2BR+Pullout, Sleeps 6, 1BA, Parking - Downtown Gem",8736297,Anju,Toronto,120,1,1,3887,1,3,1,"6,94",82,6,1,2,3,1,1,1,152,North America +116,COOL SPOT TORONTO-GRT DEAL-HIP HOOD,6410636,Deb,Toronto,95,0,0,4004,1,2,1,"6,87",23,1,1,1,1,1,1,"0,8",0,North America +117,renovated cozy bachelor downtown Toronto,6044009,Fabricio,Toronto,211,1,0,4027,1,3,1,"6,51",162,3,1,0,1,1,1,"0,96",243,North America +118,Deluxe King Room with En-Suite Bathroom,8569918,Sharon,Toronto,199,0,0,3895,1,2,35,"6,62",13,4,1,1,2,35,"0,87","0,82",111,North America +119,LUXURY CONDO NEXT TO KIPLING SUBWAY,173823,James,Toronto,115,0,0,5035,1,3,3,7,5,2,2,2,2,4,1,"0,67",236,North America +120,Spacious Room and Private Bath,6530148,Lin,Toronto,65,0,0,3997,,2,1,"6,65",22,2,1,1,0,1,0,0,277,North America +121,Queen Room (shared bathroom),8569918,Sharon,Toronto,129,0,0,3895,1,2,35,6,24,2,1,1,0,35,"0,87","0,82",278,North America +122,Downtown Apt Historic Cabbagetown,195472241,Vesta,Toronto,214,0,0,2149,1,3,1,"6,96",50,4,1,2,0,1,0,0,365,North America +123,Serviced Deluxe Family Apartment( self-contained),8569918,Sharon,Toronto,233,0,0,3895,1,3,35,"6,32",66,5,1,1,2,35,"0,87","0,82",324,North America +124,Beautiful Lower level/Basement Apt #1- two bedroom,3604846,Wies,Toronto,150,0,0,4243,1,3,4,"6,06",18,4,1,2,3,4,1,"0,5",176,North America +125,Serviced Deluxe King Studio Apartment,8569918,Sharon,Toronto,245,0,0,3895,1,3,35,"6,62",69,6,1,1,3,35,"0,87","0,82",306,North America +126,"1 bed + Office, Balcony, Close to Subway, Downtown",6662193,Prity,Toronto,103,0,0,3989,1,3,1,"6,77",13,2,1,1,1,1,0,"0,67",351,North America +127,lovely 2 +1 bdrm home + garage in midtown,8856331,Veronique,Toronto,279,0,0,3881,1,3,1,"6,96",25,6,2,3,5,1,0,"0,67",133,North America +128,Kaleidoscope - Executive Luxury Condo,5988339,Toronto Luxury Suites,Toronto,256,0,0,4031,1,3,20,0,0,4,2,2,2,20,1,"0,6",55,North America +129,Beautiful spacious west end house,6773217,Alexa,Toronto,225,1,1,3982,1,3,1,"6,89",37,4,"1,5",3,4,1,1,1,352,North America +130,Quixotic - Luxury Executive Condo,5988339,Toronto Luxury Suites,Toronto,192,0,0,4031,1,3,20,0,0,4,1,1,2,20,1,"0,6",2,North America +131,Suite in a Premium Hotel - Min 12 months.,579683,Liron,Toronto,85,1,0,4739,1,3,5,"6,48",43,4,1,1,3,5,1,1,116,North America +132,Oasis in Art Area of Queen West.,3406595,Inger,Toronto,155,1,1,4263,1,2,2,"6,85",133,2,1,1,1,2,1,1,359,North America +133,The best spot for a night. Women guest only,8859994,Em,Toronto,95,1,0,3880,1,2,4,"6,69",194,2,1,1,1,11,"0,96","0,92",20,North America +134,$ Ultimate House -Location Location,6911938,Roozbeh,Toronto,950,1,0,3974,1,3,2,"6,74",57,6,3,3,3,2,1,"0,9",23,North America +135,2 bedrooms basement apartment,9127235,Mrs Raphael,Toronto,90,0,0,3867,,3,1,"6,87",81,4,1,2,3,1,"0,33",0,206,North America +136,Enjoy Toronto Junction.,1025890,Amir,Toronto,65,0,0,4631,1,3,1,6,1,2,1,1,1,1,"0,33",0,0,North America +137,HOME is TORONTO,5244098,Pablo,Toronto,140,1,1,4082,1,3,1,"6,91",55,4,2,2,2,1,1,1,82,North America +138,One Bdrm Condo Kipling Subway,1553458,Jay,Toronto,125,1,0,4505,1,3,2,0,0,2,1,1,1,2,1,1,183,North America +139,Beaches Butterfly Garden Suite,7065012,Jude,Toronto,93,0,0,3965,1,3,2,"6,51",60,2,1,1,1,2,1,0,319,North America +140,Great House on Palmerston Blvd in downtown Toronto,44259,Susan,Toronto,869,1,1,5320,1,3,1,"6,82",147,10,"2,5",5,5,1,1,"0,85",325,North America +141,Uber Upper Beach 3 Bedroom Suite,377846,Nick & Nena,Toronto,137,0,0,4834,1,3,18,"6,35",26,6,1,3,3,19,1,"0,74",0,North America +142,Spacious downtown condo,9341346,Przemek,Toronto,146,0,0,3856,1,3,1,"6,2",5,2,1,1,2,1,0,0,115,North America +143,"Luxurious bath / Cosy, quiet room",8267190,Mable,Toronto,59,1,1,3908,1,2,2,"6,88",49,1,"1,5",1,1,5,1,"0,95",24,North America +144,Toronto Beach Paradise,7173548,Pasqua,Toronto,116,1,1,3960,1,3,2,"6,83",105,2,1,1,1,2,1,"0,98",130,North America +145,Beautiful sun filled Bloordale home,2499198,Melissa,Toronto,187,0,0,4354,1,3,1,"6,77",22,6,"1,5",3,3,1,1,0,351,North America +146,Spectacular Yorkville Condo,9532580,Santorini Sky,Toronto,249,1,0,3846,1,3,1,"6,84",60,4,"2,5",2,4,9,1,"0,99",115,North America +147,Newly reno'd 2-story house in family-friendly hood,613837,Brett,Toronto,249,1,1,4728,1,3,1,"6,95",21,5,"2,5",3,3,2,1,"0,93",218,North America +148,The Great Gerrard - Toronto Suite,377846,Nick & Nena,Toronto,90,0,0,4834,1,3,18,"6,62",21,2,1,1,1,19,1,"0,74",101,North America +149,Amazing Bed & Breakfast Downtown,8952336,Caroline,Toronto,153,0,0,3876,1,2,1,"6,91",221,2,1,1,0,1,1,"0,33",0,North America +150,Luxury Condo@Lakeshore Blvd West,7412574,Abhishek,Toronto,100,0,0,3947,1,2,1,"6,86",43,2,2,1,1,1,0,0,186,North America +151,Beautiful and Cozy Home for Rental,1989442,Pellumb,Toronto,85,1,0,4423,1,2,1,"6,77",592,3,1,1,2,1,1,1,340,North America +152,Suite in the Beaches,9773888,Zilla,Toronto,170,0,0,3833,,3,1,"6,75",4,3,1,1,2,1,1,"0,66",331,North America +153,Private room upstairs,7428349,Steve,Toronto,85,0,0,3947,,2,1,"6,81",21,1,1,1,1,1,0,0,282,North America +154,Private Roncesvalles coach house,9612740,Donna,Toronto,150,1,1,3842,1,3,1,"6,82",250,2,1,1,1,1,1,1,235,North America +155,Sunny Bachelor Studio,1102328,Isil,Toronto,150,0,0,4625,1,3,2,"6,56",9,1,1,1,1,2,1,"0,71",111,North America +156,Quiet Bluffs Apartment,1108156,Karen,Toronto,75,1,1,4623,1,3,2,"6,83",12,2,1,1,0,2,1,"0,83",58,North America +157,U5 New Modern Bachelor Downtown Apt,9923100,Ed,Toronto,70,0,0,3825,1,3,15,"6,79",71,2,1,1,1,15,1,"0,53",63,North America +158,FURNISHED MASTER BEDROOM/PRIVATE WC,9956811,Erica,Toronto,151,1,0,3823,1,2,10,"5,5",2,2,1,1,1,11,1,1,0,North America +159,Chic Condo in Trendy Queen West,7672988,Nadia,Toronto,88,0,0,3935,1,2,2,"6,78",33,2,1,1,0,2,1,0,129,North America +160,Large Luxury Suite in Downtown Toronto King West,4332338,Agnes Eva,Toronto,200,0,0,4165,,3,1,"6,44",9,3,1,1,1,1,0,0,275,North America +161,FURNISHED BASEMENT APARTMENT IN A RAISED BUNGALOW,6153361,Asoka,Toronto,75,0,0,4020,1,3,1,"6,95",19,2,1,1,2,1,1,"0,75",234,North America +162,Studio 3rd Floor Annex House Toronto,3496109,J,Toronto,73,0,0,4254,1,3,1,"6,64",11,2,1,1,1,1,1,"0,25",77,North America +163,Spacious 1BR Near St. Lawrence Market,1397143,Gregory,Toronto,130,0,0,4555,1,3,1,"6,74",100,2,1,1,1,1,1,"0,69",320,North America +164,"Warmth, Privacy, Coffee + Best Area",10061029,Gg,Toronto,57,1,1,3819,1,2,2,"6,93",95,2,1,4,1,3,1,1,356,North America +165,Cozy Colourful room/1 bedroom apt_ Special Deal,7026137,Oxana,Toronto,76,1,1,3968,1,2,2,"6,79",29,1,"1,5",1,1,2,1,1,0,North America +166,Super awesome condo w FREE Parking!,7895355,T,Toronto,200,1,0,3925,1,3,2,"6,63",74,2,1,1,1,2,1,1,275,North America +167,Priv room/priv bath in 7815 Tdot,10249063,Adila,Toronto,125,1,1,3810,1,2,1,"6,85",247,2,1,1,1,1,1,"0,91",239,North America +168,Noble - Luxury Executive Condo,5988339,Toronto Luxury Suites,Toronto,133,0,0,4031,1,3,20,0,0,4,1,1,1,20,1,"0,6",20,North America +169,Toronto Modern Urban Hideaway,1200367,Grace,Toronto,128,1,0,4604,1,3,4,"6,53",49,2,1,1,1,4,1,"0,91",115,North America +170,Cozy Condo near CN Tower - downtown,4356799,Thomas,Toronto,133,1,0,4162,1,3,12,"6,49",65,3,1,1,2,17,1,"0,97",241,North America +171,Upper Beach House Overlooking Park with Parking,9116432,Christian,Toronto,370,1,1,3867,1,3,1,"6,8",70,4,"1,5",3,4,1,1,"0,85",283,North America +172,Large & Bright Authentic Loft,174616,David,Toronto,180,0,0,5034,1,3,1,"6,86",205,3,1,2,2,1,1,"0,4",90,North America +173,"Superb Little Italy, Toronto2024CovidBoosterREQ",4991306,Julie,Toronto,130,0,0,4102,1,2,1,"6,92",184,2,1,1,1,1,1,"0,62",145,North America +174,The Greenhouse Loft,2385315,Mindy,Toronto,225,1,1,4368,1,3,1,"6,95",20,3,"1,5",1,2,1,1,"0,85",353,North America +175,"Rm Queen Bed. Qn St 1 min, Beach 5 min. park free",6884061,Roberta,Toronto,85,1,0,3976,1,2,1,"6,82",66,2,2,1,0,1,1,"0,98",59,North America +176,Cozy apartment in upper mid-town,2788736,Alvaro,Toronto,70,0,0,4323,1,3,1,"6,7",58,4,1,1,0,1,1,"0,75",178,North America +177,"The Yoga House, Yoga, Thai Massage",10845253,Celeste,Toronto,180,0,0,3778,1,2,1,7,9,2,1,1,1,1,0,0,0,North America +178,"Private Bath, Large Room, Great Bed",8267190,Mable,Toronto,59,1,1,3908,1,2,2,"6,82",46,2,"1,5",1,1,5,1,"0,95",83,North America +179,A gorgeous house in Queen West!,3400584,Maria,Toronto,449,0,0,4264,1,3,1,"6,85",46,7,2,3,4,1,"0,5","0,37",151,North America +180,One Bedroom Condo - 6 mths contract,195095,Urbano,Toronto,170,0,0,5015,1,3,11,7,3,2,1,1,1,11,1,"0,71",115,North America +181,Toronto Water Park City Luxury Suite,8306299,Zita,Toronto,170,0,0,3906,1,3,1,"6,77",425,4,"1,5",1,2,1,0,0,0,North America +182,High-End Lakefront 2 Bed + Office Boutique Condo,1816495,Katharine,Toronto,275,1,0,4447,1,3,3,"6,81",52,5,1,2,2,3,1,"0,9",115,North America +183,Toronto Waterfront Luxury Suite,11917344,Maria,Toronto,125,0,0,3740,1,3,1,0,0,2,1,1,1,1,0,0,159,North America +184,North Toronto near Sheppard West Subway,11933948,Marlene,Toronto,105,0,0,3739,1,3,1,"6,9",20,4,1,1,3,1,0,"0,5",207,North America +185,Bright & fun eco-home in great neighbourhood,11048824,Jen,Toronto,115,0,0,3769,1,3,1,"6,95",20,4,2,4,4,1,1,"0,36",193,North America +186,Kashaneh at LuxuryTwo Bedroom Meridian Building,12033867,Kashaneh,Toronto,259,0,0,3736,1,3,16,"6,34",67,4,2,2,3,17,"0,88","0,08",0,North America +187,A spectacular and authentic loft!,11076856,Joanne,Toronto,272,0,0,3768,1,3,2,"6,92",65,4,1,2,2,2,1,"0,78",93,North America +188,Bright Cheery Home Steps to Boardwalk,11259817,Pamela,Toronto,238,1,0,3761,1,3,1,"6,83",23,4,1,2,2,1,1,1,123,North America +189,Toronto - Rosedale Furnished Flat,864492,George,Toronto,185,1,1,4664,1,3,1,"6,8",10,3,2,3,2,6,1,"0,96",300,North America +190,ZEN LOFT IN HEART OF TRINITY BELLWOODS,2748348,Greg,Toronto,129,0,0,4327,1,3,1,"6,9",10,2,1,1,0,1,1,0,189,North America +191,Huge 1225 sq/f Luxury Leslieville Loft,11363304,Craig,Toronto,125,0,0,3758,1,3,1,7,1,4,2,2,2,1,1,0,63,North America +192,"Bright, Airy Two Bedrooms With Parking",5927200,Genevieve,Toronto,126,1,0,4035,1,3,1,"6,7",573,5,1,2,4,1,1,1,211,North America +193,2Bd/2Bth*Pool/Sauna/Gym*Parking*at Kipling Subway*,1553458,Jay,Toronto,130,1,1,4505,1,3,2,7,8,3,2,2,2,2,1,1,23,North America +194,Nice Home In the Stockyards,3279120,David,Toronto,155,0,0,4276,1,3,1,7,1,2,1,1,1,1,1,"0,33",275,North America +195,Traveler's Home - Downtown,4420576,Vicky,Toronto,66,0,0,4154,1,2,2,"6,64",100,1,1,1,1,2,1,"0,8",197,North America +196,1 BR-Close to DonMills & Eglinton 204,1854872,Nadarajah,Toronto,29,1,0,4441,1,2,5,"6,38",37,1,1,4,1,5,1,"0,86",52,North America +197,Fully Furnished Downtown Condo - stunning Lakeview,11729337,Ramy,Toronto,120,1,0,3746,1,3,1,"6,62",62,2,1,1,1,1,1,1,105,North America +198,Spacious Yorkville 2 BR 2 Bath - see YouTube vid!,7828359,Karma,Toronto,218,0,0,3928,1,3,2,"6,68",50,4,2,2,2,3,"0,84","0,48",92,North America +199,AUTHENTIC FEATHER FACTORY HARD LOFT!!!,5153529,Adrian,Toronto,210,1,1,4089,1,3,2,"6,77",239,2,1,1,1,3,1,"0,98",111,North America +200,Holistic Paradise in the Sky! Sauna Zen Den,10796912,D,Toronto,160,0,0,3781,1,3,1,"6,69",30,3,2,1,0,1,1,0,7,North America +201,"Private Bdrm - Shared 2 BdRm, on Yonge Subway Line",11897371,Frank,Toronto,83,0,0,3740,1,2,1,"6,87",47,2,1,1,1,1,1,"0,55",266,North America +202,Large eclectic room in a Shared loft,13066292,Jose,Toronto,107,1,1,3703,1,2,10,"6,86",189,2,1,1,1,15,"0,99","0,99",48,North America +203,2+den bedrooms downtown Toronto University,12028383,Maria,Toronto,253,0,0,3736,1,3,2,"6,71",170,5,2,2,5,2,1,"0,7",182,North America +204,South Beach Marina Townhomes,10088357,Bill,Toronto,80,0,0,3817,1,2,1,"6,74",67,1,1,1,1,1,0,0,23,North America +205,7815 Finch Executive Basement Tiny Room with Window 7815,32044025,Toronto,Toronto,60,0,0,3292,1,2,15,"6,65",17,1,2,1,1,16,1,"0,71",0,North America +206,Penthouse Loft - CN Tower/Lake View,12966791,Sic,Toronto,598,0,0,3706,1,3,1,"6,91",35,4,2,2,2,1,0,0,1,North America +207,JUNIOR MASTER BEDROOM /PRIVATE WC,9956811,Erica,Toronto,151,1,0,3823,1,2,10,"6,6",5,2,1,1,1,11,1,1,0,North America +208,Basement Studio Apt in Trendy area!,13066292,Jose,Toronto,64,1,0,3703,1,3,10,"6,63",169,3,1,0,1,15,"0,99","0,99",114,North America +209,Private Bsmt Studio Apartment w/Separate Entrance,17158005,Chris,Toronto,70,1,1,3600,1,3,1,"6,82",28,2,1,0,0,1,1,1,101,North America +210,Private Rooms w/t Shared Kitchen Bathrooms Laundry,13165498,Albena,Toronto,49,0,0,3700,1,2,3,"6,56",18,5,"1,5",3,3,3,1,"0,79",342,North America +211,Modern Bachelor - A downtown oasis!,17267972,Wei Li,Toronto,125,1,0,3598,1,3,2,"6,57",42,2,1,0,1,2,1,"0,94",140,North America +212,Perfect location TO's Little Italy!,6893345,Christine,Toronto,81,1,1,3975,1,2,3,"6,79",218,2,"1,5",1,1,3,1,1,292,North America +213,A garden in the heart of the city in historic apt,17306531,David,Toronto,110,0,0,3597,1,2,1,7,2,2,1,1,1,1,0,0,277,North America +214,2F Modern Bright Bachelor,9923100,Ed,Toronto,80,0,0,3825,1,3,15,"6,72",105,2,1,1,1,15,1,"0,53",190,North America +215,Midtown Toronto Ravine Oasis,6023215,Sheila,Toronto,295,1,1,4028,1,3,1,"6,83",25,4,"2,5",2,2,1,1,1,7,North America +216,"Beautiful Suite, 21 min. to downtown by Go Train",13647990,Paul,Toronto,80,1,1,3687,1,2,2,"6,9",543,2,1,1,1,2,1,"0,99",154,North America +217,Modern Downtown Condo on King West,9666005,Ethan,Toronto,150,0,0,3839,1,3,2,"6,78",70,2,1,1,1,3,1,"0,8",322,North America +218,Aberdeen Suite / Large Modern Bedroom Downtown,3982898,Andrew,Toronto,111,1,1,4205,1,2,3,"6,88",75,1,1,1,1,5,1,"0,96",328,North America +219,Bright and modern at Yonge/Eglinton,13777341,Naz,Toronto,89,0,0,3683,1,2,3,"6,86",45,2,"1,5",1,1,3,1,"0,58",166,North America +220,Cosy condo in the Landmark Yorkville Prince Arthur,13605224,Matthew,Toronto,246,0,0,3688,1,3,1,0,0,2,"1,5",1,1,11,"0,93","0,5",0,North America +221,"Small, Sweet & Complete Suite",377846,Nick & Nena,Toronto,61,0,0,4834,1,3,18,"6,61",97,2,1,0,1,19,1,"0,74",175,North America +222,The heart of Yonge & Eglinton,13777341,Naz,Toronto,77,0,0,3683,1,2,3,"6,92",37,2,"1,5",1,2,3,1,"0,58",80,North America +223,Vibrant downtown place,14052914,Alexandru,Toronto,255,1,1,3676,1,3,1,"6,88",218,2,1,1,1,1,1,1,282,North America +224,"Stunning, Splendid, Dupont Subway, Uni of Toronto",11078981,Priscilla,Toronto,115,0,0,3768,1,3,3,7,2,3,"1,5",2,2,3,1,"0,47",139,North America +225,Funky one-bedroom unit w/ Netflix,1007531,Julian & Joanna,Toronto,110,0,0,4636,1,3,1,"6,72",61,2,1,1,2,1,1,"0,75",333,North America +226,Zen Den - Kensington King Size Bed,14405518,Jordan,Toronto,117,1,0,3667,1,2,3,"6,77",316,2,1,1,1,3,1,"0,98",320,North America +227,Newly renovated 1 Bedroom + Den in Leslieville,14596877,Aldines,Toronto,145,0,0,3662,1,3,1,"6,89",27,2,1,1,1,1,1,0,252,North America +228,Bsmt Apt- Close 2 Don Mills & Eglinton,1854872,Nadarajah,Toronto,90,1,0,4441,1,2,5,"6,5",13,2,1,1,2,5,1,"0,86",237,North America +229,"Lake & City View, CN Tower Suite, Full Gym",18112977,Shabnam,Toronto,181,1,0,3579,1,3,1,"6,67",188,4,1,1,2,1,1,1,187,North America +230,"Cozy, Cool 2 Bedroom Little Italy",14761152,B,Toronto,129,1,0,3658,1,3,9,"6,72",61,6,1,2,3,9,1,"0,93",185,North America +231,Beautiful 1 Bedroom in Victorian Home!,14845797,Marty,Toronto,150,1,1,3656,1,3,1,"6,73",127,2,1,1,1,1,1,1,50,North America +232,Park View Downtown Apartment,18164545,Tetyana,Toronto,319,1,1,3578,1,3,1,"6,75",32,4,2,2,2,1,1,"0,97",326,North America +233,Fully Equipped 2-BR Condo in DT Toronto,785826,Sky View,Toronto,138,1,1,4683,1,3,51,"6,9",10,4,2,2,2,56,1,"0,93",313,North America +234,CHARMING 3BR HOME W/FIREPLACE & PRIVATE YARD W/BBQ,1112766,Alexandra,Toronto,149,1,0,4622,1,3,4,"6,86",85,6,1,3,3,9,1,1,106,North America +235,Close to everything,14963497,Jody,Toronto,250,0,0,3653,1,2,2,7,7,2,1,1,1,2,0,0,2,North America +236,"Comfy & Spacious, Fast Wifi, Close to Hospitals",18483787,Kylie,Toronto,95,1,1,3573,1,2,3,"6,8",171,2,"1,5",1,1,27,"0,97","0,99",348,North America +237,"Large downtown room, walking distance to transit!",9349836,Sarah,Toronto,80,1,0,3856,1,2,1,"6,76",176,2,1,1,1,1,1,"0,81",278,North America +238,Explore Downtown Toronto in Style (Dundas Square),18602771,Stanley,Toronto,85,1,1,3572,1,3,1,"6,77",158,2,1,0,4,1,1,1,176,North America +239,Furnished Downtown Studio Suite 4,304551,Kintoo,Toronto,55,1,0,4902,1,3,8,6,8,1,1,1,0,11,1,"0,97",113,North America +240,Tree top gem - Downtown Toronto,15150765,Phillip,Toronto,170,1,1,3649,1,3,1,"6,96",146,3,1,2,2,1,1,1,317,North America +241,Designer Penthouse with Grand Piano & Lake Views,4119982,Justin,Toronto,542,1,1,4189,1,3,1,"6,76",374,6,"2,5",3,3,2,1,1,152,North America +242,Luxe Life in Little Italy Dwtn 3 bed Open Concept,14761152,B,Toronto,370,1,0,3658,1,3,9,"6,73",81,8,2,3,2,9,1,"0,93",289,North America +243,Paradise accomodation,18507875,The Best,Toronto,250,0,0,3573,,3,1,"6,72",108,2,1,1,1,1,0,0,149,North America +244,Grill Up Good Times In Little Italy 2 Bedroom,14761152,B,Toronto,330,1,0,3658,1,3,9,"6,68",63,4,"1,5",2,2,9,1,"0,93",309,North America +245,Loft Living Little Italy Dwtn 3 Bedroom,14761152,B,Toronto,360,1,0,3658,1,3,9,"6,86",84,6,"1,5",3,3,9,1,"0,93",268,North America +246,Loft Living Little Italy Dwtn 2 bed 2 bath,14761152,B,Toronto,293,1,0,3658,1,3,9,"6,65",90,4,2,2,2,9,1,"0,93",305,North America +247,Garden Apartment Little Italy 2 Bdrm+Sofa Bed,14761152,B,Toronto,350,1,0,3658,1,3,9,"6,62",56,6,"1,5",2,3,9,1,"0,93",269,North America +248,Apt Suite 10-min Walk to GO Train TTC Lake Toronto,19293149,Katherine,Toronto,129,0,0,3561,1,3,3,"6,77",93,2,1,0,2,3,1,"0,71",2,North America +249,Perfect Pied A Terre Little Italy 1 Bdrm+Sofabed,14761152,B,Toronto,125,1,0,3658,1,3,9,"6,55",53,4,1,1,1,9,1,"0,93",61,North America +250,One-bedroom loft on Ossington ave,10731800,Yury,Toronto,165,0,0,3785,1,3,1,"6,81",37,2,1,1,1,1,0,0,0,North America +251,Charming Lane House in Little Italy,19532948,Cher,Toronto,140,0,0,3557,1,3,1,"6,92",243,5,1,2,3,2,1,0,97,North America +252,Cozy Midtown Guest Suite,3583058,Bibian,Toronto,185,0,0,4245,1,3,1,"6,61",60,2,1,1,1,2,1,"0,72",178,North America +253,3 bdrm home in trendy family-friendly neighborhood,11627383,Bee,Toronto,350,0,0,3749,1,3,1,"6,9",20,6,1,3,3,1,1,"0,41",129,North America +254,Great room in beautiful house,9423995,Ruth,Toronto,259,0,0,3852,1,2,2,"6,69",50,2,"1,5",1,2,2,0,0,0,North America +255,1+Den Luxury Condo,16594320,Murray & Harry,Toronto,115,1,1,3614,1,3,2,"6,85",216,4,1,1,3,2,1,1,52,North America +256,Cosy Queen W garden apt w/ parking,16044016,Elizabeth,Toronto,190,0,0,3627,1,3,1,"6,78",32,2,1,1,1,1,1,"0,57",287,North America +257,Loft Bedroom in Modern Home,10022956,John,Toronto,85,1,1,3821,1,2,1,"6,93",116,2,1,1,1,1,1,"0,94",297,North America +258,Luxury 1 Bedroom @ Yonge & Bloor 6 Months Min stay,6739062,Toronto Condo,Toronto,250,0,0,3984,1,3,2,6,6,2,1,1,1,2,0,0,0,North America +259,Downtown Queen St. W Loft w Parking,19984389,Mike,Toronto,89,0,0,3549,1,3,2,"6,82",51,2,1,1,1,3,"0,9","0,63",67,North America +260,"Bright, spacious studio",19985328,Christopher,Toronto,79,1,1,3549,1,2,1,"6,81",161,2,1,1,4,1,1,1,286,North America +261,"Trendy King/Queen West Studio, private entrance",8024143,Edward,Toronto,214,0,0,3919,1,2,1,"6,42",38,2,1,0,2,2,1,"0,57",276,North America +262,Absolutely perfect location,9423995,Ruth,Toronto,182,0,0,3852,1,2,2,"6,66",38,1,"1,5",1,0,2,0,0,0,North America +263,☆☆☆☆☆ Modern 2bd/2bth Suite Downtown Toronto,11206244,Superhost,Toronto,158,0,0,3763,1,3,19,"6,79",33,5,2,1,2,20,1,"0,6",30,North America +264,Nanny Suite,9330404,Stephanie & Samuel,Toronto,75,0,0,3857,1,2,1,"6,75",72,2,"1,5",1,2,1,0,1,210,North America +265,Cozy DT Condo for Two,6563454,Michael,Toronto,199,1,1,3995,1,3,1,"6,84",25,2,1,1,1,1,1,1,316,North America +266,Beaches Suite Between Queen St. and The Boardwalk,20323579,Robert,Toronto,100,1,1,3542,1,3,1,"6,78",79,4,1,1,2,1,1,"0,89",129,North America +267,1 bdr condo next Liberty Village Long Term only,16306520,Nadia,Toronto,102,0,0,3621,1,3,2,"6,82",11,3,1,1,2,2,1,0,0,North America +268,The Loft / Lower Rate / Welcome Health Care worker,1170217,Frank,Toronto,105,1,1,4611,1,2,2,"6,75",28,2,1,1,1,2,1,1,94,North America +269,Queen St West world’s coolest site,20327820,Nathalia,Toronto,94,0,0,3542,1,2,2,"6,54",67,2,"1,5",2,1,2,"0,97","0,73",71,North America +270,Kensington and The Deep Blue Sea,14405518,Jordan,Toronto,94,1,1,3667,1,2,3,"6,81",193,2,1,1,1,3,1,"0,98",291,North America +271,Toronto High Park Apartment,1200367,Grace,Toronto,185,1,0,4604,1,3,4,"6,74",60,3,1,1,1,4,1,"0,91",84,North America +272,Explore Vibrant Hood from Charming Century Home,2224739,Liane,Toronto,511,1,1,4389,1,3,1,"6,69",117,7,"2,5",3,4,2,1,1,202,North America +273,Little Italy - Apartment,16590728,Courtney,Toronto,122,1,1,3614,1,2,3,"6,81",346,2,1,1,2,3,1,"0,97",343,North America +274,Apartment in the Heart of Toronto,20374225,Cole,Toronto,96,1,0,3541,1,3,2,"6,83",225,3,1,2,2,2,1,"0,92",115,North America +275,**RENOVATED HERITAGE HOME - FREE PARKING!**,698055,Robert,Toronto,99,0,0,4706,1,3,1,"6,68",451,2,1,0,1,1,0,0,0,North America +276,Beautiful Downtown Apartment,19300565,Akaash & Bethany,Toronto,400,1,1,3561,1,3,3,"6,73",119,6,1,3,3,3,1,"0,83",0,North America +277,A perfect city get away.,1442525,Erin,Toronto,280,1,1,4541,1,3,1,"6,66",36,4,1,2,2,2,1,1,270,North America +278,Private Guest Suite 1,6969076,Darren,Toronto,125,1,1,3971,1,2,3,"6,95",508,2,1,1,2,3,1,"0,9",322,North America +279,Stylish Beach Townhome,23671949,Karen,Toronto,182,0,0,3458,1,3,1,"6,67",21,3,2,2,2,1,"0,67",0,236,North America +280,Cozy apartment in artsy Junction - STR-2202-HYBRVL,9955099,Matthew,Toronto,80,0,0,3823,1,2,1,"6,85",151,2,2,1,2,1,0,1,179,North America +281,Gorgeous 3-bedroom in Toronto Annex,23699476,Alison,Toronto,198,0,0,3457,1,3,1,"6,68",103,4,"2,5",3,3,2,1,"0,74",165,North America +282,Beautiful 1 bed apt in Queen West,20070003,Aoife,Toronto,156,1,0,3547,1,2,1,"6,76",367,2,1,1,1,1,1,1,46,North America +283,Downtown Penthouse Loft,23720058,Jen,Toronto,137,0,0,3457,1,3,1,"6,47",17,2,"1,5",1,0,1,0,0,236,North America +284,Artist Family Loft in WQW (Artist CV required),23747851,Lindsay,Toronto,110,0,0,3456,1,3,1,"6,83",6,4,1,2,2,1,1,0,103,North America +285,Private Detached Coach House Rosedale,20623894,Laura,Toronto,282,0,0,3535,1,3,1,"6,39",18,2,2,1,1,1,0,0,0,North America +286,Cozy 3 Bedroom Home in Toronto,7895355,T,Toronto,200,1,0,3925,1,3,2,"6,25",16,6,"1,5",3,3,2,1,1,192,North America +287,Country in the City! Near nature and also downtown,1646497,David,Toronto,589,1,1,4481,1,3,2,"6,87",79,6,2,4,4,4,1,"0,9",93,North America +288,Entertainment District 2 bd&2 bth *Special* ☆☆☆☆☆,11206244,Superhost,Toronto,888,0,0,3763,1,3,19,"6,92",66,4,"1,5",2,2,20,1,"0,6",0,North America +289,"Private suite Bloor W Village near subway, High Pk",5724438,Janis,Toronto,140,1,1,4048,1,2,1,"6,88",195,3,1,1,2,1,1,"0,92",128,North America +290,Amazing Suite with Beautiful Views,11206244,Superhost,Toronto,799,0,0,3763,1,2,19,0,0,2,1,1,1,20,1,"0,6",0,North America +291,Private bedroom suite,14963497,Jody,Toronto,300,0,0,3653,1,2,2,0,0,3,1,1,1,2,0,0,2,North America +292,"Studio near the Beaches Toronto, free parking",1813554,Sophie-Anne,Toronto,59,1,0,4448,1,3,1,"6,68",156,2,1,1,2,1,1,"0,86",144,North America +293,Huge bright quiet 2BR apt in charming century home,1394631,Joe,Toronto,212,0,0,4556,1,3,2,"6,85",251,6,1,2,2,2,1,"0,8",155,North America +294,Private cabin in backyard garden,20844756,Steve,Toronto,55,0,0,3529,1,2,1,"6,83",140,3,3,1,0,1,"0,88","0,67",183,North America +295,WEST IS THE BEST! WICKED DIGS IN TO,14327586,Heidi And Paul,Toronto,115,0,0,3669,1,3,2,"6,71",38,6,1,2,2,2,0,0,40,North America +296,Zoom Couture Furnished Condo,11206244,Superhost,Toronto,895,0,0,3763,1,3,19,0,0,3,1,1,1,20,1,"0,6",1,North America +297,"High Park, clean, airy, subway",15845534,Mary,Toronto,50,0,0,3632,1,3,1,"6,88",9,1,1,1,1,2,1,"0,5",132,North America +298,Greek Town Garden Suite,1015786,Roberto,Toronto,275,1,1,4634,1,3,1,7,6,4,"1,5",2,2,1,1,"0,87",216,North America +299,Modern Bachelor Condo Downtown TO,17267972,Wei Li,Toronto,130,1,0,3598,1,3,2,"6,53",45,2,1,0,1,2,1,"0,94",161,North America +300,"Large, sunny room with bathroom!",12197346,Jana,Toronto,258,0,0,3730,1,2,1,"6,86",28,1,1,1,1,1,1,"0,33",275,North America +301,Luxurious Apartment in Toronto,17896017,Shereen,Toronto,85,1,0,3584,1,3,2,"6,39",54,2,1,1,1,2,1,1,47,North America +302,CN Tower View 1 Bdrm - Monthly Discount,24122779,Shabnam,Toronto,212,1,0,3446,1,3,6,"6,63",8,2,1,1,1,9,1,"0,99",205,North America +303,Luxury 2Bed 2Bath LakeView DTown,963354,Darryl,Toronto,226,0,0,4645,1,3,1,"6,68",209,4,2,2,2,1,"0,67",1,1,North America +304,Cozy private bed and bath,21125457,Carla,Toronto,77,1,1,3522,1,3,1,"6,93",14,2,1,1,1,1,1,"0,95",326,North America +305,Luxurious 2 Bedroom Lakeview Apt.,24122779,Shabnam,Toronto,334,1,0,3446,1,3,6,"6,56",65,4,2,2,2,9,1,"0,99",176,North America +306,Private Flat in Trendy Area [28+ days bookings],18324777,Lisa,Toronto,110,0,0,3575,,3,1,"6,43",125,3,1,1,2,1,0,0,183,North America +307,Private Room Separate Entrance Steps to Subway (2),22301317,Boguslaw,Toronto,65,1,1,3493,1,2,3,"6,79",78,1,1,1,1,3,1,"0,99",66,North America +308,Modern designer private room,4195876,Dale,Toronto,172,0,0,4181,1,2,2,"6,9",21,2,1,1,1,2,0,0,186,North America +309,“Opium Den”private bedroom with En-suite & terrace,24175706,Tanya,Toronto,229,0,0,3444,1,2,4,"6,74",45,2,2,1,1,4,0,0,0,North America +310,1 bedroom apartment in Leslieville,24202142,Ryan,Toronto,120,1,1,3444,1,3,2,"6,84",68,2,1,1,1,2,1,1,45,North America +311,Truly Unique & Serene Guesthouse in Brockton,3225688,Nedo,Toronto,89,1,1,4281,1,3,6,"6,81",122,2,1,0,1,6,1,"0,93",95,North America +312,Harbourfront 1 bedroom condo,2978661,Myra,Toronto,150,0,0,4305,1,3,1,7,3,2,1,1,1,1,0,0,0,North America +313,Amazing Views! Downtown Toronto One Bedroom Condo,11552886,Christine,Toronto,99,0,0,3752,1,3,1,7,2,2,1,1,2,3,"0,75","0,4",243,North America +314,Beautiful room with free gym near downtown,21724217,Florentina,Toronto,44,0,0,3507,1,2,1,7,49,1,1,1,1,1,1,"0,69",257,North America +315,Zoom Awesome 2 Bed + 1 Bath w/ Balcony,11206244,Superhost,Toronto,852,0,0,3763,1,3,19,"6,82",51,5,1,2,2,20,1,"0,6",1,North America +316,City Centre 2 Bedroom Distillery,846505,Julie,Toronto,200,1,0,4669,1,3,53,"6,62",215,6,1,2,3,102,1,1,275,North America +317,Garden Apartment in Queen West Home,1699308,Devin,Toronto,445,1,1,4470,1,3,2,"6,75",23,2,1,1,1,2,1,"0,95",310,North America +318,Reve - Elegant Penthouse Suite,4356799,Thomas,Toronto,160,1,0,4162,1,3,12,"6,42",74,3,1,1,2,17,1,"0,97",245,North America +319,Great and Bright room with a QUEEN size bed!,21821768,Esther,Toronto,70,1,1,3505,1,2,4,"6,94",71,1,1,1,1,4,1,"0,91",174,North America +320,Affordable Two Bedroom Apartment,21878865,Violeta,Toronto,175,0,0,3503,1,3,2,"6,83",6,4,1,2,1,2,"0,5",0,90,North America +321,Spacious 1 bedroom in West Queen West area,243537,Danielle,Toronto,150,0,0,4969,1,3,1,"6,73",26,1,1,1,0,1,1,0,260,North America +322,★ Amazing downtown 3 Beds @ Union & Harbour★,187320,Downtown Suite Living,Toronto,155,0,0,5022,1,3,8,"6,78",9,3,2,3,3,8,1,"0,54",123,North America +323,Steps to TIFF-King West 5-STAR 1 Bed+Den Loft+pkg!,21936998,Bill,Toronto,300,0,0,3502,1,3,1,"6,73",76,4,1,2,1,1,0,0,276,North America +324,"Stylish 1 bed condo, ideal location",23518355,Lee-Anne,Toronto,99,1,1,3461,1,3,24,"6,71",31,2,1,1,1,24,1,1,185,North America +325,Executive Bright 2 bed 2 bath w amazing views,22151303,Tom,Toronto,399,1,1,3496,1,3,1,"6,92",13,4,2,2,0,1,1,"0,98",189,North America +326,Furnished cozy whole unit in the Heart of Toronto!,3421866,Ming,Toronto,150,0,0,4262,1,3,1,"6,74",19,2,1,1,2,1,1,"0,57",186,North America +327,Loving space & free parking!,21975497,Anna,Toronto,54,0,0,3501,1,2,1,"6,52",65,1,1,1,1,1,0,0,141,North America +328,King & Spadina Loft Downtown Toront,9325230,Thilani,Toronto,257,0,0,3857,1,3,1,"6,83",12,2,1,1,0,1,0,0,187,North America +329,Cozy Cottage in Lakeside Community,16153594,Vince,Toronto,185,1,0,3625,1,3,1,"6,62",87,4,1,2,2,1,1,"0,96",52,North America +330,Be at home in the heart of the city,24500536,Amanda,Toronto,135,0,0,3436,1,3,2,"6,74",67,2,1,1,1,2,1,0,79,North America +331,Family gateway @ Greek Town,22382928,Aleksa,Toronto,200,1,0,3491,1,2,2,0,0,2,1,1,0,2,1,1,0,North America +332,Downtown Private Stylish Suite,22431111,Michael & Jennifer,Toronto,109,1,1,3489,1,3,3,"6,89",159,2,1,1,1,4,1,"0,82",79,North America +333,Explore the City Centre from Condo with Views,19578117,Robert,Toronto,335,1,1,3556,1,3,1,"6,83",81,2,1,2,2,1,1,1,78,North America +334,Toronto_Birchcliff_Beaches,7738907,Dany,Toronto,95,0,0,3932,1,3,1,"6,9",20,1,1,1,1,1,0,1,115,North America +335,Warm beautiful bedroom,10727203,Sara,Toronto,57,1,1,3785,1,2,1,"6,96",23,2,1,1,1,2,1,1,303,North America +336,Art Deco Gem with Style - weekly rates,12535667,Lennie,Toronto,121,0,0,3719,1,3,3,"6,64",28,3,1,1,2,3,"0,9","0,24",266,North America +337,Your own hip and humble home,22740331,Deborah,Toronto,117,1,1,3481,1,3,2,"6,91",36,2,1,1,2,2,1,"0,83",292,North America +338,"Cool 1 bedroom, unbeatable location",23518355,Lee-Anne,Toronto,109,1,1,3461,1,3,24,"6,64",22,2,1,1,1,24,1,1,185,North America +339,Queen West High Ceiling Lower Level Apt,5593837,Daryanaz,Toronto,192,0,0,4056,1,2,1,"6,63",62,2,1,1,1,1,0,0,1,North America +340,Charming Cozy Home In Leslieville.,24840870,John,Toronto,300,1,1,3426,1,3,1,"6,8",135,5,2,3,3,1,1,"0,87",176,North America +341,"Entire home! Location, style, quiet, & character.",24938790,Kelly,Toronto,230,1,1,3423,1,3,1,"6,79",87,2,"1,5",1,1,1,1,"0,91",255,North America +342,Spectacular 2BR Loft and 12ft Ceilings - Must See!,15942957,Kevin,Toronto,313,1,1,3630,1,3,2,"6,87",325,4,1,2,2,4,1,"0,97",233,North America +343,Modern Downtown Condo 1br,18018834,Al,Toronto,109,0,0,3581,1,3,1,"6,88",100,2,1,1,1,1,1,"0,67",289,North America +344,Toronto Downtown Riverdale One-bedroom Apt,9559070,Mary Collette,Toronto,139,1,1,3845,1,3,1,"6,81",82,2,1,1,1,1,1,"0,9",86,North America +345,Micro Suite 10-Min Walk GO Train Lake TTC Toronto,19293149,Katherine,Toronto,111,0,0,3561,1,3,3,"6,85",115,2,1,1,1,3,1,"0,71",187,North America +346,Priv. Cozy Room- (Beaches/Leslieville),9876434,Jeanette,Toronto,99,0,0,3828,1,2,1,"6,43",7,1,1,1,1,1,0,"0,57",1,North America +347,Zoom Victory Fashion District,11206244,Superhost,Toronto,659,0,0,3763,1,3,19,7,2,4,1,1,0,20,1,"0,6",0,North America +348,Kashaneh One Bedroom Apartment,12033867,Kashaneh,Toronto,79,0,0,3736,1,3,16,"4,75",4,2,1,1,1,17,"0,88","0,08",0,North America +349,Kashaneh at Fully Private Room,12033867,Kashaneh,Toronto,50,0,0,3736,1,1,16,"6,29",7,1,1,1,0,17,"0,88","0,08",0,North America +350,Charming 2nd Story walk-up in Seaton Village,11079714,Elaine,Toronto,150,1,1,3768,1,3,1,"6,86",128,5,1,2,0,1,1,1,68,North America +351,Gorgeous modern apartment on the danforth.,23310500,Theofanis,Toronto,95,1,1,3467,1,3,11,"6,8",108,3,1,1,1,11,"0,82",1,289,North America +352,"""New York Loft"" *Near Four Seasons Hotel""*",25036890,Patrick,Toronto,175,1,1,3420,1,3,3,"6,87",46,4,1,2,1,3,1,1,272,North America +353,Sunny 1 bdrm Yard/Parking/Priv Entr,23329894,Stephen,Toronto,350,0,0,3466,1,3,1,"6,5",4,2,1,1,1,1,0,0,0,North America +354,Great and Bright room with a Double size bed!,21821768,Esther,Toronto,67,1,1,3505,1,2,4,"6,79",35,1,1,1,1,4,1,"0,91",141,North America +355,"Quiet, spacious 2 floor, 2BR apart",17430748,Carey,Toronto,220,0,0,3594,1,3,3,"6,79",25,4,"1,5",2,3,3,1,"0,75",219,North America +356,"Toronto Beaches 1 bedroom $2,000.00 per month",23417144,Lindsay,Toronto,65,1,1,3464,1,3,2,"6,91",69,2,1,1,2,2,1,1,266,North America +357,Furnished Condo In The Heart of Downtown Toronto,25118298,Sam,Toronto,202,1,0,3417,1,3,1,"6,73",80,2,1,1,0,1,1,1,226,North America +358,warm house B01,22735639,Mandy(Xiuqin),Toronto,41,0,0,3482,1,2,3,"6,42",12,2,1,1,1,8,"0,29","0,67",191,North America +359,Modern Spacious 1 Bed + Downtown,23484246,Anthony,Toronto,139,0,0,3462,1,3,1,7,1,2,1,1,1,1,1,"0,5",240,North America +360,Cute 3bdrm home a quick subway ride to downtown TO,5468710,Melissa,Toronto,169,1,0,4065,1,3,2,"6,67",49,5,1,3,3,2,1,"0,96",141,North America +361,Roncy & Queen West home,25161444,Sean,Toronto,385,0,0,3416,1,3,1,"6,72",76,9,2,4,4,1,1,"0,71",152,North America +362,Fantastic Family Get Away- sleeps 8,23026810,Elizabeth Ann,Toronto,690,1,1,3474,1,3,1,"6,83",36,8,2,3,4,1,1,"0,92",204,North America +363,Charming Leslieville House for 2-6,6486426,Sarah,Toronto,250,0,0,3999,1,3,1,0,0,6,1,2,3,1,1,0,142,North America +364,1 Bedroom Suite - Downtown Core,22773087,Calvin,Toronto,99,1,1,3481,1,3,7,"6,85",792,3,1,1,1,12,1,"0,95",207,North America +365,Private Room on Third Floor with New Bathroom!,10304305,Tamara,Toronto,89,1,1,3808,1,2,2,"6,88",133,1,1,1,1,3,1,"0,88",291,North America +366,"Lovely 3bed Victorian House, subway",6102871,Karen,Toronto,169,0,0,4023,1,3,1,"6,8",5,5,1,3,3,1,0,0,365,North America +367,Darling Mansion: Magic Carpet Ride,24175706,Tanya,Toronto,119,0,0,3444,1,2,4,"6,83",82,2,1,1,1,4,0,0,0,North America +368,A Great house for Great people :),21821768,Esther,Toronto,58,1,1,3505,1,2,4,"6,9",89,1,1,1,1,4,1,"0,91",51,North America +369,Luxury 1 Bedroom Condo in Downtown Toronto,19006819,Roman,Toronto,289,1,1,3566,1,3,1,"6,79",81,4,1,1,2,1,1,1,174,North America +370,"Cozy private Studio Flat, 21 min to downtown by GO",13647990,Paul,Toronto,100,1,1,3687,1,2,2,"6,86",569,2,1,1,0,2,1,"0,99",166,North America +371,Spacious room steps from subway!,24500536,Amanda,Toronto,65,0,0,3436,1,2,2,"6,7",27,2,1,1,1,2,1,0,302,North America +372,"5 bdrm, 4.5 bath Stunning House in Midtown",1903033,Christie,Toronto,900,0,0,4434,1,3,1,"6,8",20,8,"4,5",5,6,1,1,"0,4",70,North America +373,Great location,16375413,Coleen,Toronto,105,1,1,3619,1,3,2,"6,91",47,2,1,1,0,2,1,"0,9",80,North America +374,GLOBETROTTER BOHEMIA,25655882,Viia,Toronto,300,0,0,3404,1,3,1,"6,45",20,3,1,2,2,1,1,"0,7",1,North America +375,High Park Apt. with parking,26025243,Lisa,Toronto,150,0,0,3397,1,3,1,"6,85",258,2,1,1,2,1,1,"0,8",90,North America +376,The LeslieSuite,25509879,Jim,Toronto,121,0,0,3407,1,3,1,"6,69",80,2,1,2,2,2,1,"0,67",183,North America +377,Cosy Loft beside Kensington Market,69432,Angel,Toronto,120,1,0,5225,1,3,9,"6,6",89,2,1,1,2,9,1,1,186,North America +378,Cosy 2BD house in the Junction,5844695,Alana & Geoff,Toronto,160,0,0,4040,1,3,1,7,2,3,2,2,2,1,0,0,237,North America +379,Studio Apartment,25278998,KTC Property Management Ltd.,Toronto,150,0,0,3413,1,3,19,"6,68",75,2,1,0,1,21,"0,96","0,45",365,North America +380,Central city basement apartment,1157848,Jimi,Toronto,100,0,0,4613,1,3,1,"6,83",127,3,1,1,3,1,0,0,282,North America +381,Amazing Downtown King West Luxury Condo,25770450,Lorraine,Toronto,120,1,1,3402,1,3,1,"6,83",18,2,1,1,1,1,1,1,53,North America +382,Artist's Lovely Cabbagetown Arts & Crafts Downtown,4916259,Victoria,Toronto,299,1,1,4108,1,3,1,"6,73",106,4,1,2,3,1,1,"0,94",65,North America +383,Cozy Furnished Studio Near Subway,8925040,Pierre,Toronto,65,0,0,3878,1,3,1,"6,78",33,1,1,1,0,1,1,"0,78",355,North America +384,Luxury Suite Entertainment District,26326951,Mona,Toronto,175,0,0,3391,1,3,1,"6,66",118,2,1,1,0,1,1,"0,25",115,North America +385,Awesome 1 + 1 Condo @ A+ Location - Free Parking!,14317813,K.J,Toronto,276,1,0,3669,1,3,1,"6,63",234,4,1,1,2,1,1,1,144,North America +386,Private room in house,26329035,Heather,Toronto,150,0,0,3391,1,2,1,"6,94",32,2,1,2,0,2,0,0,20,North America +387,1 Larg Studio + den furnished,28969849,Hermann,Toronto,75,0,0,3342,1,3,1,7,5,2,1,1,1,1,1,0,84,North America +388,Victorian Gem in Midtown Toronto,12600811,Ray,Toronto,500,0,0,3717,1,3,2,0,0,5,3,3,3,3,0,0,0,North America +389,"International Family in Toronto, CA",26651499,Helen,Toronto,68,0,0,3385,1,2,1,"6,36",22,2,1,1,3,1,0,0,237,North America +390,Spacious 1BD in downtown city core,20841116,Deborah Charmaine,Toronto,209,1,1,3529,1,3,1,"6,93",228,2,1,1,1,1,1,"0,94",182,North America +391,Large Luxury Condo - Downtown Toronto - W/ Parking,29120067,Zu,Toronto,185,0,0,3340,1,3,1,7,1,3,2,2,2,1,1,0,238,North America +392,Newly Reno’d Modern Suite in Leslieville,18194304,Raouf,Toronto,98,0,0,3577,1,3,1,"6,89",76,4,1,1,2,1,"0,5",1,84,North America +393,Great Value Private Bedroom in Stunning Home,29389698,Janvier,Toronto,48,1,1,3335,1,2,5,"6,92",36,2,"1,5",1,1,5,1,"0,91",298,North America +394,Shihtzu Haven,29405328,Adrien,Toronto,146,1,1,3335,1,2,1,"6,87",196,2,1,1,0,1,1,"0,99",30,North America +395,Starry Starry Night in Kensington Market - Room,642419,Michele,Toronto,99,1,1,4720,1,2,2,"6,88",153,1,1,1,1,2,1,1,307,North America +396,Executive Downtown Condo w Parking,19984389,Mike,Toronto,89,0,0,3549,1,3,2,"6,85",34,2,1,1,1,3,"0,9","0,63",14,North America +397,Stunning Guesthouse Oasis & Summer Garden in Downtown Core,1528160,Tyrone Louis-Philippe,Toronto,161,1,1,4514,1,3,1,"6,92",523,4,1,1,1,2,1,"0,86",82,North America +398,Contemporary cozy home in the Annex,3260313,Michelle,Toronto,158,1,0,4278,1,3,1,"6,84",163,4,"1,5",2,2,3,1,"0,84",14,North America +399,"U of T area, 1st floor room with new Endy bed",74582,Neil,Toronto,100,1,0,5207,1,2,3,"6,76",360,1,1,1,1,3,1,1,136,North America +400,"Toronto Gem, Free Parking, Walk to TTC Train/YorkU",27392210,Achira,Toronto,159,1,1,3370,1,3,1,"6,6",15,4,1,1,1,1,1,"0,86",144,North America +401,Charming and welcoming,27425490,Kinmond,Toronto,140,0,0,3370,,3,1,0,0,4,2,3,3,1,0,0,172,North America +402,Darling Mansion: The Boudoir Room,24175706,Tanya,Toronto,149,0,0,3444,1,2,4,"6,92",37,2,1,1,1,4,0,0,1,North America +403,Darling Mansion: The Flamingo Room,24175706,Tanya,Toronto,119,0,0,3444,1,2,4,"6,88",86,2,1,1,1,4,0,0,0,North America +404,15 mins from subway,23753563,Shaun,Toronto,89,1,1,3456,1,3,1,"6,6",15,2,1,0,0,1,1,1,112,North America +405,"Broadway on King-Downtown, Ballroom, Entertainment",113345,Adela,Toronto,99,0,0,5120,1,3,5,"6,5",14,3,1,1,2,5,"0,9","0,42",44,North America +406,Beautiful Bright Little Italy Apartment,3503227,Lauren,Toronto,140,0,0,4254,1,3,1,"6,62",40,2,1,2,0,1,0,0,1,North America +407,Beaconsfield Village Basement Abode,1699308,Devin,Toronto,189,1,1,4470,1,3,2,"6,72",43,2,1,1,1,2,1,"0,95",277,North America +408,Cozy Apartment in Midtown Toronto,19899878,Wenzel,Toronto,175,0,0,3550,1,3,1,0,0,3,1,1,1,1,0,0,2,North America +409,Come and stay in The Beach!,27923833,Daniel,Toronto,80,0,0,3361,1,2,1,"6,78",51,2,1,1,1,1,0,1,218,North America +410,Beautiful and Bright,16375413,Coleen,Toronto,500,1,1,3619,1,3,2,7,12,8,3,4,4,2,1,"0,9",192,North America +411,"Family Friendly 4BR house /w deck, close to Eatons",1704172,Vanessa,Toronto,708,1,1,4469,1,3,2,"6,85",137,8,3,4,6,3,1,1,267,North America +412,Executive Home in nice part of town,28020925,John,Toronto,412,0,0,3359,,3,1,0,0,10,2,4,4,1,0,0,0,North America +413,Beautiful Condo at 300 Front St,29871967,Vinny,Toronto,120,0,0,3327,1,3,1,"6,85",482,2,1,1,1,1,0,1,336,North America +414,Big spacious one bedroom+ living room private bath,16853533,Qingshan,Toronto,91,1,1,3607,1,2,1,"6,8",358,4,1,1,3,2,1,"0,94",287,North America +415,Private 2nd f. Room/Bath in Leslieville Victorian!,28180980,Sandra M,Toronto,160,1,1,3356,1,2,2,"6,84",160,2,1,1,1,2,1,1,213,North America +416,Upper Beach Place - 8 Bedroom House (sleeps 18),377846,Nick & Nena,Toronto,599,0,0,4834,1,3,18,"6,5",14,16,4,8,10,19,1,"0,74",303,North America +417,"I 7815 Leslieville- Large Bedrooms, Patio & SAVINGS",28299455,Deanne,Toronto,211,0,0,3354,1,3,6,0,0,3,1,2,2,6,"0,9","0,75",0,North America +418,Arts-centric House Downtown Toronto,30017611,Angela,Toronto,90,0,0,3325,1,2,2,"6,85",232,2,"1,5",1,1,2,0,0,365,North America +419,Art Studio Day Space,30018135,Kristina,Toronto,400,0,0,3325,,2,1,0,0,2,1,1,1,1,0,0,0,North America +420,West Queen West Quiet Main Floor,4905778,Christina,Toronto,116,0,0,4109,1,3,2,"6,75",81,2,1,1,1,3,1,"0,75",326,North America +421,Toronto Beaches Hideaway,19810848,Fiona,Toronto,146,1,1,3552,1,3,1,"6,85",26,2,1,1,1,1,1,"0,98",106,North America +422,Great basement bedroom with nice private bathroom!,21821768,Esther,Toronto,76,1,1,3505,1,2,4,"6,83",111,2,1,1,1,4,1,"0,91",171,North America +423,homey Spacious Room-basement-near Lawrence Station,20782996,Shengsheng,Toronto,89,1,1,3531,1,2,3,"6,75",170,2,1,1,1,3,1,"0,98",229,North America +424,Cozy & Bright Private Suite in Trinity Bellwoods,2339735,Amanda,Toronto,173,0,0,4374,1,3,1,"6,91",120,2,1,1,1,1,0,0,264,North America +425,Furnished Exec Home/Parking - Avail September 2024,2256396,John,Toronto,180,0,0,4384,1,3,1,"6,67",3,2,1,2,2,1,0,0,114,North America +426,"Luxury 2 bedroom, 2 bathroom apt.",30278848,Victor,Toronto,145,0,0,3320,,3,1,0,0,4,2,2,2,1,0,0,2,North America +427,ONLY AVAILABLE IN ADDITION TO BOOKING OF ROOM #1,28180980,Sandra M,Toronto,170,1,1,3356,1,2,2,"6,84",86,2,1,1,1,2,1,1,356,North America +428,"Free parking, Comfortable room, near the subway.",17209811,Dallas,Toronto,124,1,0,3599,1,2,1,"6,69",149,4,1,1,1,2,1,1,301,North America +429,Cozy funky bachelor with patio,2719705,Kimsa,Toronto,1000,0,0,4330,1,3,1,0,0,2,1,1,1,1,0,0,1,North America +430,Roncesvalles home for rent,30351907,Mark,Toronto,300,0,0,3319,,3,1,0,0,5,"1,5",4,1,1,0,0,0,North America +431,2-BR Bungalow in Mimico,9136826,Juliana,Toronto,200,0,0,3866,1,3,1,"6,79",14,4,1,2,3,1,0,"0,5",185,North America +432,Luxury One Bedroom @The Distillery,30441280,Tina,Toronto,200,1,0,3318,1,3,2,"6,79",19,1,1,1,1,4,1,"0,86",0,North America +433,Stylish Main Floor 1Bedrm Dwtn Apt,28299455,Deanne,Toronto,139,0,0,3354,1,3,6,0,0,2,1,1,1,6,"0,9","0,75",23,North America +434,Quaint Victorian Rowhouse Downtown Toronto,31146334,Kelly,Toronto,107,1,1,3306,1,2,2,"6,86",310,2,1,1,1,2,1,"0,94",316,North America +435,Free Parking 2BD Queen St. East,30474530,Biserka,Toronto,250,0,0,3317,1,3,1,"6,91",311,6,1,2,5,1,0,0,23,North America +436,Little Italy : Purple room,16590728,Courtney,Toronto,102,1,1,3614,1,2,3,"6,72",196,2,"1,5",1,1,3,1,"0,97",325,North America +437,Luxurious Suite 7815center Toronto University/Queen,441728118,Julie,Toronto,180,0,0,829,1,3,1,7,5,3,1,1,2,1,0,0,252,North America +438,Beautiful Split-Level Flat,1410677,Robert ('R.J.'),Toronto,200,1,0,4551,1,3,1,6,2,2,"1,5",1,1,1,1,1,18,North America +439,Beautiful south-facing 1-bedroom condo w/ lakeview,16064305,Kay,Toronto,110,0,0,3627,1,3,1,"6,73",15,2,1,1,1,1,0,"0,33",213,North America +440,"Sunny Bedroom @ York University, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,64",45,2,1,1,1,16,1,"0,99",119,North America +441,"★ Downtown 3 Beds 2 Baths @ Harbour, Union ★",187320,Downtown Suite Living,Toronto,160,0,0,5022,1,3,8,"6,5",8,4,2,3,3,8,1,"0,54",123,North America +442,Luxury Home in Prestigious Area,22899771,Christine,Toronto,999,0,0,3478,1,3,1,"6,54",14,8,"4,5",5,5,1,1,"0,8",21,North America +443,"Cozy Bedroom @ York University, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,46",25,2,1,1,2,16,1,"0,99",355,North America +444,"Snug BR @ York University, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,85",33,1,1,1,1,16,1,"0,99",291,North America +445,Yonge and Bloor Studio Apartment,31383165,Crystal,Toronto,121,0,0,3302,,3,2,"6,55",32,2,1,0,0,2,1,0,275,North America +446,"Parkdale, Toronto- Victorian Home",2216736,Brendan,Toronto,249,0,0,4390,1,3,1,"6,93",122,8,3,3,3,2,1,"0,57",358,North America +447,College Park :2Bd+2bth + Free parking,19309556,Arjun,Toronto,169,1,1,3561,1,3,1,"6,79",189,4,2,2,2,7,1,"0,96",104,North America +448,Family Friendly DonMills Detached,31527432,Joshua,Toronto,399,0,0,3300,1,3,1,"6,7",10,9,3,4,7,1,1,0,95,North America +449,Cosy Edwardian B&B in Upper Beach,22686317,Lois,Toronto,100,1,1,3483,1,2,1,"6,87",83,2,1,1,2,1,1,"0,92",336,North America +450,"Luxury City Townhouse, Riverdale / Leslieville",8880710,Lisa,Toronto,200,0,0,3880,1,3,1,"6,64",11,5,"2,5",2,3,2,1,"0,75",139,North America +451,Safe & Sound in the City,21267452,Jaci,Toronto,101,0,0,3519,,3,1,"6,89",111,2,0,1,2,1,0,0,2,North America +452,Trendy Downtown Suite with Working Space,29938723,Anca-Daniela,Toronto,115,1,0,3326,1,3,2,"6,72",290,2,1,1,2,2,1,1,242,North America +453,Authentic artist loft. open concept 16' ft ceiling,879198,Damon,Toronto,333,1,1,4662,1,3,1,"6,81",62,4,1,1,1,1,1,1,112,North America +454,Private and Quiet Room in Toronto,22239541,Jerome,Toronto,80,0,0,3494,,2,1,7,2,2,1,1,1,2,"0,5","0,5",1,North America +455,Cozy Studio Apt at Dufferin Subway,20771745,Sue,Toronto,75,0,0,3531,1,3,1,"6,84",147,3,1,0,0,1,1,0,228,North America +456,"Private Bunk Room @ York University, Toronto",30753730,Jeishan,Toronto,29,1,0,3312,1,2,16,"6,59",32,3,1,1,3,16,1,"0,99",61,North America +457,Stunning Condo @ the Heart of Toronto (w/ Parking),22049576,Rajnee,Toronto,221,0,0,3499,1,3,1,"6,72",141,2,1,1,1,1,1,"0,74",348,North America +458,Harborfront Penthouse/Gorgeous View,31624740,Shaps,Toronto,214,0,0,3299,1,3,1,7,5,2,1,1,1,2,0,0,185,North America +459,Gorgeous Renovated Victorian Roncesvalles Village,7845372,Rosalinda,Toronto,485,0,0,3927,1,3,1,"6,81",47,7,"1,5",4,4,1,1,"0,8",183,North America +460,Modern comfort in quiet area.,18818787,K.,Toronto,165,0,0,3569,1,2,1,7,3,2,"1,5",1,1,1,0,0,0,North America +461,"Entire Downtown Studio Apartment, 100 Walk Score",27084021,Rachna,Toronto,114,0,0,3376,,3,1,"6,67",3,2,0,0,0,1,1,0,151,North America +462,Exceptional View - Versatile Space,15644003,Judy,Toronto,112,0,0,3637,1,3,1,"6,94",78,4,1,1,3,1,1,0,118,North America +463,Downtown Condo with Amazing View,30597531,Jason,Toronto,105,0,0,3315,1,3,1,7,4,2,1,1,0,1,1,"0,27",149,North America +464,Stylish condo in downtown Toronto,31680863,Shahrzad,Toronto,230,1,0,3298,1,3,3,"6,71",7,2,1,1,1,3,1,"0,82",1,North America +465,"It's got Charm, Space & Comfort",29038344,Carol,Toronto,179,0,0,3341,1,3,1,"6,7",74,4,1,1,2,1,0,0,0,North America +466,Perfectly Located Luxury Condo Jurassic Park,10473588,Samantha,Toronto,405,1,1,3799,1,3,1,"6,71",98,4,2,2,2,1,1,"0,98",222,North America +467,TORONTO HOME FOR RENT,11023940,Jack,Toronto,500,0,0,3770,1,3,1,7,19,5,"1,5",3,4,1,1,"0,33",254,North America +468,"U of T area, cozy room with TV and workspace",74582,Neil,Toronto,94,1,0,5207,1,2,3,"6,78",480,1,1,1,0,3,1,1,117,North America +469,Luxury Downtown Condo on 48 Flr With Free Parking,33078730,Sabah,Toronto,113,1,1,3279,1,3,2,"6,84",233,2,1,1,1,3,1,"0,82",77,North America +470,Modern Rustic Laneway Entire Home w/Patio,6835147,Ashley,Toronto,175,1,1,3978,1,3,1,"6,81",32,3,1,2,2,1,1,1,92,North America +471,Beautiful Private Home in Downtown Toronto,31988627,Pamela,Toronto,439,1,1,3293,1,3,1,"6,75",12,5,"1,5",3,3,1,1,1,219,North America +472,Private Room in a Beautiful Home,29389698,Janvier,Toronto,43,1,1,3335,1,2,5,"6,95",21,1,"1,5",1,1,5,1,"0,91",51,North America +473,Charming Apt 2 Min Subway/sleeps 4,30654608,David,Toronto,75,1,0,3314,1,3,13,"6,73",313,4,1,1,2,15,1,"0,91",250,North America +474,Cozy Room in a Beautiful Home,29389698,Janvier,Toronto,42,1,0,3335,1,2,5,7,2,2,"1,5",1,1,5,1,"0,91",286,North America +475,Charming apartment in artist's home,33126335,Jane,Toronto,125,1,1,3278,1,3,2,"6,7",53,2,1,1,1,2,1,1,290,North America +476,"Bright Bedroom @ York University, Toronto",30753730,Jeishan,Toronto,40,1,0,3312,1,2,16,"6,32",38,2,1,1,1,16,1,"0,99",236,North America +477,One-of-a-kind Penthouse Suite w Pkg,32076724,Niki,Toronto,135,0,0,3292,1,3,1,7,4,4,1,1,2,1,0,0,0,North America +478,Sky Pad at Yonge & St Clair,3718914,Maryrose,Toronto,195,0,0,4231,1,3,1,"6,82",78,4,1,1,4,1,0,0,0,North America +479,Great Davenport Hillcrest House,1244099,Ottilie,Toronto,315,1,1,4594,1,3,2,"6,94",36,5,2,3,4,3,1,"0,94",187,North America +480,Cosy Room in Lovely Leslieville - STR-2009-FRCKPC,30221116,Clasina,Toronto,60,1,1,3321,1,2,1,"6,93",321,1,1,1,1,1,1,"0,96",182,North America +481,Luxury House - Toronto Upper Beaches,15779976,Valia,Toronto,659,1,0,3634,1,3,2,"6,59",22,7,"2,5",3,4,4,1,1,69,North America +482,Toronto Mid-Century Modern Pad,1200367,Grace,Toronto,147,1,1,4604,1,3,4,"6,69",42,2,1,1,1,4,1,"0,91",200,North America +483,"SPACIOUS ONE BEDROOM 4 RENT AVAILABLE JAN.20,2017",31621941,Norah,Toronto,55,0,0,3299,1,2,1,0,0,1,1,2,0,1,0,0,1,North America +484,"Share beautiful spacious apt, own bdrm+bath, 6mo+",33504751,Agnieshka,Toronto,50,0,0,3273,1,2,1,"6,64",11,1,1,1,1,1,1,"0,4",13,North America +485,Million Dollar City Views in Stylish and Trendy Apartment,31397994,Mathieu,Toronto,75,1,1,3302,1,3,1,"6,9",521,4,1,1,1,2,1,"0,98",232,North America +486,Bright Spacious Private Studio in Little Italy,33692973,Margarida,Toronto,100,0,0,3271,1,3,1,"6,87",380,2,1,1,1,1,0,"0,75",300,North America +487,TO Apartment in Trendy Leslieville,9330780,John,Toronto,85,0,0,3857,1,3,1,"6,75",60,2,1,1,1,1,1,0,1,North America +488,Gorgeous waterfront view!,33731433,Dezi,Toronto,149,0,0,3270,,3,1,"6,47",17,2,1,1,1,1,0,0,226,North America +489,"Stylish 1 BR+Den Condo Heart of Downtown, CN Tower",29824322,Gaziza,Toronto,137,1,1,3328,1,3,1,"6,79",383,2,1,1,2,1,1,1,146,North America +490,Spacious & Comfortable Private Room,32354557,Philip,Toronto,75,0,0,3288,,2,2,7,5,2,"1,5",2,1,2,0,0,187,North America +491,Downtown New Condo Toronto,32379679,Jen,Toronto,72,0,0,3288,1,2,2,"6,5",26,1,1,1,1,2,0,1,287,North America +492,Unique Toronto Apartment - Queen Room,33738826,Lukas,Toronto,100,0,0,3270,1,2,3,"6,88",67,2,1,1,1,3,1,"0,75",288,North America +493,1 Bed + Den Furnished Professional Apartment,33916643,Ian &,Toronto,101,1,1,3268,1,3,1,"6,88",51,2,1,1,2,1,1,1,251,North America +494,Cozy Loft Style Apartment,994069,Charity,Toronto,105,0,0,4639,1,3,1,"6,71",7,2,1,1,0,1,0,1,217,North America +495,Large basement apartment near Weston UP/GO station,21295708,Bogdan,Toronto,45,1,1,3518,1,2,1,"6,88",80,2,1,1,1,1,1,1,260,North America +496,Quiet secluded apartment downtown,33923191,Douglas,Toronto,175,0,0,3268,1,3,1,"6,6",43,4,1,2,2,1,1,0,0,North America +497,Spacious Apt w/ Rooftop Oasis 3 mins from subway,30654608,David,Toronto,115,1,0,3314,1,3,13,"6,75",338,4,1,1,2,15,1,"0,91",250,North America +498,"Modern condo , step to subway",13777341,Naz,Toronto,250,0,0,3683,1,3,3,"6,33",3,5,"2,5",2,2,3,1,"0,58",2,North America +499,Downtown - Queen + private bath,32632978,Kay,Toronto,143,0,0,3285,1,2,1,"6,85",27,2,1,1,1,1,0,1,276,North America +500,Modern Condo in Downtown Toronto,32634677,Ramnathan,Toronto,181,1,1,3285,1,3,1,"6,84",128,3,1,2,2,1,1,1,117,North America +501,"Downtown ""Unique"" 2 bedroom suite",22431111,Michael & Jennifer,Toronto,132,1,1,3489,1,3,3,"6,86",178,4,"1,5",2,2,4,1,"0,82",93,North America +502,Fun and Bright House Queen West,34365954,Kim,Toronto,506,0,0,3262,1,3,2,"6,72",146,8,2,4,5,2,1,"0,76",215,North America +503,"Quiet Area, yet Close to the Action",34372245,D,Toronto,65,0,0,3262,1,3,1,"6,94",63,2,"1,5",1,1,1,"0,71","0,71",97,North America +504,Very Private Room with en suite bathroom,34863606,Ky Quy,Toronto,65,1,0,3256,1,2,2,"6,72",155,2,1,1,1,2,1,"0,98",132,North America +505,Renovated Private Aprtmnt-Basement,33699825,Milad,Toronto,90,0,0,3270,1,3,3,"6,61",28,2,1,1,2,3,1,"0,71",186,North America +506,Modern Private Suite in Riverdale,34866282,Shannon & Fred,Toronto,82,0,0,3256,,3,1,"6,93",46,2,1,1,1,1,1,0,199,North America +507,"Great 1 bed, heart of the city",23518355,Lee-Anne,Toronto,99,1,1,3461,1,3,24,"6,58",13,2,1,1,1,24,1,1,275,North America +508,Bedroom in Distillery District,34547305,Shirin,Toronto,57,0,0,3260,1,2,1,"6,89",384,1,1,1,1,1,1,0,155,North America +509,Cozy & Comfortable Space with 4Pc Ensuite Bathroom,24346665,Shanny,Toronto,49,0,0,3439,1,2,10,"6,72",102,2,"1,5",1,2,11,"0,92","0,88",268,North America +510,New 1 BDRM + Den Condo,34940857,James,Toronto,167,0,0,3255,1,3,1,"6,8",156,4,1,1,2,1,1,"0,25",118,North America +511,Comfortable bedroom near Greektown,9408559,Maxine,Toronto,65,0,0,3853,1,2,3,"6,95",19,2,1,1,1,3,1,"0,64",320,North America +512,Spaceous 1 bedroom Apt Downtown TO.,15530001,Shane,Toronto,118,0,0,3640,1,3,1,"6,47",116,2,1,1,1,1,0,0,0,North America +513,Downtown Toronto Spacious Studio,2674395,Christine,Toronto,78,0,0,4335,1,3,2,"6,9",63,2,1,1,1,2,1,"0,75",174,North America +514,Scarborough Gem! Lower Level Suite,25007341,Darlene,Toronto,160,1,1,3421,1,3,1,"6,93",72,2,1,1,1,1,1,1,106,North America +515,Century home in Brockton Village,2062404,Paul,Toronto,215,0,0,4411,1,3,1,"6,67",9,4,1,1,0,1,1,0,2,North America +516,C2 Central and charming in downtown Toronto,26753094,Keir,Toronto,86,1,1,3383,1,3,7,"6,86",330,2,1,1,1,9,1,"0,98",87,North America +517,Your room with 3n suite private washroom,34863606,Ky Quy,Toronto,61,1,0,3256,1,2,2,"6,78",137,2,1,1,0,2,1,"0,98",81,North America +518,"Cozy 2 bed, best downtown location",23518355,Lee-Anne,Toronto,135,1,0,3461,1,3,24,"6,72",19,3,1,2,2,24,1,1,275,North America +519,Central Apartment in Downtown Toronto,35208985,Hossein,Toronto,80,1,0,3251,1,3,7,"6,6",10,2,1,0,2,10,1,"0,98",253,North America +520,Central Private Apartment,27240047,Lissa,Toronto,80,1,0,3374,1,3,1,"6,81",258,2,1,1,1,1,1,1,105,North America +521,Toronto Luxury Waterfront + Parking (Harbourfront),24817372,Ehsan,Toronto,257,1,0,3426,1,3,1,"6,75",186,2,"1,5",1,1,1,1,1,150,North America +522,Queen St West Art & Design District. comfy.,35236863,Yee-Wah Holly,Toronto,136,1,1,3251,1,2,2,"6,8",75,2,1,1,0,2,1,"0,92",215,North America +523,ALL the Comforts of Home+Parking! NO CLEANING FEE!,35257658,Jonathan & Joanne,Toronto,105,1,1,3250,1,3,1,"6,92",168,6,1,1,4,1,1,1,201,North America +524,Lovely 1+1 Bedroom & Den condo with Parking,35263540,Mo,Toronto,191,0,0,3250,1,3,1,0,0,2,1,1,0,1,0,0,3,North America +525,Loft Available in the Heart of King St. West,4961499,Kelly,Toronto,142,0,0,4104,1,3,1,"6,77",30,2,1,1,1,1,"0,8","0,4",217,North America +526,Ensuite Master Bedroom North York,35331231,Saahgie,Toronto,120,0,0,3250,1,2,2,"6,73",92,2,1,1,1,5,0,0,0,North America +527,Spacious Bedroom Midtown with Parking,35346035,Sarah,Toronto,90,1,1,3249,1,2,2,"6,78",99,2,1,1,1,2,1,"0,99",222,North America +528,Renovated Townhouse close to Core,21013794,William,Toronto,160,0,0,3525,1,2,1,"6,77",45,2,"1,5",1,0,1,0,0,0,North America +529,College/Yonge: 2 Bedroom/2 Bathroom Condo,28132161,Marija,Toronto,268,1,1,3357,1,3,3,"6,8",117,4,2,2,2,4,1,"0,88",90,North America +530,Renovated Studio Apartment,36170956,Suzy,Toronto,85,0,0,3240,1,3,1,"6,5",42,2,1,0,0,1,1,"0,29",83,North America +531,Modern One Bedroom Condo in TORONTO,34600680,Sascha,Toronto,450,1,1,3259,1,3,1,"6,84",92,4,1,1,1,2,1,"0,9",1,North America +532,"Cozy 2 bedroom steps from CN Tower, Scotiabank.",36163394,Kucho,Toronto,425,1,1,3240,1,3,1,"6,81",16,5,1,2,3,1,1,1,285,North America +533,Nice room near Danforth and Pape,9408559,Maxine,Toronto,65,0,0,3853,1,2,3,"6,85",50,2,1,1,1,3,1,"0,64",321,North America +534,Convenient living near Greektown for single female,9408559,Maxine,Toronto,70,0,0,3853,1,2,3,"6,79",29,1,1,1,1,3,1,"0,64",351,North America +535,Rejuvenate Room (women only),35773426,Anne,Toronto,58,0,0,3244,1,2,2,"6,86",7,1,"1,5",1,1,2,1,"0,75",297,North America +536,Bright and spacious 3 bedroom flat,35664525,Amin,Toronto,235,1,0,3246,1,3,1,"6,43",138,6,1,3,3,1,1,1,117,North America +537,Cozy High Park Apartment,27077685,Rebecca,Toronto,91,0,0,3376,1,3,1,"6,93",14,2,1,2,1,1,0,0,365,North America +538,Modern Retreat Free Parking and Garden,36356046,Tamara,Toronto,226,1,1,3237,1,3,5,"6,78",32,3,1,1,2,5,1,"0,87",309,North America +539,Quiet room to rest and relax (women only),35773426,Anne,Toronto,58,0,0,3244,1,2,2,"6,8",10,1,"1,5",1,1,2,1,"0,75",356,North America +540,Clean & Cozy Room @ York University of Toronto,24346665,Shanny,Toronto,40,0,0,3439,1,2,10,"6,59",22,2,"1,5",1,1,11,"0,92","0,88",365,North America +541,Cozy Room at York University of Toronto,24346665,Shanny,Toronto,30,0,0,3439,1,2,10,"6,87",31,2,1,1,1,11,"0,92","0,88",326,North America +542,Cute & Spacious Room @ York University of Toronto,24346665,Shanny,Toronto,30,0,0,3439,1,2,10,"6,81",21,1,1,1,1,11,"0,92","0,88",236,North America +543,"Delightful, Private, Two Level Apt",36454673,Eva And Shoop,Toronto,130,0,0,3236,1,3,1,"6,78",119,4,1,2,2,1,1,"0,6",73,North America +544,Relax @ York University Toronto (Female only),24346665,Shanny,Toronto,70,0,0,3439,1,2,10,"6,75",8,1,1,1,1,11,"0,92","0,88",330,North America +545,Large & Spacious Room @York University of Toronto,24346665,Shanny,Toronto,35,0,0,3439,1,2,10,"6,83",29,1,"1,5",1,1,11,"0,92","0,88",270,North America +546,Unique Studio with Sauna,5269649,Shelley,Toronto,194,1,1,4080,1,3,2,"6,79",436,2,1,0,1,3,1,"0,96",271,North America +547,Roomy modern loft - Queen West,4365924,Hannah,Toronto,184,0,0,4161,1,3,1,"6,89",19,2,1,1,1,1,1,"0,67",192,North America +548,Kensington Market Victorian house share 2,958382,Susan,Toronto,87,1,1,4647,1,2,3,"6,87",180,1,"1,5",1,1,3,1,1,245,North America +549,"Seeking roommate for 2-bed, 2-bath condo",36564325,Josh,Toronto,64,0,0,3235,,2,1,"6,76",29,2,1,1,1,1,1,0,0,North America +550,Ultimate condo in downtown Toronto,3675918,Fred,Toronto,275,0,0,4236,1,3,1,"6,68",39,2,1,1,1,1,0,0,278,North America +551,Bright balcony room @York University (Female only),24346665,Shanny,Toronto,30,0,0,3439,1,2,10,"6,83",6,1,"1,5",1,0,11,"0,92","0,88",121,North America +552,Bright room with balcony @ YorkU (Female only),24346665,Shanny,Toronto,30,0,0,3439,1,2,10,7,12,1,"1,5",1,1,11,"0,92","0,88",240,North America +553,Quiet Family Home in Roncesvalles Village,36636896,Wendy,Toronto,350,1,1,3234,1,3,1,"6,86",37,5,1,3,3,1,1,"0,83",331,North America +554,Spacious Modern Condo at Sheppard and Yonge,34871810,Polina,Toronto,110,0,0,3256,1,3,1,"6,77",13,2,1,1,1,2,0,"0,67",115,North America +555,Amazing view/heart of downtown.,21053031,Daniel,Toronto,110,1,0,3524,1,3,1,"6,75",63,3,1,1,2,3,1,1,186,North America +556,Clean Private Basement Apt.,36677294,Beverly,Toronto,130,0,0,3233,1,3,1,"6,74",123,2,1,1,1,1,1,"0,62",302,North America +557,Rosedale Victorian Designer Home - Central,35992132,Linda,Toronto,339,1,1,3242,1,3,1,"6,83",192,7,"2,5",4,4,1,1,1,113,North America +558,Private Queen Room on 3rd Floor with New Bathroom,10304305,Tamara,Toronto,89,1,1,3808,1,2,2,"6,89",102,1,1,1,1,3,1,"0,88",299,North America +559,Btfl Trendy Condo Liberty Village,12665126,Menelika,Toronto,180,0,0,3715,1,3,2,"6,67",9,2,1,2,2,2,"0,75","0,75",65,North America +560,New condo downtown core,32379679,Jen,Toronto,66,0,0,3288,1,2,2,"6,64",14,1,1,1,0,2,0,1,224,North America +561,"Private apartment, modern, luxury. Lakeshore near.",36861212,Mitesh,Toronto,89,0,0,3231,1,3,1,"6,61",67,3,1,1,2,1,1,"0,6",55,North America +562,Beautiful Annex-Yorkville private apartment.,32705238,Olivier,Toronto,249,0,0,3284,1,3,1,"6,97",40,2,1,1,1,1,"0,5",0,23,North America +563,STERILIZE CLEAN 2BD CN Tower and Lake Ontario View,20797595,Gholamreza,Toronto,580,0,0,3530,1,3,1,"6,64",35,5,"1,5",2,3,1,0,0,134,North America +564,"Union Stn, CN Tower w/Private Patio",35828364,Anthony,Toronto,245,0,0,3244,1,3,1,"6,8",5,2,1,1,0,1,1,0,94,North America +565,Right In the Heart Of Toronto,20511980,Anne Marie,Toronto,262,1,1,3537,1,3,2,"6,7",159,5,1,1,3,3,1,"0,95",187,North America +566,82Quiet Room w/Garden View - 7 Min Walk To Subway82,25406106,Arash Marco,Toronto,205,1,1,3410,1,2,1,"6,83",310,2,1,1,1,1,1,1,192,North America +567,Riverdale Suite Artist Retreat,37257914,Arlene,Toronto,111,1,1,3227,1,3,1,"6,93",169,2,1,1,0,1,1,"0,98",344,North America +568,Lux Condo in the Heart of Toronto,5090895,Tom,Toronto,175,0,0,4094,1,3,1,"6,57",21,2,1,1,1,1,0,0,1,North America +569,Prime Riverdale Home with 2 Car Parking,6407213,Dan,Toronto,200,1,0,4004,1,3,1,0,0,4,2,3,0,2,1,1,237,North America +570,"Half acre lot private bungalow- 3 bedroom, 1 bath",16194320,Mike,Toronto,214,0,0,3623,1,3,1,7,3,6,1,3,3,1,0,0,0,North America +571,Spacious Garden District Loft--Ground floor,4010527,Diane,Toronto,199,0,0,4202,1,3,5,"6,58",74,2,1,0,1,5,1,"0,71",124,North America +572,King West Loft- King-Portland,27272425,Richy,Toronto,68,0,0,3373,1,3,1,"6,94",16,4,1,1,2,1,0,0,185,North America +573,Private Lower Level Suite,9433198,Patrick,Toronto,120,1,1,3851,1,3,1,"6,89",380,3,1,1,1,2,1,1,235,North America +574,Explore Downtown from a Cosy Central Apartment,2114867,Imad,Toronto,155,1,1,4403,1,3,1,"6,9",368,2,1,1,1,1,1,1,122,North America +575,Modern Design Studio,3982898,Andrew,Toronto,161,1,1,4205,1,3,3,"6,86",99,2,1,0,1,5,1,"0,96",301,North America +576,Bright studio - near Junction,1015950,Chris,Toronto,82,0,0,4634,1,3,1,"6,91",43,2,1,0,1,1,0,"0,14",206,North America +577,"#1 La Cobacha! Eglinton West & Keele, West Toronto",37093240,Israel,Toronto,55,1,1,3229,1,2,3,"6,92",85,1,2,1,1,3,1,"0,97",195,North America +578,Charming Roncesvalles/High Park Basement Suite,22263724,Kathleen,Toronto,60,0,0,3494,1,3,1,"6,9",115,2,1,1,1,1,0,0,365,North America +579,Modern & Trendy Condo Liberty Vil.,12665126,Menelika,Toronto,175,0,0,3715,1,3,2,"6,57",30,6,1,2,2,2,"0,75","0,75",65,North America +580,Gorgeous Downtown Neighbourhood,37503037,Margaret,Toronto,225,1,1,3224,1,3,1,"6,86",49,2,1,1,1,1,1,"0,95",61,North America +581,1100sq True Loft with Parking!,3033132,Ji,Toronto,265,1,1,4300,1,3,1,"6,81",422,5,1,1,3,1,1,"0,91",306,North America +582,Spacious Victorian in Art District,37503613,Greg,Toronto,156,0,0,3224,1,3,2,"6,78",178,4,1,1,2,2,1,"0,5",3,North America +583,King Street Cottage,37504523,Yoh,Toronto,170,0,0,3224,1,3,1,"6,74",27,2,1,1,0,1,0,"0,82",308,North America +584,Guildwood BnB - Pink Room,35564550,Regina C,Toronto,51,1,0,3247,1,2,2,"6,83",170,2,"1,5",1,1,2,1,"0,99",101,North America +585,Verve - 1 bed/1 bath Great City View,23518355,Lee-Anne,Toronto,99,1,0,3461,1,3,24,"6,71",17,2,1,1,1,24,1,1,298,North America +586,"Best downtown location, spacious 1-bedroom",23518355,Lee-Anne,Toronto,112,1,0,3461,1,3,24,"6,64",25,2,1,1,0,24,1,1,185,North America +587,new luxury oasis yonge/eglington,32621396,Alex And Galina,Toronto,115,1,0,3285,1,3,1,"6,73",173,3,1,1,1,3,1,"0,91",131,North America +588,Condo feeling in a century old home,37686353,Artur,Toronto,226,1,0,3222,1,3,1,"6,67",281,2,1,0,1,3,1,1,311,North America +589,Yes TO Location: Lively & Central,11206244,Superhost,Toronto,398,0,0,3763,1,3,19,7,3,3,1,1,1,20,1,"0,6",0,North America +590,Cozy Central Downtown Room in Tourist District,18946002,Louis,Toronto,40,1,0,3567,1,2,1,"6,65",225,1,1,1,1,1,1,"0,83",22,North America +591,Unique Downtown Toronto Loft - Famous Queen St E.,33856324,Sara,Toronto,124,0,0,3269,1,3,1,"6,83",42,4,2,2,2,1,0,"0,41",237,North America +592,Kensington Market!,39234777,Sharryn,Toronto,160,1,1,3206,1,3,1,"6,78",68,2,1,1,1,2,1,1,272,North America +593,Large central midtown beside subway,37739181,Ohad,Toronto,175,0,0,3222,1,3,1,"6,67",21,2,1,1,1,1,0,0,9,North America +594,Comfortable bedroom & safe lodging,15936131,Shreya,Toronto,42,0,0,3630,1,2,1,"6,66",111,1,1,1,1,3,"0,35","0,27",0,North America +595,Taigh Ice,32293624,Ice,Toronto,189,1,0,3289,1,2,5,"6,38",16,2,1,1,1,5,1,1,185,North America +596,Cozy sunny room in Queen West,36356046,Tamara,Toronto,70,1,1,3237,1,2,5,"6,82",96,1,1,1,1,5,1,"0,87",198,North America +597,Zoom 2 beds w/ Amazing Lake View,11206244,Superhost,Toronto,890,0,0,3763,1,3,19,7,1,4,1,1,2,20,1,"0,6",1,North America +598,Modern 1 Bdrm Suite Downtown District - Lake View,37686099,Efrain,Toronto,194,1,1,3222,1,3,2,"6,71",121,4,1,1,2,2,1,"0,96",324,North America +599,Elegant High Ceiling Room,32293624,Ice,Toronto,185,1,0,3289,1,2,5,"6,4",10,2,1,1,1,5,1,1,0,North America +600,Great Reviews - Stunning Exec Detached 3BR w/ Pkng,32764525,Linda,Toronto,335,0,0,3283,1,3,1,"6,87",31,5,"1,5",3,3,2,1,"0,77",40,North America +601,Private Unit/Suite near High Park,401125255,Cuong,Toronto,39,0,0,1086,1,3,7,"6,67",78,2,1,1,1,50,1,"0,77",9,North America +602,Chic Condo in Trendy Queen West,7672988,Nadia,Toronto,88,0,0,3935,1,2,2,7,2,2,1,1,0,2,1,0,129,North America +603,High Park Oasis,29155385,Mike,Toronto,99,1,1,3339,1,3,1,"6,9",165,4,1,1,2,1,1,1,114,North America +604,2 Story Loft Queen West,17452123,Renee,Toronto,409,0,0,3593,1,3,1,0,0,5,2,2,2,1,0,0,3,North America +605,Yacht Club - Luxury Executive Condo Yorkville,5988339,Toronto Luxury Suites,Toronto,176,0,0,4031,1,3,20,0,0,3,1,1,1,20,1,"0,6",203,North America +606,Bright Riverdale Studio Apartment!,39850488,Evelyn,Toronto,90,0,0,3200,1,3,1,"6,45",20,2,1,0,1,1,0,0,278,North America +607,Quiet and comfortable place in North York,39443844,Tatyana,Toronto,50,0,0,3204,1,2,1,7,9,1,1,1,1,1,0,0,302,North America +608,The High Park Hideway,1017287,Faiza,Toronto,130,1,0,4634,1,3,1,"6,56",101,2,1,1,1,2,1,"0,92",71,North America +609,Downtown Yorkville Home With Garden,35097889,Elizabeth,Toronto,165,1,1,3253,1,3,1,"6,93",109,2,1,1,1,2,1,"0,95",155,North America +610,"Large, downtown, stadium view for 6",113345,Adela,Toronto,127,0,0,5120,1,3,5,"6,5",2,6,1,1,2,5,"0,9","0,42",259,North America +611,Upgraded private 1 bedroom apartment,38226416,Dawn,Toronto,120,1,1,3216,1,3,1,"6,88",59,2,1,1,0,1,1,1,196,North America +612,"Sun Kissed High-End King West Condo, Read Reviews",39913719,Christopher,Toronto,118,1,1,3199,1,3,2,"6,86",126,7,1,1,3,2,1,"0,89",158,North America +613,Furnished Basement Room,38244841,Mina & Genco,Toronto,95,0,0,3216,1,2,1,"6,82",17,1,1,1,1,1,0,0,1,North America +614,Cozy up Under the Gallery Wall at a Neutral-Toned Haven,4269048,Shannon,Toronto,125,1,0,4172,1,3,1,"6,77",464,2,1,1,1,4,1,"0,98",82,North America +615,"Unbeatable location, bright 1 bedroom",23518355,Lee-Anne,Toronto,128,1,1,3461,1,3,24,"6,91",22,2,1,1,1,24,1,1,317,North America +616,Bedroom 1 @ Evelyn’s Airbnb,40064049,Evelyn,Toronto,40,1,0,3198,1,2,3,"6,81",152,2,2,1,1,3,1,1,79,North America +617,Cozy Guest Room - City Skyline & Lake View,26274598,Elvania,Toronto,85,1,1,3391,1,2,2,"6,91",146,2,1,1,1,2,1,"0,93",362,North America +618,"Private Ensuite bathroom, walk to subway&Grocery",37736650,Xiaoshi,Toronto,70,1,0,3222,1,2,9,"6,86",94,2,1,1,1,10,1,"0,98",328,North America +619,Prettiest Apartment in Leslieville!,36748838,John,Toronto,120,1,1,3233,1,3,3,"6,86",85,2,1,1,2,3,1,1,91,North America +620,Premium downtown location 1 bedroom,23518355,Lee-Anne,Toronto,99,1,1,3461,1,3,24,"6,81",16,2,1,1,1,24,1,1,250,North America +621,Room1,32293624,Ice,Toronto,171,1,0,3289,1,2,5,"6,63",28,2,1,1,1,5,1,1,0,North America +622,Family room,32293624,Ice,Toronto,288,1,0,3289,1,2,5,6,6,4,1,1,2,5,1,1,0,North America +623,Spacious 1 Bedroom Basement Apt,40644973,Sedi,Toronto,65,0,0,3192,1,3,1,"6,82",11,3,1,1,2,1,0,0,174,North America +624,Elegant 2 BD Waterfront Condo Downtown Toronto,38677739,John,Toronto,528,1,1,3212,1,3,6,"6,97",30,6,2,2,2,7,1,1,95,North America +625,KING WEST! Exciting & Sought After-Condo w Parking,28299455,Deanne,Toronto,255,0,0,3354,1,3,6,6,1,4,1,2,2,6,"0,9","0,75",7,North America +626,Brookfield Hideaway Guest Suite,29704605,Monique,Toronto,80,1,1,3330,1,2,1,"6,89",486,2,1,1,0,1,1,1,134,North America +627,"Steps to Film Festival, Centre, King West!",22849576,Jeffrey,Toronto,550,0,0,3479,1,3,1,"6,33",3,4,2,2,2,1,0,0,1,North America +628,Private Apartment with Kitchen and Washroom,38874833,Elliot,Toronto,65,0,0,3210,1,3,1,"6,85",13,2,1,1,1,1,1,"0,4",173,North America +629,Luxury Yorkville Condo Downtown,3440474,Greta And Ian,Toronto,204,0,0,4260,1,3,1,7,9,2,1,1,1,1,0,0,0,North America +630,Charming room in Upper Beaches home,6043992,Kirsten,Toronto,70,1,1,4027,1,2,2,"6,95",204,1,1,1,1,2,1,"0,9",312,North America +631,Cozy room in Upper Beaches home,6043992,Kirsten,Toronto,60,1,1,4027,1,2,2,"6,94",180,1,1,1,1,2,1,"0,9",330,North America +632,Downtown 3 Beds next to Harbour & Union,187320,Downtown Suite Living,Toronto,160,0,0,5022,1,3,8,"6,73",15,4,2,3,3,8,1,"0,54",210,North America +633,"Spacious room w/parking.Safe area by subway, buses",16811022,Ludmila,Toronto,41,0,0,3608,1,2,7,"6,56",57,2,1,1,1,7,"0,3","0,87",0,North America +634,Trendy Modern 1 BED in Heart of Downtown,9718212,Shayna,Toronto,400,0,0,3836,1,3,1,"6,92",13,2,1,1,1,1,0,0,95,North America +635,"1 bedroom w/parking by subway,24 hr buses.Sleeps 4",16811022,Ludmila,Toronto,110,0,0,3608,1,3,7,"6,45",121,4,1,2,2,7,"0,3","0,87",0,North America +636,Condo at St Lawrence Market area,1606299,Armin,Toronto,250,0,0,4491,1,3,1,"6,45",29,2,1,1,0,1,0,"0,17",119,North America +637,"Studio w/parking by subway,24 hrs buses,main roads",16811022,Ludmila,Toronto,69,0,0,3608,1,3,7,"6,48",65,2,1,0,1,7,"0,3","0,87",62,North America +638,Spacious room bright and clean wth Queen size bed,37520003,Shirley,Toronto,46,1,0,3223,1,2,8,"6,7",28,2,1,1,1,8,1,1,0,North America +639,Bedroom 3 @ Evelyn’s Airbnb,40064049,Evelyn,Toronto,40,1,1,3198,1,2,3,"6,85",169,2,2,1,1,3,1,1,25,North America +640,Cool & spacious west end unit,12358519,Phil,Toronto,100,0,0,3725,1,3,1,"6,73",425,2,1,1,2,1,1,"0,78",1,North America +641,Beautiful room for travellers and young workers,22459555,Frederic,Toronto,66,1,0,3489,1,2,2,"6,71",122,1,1,1,1,2,1,"0,91",23,North America +642,Small Bedroom + Private Washroom @ York University,30753730,Jeishan,Toronto,40,1,0,3312,1,2,16,"6,65",23,1,1,1,1,16,1,"0,99",88,North America +643,"Cozy Room + Private Washroom @ York Uni, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,81",40,1,1,1,1,16,1,"0,99",226,North America +644,LUXURY 1BDR Condo+Parking+Pool,2844245,Inna,Toronto,329,0,0,4318,1,3,1,"6,82",49,2,1,1,1,1,0,1,275,North America +645,Cool Artsy Basement + kitchen + Subway Access,2819934,Amit,Toronto,74,0,0,4320,1,2,1,"6,94",18,3,1,1,1,1,1,0,145,North America +646,★★★★★ Amazing Location 61 Fast WiFi 61 Easy Transit!,43573700,Sean,Toronto,123,0,0,3159,1,3,2,"6,86",82,2,1,0,2,2,1,"0,79",301,North America +647,Luxury Fully Furnished Room+Bathroom Avail,37928488,Ulana,Toronto,101,0,0,3220,1,2,1,"6,9",30,1,1,1,1,1,0,0,3,North America +648,Ground floor suite in Toronto’s best neighbourhood,27061226,Larry,Toronto,180,1,1,3377,1,3,2,"6,89",163,2,1,1,1,2,1,1,308,North America +649,Cozy and Private Apartment,41946894,Anabel And Adel,Toronto,70,0,0,3178,1,3,1,"6,85",88,2,1,1,0,1,1,"0,71",269,North America +650,7815 Finch Luxury Basement With 2 Bathrooms 7815,32044025,Toronto,Toronto,60,0,0,3292,1,2,15,"6,5",12,1,2,1,1,16,1,"0,71",0,North America +651,Beautiful 1 bdrm in Roncesvalles,511173,Kristin,Toronto,141,0,0,4765,1,3,1,7,3,2,1,1,1,1,"0,67",0,80,North America +652,"Near beautiful park, shops & subway",41652787,Linda,Toronto,235,0,0,3181,,3,1,"6,8",21,3,1,2,2,1,0,0,0,North America +653,Ossington & Dundas Apartment,43865587,Bob And Yara,Toronto,80,0,0,3156,1,3,1,"6,76",106,2,1,1,1,1,1,"0,6",304,North America +654,Toronto Comfy and Classic 3-Bedrooms Flat,4429064,Mary,Toronto,233,1,1,4153,1,3,1,"6,77",152,5,1,3,3,1,1,"0,94",232,North America +655,"New Luxury 1+1 bed 2 bath condo, steps to subway",43873420,Jinous,Toronto,209,0,0,3156,1,3,1,"6,87",15,5,2,2,2,2,0,0,186,North America +656,Modern Executive Loft - w/Parking,17244714,Jay,Toronto,259,0,0,3598,1,3,1,7,3,3,2,2,2,1,0,0,2,North America +657,Well equipped 2 bdrm good location Family Friendly,27848617,Eli,Toronto,120,1,1,3362,1,3,1,"6,86",89,5,1,2,2,1,1,"0,9",151,North America +658,King West Triplex Main FLR PVT APT 1 BDRM Parking,37409645,Navid,Toronto,180,0,0,3225,1,3,3,"6,72",152,4,1,1,2,3,1,"0,66",353,North America +659,Location Location Location,39250631,James And Andrea,Toronto,126,1,1,3206,1,2,1,"6,77",13,2,1,1,1,1,1,"0,96",276,North America +660,"Sunny room w/parking in safe area by subway, buses",16811022,Ludmila,Toronto,38,0,0,3608,1,2,7,"6,52",46,2,1,2,1,7,"0,3","0,87",0,North America +661,1BDR+Den stunning views MTCC+Scotiabank Arena,7476559,Nicholas,Toronto,125,1,0,3944,1,3,2,"6,78",160,4,1,1,2,5,1,1,281,North America +662,Queen West Village- Penthouse/Patio,44177850,Robert,Toronto,225,1,1,3152,1,3,1,"6,85",55,4,2,2,3,1,1,1,122,North America +663,Stroll Boho Kensington from a 1910 Home with BBQ,32794340,Ryan,Toronto,186,0,0,3283,1,3,2,"6,74",176,6,2,3,4,3,"0,9","0,82",189,North America +664,7815 Finch Newly Renovated-Prime Location,32044025,Toronto,Toronto,60,0,0,3292,1,2,15,"6,4",5,2,2,1,1,16,1,"0,71",313,North America +665,Private Cozy Room East Junction/South Corso Italia,45610498,Ruth,Toronto,60,1,1,3134,1,2,1,"6,95",19,1,1,1,1,1,1,1,21,North America +666,The perfect AirBNB in High Park,21683340,Mike,Toronto,79,0,0,3508,1,3,3,"6,89",101,7,1,3,4,3,0,0,365,North America +667,"Perfect for Students /friends, in EastToronto.",44435857,Francisca,Toronto,189,1,0,3149,1,3,4,"6,76",60,8,2,4,4,4,1,"0,85",1,North America +668,"Fresh sunny mirror room w/parking by subway, buses",16811022,Ludmila,Toronto,44,0,0,3608,1,2,7,"6,61",35,2,1,1,1,7,"0,3","0,87",115,North America +669,Cosy Basement Apartment with Free Parking-PRIVATE,44498239,Saira,Toronto,85,0,0,3148,,3,1,7,3,3,1,1,1,1,0,0,1,North America +670,Stunning Detached Exclusive House - 7 Beds & Yard,7354580,Michael,Toronto,333,0,0,3950,1,3,2,"6,86",37,16,2,7,9,3,1,"0,43",31,North America +671,Simply smart 1 or 2 person bedroom,3545730,Leslie,Toronto,73,1,1,4249,1,2,2,"6,93",421,2,1,1,0,2,1,"0,95",333,North America +672,Luxurious High-Rise - City View+ 3 Beds + Parking,24235743,Mussie,Toronto,245,1,1,3443,1,3,1,"6,77",69,4,1,1,3,1,1,1,136,North America +673,Entire semi-detached house in Riverside!,45983774,Samir,Toronto,199,0,0,3129,1,3,1,7,2,3,1,2,2,1,0,0,186,North America +674,Luxury Home near Yonge and Eglinton,8565289,Ewan,Toronto,299,0,0,3895,1,3,2,"6,82",22,6,"3,5",4,4,6,1,"0,67",59,North America +675,Guildwood BnB - Brandy Room,35564550,Regina C,Toronto,54,1,1,3247,1,2,2,"6,88",224,2,"1,5",1,1,2,1,"0,99",119,North America +676,Room w/parking @ safe area by metro,16811022,Ludmila,Toronto,41,0,0,3608,1,2,7,"6,07",14,2,1,1,1,7,"0,3","0,87",0,North America +677,Modern Condo in the heart Downtown Toronto!,2298690,Jonathan,Toronto,172,0,0,4379,1,3,1,"6,71",324,4,1,1,2,1,1,"0,48",110,North America +678,Penthouse Suite With Amazing View,45308503,Papia,Toronto,50,1,0,3138,1,2,1,"6,87",134,2,1,1,2,1,1,"0,95",331,North America +679,Bright & Stylish Private Apartment,6845507,Leslie,Toronto,70,1,1,3978,1,3,2,"6,78",18,1,1,1,0,2,1,"0,82",328,North America +680,Spacious home west of downtown,3428131,Raheem,Toronto,124,0,0,4261,1,3,1,0,0,2,"2,5",2,1,1,0,0,188,North America +681,Leaside room+ensuite *Free Parking* walk2transit,45370867,Russell,Toronto,130,1,1,3137,1,2,3,"6,89",395,2,1,1,0,3,1,1,196,North America +682,Joyland. Your home away from home!!,13633667,Nuria,Toronto,86,0,0,3687,1,3,1,"6,71",90,4,1,2,1,1,1,"0,67",281,North America +683,Nature Retreat in the Heart of T.O.,48432866,Dina,Toronto,127,0,0,3098,1,3,2,"6,71",28,2,1,1,1,2,0,0,84,North America +684,7815 Yonge Modern Condo in Downtown Toronto7815,32044025,Toronto,Toronto,130,0,0,3292,1,3,15,"6,82",11,3,2,1,1,16,1,"0,71",1,North America +685,private Room,22403169,Masoud,Toronto,42,1,1,3490,1,2,2,"6,69",32,1,1,1,1,2,1,"0,93",179,North America +686,Modern Downtown Condo,48482907,Rizwan,Toronto,80,0,0,3097,1,3,1,7,1,2,1,1,2,1,0,0,145,North America +687,Fully furnished Designer's suite,46865462,Peter,Toronto,133,1,0,3118,1,3,1,"6,77",42,4,1,2,2,4,1,1,87,North America +688,Zen Studio Sous-Sol,3406595,Inger,Toronto,144,1,0,4263,1,2,2,"6,83",70,2,1,1,1,2,1,1,231,North America +689,Cosy Basement/private bath&entrance,46887747,Lionel,Toronto,109,1,1,3118,1,2,1,"6,94",314,2,1,1,0,1,1,"0,94",121,North America +690,2min to subway- Cozy Apartment in Toronto,11529418,Hyojeong,Toronto,80,1,0,3752,1,3,1,"6,77",264,2,1,1,1,1,1,1,304,North America +691,Best of the city at your doorstep,109091,Su-Ying,Toronto,158,1,0,5130,1,3,1,"6,71",150,3,1,1,2,1,1,"0,89",280,North America +692,"Queen room shared bath,kitchen",8569918,Sharon,Toronto,105,0,0,3895,1,2,35,"6,33",9,2,1,1,1,35,"0,87","0,82",293,North America +693,Luxurious Suite in trendy Parkdale/Liberty Village,10511090,Alex,Toronto,109,1,1,3797,1,3,3,"6,7",44,2,1,1,1,3,1,"0,86",173,North America +694,Clean & Cozy Bayview Village apt. Steps to Subway!,24112557,Chur,Toronto,70,0,0,3446,1,3,2,"6,79",40,2,1,1,1,2,0,0,275,North America +695,Family Home Near St Clair W and Public Transport,5583826,Lisa,Toronto,396,1,1,4057,1,3,1,"6,84",180,6,"1,5",3,4,2,1,1,302,North America +696,Basement near transit with kitchen,48258166,Feela,Toronto,33,0,0,3100,1,2,2,"6,78",41,2,"1,5",1,1,2,0,"0,5",365,North America +697,Luxury condo 3 Beds with lake view,47325571,Hanyu,Toronto,184,0,0,3112,1,3,1,0,0,5,1,3,3,1,0,0,1,North America +698,BEAUTIFUL apartment in Trendy Neighbourhood,44853284,Sara,Toronto,140,0,0,3144,,3,1,7,2,5,1,2,2,1,0,0,7,North America +699,Modern Victorian Home in Little Italy,5167476,Naomi,Toronto,900,1,0,4088,1,3,3,"6,4",15,8,"3,5",4,4,3,1,"0,96",187,North America +700,Two Bedroom Apartment,8569918,Sharon,Toronto,192,0,0,3895,1,3,35,"6,2",15,4,1,2,2,35,"0,87","0,82",298,North America +701,Toronto at its Finest! Stunning Downtown West Home,7227029,Jordan,Toronto,1828,0,0,3957,1,3,1,"6,84",79,12,"3,5",5,6,1,0,1,303,North America +702,King West Victorian Studio Gem,233763,Kathleen,Toronto,184,1,1,4979,1,3,1,"6,81",265,2,1,1,1,1,1,"0,9",365,North America +703,"Large Master Bedroom in City Center,Ask 4 Parking",19194757,Jonathan,Toronto,43,1,0,3563,1,2,3,"6,78",196,3,1,1,1,3,1,1,302,North America +704,Cozy and Comfortable Private Room,42166282,Yingxia,Toronto,66,1,1,3176,1,2,5,7,11,1,1,1,1,5,1,"0,91",114,North America +705,Welcoming shared apartment for single woman,47659921,Katherine,Toronto,50,1,0,3108,1,2,3,"6,7",70,1,"1,5",1,1,3,1,1,1,North America +706,Fancy Condo @ Bloor - Yorkville area,6739062,Toronto Condo,Toronto,185,0,0,3984,1,3,2,"6,57",7,2,1,1,1,2,0,0,0,North America +707,"Bright, cozy 1 bed in the heart of the city",23518355,Lee-Anne,Toronto,105,1,0,3461,1,3,24,"6,5",12,2,1,1,1,24,1,1,304,North America +708,Hearty Loft in Dundas W!,13066292,Jose,Toronto,78,1,0,3703,1,3,10,"6,7",202,3,1,0,0,15,"0,99","0,99",131,North America +709,"3 Bdrm Beauty with Theatre Room, Parking, Gardens",47886380,Samantha,Toronto,145,1,0,3104,1,3,1,"6,6",5,5,"2,5",3,3,1,1,1,352,North America +710,"Girls Only, Central, Charming",41577110,Beverly,Toronto,55,1,1,3182,1,2,2,"6,96",73,1,1,1,1,2,1,1,338,North America +711,Charming & Quiet Riverdale Studio,43037706,James,Toronto,91,1,1,3166,1,3,2,"6,77",56,2,1,1,1,2,1,1,224,North America +712,Walk Everywhere! Large 2 bed + 2 bath + parking.,11677180,Topaz,Toronto,450,0,0,3747,1,3,1,"6,9",10,3,2,2,0,1,0,0,321,North America +713,Furnished Clean Single room,9956811,Erica,Toronto,114,1,0,3823,1,2,10,"6,7",11,1,1,1,1,11,1,1,0,North America +714,Fully furnished clean Private room,9956811,Erica,Toronto,82,1,0,3823,1,2,10,"4,75",4,2,1,2,0,11,1,1,0,North America +715,Single or master private bedroom main floor),24085234,Cristina,Toronto,40,0,0,3447,1,2,6,"6,7",10,1,1,1,0,9,"0,67","0,86",276,North America +716,"Central, spacious and private",41577110,Beverly,Toronto,64,1,0,3182,1,3,2,"6,79",29,2,1,1,2,2,1,1,301,North America +717,Stylish 1BR Executive Suite with Parking!,45808241,Roshanak,Toronto,187,0,0,3131,1,3,1,"6,84",111,2,1,1,1,1,"0,9","0,88",238,North America +718,Newly cozy beauty house huge backyard-Oasis in GTA,48060985,Yi,Toronto,547,1,1,3102,1,3,1,"6,85",174,14,"6,5",6,7,1,1,"0,98",69,North America +719,Luxury 1 bedrm with parking Toronto,2180237,M-Hassan,Toronto,183,1,1,4395,1,3,2,7,13,2,1,1,1,5,1,1,0,North America +720,"TORONTO GARDEN SUITE Clean, Cozy and Comfortable",18315808,Adrian,Toronto,200,1,1,3082,1,3,1,"6,77",175,3,1,1,1,1,1,"0,93",106,North America +721,Cozy DowntownToronto PrimeLocation w balcony,42048792,Hediyeh,Toronto,214,1,1,3177,1,3,3,"6,77",160,2,1,1,1,5,1,1,93,North America +722,1000+SQFT in High Floor,35256388,Mohamed Hosein,Toronto,250,1,1,3250,1,3,2,"6,88",245,4,2,2,2,4,1,1,189,North America +723,House with the red stairs.,9627689,Taz,Toronto,279,0,0,3841,,3,1,"6,38",8,6,"1,5",2,0,1,0,"0,92",95,North America +724,Newly renovated basement with 2 bedrooms,44435857,Francisca,Toronto,88,1,0,3149,1,3,4,"6,67",47,4,1,2,3,4,1,"0,85",75,North America +725,Master Bedroom w/Bath 2nd floor Toronto North,48362910,Bob,Toronto,78,0,0,3099,1,2,4,"6,75",36,2,1,1,1,8,1,"0,75",185,North America +726,Fully Furnished Basement with Kitchenette,1541602,Miso,Toronto,60,0,0,4508,1,2,2,"6,92",12,2,1,1,1,34,1,"0,41",273,North America +727,Bright Room,22403169,Masoud,Toronto,40,1,0,3490,1,2,2,"6,56",25,1,1,1,1,2,1,"0,93",148,North America +728,"Orange, quiet, Cozy near, Sunnybrook & Glendon",50019105,Fariba,Toronto,67,1,0,3078,1,2,9,"6,82",93,1,1,1,0,9,1,"0,86",175,North America +729,Resort style condominium,38053190,Cristina,Toronto,120,0,0,3218,1,3,1,"6,63",16,3,1,1,1,1,1,"0,63",185,North America +730,Fully Furnished Basement + Kitchenette,1541602,Miso,Toronto,50,0,0,4508,1,2,2,"6,8",25,1,1,1,1,34,1,"0,41",85,North America +731,My Goldsmiths Room @thedentoronto,50157583,Kristin,Toronto,83,0,0,3076,1,2,5,"6,5",40,6,"1,5",1,1,5,"0,6","0,5",0,North America +732,"Private 2 bdrm, 1 living room in High Park North",42383553,Roxy,Toronto,110,0,0,3173,1,2,1,"6,65",54,2,1,2,2,1,0,0,1,North America +733,"Beautiful 1 bdrm, Little Italy/Bickford Park",50542185,Peter Neumann &,Toronto,109,0,0,3071,1,3,1,"6,83",48,2,1,1,1,1,1,"0,6",227,North America +734,FAV Homestay-Toronto since 2004,50203566,Imelda,Toronto,39,1,1,3075,1,2,2,"6,86",21,2,"2,5",1,0,2,1,1,139,North America +735,Fancy Yonge & Bloor Condo,15850616,Sima,Toronto,165,0,0,3632,1,3,1,"6,33",3,2,1,1,1,1,"0,5",0,71,North America +736,Terrific downtown 2bed 1bath condo,23518355,Lee-Anne,Toronto,135,1,1,3461,1,3,24,"6,71",15,3,1,2,2,24,1,1,275,North America +737,"Ace location, fun studio",23518355,Lee-Anne,Toronto,99,1,0,3461,1,3,24,"6,47",16,2,1,0,0,24,1,1,297,North America +738,Amazing downtown location,22629251,Robin,Toronto,180,1,0,3485,1,3,1,"6,78",161,3,1,1,0,1,1,1,268,North America +739,"Cozy, clean 1 bedroom basement",10951538,Lesley,Toronto,56,1,0,3773,1,3,1,"6,69",58,2,1,1,1,1,1,1,262,North America +740,Heritage House all to Yourself! 1BR 3BA 2 Liv Rms,50285336,Sean,Toronto,220,1,1,3074,1,3,1,"6,91",101,2,"2,5",1,1,1,1,"0,94",120,North America +741,1 BDR in Charming Brownstone!,9009104,Johanna,Toronto,79,0,0,3873,1,2,1,7,2,1,1,1,1,1,0,0,188,North America +742,Retreat to a Stylish Flat in Toronto,758098,Kyle,Toronto,140,0,0,4690,1,3,1,"6,8",210,3,1,1,1,1,0,1,238,North America +743,Bright studio in the city centre,227479,Tina,Toronto,98,0,0,4985,1,3,1,"6,51",134,2,1,0,0,2,0,0,242,North America +744,Quiet room close to downtown,50328841,Lina,Toronto,59,1,1,3074,1,2,3,"6,92",36,1,1,1,1,3,1,"0,97",237,North America +745,Bachelor Apartment,11604753,Steve,Toronto,76,1,0,3750,1,3,1,"6,58",119,2,1,0,1,1,1,1,25,North America +746,Our Secret Room @TheDenToronto,50157583,Kristin,Toronto,74,0,0,3076,1,2,5,"6,86",23,6,"1,5",1,1,5,"0,6","0,5",0,North America +747,The SECRET Cottage Room,50157583,Kristin,Toronto,69,0,0,3076,1,2,5,"6,5",46,1,"1,5",1,1,5,"0,6","0,5",1,North America +748,Unique Beaches Apartment,50935443,Roel,Toronto,80,1,1,3066,1,3,1,"6,91",141,2,1,1,2,1,1,1,208,North America +749,"Top downtown location, 1 bed/1 bath",23518355,Lee-Anne,Toronto,105,1,1,3461,1,3,24,"6,47",15,2,1,1,1,24,1,1,185,North America +750,FAV Homestay-Toronto-2004 (single/shared),50203566,Imelda,Toronto,39,1,0,3075,1,1,2,"6,6",10,2,"1,5",1,0,2,1,1,84,North America +751,Large Apartment in Downtown Toronto,51003713,Al-Karim,Toronto,374,0,0,3065,1,3,1,"6,45",40,5,1,1,1,1,0,0,0,North America +752,Private bedroom with shared bath (male roommate),49943232,Mikel,Toronto,62,0,0,3079,1,2,1,0,0,1,1,1,1,1,0,0,365,North America +753,Executive 1 Bedroom on York,24122779,Shabnam,Toronto,195,1,0,3446,1,3,6,"6,5",22,3,1,1,2,9,1,"0,99",186,North America +754,Spectacular 2 BDR+ 2BTH/ Free Parking/ North York,54422135,Seyedeh Afarin,Toronto,300,0,0,3032,1,3,29,7,7,5,2,2,2,69,1,"0,53",0,North America +755,Elite Lakeview 1 Brdm on York St.,24122779,Shabnam,Toronto,150,1,0,3446,1,3,6,"6,14",29,3,1,1,2,9,1,"0,99",186,North America +756,"Nice, clean 1bdrm apt in great area",24804051,Muriel,Toronto,158,0,0,3427,1,3,1,0,0,2,1,1,1,1,0,0,1,North America +757,Bedroom and Bathroom by the Lake,2854730,Andrew,Toronto,90,0,0,4317,1,2,1,"6,87",318,2,0,1,1,1,"0,9","0,84",362,North America +758,Gorgeous City Views with Balcony Terrace,7165743,Jesse,Toronto,69,0,0,3960,1,2,1,"6,4",10,2,1,1,1,1,0,"0,71",186,North America +759,Ultimate downtown location sleeps 2,23518355,Lee-Anne,Toronto,135,1,1,3461,1,3,24,"6,76",17,2,1,1,0,24,1,1,196,North America +760,"#2 Good Vibes, Eglinton West & Keele. Toronto",37093240,Israel,Toronto,58,1,1,3229,1,2,3,"6,91",58,1,2,1,1,3,1,"0,97",187,North America +761,Excellent downtown location for 2!,23518355,Lee-Anne,Toronto,110,1,0,3461,1,3,24,"6,5",12,2,1,1,0,24,1,1,185,North America +762,"Location supreme! One bedroom, one bath",23518355,Lee-Anne,Toronto,106,1,1,3461,1,3,24,"6,62",13,2,1,1,1,24,1,1,185,North America +763,"Comfy Bedroom @ York University, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,81",33,2,1,1,2,16,1,"0,99",364,North America +764,Downtown 1 Bedroom + Rooftop Oasis + Free Parking,6540835,James,Toronto,100,0,0,3996,1,3,12,"6,81",243,2,1,1,1,12,1,"0,67",236,North America +765,Higher-End Home on Creek btw Airport&Downtown-2Bed,55545975,Heather,Toronto,79,0,0,3023,1,2,1,0,0,2,1,1,2,1,0,0,277,North America +766,2 bed + 2 bath condo in awesome downtown location,23518355,Lee-Anne,Toronto,169,1,0,3461,1,3,24,"6,45",11,4,2,2,2,24,1,1,328,North America +767,*2 Bedroom 2 Unit ENTIRE CONDO*,33842639,Derek,Toronto,345,1,1,3269,1,3,1,"6,89",88,4,2,2,2,1,1,"0,93",332,North America +768,Cute Surrealist Room Roncesvalles 79,17412262,Candace + Mr. Fitz,Toronto,39,1,0,3594,1,2,2,"6,87",133,1,1,1,1,2,1,1,279,North America +769,Large Bedroom @ College & Dundas 79,17412262,Candace + Mr. Fitz,Toronto,41,1,0,3594,1,2,2,"6,79",92,2,1,1,1,2,1,1,241,North America +770,"Downtown Main Floor apartment, Free WIFI & Parking",23459764,John,Toronto,89,1,0,3463,1,3,4,"6,66",59,2,1,1,3,4,1,1,311,North America +771,Spacious 2 BRs + 2 Bath - Heart of City- VIDEO,7828359,Karma,Toronto,247,0,0,3928,1,3,2,"6,82",148,4,2,2,2,3,"0,84","0,48",114,North America +772,Lux Queen West/ Ossington 3 BD/3BTH w/ parking,403478,Cynthia And Chris,Toronto,299,0,0,4818,1,3,1,"6,62",14,6,"2,5",3,4,1,0,0,0,North America +773,Airy Loft Space near Distillery District,38711670,Pinoo,Toronto,254,1,1,3212,1,3,1,"6,74",137,2,1,1,1,1,1,1,111,North America +774,"Red, Cozy Private Room near Sunnybrook & Glendon",50019105,Fariba,Toronto,65,1,0,3078,1,2,9,"6,51",41,1,1,2,3,9,1,"0,86",144,North America +775,Downtown Luxury Suite! Private Bathroom,55843503,Noris Angela,Toronto,169,1,1,3021,1,2,1,"6,95",82,2,1,1,1,1,1,"0,86",309,North America +776,"1 bedroom parking by subway,24 hr buses,highways",16811022,Ludmila,Toronto,96,0,0,3608,1,3,7,"6,53",65,2,1,2,1,7,"0,3","0,87",0,North America +777,Airy Private Bedroom-Share Bsmt w/up to 2 Others,35084172,Hellen,Toronto,50,1,1,3253,1,2,6,"6,67",9,1,1,1,1,6,1,1,51,North America +778,Big Private Bedroom-Share Bsmt w/up to 2 Others,35084172,Hellen,Toronto,42,1,0,3253,1,2,6,"6,5",6,1,1,1,1,6,1,1,136,North America +779,Bright & New Room - Queen West St.,36356046,Tamara,Toronto,70,1,1,3237,1,2,5,"6,77",92,1,1,1,1,5,1,"0,87",299,North America +780,"2 BEDR00M APT-Spacious-Bright-Alderwood, Etobicoke",56617821,Marie,Toronto,135,1,1,3015,1,3,1,"6,54",13,4,1,2,2,1,1,1,149,North America +781,Extra Large 1 Bedroom Cozy Downtown Core Condo,56641718,Sean,Toronto,87,0,0,3015,1,3,1,"6,67",12,2,1,1,1,1,1,"0,4",161,North America +782,"ONE BED ROOM FOR RENT AVAILABLE ON JAN. 20, 2018",20015139,Leonora,Toronto,82,0,0,3548,1,2,1,0,0,1,1,1,0,1,0,0,0,North America +783,Great Family-Friendly Toronto apt.,10492797,Rhonda,Toronto,95,0,0,3798,1,3,1,"6,91",172,4,1,2,1,1,1,"0,8",78,North America +784,Lovely house in Leslieville,56709498,Peter,Toronto,254,1,1,3014,1,3,2,"6,78",49,3,1,2,2,2,1,"0,85",97,North America +785,Comfy apartment minutes away from the Heart of TO,16479090,Alexandra,Toronto,166,0,0,3617,1,3,2,7,6,4,1,1,2,3,0,0,277,North America +786,Tarragon Lane two story townhouse,53585883,Pia,Toronto,260,0,0,3038,1,3,2,7,2,4,"1,5",2,2,2,0,0,192,North America +787,FURNISHED RM IN 2 BRM BASEMENT APT,9956811,Erica,Toronto,124,1,1,3823,1,2,10,7,2,1,1,1,1,11,1,1,0,North America +788,SUITE - MODERN LESLIEVILLE HOME | FREE PARKING,32857505,Chris,Toronto,69,0,0,3282,1,2,2,"6,88",267,2,1,1,1,2,"0,9","0,83",189,North America +789,Cozy Up Steps to Dundas Square & the Eaton Centre,12478688,Ray,Toronto,89,1,0,3721,1,3,2,"6,65",59,4,1,1,1,2,1,1,16,North America +790,Sunny backyard Downtown 2-Bedroom,27998605,"Robert & Catherine, Husband & Wife",Toronto,107,0,0,3359,1,3,3,"6,82",104,2,1,2,3,3,1,"0,67",305,North America +791,New reno in Beaches / Leslieville,52231951,Brian,Toronto,57,0,0,3050,,3,1,0,0,3,1,2,1,1,0,0,185,North America +792,PRIVATE ROOM FOR STUDENTS,57200320,Geiza,Toronto,69,0,0,3011,,2,1,0,0,1,1,1,1,1,0,0,1,North America +793,Bright Room w Full Kitchen and Detached Bathroom,43198035,Ekaterina,Toronto,137,1,0,3164,1,2,3,"6,61",23,2,1,1,0,3,1,"0,97",249,North America +794,Luxury 2 Bedrooms + Den Condo – Downtown Toronto,39032805,Saniya,Toronto,200,0,0,3208,1,3,1,"6,73",27,4,2,2,2,1,1,"0,77",365,North America +795,Private 2 level Apt. in the city,58333666,Gil,Toronto,92,0,0,3002,1,3,1,"6,85",160,4,1,1,2,1,0,0,248,North America +796,Campbell Manor Large Contemporary Victorian,57615923,Lori,Toronto,546,1,0,3007,1,3,1,"6,71",14,5,"3,5",3,3,1,1,"0,88",179,North America +797,King West Condo next to Farm Boy + Lake + Amazing Rooftop,19961693,Klodia,Toronto,116,0,0,3549,1,3,2,"6,8",352,2,1,1,1,2,"0,86","0,67",205,North America +798,Penthouse Monthly Rental at TipTop Lofts w Parking,22932234,Farid,Toronto,135,1,1,3477,1,3,4,7,24,3,1,1,1,7,1,"0,83",129,North America +799,located in the heart of Toronto,36180226,Mouhanad,Toronto,73,0,0,3239,1,2,1,"6,72",36,1,1,1,1,1,1,0,94,North America +800,Friendly house to share - long term preferred,5845313,Catherine,Toronto,90,0,0,4040,1,2,4,0,0,1,1,1,1,4,1,0,0,North America +801,"Luxurious, Spacious & Warm Apt.",57674011,Rose,Toronto,169,0,0,3007,1,3,1,"6,8",5,6,1,3,4,3,1,0,2,North America +802,1F Downtown New Clean Bachelor Unit,9923100,Ed,Toronto,77,0,0,3825,1,3,15,"6,78",84,2,1,0,1,15,1,"0,53",207,North America +803,★ Amazing 3 Beds Downtown @ Harbour & Union ★,187320,Downtown Suite Living,Toronto,155,0,0,5022,1,3,8,"6,79",19,3,2,3,3,8,1,"0,54",92,North America +804,"2 Bdr+1 Toronto North, Park View",47910679,Luda,Toronto,178,0,0,3104,1,3,2,"6,84",32,6,1,2,4,2,0,0,115,North America +805,Designer Home - Downtown 2 bedroom,954151,Jessica,Toronto,245,0,0,4648,1,3,1,"6,63",8,5,1,2,2,1,1,0,138,North America +806,"Luxury Condo Across CN Tower, Rogers Centre & MTCC",51662812,Vinesh,Toronto,186,1,1,3057,1,2,1,"6,81",21,1,1,2,0,1,1,1,3,North America +807,Honey House in the Beach,57791518,Ann,Toronto,100,1,1,3006,1,3,1,"6,96",259,4,1,2,2,2,1,"0,95",273,North America +808,Don't miss out! 1 bdrm Toronto Apartment - Private,58851850,Holly,Toronto,115,0,0,2998,1,2,3,7,1,1,1,1,1,3,0,0,188,North America +809,"A White, Bright, Gorgeous Nest.",1402232,Abigail,Toronto,95,1,0,4553,1,3,3,"6,69",228,5,1,1,2,4,1,"0,99",226,North America +810,Large Studio Downtown Toronto,20185762,N,Toronto,115,0,0,2996,1,3,1,"6,76",17,2,1,0,0,1,0,0,356,North America +811,Enjoy a 1BDRM Condo in the Heart King West,4815096,Nelson,Toronto,514,0,0,4116,1,3,1,"6,73",15,2,1,1,1,1,0,0,276,North America +812,Bright Luxury Loft Downtown Core - Longterm rental,62471337,Sarah,Toronto,170,0,0,2974,1,3,1,0,0,2,"1,5",1,1,1,1,0,212,North America +813,Charming Sunny 1BR in Heart of Ossington/Bellwoods,1017559,Darije,Toronto,171,1,1,4634,1,3,1,"6,92",232,2,1,1,1,2,1,"0,87",115,North America +814,YONGE AND EGLINTON,13130787,Branka,Toronto,111,0,0,3701,1,2,1,7,3,1,1,1,1,3,0,0,0,North America +815,Cozy Townhouse with yard & parking,62557170,James,Toronto,131,0,0,2973,1,3,1,"6,95",197,6,"1,5",1,3,1,1,"0,67",152,North America +816,Cozy Unit In Kensington Market,53955322,Sindy,Toronto,88,1,0,3035,1,3,1,"6,6",167,2,1,1,1,1,1,1,1,North America +817,Urban Oasis on King St. W,63126915,Cheryl,Toronto,300,0,0,2969,1,3,1,"6,5",5,3,2,1,1,1,0,0,276,North America +818,"room 4 号房。安静客房带独立卫生间,,Private room with own bath",50769016,Jane,Toronto,169,0,0,3068,1,2,3,"6,92",14,2,"1,5",1,1,3,0,0,1,North America +819,Peaceful Room in Health-Conscious Home,59749138,Lynn,Toronto,69,1,0,2992,1,2,2,"6,7",44,3,1,1,2,2,1,"0,85",188,North America +820,C1 Cozy studio in heart of the city,26753094,Keir,Toronto,70,1,0,3383,1,3,7,"6,73",322,2,1,1,1,9,1,"0,98",306,North America +821,Prime Trinity Bellwoods Queen St W unit in house,4041484,Eva&Mattia,Toronto,86,0,0,4198,1,3,1,"6,86",51,2,1,1,2,1,1,"0,75",186,North America +822,A Studio Unit on Midtown Subway,17429756,Ranxia,Toronto,100,0,0,3594,1,3,2,"6,79",98,2,1,0,0,4,0,1,236,North America +823,Luxurious 1+1 Penhouse in North York @ Yonge&Finch,60143656,Frank,Toronto,123,0,0,2990,1,3,1,"6,71",7,3,1,2,2,1,1,"0,33",248,North America +824,"Basement Rm Queen bed, 7 mins to Airport",59824620,Carmina & Renato,Toronto,40,1,1,2992,1,2,3,"6,83",25,1,1,1,0,3,1,1,281,North America +825,One Bedroom Available for Rent,63743513,Saransh,Toronto,500,0,0,2964,1,2,1,0,0,1,0,1,1,1,0,0,0,North America +826,Basement private room parking and Netflix free,63763172,Janaina,Toronto,64,1,0,2964,1,2,1,"6,71",192,2,1,1,1,1,1,"0,93",57,North America +827,Clean/Quiet/24hr Bus East Toronto,64046929,John,Toronto,35,0,0,2962,1,2,2,"6,75",4,1,2,1,1,2,0,0,0,North America +828,AN URBAN OASIS,28621092,Rikki,Toronto,206,0,0,3348,1,3,1,"6,86",35,2,1,1,1,2,"0,67",0,187,North America +829,Chic Condo | Downtown Core | Next to CN-MTCC-TIFF,62255973,Lilian,Toronto,250,0,0,2975,1,3,1,"6,76",111,4,1,1,2,1,1,"0,78",275,North America +830,Penthouse Suite With Panaromic Lake/CN Tower View,58064419,Salma,Toronto,100,0,0,3004,1,3,1,"6,5",2,2,1,1,1,1,1,0,268,North America +831,Bright spacious lovely bsmnt apt- Great location!,26764271,Noosh,Toronto,170,0,0,3383,1,3,4,"6,86",7,6,1,2,2,4,1,"0,36",6,North America +832,Penthouse 67 fl + FREE Parking,64577961,Maged,Toronto,169,1,1,2958,1,3,1,"6,79",425,3,1,1,2,1,1,1,301,North America +833,One bedroom Queen West condo :),27072224,Andrew,Toronto,1451,0,0,3377,1,3,2,7,3,3,1,1,1,2,0,0,3,North America +834,1B+Den Lakeview New Condo near Scotiabank Arena,7476559,Nicholas,Toronto,149,1,0,3944,1,3,2,"6,77",126,4,1,1,2,5,1,1,164,North America +835,"Stylish, Central, Private Patio, Parking, Monthly",3510222,Olya,Toronto,85,1,1,4253,1,3,1,"6,93",370,2,1,1,1,1,1,1,326,North America +836,Lovely 2 BR apartment on Roncesvalles / High Park,56115395,Abraham,Toronto,165,0,0,3019,1,3,1,"6,4",10,2,1,2,2,1,0,1,187,North America +837,Home Away from Home @ Fairview Mall,52080589,Lince,Toronto,100,0,0,3052,1,2,1,"6,83",6,2,1,1,1,1,0,0,2,North America +838,Breathtaking view: 34th floor! Downtown Toronto!,45019143,Julia,Toronto,200,0,0,3142,1,3,1,6,1,3,1,1,1,2,0,0,278,North America +839,Bright Bsmt APT in Trendy Dufferin Grove,30654608,David,Toronto,71,1,0,3314,1,3,13,"6,65",247,4,1,1,1,15,1,"0,91",252,North America +840,Two bedrooms+basement in House,22307605,Geet & Sunil,Toronto,250,0,0,3493,1,3,1,"6,78",28,4,2,2,2,1,0,0,275,North America +841,"Downtown Entire Top Floor Suite,Free Parking &WiFi",23459764,John,Toronto,89,1,0,3463,1,3,4,"6,69",63,2,1,2,3,4,1,1,276,North America +842,Historical Passages in the Heart of Toronto,65267172,Suzanne,Toronto,258,0,0,2953,1,3,1,"6,86",45,5,"2,5",3,3,1,"0,8","0,4",116,North America +843,Cozy and Convenient Studio in Roncy,48658070,Ashley,Toronto,125,1,1,3095,1,3,1,"6,87",71,3,1,0,2,2,1,1,356,North America +844,Executive 2 Bedroom House Near Airport & Go Train,32357925,Kristin,Toronto,150,1,1,3288,1,3,2,"6,5",2,4,"2,5",2,2,2,1,"0,82",117,North America +845,Your home in Toronto,65646014,Pierre,Toronto,146,1,1,2950,1,3,1,"6,86",191,4,1,1,2,1,1,1,80,North America +846,Luxury 2+2 In the Heart Of DT Free Secured Parking,22771222,Edmund,Toronto,186,1,1,3481,1,3,1,"6,9",100,5,2,2,2,1,1,"0,98",341,North America +847,penthouse one bedroon apartment.,65645181,Ning,Toronto,146,0,0,2950,1,3,1,"6,6",150,2,1,1,1,1,1,"0,63",148,North America +848,Madame Margot-lovely basement suite,29160168,Celine,Toronto,140,1,1,3339,1,3,1,"6,83",53,2,1,0,1,1,1,"0,95",145,North America +849,4E 1 Bed 1 Bath | Private Terrace | Downtown TO,37514178,TO Stays,Toronto,120,0,0,3224,1,3,20,"6,67",15,2,1,1,1,20,"0,94","0,79",25,North America +850,Spectacular 1BR Trendy Loft - Bright and Spacious!,15942957,Kevin,Toronto,213,1,1,3630,1,3,2,"6,85",322,3,1,1,1,4,1,"0,97",357,North America +851,1 BRM + Den: Condo Downtown - Lakeshore Toronto,58333668,Phi Quang,Toronto,222,1,1,3002,1,3,1,"6,76",25,3,1,1,0,1,1,"0,98",239,North America +852,Beautiful modern new 2Story+Basement+free parking,26764271,Noosh,Toronto,240,0,0,3383,1,3,4,"6,74",26,8,"1,5",3,4,4,1,"0,36",83,North America +853,Apartment in High Park area of T.O.,47582177,Kirsten And Geoff,Toronto,71,0,0,3109,1,3,1,"6,91",93,2,1,1,1,1,1,"0,67",261,North America +854,Trendy King West Condo Core Downtown Toronto,10338247,Kevin,Toronto,115,0,0,3806,1,3,1,"6,5",31,2,1,1,1,2,"0,67","0,52",237,North America +855,In-law Style Guest Suite,6369703,Dave & Julie,Toronto,85,0,0,4006,1,3,1,7,20,2,1,1,1,1,1,"0,5",234,North America +856,Clean + modern mid-town TO condo,2365223,H,Toronto,99,0,0,4370,1,2,1,"6,41",44,2,1,1,1,1,1,0,275,North America +857,168 Simcoe; 1 bedroom + office den,40120407,Toronto,Toronto,105,1,1,3197,1,3,8,6,1,3,1,1,2,8,1,1,53,North America +858,Cozy Private Central Toronto Apartment,14720783,Dovran,Toronto,88,1,1,3659,1,3,3,"6,72",68,3,1,0,2,3,1,1,244,North America +859,168 Simcoe; Two Bedrooms Apartment,40120407,Toronto,Toronto,155,1,0,3197,1,3,8,0,0,4,"1,5",2,2,8,1,1,130,North America +860,Take in Panoramic City Views from a Sophisticated Condominium,66236699,Jeffery,Toronto,400,1,1,2946,1,3,1,"6,94",520,2,"1,5",1,1,1,1,1,60,North America +861,Prime Location Heritage Home 3 Bedrooms 3 baths,49573755,Melanie,Toronto,200,0,0,3084,1,3,1,"6,74",47,6,3,3,3,1,0,0,162,North America +862,Downtown Apartment,19300565,Akaash & Bethany,Toronto,214,1,1,3561,1,3,3,7,3,2,1,1,1,3,1,"0,83",243,North America +863,Your family's temporary home,3118660,Zoltan,Toronto,235,0,0,4292,1,3,1,"6,94",18,5,1,3,3,1,0,"0,5",8,North America +864,Unique Above Garage Loft private Bedroom,13066292,Jose,Toronto,168,1,1,3703,1,2,10,"6,76",425,4,1,1,2,15,"0,99","0,99",60,North America +865,Ravine Paradise with heated pool & hot tub!,66469380,Preston,Toronto,411,1,1,2944,1,3,1,"6,82",33,6,2,3,3,1,1,"0,94",76,North America +866,Hip Historic Home with High Ceilings,1887031,Leslie,Toronto,259,0,0,4437,1,3,1,"6,71",7,4,1,2,2,1,1,"0,55",248,North America +867,Stunning Studio in Leslieville with Free Parking,24593297,Brenda,Toronto,75,1,0,3433,1,3,2,"6,82",115,1,1,0,0,2,1,1,88,North America +868,"Separate, central, modern apt w/ laundry in suite",2680451,Shona,Toronto,65,1,0,4334,1,3,1,"6,77",124,2,1,1,2,2,1,1,332,North America +869,Private room near Pearson Airport,16423325,Chioma,Toronto,65,0,0,3618,1,2,1,"6,83",13,2,1,1,1,1,0,0,187,North America +870,Awesome Family Home - Roncesvalles Village,2156289,Julie,Toronto,300,1,1,4398,1,3,1,7,21,6,"2,5",5,4,1,1,1,323,North America +871,Modern Unit in Downtown Toronto,51258214,Jane,Toronto,83,0,0,3062,1,3,1,"6,76",17,4,1,0,2,1,0,0,52,North America +872,Park Place! 3+ Bdrm Urban Apt. in heart of Toronto,72249424,Debbie,Toronto,242,0,0,2907,1,3,1,"6,96",157,8,2,3,4,4,0,1,66,North America +873,"Beaches Butterfly Bungalow, MAIN",7065012,Jude,Toronto,106,0,0,3965,1,3,2,0,0,4,1,2,2,2,1,0,321,North America +874,"Quiet, Private, 1 BR Apt @ Boardwalk / Beach",20533209,Jennifer M.,Toronto,179,0,0,3537,1,3,1,"6,93",81,3,1,1,2,1,"0,9","0,82",320,North America +875,Bright Renovated Private Room in the Annex,49028111,Ramin,Toronto,79,0,0,3091,1,2,3,"6,69",88,1,1,1,1,3,"0,9","0,89",342,North America +876,MMG Deluxe Suite - Rogers Centre/City View,50396723,Frankie,Toronto,165,0,0,3073,1,3,16,"6,64",173,3,1,1,1,34,"0,96","0,35",277,North America +877,"Close to Downtown, By the lake/10 mins to Airports",66281315,Behrang,Toronto,275,0,0,2945,1,3,1,"6,93",27,2,1,1,2,1,0,0,237,North America +878,"Cozy, comfortable and fully-equipped apartment.",11390892,Jesus,Toronto,112,1,1,3757,1,3,1,"6,88",245,2,1,1,1,1,1,1,187,North America +879,Private open concept Beach Studio steps to Lake,6726307,Carlos & Mari,Toronto,75,0,0,3985,1,3,1,"6,76",299,3,1,1,2,1,0,1,115,North America +880,[Kashaneh at Bayview village ],12033867,Kashaneh,Toronto,129,0,0,3736,1,3,16,"6,33",3,2,1,0,1,17,"0,88","0,08",0,North America +881,Bright East-Toronto 2 Bedroom Near Subway,65604692,Lynne,Toronto,153,1,1,2950,1,3,1,"6,91",129,5,1,2,3,1,1,"0,96",190,North America +882,Cozy King West Loft,23924225,Robin,Toronto,125,1,1,3451,1,3,2,"6,76",168,2,1,1,1,2,1,"0,99",225,North America +883,Basement apt -1 bed/1 bath/kitchen/laundry,73514916,Mandie & Isaac,Toronto,150,0,0,2900,1,3,1,"6,71",46,2,1,1,1,1,0,0,359,North America +884,Ossington Rowhouse + Private Garden,13004853,Sarah,Toronto,231,1,1,3705,1,3,1,"6,89",351,2,1,1,1,1,1,"0,97",345,North America +885,"Giant room,near UoTScar/Centennial/PanAmCentre",66479287,Kim,Toronto,41,1,0,2944,1,2,3,"6,75",57,1,1,1,1,3,1,"0,86",187,North America +886,Closet Room in a Shared Loft,13066292,Jose,Toronto,87,1,1,3703,1,2,10,"6,82",235,2,1,1,1,15,"0,99","0,99",96,North America +887,Executive Condo Townhouse-2 BR+2.5 BA& Free PRKG,435660432,Al,Toronto,235,1,1,871,1,3,5,"6,85",86,4,"2,5",2,2,8,1,"0,94",275,North America +888,4C - 1 Bed 1 Bath | 199 Richmond St W,37514178,TO Stays,Toronto,127,0,0,3224,1,3,20,"6,36",12,2,1,1,1,20,"0,94","0,79",5,North America +889,Downtown Condo,11368776,Ramakrishna,Toronto,200,0,0,3758,,3,1,0,0,4,2,2,1,1,0,0,7,North America +890,Cozy apartment in Lesliville,20803742,Jelena,Toronto,87,0,0,3530,1,3,2,"6,59",61,3,1,1,2,2,1,"0,33",200,North America +891,Beautiful modern 2 bdr in the heart of downtown,12482119,Maryam,Toronto,140,1,0,3721,1,3,1,"6,8",55,4,2,2,2,1,1,"0,83",123,North America +892,Large Room in a Premium Suite (Bedroom B),51175293,Jith,Toronto,49,1,1,3063,1,2,4,"6,88",16,2,1,1,1,4,1,"0,92",208,North America +893,Comfy full one bedroom unit with kitchen/bath,48821560,Julie,Toronto,96,0,0,3093,1,3,3,"6,7",242,2,1,1,1,3,1,"0,25",223,North America +894,Boutique apt uptownToronto Yonge&Eg,35499709,Oakley,Toronto,145,0,0,3248,1,3,2,"6,61",48,2,1,1,2,2,1,"0,71",238,North America +895,"Beautiful, Private & Spacious 2Bed and 2bath Bsmt",145715765,Talha,Toronto,160,0,0,2454,1,3,1,"6,92",26,4,2,2,2,1,0,0,0,North America +896,Toronto Junction modern renovated house,8551924,Vanja,Toronto,350,0,0,3896,1,3,1,"6,5",4,10,"2,5",4,6,2,1,"0,62",96,North America +897,Boutique Loft in Great Location! See Pics!,74521738,S,Toronto,750,0,0,2895,1,3,1,"6,55",78,2,1,0,2,1,0,0,275,North America +898,Downtown apartment with parking,2242693,Christian,Toronto,222,1,1,4386,1,3,1,"6,83",136,5,"1,5",1,2,1,1,1,324,North America +899,Cozy Room in the Heart of Toronto,40813523,Jon,Toronto,300,0,0,3190,1,2,1,0,0,1,1,1,1,1,0,0,2,North America +900,Toronto High Park Beach Pad,1200367,Grace,Toronto,120,1,1,4604,1,3,4,"6,65",35,2,1,1,1,4,1,"0,91",64,North America +901,Quaint Trinity Bellwoods studio,7502554,Sanura,Toronto,196,1,0,3943,1,3,1,"6,68",25,2,1,0,1,1,1,1,24,North America +902,"Little Italy, Bright 1 Bedroom, Close to It All",14761152,B,Toronto,190,1,1,3658,1,3,9,"6,64",42,4,1,1,2,9,1,"0,93",291,North America +903,Modern Apartment in Popular Roncesvalles Village,57921416,Melissa,Toronto,137,1,1,3005,1,3,1,"6,77",376,2,1,1,1,2,1,1,217,North America +904,"Ideal location, modern decor 1 bed 1 bath",23518355,Lee-Anne,Toronto,114,1,1,3461,1,3,24,"6,71",17,2,1,1,1,24,1,1,185,North America +905,Condo Accommodation,4477219,Vas,Toronto,50,0,0,4147,1,3,4,"6,65",19,2,1,0,1,4,1,"0,71",312,North America +906,"Luxury Corner Unit (entire place), 2 bath, 2+1 Bd",30103147,Bahar,Toronto,120,1,1,3323,1,3,1,"6,6",5,4,2,2,2,1,1,"0,86",95,North America +907,Lake View Condo in Heart of Downtown,37427377,Shoomy,Toronto,83,0,0,3225,1,2,1,7,2,2,1,2,4,1,0,0,275,North America +908,"Beautiful, Elegant and Feminine Toronto Rental",17681894,Millie,Toronto,195,0,0,3588,1,3,1,7,1,2,1,1,2,1,0,0,275,North America +909,Fabulous Loft in Film District,2449404,Lj,Toronto,166,1,1,4361,1,3,1,"6,81",38,2,"1,5",1,1,1,1,1,288,North America +910,Beautiful Downtown Toronto Condo-Beautiful Views,29532204,May,Toronto,125,0,0,3333,1,3,1,0,0,2,1,1,1,1,0,0,2,North America +911,Private 1 Bedroom Character Apartment,75883224,Gordon Alexander,Toronto,175,0,0,2887,1,3,1,"6,81",38,3,1,1,1,1,"0,8",1,277,North America +912,Earl Grey Gardens (Newly Renovated!),69553556,Connie,Toronto,89,0,0,2924,1,3,1,"6,91",230,3,1,1,1,1,0,0,200,North America +913,Subway Station - Master Bdrm With Private Bathroom,75922613,Jianchao,Toronto,54,1,1,2887,1,2,2,"6,71",136,2,1,1,1,2,"0,9","0,96",291,North America +914,Cozy 2 Bedroom Suite on Withrow Park with Garden,71203654,Susan,Toronto,108,0,0,2914,1,3,1,"6,91",197,4,1,2,2,1,1,"0,64",251,North America +915,"5 BR Large Family Home. Big yard, POOL!",13424924,Jeff,Toronto,575,1,1,3693,1,3,1,"6,98",56,8,"4,5",5,6,1,1,"0,88",264,North America +916,Worth to stay,75987640,Stephen,Toronto,150,0,0,2887,,2,1,7,2,2,2,1,1,1,0,0,276,North America +917,One bedroom in Beaconsfield,27072224,Andrew,Toronto,2000,0,0,3377,1,3,2,7,3,3,1,1,1,2,0,0,0,North America +918,Modern Chic-Luxe Retreat Near Yonge/Finch 5300Sqft,71533651,Ying Yan,Toronto,348,0,0,2912,1,3,1,"6,82",66,12,"4,5",7,7,1,1,"0,65",204,North America +919,Bright Clean Room in a Century House,76222237,Min,Toronto,42,1,0,2886,1,2,2,"6,53",77,2,1,1,1,2,1,1,227,North America +920,Beautiful 2 floor apartment by High Park,24150071,Katrina,Toronto,187,0,0,3445,,3,1,7,3,4,2,2,3,1,0,0,282,North America +921,Cozy Private Room in Vibrant Central Neighbourhood,72767174,Jill,Toronto,104,0,0,2905,1,2,1,0,0,2,1,1,1,1,0,0,276,North America +922,"Nice, quiet basement apartment",12601325,Lise,Toronto,101,1,1,3717,1,3,1,"6,77",31,2,1,0,1,1,1,"0,98",349,North America +923,Adorable 1 BR in Toronto's Hippest Hood,7450351,Zack,Toronto,89,0,0,3946,1,3,1,"5,63",8,2,1,1,0,1,0,1,145,North America +924,Cozy Toronto airport business home,4292538,Renee,Toronto,66,0,0,4170,1,2,1,7,24,2,1,1,1,1,0,0,1,North America +925,1000Sqft PanoramaView ByCNTower2Bedroom+Den,28868036,Mg,Toronto,180,0,0,3344,1,3,1,"6,67",147,6,2,3,4,5,1,"0,8",241,North America +926,Cozy Room in a Peaceful Healthy Home,59749138,Lynn,Toronto,66,1,0,2992,1,2,2,"6,77",47,2,1,1,1,2,1,"0,85",183,North America +927,"Elegant, Cosy & Large Bedroom in a Grand Townhouse",71953386,Yvonne,Toronto,75,1,0,2909,1,2,2,"6,72",63,2,1,1,1,2,1,1,185,North America +928,Cosy Contemporary bsmt space with laundry*,58929592,Diana,Toronto,78,1,0,2998,1,3,1,"6,63",35,3,1,1,3,1,1,1,6,North America +929,Entertainment District: 1+Den CN Tower Views,72135095,Kushagra,Toronto,139,1,1,2908,1,3,1,"6,81",170,2,1,1,1,1,1,1,90,North America +930,Spacious downtown Industrial loft,10737427,Steven,Toronto,300,0,0,3785,1,3,1,0,0,2,1,0,1,1,0,0,1,North America +931,"Close to UoTScar, Centennial, PanAm Centre, 401",66479287,Kim,Toronto,35,1,0,2944,1,2,3,"6,83",41,1,1,1,1,3,1,"0,86",199,North America +932,Pretty & Perfectly Positioned Parkdale Place,20564409,Voke,Toronto,165,1,0,3536,1,3,1,"6,64",137,4,1,1,2,1,1,1,341,North America +933,A cozy basement with full comfortable equipment,76729112,Gooni,Toronto,89,1,0,2883,1,3,2,"6,77",93,4,1,2,2,2,1,1,266,North America +934,Watch a Sunset in a Stylish Trinity-Bellwoods Flat,8702985,Clarence,Toronto,228,1,1,3888,1,3,10,"6,95",24,4,2,2,2,11,1,"0,95",115,North America +935,Quiet Space In The Centre Of The Action,6540835,James,Toronto,139,0,0,3996,1,3,12,"6,79",211,2,1,2,2,12,1,"0,67",236,North America +936,Nanny Suite In A Victorian Family Home,77000637,Susiesue,Toronto,120,1,1,2882,1,2,3,"6,93",162,2,1,1,0,3,1,1,361,North America +937,Posh Midtown 1 Bdrm Apt-FREE Parking61WiFi61AmazonTV,51333362,Sanja,Toronto,150,0,0,3061,1,3,1,"6,73",224,4,1,1,3,1,0,1,0,North America +938,1 Bedr Sub Penthouse with the Most Beautiful Views,77017395,Bryce,Toronto,117,1,0,2882,1,3,2,6,3,2,1,1,1,5,1,"0,91",176,North America +939,Keep Calm & Retreat On!,78084023,Rasheeda,Toronto,103,1,1,2876,1,3,1,7,4,2,1,1,1,1,1,1,250,North America +940,High Park North Studio,6835377,Maureen,Toronto,73,1,0,3978,1,2,1,"6,85",404,2,1,1,1,1,1,"0,95",356,North America +941,Gorgeous Bloordale Living,80794659,Jeffrey,Toronto,76,1,0,2863,1,2,4,"6,75",416,2,1,0,0,4,1,1,281,North America +942,Private Room in an Apartment!,72938007,Edi,Toronto,76,0,0,2904,1,2,1,0,0,2,1,1,1,1,0,0,1,North America +943,Parkdale apartment off Queen West,4924637,Paul,Toronto,89,0,0,4108,1,3,1,"6,9",250,5,1,1,2,1,1,"0,75",285,North America +944,Newly renovated private suite in architectural gem,42503503,Geoff,Toronto,135,1,1,3172,1,3,1,"6,87",384,4,1,2,2,1,1,"0,83",300,North America +945,"Conveniently Located, Cozy & Clean Room (RM 1)",77919672,Adelaida,Toronto,45,1,1,2877,1,2,3,"6,79",188,1,1,1,1,3,1,"0,97",105,North America +946,"Conveniently Located, Spacious & Clean Room (RM2)",77919672,Adelaida,Toronto,45,1,1,2877,1,2,3,"6,95",111,1,1,1,1,3,1,"0,97",74,North America +947,The Beautiful Cottage in the City.,45717250,Jason,Toronto,110,0,0,3132,1,2,1,"6,36",11,8,4,5,0,1,0,0,185,North America +948,Family room with shared Bathroom,8569918,Sharon,Toronto,149,0,0,3895,1,2,35,"6,2",5,2,"0,5",1,2,35,"0,87","0,82",274,North America +949,Cozy One Bedroom Suite near Christie Pits,68563091,Darren And Lori,Toronto,85,1,1,2930,1,3,1,"6,91",66,4,1,1,2,1,1,1,218,North America +950,Opulent Toronto Mansion with Pool,9310264,Jordan,Toronto,5000,0,0,3858,1,3,1,"6,94",17,8,4,3,3,1,0,0,3,North America +951,Stunning Dovercourt House FIRST & MAIN Unit joined,1684087,Pouneh,Toronto,590,1,0,4473,1,3,22,"6,65",20,8,3,4,4,33,1,"0,98",0,North America +952,"Stunning Dovercourt House, 2BD MAIN Floor",1684087,Pouneh,Toronto,260,1,1,4473,1,3,22,7,4,4,2,2,2,33,1,"0,98",0,North America +953,SINGLE BEDROOM WITH PRIVATE BATHROOM,81126924,Pradeep,Toronto,60,1,1,2861,1,2,1,"6,77",82,1,1,1,1,1,1,1,24,North America +954,Award-Winning Apartment in West Queen West,1684087,Pouneh,Toronto,225,1,1,4473,1,3,22,"6,82",30,4,"1,5",2,2,33,1,"0,98",124,North America +955,Nice room available near Ossington Station,76222237,Min,Toronto,38,1,0,2886,1,2,2,"6,6",31,1,1,1,1,2,1,1,0,North America +956,Deluxe Yorkville Townhouse,81144570,Jonathan,Toronto,900,0,0,2861,1,3,1,"6,75",4,4,"1,5",2,2,1,0,0,7,North America +957,"Stunning Dovercourt House, ALL units, 6 Bedrooms",1684087,Pouneh,Toronto,900,1,0,4473,1,3,22,0,0,12,"4,5",6,6,33,1,"0,98",0,North America +958,Bright and Modern Near Restaurants,9560823,Daniela,Toronto,160,0,0,3845,1,3,4,"6,77",132,4,2,2,2,4,1,0,185,North America +959,Bright Cozy Room in Beautiful House,81342792,Helena Maria,Toronto,65,1,1,2860,1,2,3,"6,91",117,1,1,1,1,3,"0,97","0,9",83,North America +960,Studio apartment with separate entrance,6998292,Lana,Toronto,49,0,0,3969,1,3,2,"6,87",187,2,1,1,1,3,1,"0,63",227,North America +961,One of a Kind 2-Story Loft! Heart of King West,25812121,Ashley Dorothy Chee Eng,Toronto,810,0,0,3401,1,3,1,"6,73",92,6,2,3,3,1,1,"0,75",324,North America +962,Fully furnished 2 bedroom 2 bathroom,81659323,Nicole,Toronto,149,0,0,2858,1,3,1,"6,95",21,3,2,2,2,1,0,1,125,North America +963,Beauty One Bedroom In the Heart of The City,46742871,Ravina,Toronto,85,0,0,3120,1,3,1,"6,38",16,4,1,1,2,1,"0,1","0,2",116,North America +964,Spacious 2 bed/2bath steps to CN tower/Union stn,27431928,Hitheam,Toronto,421,0,0,3370,1,3,2,"6,88",17,4,2,2,2,2,0,0,7,North America +965,"Upscale, Lakeside relaxing, Patio Swing, Parking",9855109,Anita,Toronto,246,1,1,3829,1,3,1,"6,79",38,4,1,2,2,1,1,"0,97",160,North America +966,single bedroom downtown Toronto,34106626,Christina,Toronto,60,0,0,3265,1,2,4,"6,56",46,1,1,1,1,4,1,"0,46",1,North America +967,Bright Condo in the Entertainment District.,842262,Fabio Tank,Toronto,230,1,0,4670,1,3,1,"6,65",49,2,1,1,2,1,1,"0,89",128,North America +968,Where the City is your Backyard,53422666,Vince & Anna,Toronto,138,0,0,3039,1,3,1,"6,86",100,3,1,1,3,1,0,0,276,North America +969,Boho-Chic lane way loft - Toronto!,8349056,Jose,Toronto,97,1,1,3904,1,3,2,7,26,2,1,1,1,3,1,"0,95",221,North America +970,Large spacious fully furnished room,78834227,Zein,Toronto,35,0,0,2872,1,2,3,"6,87",23,2,"2,5",1,0,3,1,"0,67",53,North America +971,"2 BEDROOM DOWNTOWN TO STEPS to SUBWAY, PARKING",49378194,Noemi,Toronto,200,1,0,3087,1,3,3,"6,8",188,5,1,2,3,3,1,1,219,North America +972,"Secluded Apartment in Contemporary, Renovated Century Home",8702985,Clarence,Toronto,128,1,1,3888,1,3,10,"6,94",84,2,1,1,1,11,1,"0,95",147,North America +973,cozy&relaxing private room in midtown(near subway,82329751,Ke Ren,Toronto,99,1,1,2855,1,2,2,"6,76",143,2,1,1,2,6,1,1,338,North America +974,Modern Yorkville Condo for 1 month,16355893,Margaret,Toronto,149,1,1,3620,1,3,1,"6,86",15,2,1,1,1,6,1,"0,94",338,North America +975,Spacious comfy private bedroom near subway-J1,53566543,George,Toronto,65,1,1,3038,1,2,3,"6,5",6,2,1,1,1,3,1,1,185,North America +976,"Cozy and bright apartment, private entrance, clean",14655644,Maya And Dado,Toronto,65,1,1,3661,1,3,1,"6,89",46,2,1,0,1,1,1,1,193,North America +977,New 2 bedroom private apartment - basement,33699825,Milad,Toronto,100,0,0,3270,1,3,3,"6,64",36,3,1,2,2,3,1,"0,71",20,North America +978,Amazing Condo by CN TOWER - Free Parking,2124835,Mussie Kifle,Toronto,186,1,0,4402,1,3,3,"6,66",113,3,1,1,2,3,1,"0,95",196,North America +979,Downtown Centrespot - Steps to the Eaton Centre,12478688,Ray,Toronto,72,1,0,3721,1,3,2,"6,59",18,6,1,1,1,2,1,1,1,North America +980,1 bedrm condo beside Finch Subway,22438512,Farhana,Toronto,97,0,0,3489,1,3,1,"6,5",2,2,1,1,1,1,0,0,115,North America +981,Beautiful Newly Renovated Bright 1-Bdrm Plus Apt,83038230,A,Toronto,120,0,0,2851,1,3,1,"6,88",8,2,1,1,1,2,0,0,2,North America +982,"Home in Toronto, Leslieville - cozy with backyard",79636088,Tracy,Toronto,130,0,0,2868,1,3,1,"6,92",12,2,1,1,1,1,1,"0,5",338,North America +983,"Loft By Yonge & Eglinton- 2 BR + 2.5 BA, Free PRKG",435660432,Al,Toronto,220,1,1,871,1,3,5,"6,7",54,4,"2,5",2,2,8,1,"0,94",280,North America +984,"Sunny,economical, single sublet",494460,Rachel,Toronto,45,0,0,4772,1,2,1,"6,5",2,1,2,1,1,2,1,"0,7",276,North America +985,Lovely 1 bdr + den apartment in Stockyards T.O.,11298510,Natalia,Toronto,98,0,0,3760,1,3,1,"6,67",6,2,1,1,1,2,1,"0,75",95,North America +986,Balmy Beach House,24067275,Dolores,Toronto,125,0,0,3447,,3,1,"6,75",12,2,1,1,1,1,"0,67",0,221,North America +987,Vacation Getaway:Heated Pool-Hottub Open 365 Days,24014221,Miles,Toronto,850,1,1,3449,1,3,1,"6,88",98,8,"3,5",4,5,3,1,"0,97",323,North America +988,Loftful Location - heart of King West,676570,Richard And Saudia,Toronto,117,0,0,4712,1,3,1,"6,8",44,2,1,1,0,1,1,"0,75",239,North America +989,"Bright, Airy, Newly Renovated Unit",57879991,Eric,Toronto,95,1,0,3005,1,3,5,"6,63",174,2,1,1,1,6,1,"0,95",243,North America +990,Relaxed Unit in the heart of Greek Town,80369796,Jeff,Toronto,95,1,0,2865,1,3,4,"6,12",42,4,1,1,2,4,1,"0,97",300,North America +991,Cozy and modern home,30738438,Margareta,Toronto,35,0,0,3313,1,2,1,"6,71",18,1,"1,5",1,1,1,0,0,326,North America +992,"1 bedroom, cozy, basement suite",63750100,Cristina,Toronto,135,0,0,2964,1,3,1,"6,93",44,2,1,1,1,1,0,"0,85",330,North America +993,Family friendly house in the heart of Junction,539192,Aneta,Toronto,350,0,0,4753,1,3,1,"6,8",5,4,1,3,0,2,"0,5",0,3,North America +994,Toronto Downtown 1 Bedroom Suite,50816345,Barry,Toronto,130,0,0,3067,1,3,1,"6,33",3,2,1,1,1,1,0,0,52,North America +995,"City Lights, Quiet Nights in Kensington Market",2451557,Mikkel,Toronto,199,1,1,3283,1,3,1,"6,89",18,2,1,1,1,1,1,1,196,North America +996,Lovely house in a nice safe community,83712276,XiaoXing,Toronto,450,1,1,2848,1,3,1,7,7,12,5,5,0,1,1,1,134,North America +997,Greatest package,80588076,Vina,Toronto,58,0,0,2864,1,2,1,"6,14",7,1,"1,5",1,1,1,0,0,1,North America +998,Luxury Yorkville Condo (Two Balconies & Parking),81695515,Christine,Toronto,175,0,0,2858,1,3,1,"6,85",13,5,"1,5",2,2,1,"0,5","0,5",31,North America +999,Japanese Inspired Single Room,77000637,Susiesue,Toronto,78,1,1,2882,1,2,3,"6,94",391,1,1,1,1,3,1,1,163,North America +1000,Charming Bloordale Living,80794659,Jeffrey,Toronto,105,1,0,2863,1,3,4,"6,85",228,4,1,1,2,4,1,1,275,North America +1001,Design Lovers Loft in Kensington Market,1039434,Juli,Toronto,249,1,1,4628,1,3,3,"6,85",13,2,1,1,1,3,1,1,304,North America +1002,Amazing Location! Large Patio and Panoramic Views,11018899,Belinda,Toronto,126,0,0,3770,1,3,1,"6,89",9,2,1,1,2,1,"0,83","0,3",5,North America +1003,TV featured basement apartment in the Junction,78361743,Karen,Toronto,88,1,1,2875,1,3,1,"6,92",155,3,1,1,1,1,1,1,252,North America +1004,Comfy private bedroom near subway-J2,53566543,George,Toronto,65,1,0,3038,1,2,3,0,0,2,1,1,0,3,1,1,185,North America +1005,Beautiful South View Room,70849121,Willis,Toronto,88,0,0,2916,1,2,5,"5,67",18,2,1,1,1,5,"0,75","0,86",0,North America +1006,Beautiful Victorian Home in Leslieville,82069057,Catherine,Toronto,389,1,1,2856,1,3,1,"6,88",58,4,"2,5",2,2,1,1,"0,88",233,North America +1007,Private Master Rm w/ Ensuite Wshrm,70849121,Willis,Toronto,68,0,0,2916,1,2,5,"6,39",31,3,1,1,1,5,"0,75","0,86",143,North America +1008,Homey Private Room,70849121,Willis,Toronto,58,0,0,2916,1,2,5,"6,22",27,2,1,1,1,5,"0,75","0,86",0,North America +1009,Cozy Private Oasis In the Annex (Basement Apt),57170337,Stefanie,Toronto,110,1,0,3011,1,3,1,"6,77",103,2,1,1,1,2,1,"0,86",286,North America +1010,"Relax in a Vibrant Room in a Cozy, Modern House",89010039,Catherine,Toronto,124,1,1,2822,1,2,1,"6,95",149,2,1,1,1,1,1,1,258,North America +1011,"Caring, kind family, beautiful home",87984662,Marla,Toronto,26,0,0,2827,1,2,3,7,18,1,1,1,1,3,1,"0,72",330,North America +1012,Modern Glam Condo,69546022,Lana,Toronto,145,0,0,2924,1,3,3,"6,92",12,2,1,1,1,3,1,"0,38",10,North America +1013,"2-Story Luxury Loft in Toronto, Liberty Village",5893377,Mark,Toronto,185,0,0,4037,1,3,1,"6,8",71,2,2,1,1,1,1,0,0,North America +1014,Sunny Parkdale Apt w Bay Windows,30298081,Kaitlin,Toronto,120,0,0,3320,1,3,1,0,0,2,1,1,1,1,"0,5",0,278,North America +1015,Upscale Toronto Lakeview Condo 1+1 w. Free Parking,86418292,Asitha Shawn,Toronto,255,0,0,2835,1,3,1,"6,75",232,4,1,1,2,1,"0,5","0,96",342,North America +1016,Triller Grove - A One Bedroom Luxury Urban Oasis,79737887,Maria,Toronto,140,0,0,2868,1,3,1,"6,93",140,3,1,1,1,1,1,"0,8",155,North America +1017,Bright Room in Artist's Apartment On Queen st W,89407132,Issa,Toronto,67,1,1,2820,1,2,2,"6,86",178,2,1,1,1,2,1,"0,82",299,North America +1018,In Style Local Living 2BR in Liberty Village,1198630,Ela,Toronto,175,0,0,4604,1,3,1,7,10,4,2,2,2,1,1,0,84,North America +1019,Cozy 2 Bedrooms Condo Yonge & Sheppard + Parking,85109485,Luloo,Toronto,201,1,0,2841,1,3,4,"6,5",14,3,1,2,2,32,1,1,4,North America +1020,Heart of Downtown - Best Toronto Attractions Condo,46540398,Rachel,Toronto,250,1,0,3122,1,3,1,"6,69",195,4,1,1,3,2,1,"0,97",184,North America +1021,Luxury Downtown Condo near St Lawrence Market,4607630,Nerissa,Toronto,200,0,0,4133,1,3,1,"6,94",18,4,2,2,0,3,1,"0,8",341,North America +1022,Basement Apartment 4 min walk from Finch Subway,85149414,Fery,Toronto,93,0,0,2841,1,3,1,"6,59",56,1,2,2,3,1,0,0,328,North America +1023,Large Luxury Beaches Home w Gourmet Kitchen,11652227,Clive,Toronto,267,1,1,3748,1,3,2,"6,87",78,5,"2,5",4,4,3,1,"0,89",114,North America +1024,Apartment Uptown Toronto Yonge&Eglinton,35499709,Oakley,Toronto,149,0,0,3248,1,3,2,"6,64",52,4,1,1,1,2,1,"0,71",174,North America +1025,"Upper BR single bed. Big window, 7 min to Airport.",59824620,Carmina & Renato,Toronto,47,1,1,2992,1,2,3,"6,84",19,1,1,1,1,3,1,1,0,North America +1026,West End Studio Apartment with private Patio,90046768,Christopher,Toronto,179,0,0,2816,1,3,1,"6,81",60,2,1,0,1,1,0,0,276,North America +1027,Old town loft in St. Lawrence Market!,934821,Robert,Toronto,200,0,0,4651,1,3,2,"6,87",65,3,1,1,1,2,0,"0,6",25,North America +1028,Downtown (Room3),85507924,Sophie,Toronto,125,0,0,2839,1,2,6,"6,58",26,2,1,1,0,6,0,0,1,North America +1029,Downtown Room 2 private bathroom,85507924,Sophie,Toronto,136,0,0,2839,1,2,6,"6,34",36,2,1,1,0,6,0,0,0,North America +1030,Art Deco Living in Coveted Little Italy,4629110,Shae,Toronto,78,1,1,4131,1,3,1,"6,84",73,2,1,0,1,5,1,"0,85",89,North America +1031,Downtown room 1 with private bathroom,85507924,Sophie,Toronto,136,0,0,2839,1,2,6,"6,42",38,2,1,1,1,6,0,0,0,North America +1032,Stylish and Modern 1BR Condo in Trendy King East,85481791,Antonio,Toronto,270,1,1,2839,1,3,1,"6,72",126,4,1,1,1,1,1,"0,97",243,North America +1033,centrally located Riverdale charm,90417381,Ann,Toronto,75,1,1,2814,1,2,1,"6,94",252,2,"0,5",1,1,1,"0,91","0,97",176,North America +1034,1 bdrm -Close to Toronto College of Dental Hygiene,58851850,Holly,Toronto,69,0,0,2998,1,2,3,0,0,2,1,1,1,3,0,0,2,North America +1035,Gowercourt Townhouse,85669323,Jackie,Toronto,72,0,0,2838,,2,1,0,0,1,1,1,1,1,0,0,278,North America +1036,King West Loft,32097881,Mike,Toronto,300,0,0,3291,1,3,1,"6,74",29,4,2,2,2,1,1,"0,13",16,North America +1037,Great 1BR+Den Heart of DT Toronto,65147825,Shawn,Toronto,196,0,0,2954,1,3,1,0,0,2,1,1,1,1,0,0,278,North America +1038,Large Stylish 1 Bedroom @ The Waterfront,85544595,Tina,Toronto,296,0,0,2839,1,3,1,"6,89",27,2,1,1,1,1,0,0,275,North America +1039,Room2@Pidgeon St 30mins from Yonge/Bloor+Priv Bath,73054393,Ajay,Toronto,69,0,0,2903,1,2,2,"6,21",19,2,"1,5",1,1,2,1,0,275,North America +1040,"Cozy Home, Free Parking, 15 min to the Airport",18282717,Minhly,Toronto,60,1,1,3576,1,2,1,"6,93",14,1,1,1,1,1,1,1,59,North America +1041,Scarborough East Spacious House (Bungalow),25278998,KTC Property Management Ltd.,Toronto,120,0,0,3413,1,3,19,"6,56",52,3,1,2,2,21,"0,96","0,45",114,North America +1042,Two queen beds with a private bathroom by subway,91208270,Cheng,Toronto,78,1,0,2809,1,2,6,"6,7",186,4,1,1,2,8,"0,96","0,93",196,North America +1043,Queen Bed off Queen West,14405518,Jordan,Toronto,122,1,1,3667,1,2,3,"6,77",178,2,1,1,1,3,1,"0,98",308,North America +1044,"Elegant, Easy, and Exciting",11078981,Priscilla,Toronto,100,0,0,3768,1,3,3,7,4,2,1,1,1,3,1,"0,47",198,North America +1045,"60th Floor, 1042 ft05, Amazing City & Lake Views!",51469580,Shenpan,Toronto,417,0,0,3059,1,3,1,"6,67",404,7,2,3,3,1,0,1,275,North America +1046,Private Apartment in East York !,69111249,Ervin,Toronto,110,1,0,2927,1,3,1,"6,76",205,3,1,1,2,1,1,"0,97",222,North America +1047,Excellent location - whole access to appartment,34466589,Javier,Toronto,179,0,0,3261,1,3,1,"6,73",11,2,1,2,1,1,1,"0,5",237,North America +1048,Backyard Oasis,32794648,Asim,Toronto,375,0,0,3283,1,3,1,"6,72",25,6,2,3,4,1,0,1,229,North America +1049,Room1@PidgeonSt YongeBloor 30min+Park+EnSuite Bath,73054393,Ajay,Toronto,87,0,0,2903,1,2,2,"6,82",23,2,"1,5",1,1,2,1,0,0,North America +1050,cozy New one bedroom in a great location,91382108,Shawn,Toronto,81,0,0,2809,1,3,3,"6,64",24,1,1,1,1,3,1,"0,67",210,North America +1051,The Brock - Stay in Trendy Dundas West,91382765,Jason,Toronto,134,1,1,2809,1,2,1,"6,88",316,2,"1,5",1,1,2,1,"0,99",319,North America +1052,"""Urban West side Deal""",8095828,Shantanu,Toronto,53,0,0,3915,1,2,1,"6,69",26,1,1,1,0,1,1,"0,43",276,North America +1053,"Decadent private designer den, just like home.",377962,Coreen,Toronto,100,0,0,4834,1,3,6,"6,53",31,2,1,1,2,6,"0,94","0,77",270,North America +1054,PrivateBedroomIn a TwoBedroom Apartment Downtown,49378194,Noemi,Toronto,68,1,0,3087,1,2,3,"6,68",229,1,1,1,1,3,1,1,306,North America +1055,Peace & Quiet Modern Lower Flat Christie Subway,8435335,Susan J,Toronto,151,1,1,3901,1,3,1,"6,92",138,2,1,1,1,1,1,1,296,North America +1056,Amazing Two Bedroom condo with CN Tower View,2124835,Mussie Kifle,Toronto,109,1,0,4402,1,3,3,"6,57",82,5,1,2,3,3,1,"0,95",160,North America +1057,Brand new 2 bedroom - private deck and backyard.,87143782,Oswaldo Jose,Toronto,206,0,0,2831,1,3,4,"6,94",16,3,1,2,2,4,1,"0,52",185,North America +1058,Overlooking Forest Hill Trees in Huge Family House,6397629,Daniel,Toronto,490,1,1,4004,1,3,1,"6,93",166,12,"2,5",3,7,2,1,1,35,North America +1059,"Cozy tiny house in Trinity Bellwoods, Toronto",85825104,Angela,Toronto,170,1,1,2837,1,3,1,"6,9",132,2,1,0,1,1,1,1,210,North America +1060,One queen bed with a private bathroom by subway,91208270,Cheng,Toronto,66,1,0,2809,1,2,6,"6,72",179,2,1,1,0,8,"0,96","0,93",204,North America +1061,ROOM - MODERN LESLIEVILLE HOME,32857505,Chris,Toronto,53,0,0,3282,1,2,2,"6,86",51,1,1,1,1,2,"0,9","0,83",179,North America +1062,Unique Luxury Condo in the heart of Downtown,70717112,Christopher,Toronto,450,0,0,2917,1,3,1,"6,82",76,2,1,1,1,1,0,0,187,North America +1063,Yorkville Luxury Suite,44281398,Daniel,Toronto,105,1,0,3151,1,3,3,"6,5",127,2,1,1,1,5,1,"0,97",204,North America +1064,"Stylish, Family Friendly Home in Riverdale",3069630,Mark,Toronto,400,1,1,4297,1,3,2,"6,93",73,6,"2,5",3,3,4,1,"0,95",288,North America +1065,2BDRM Free Parking Panoramic View Entertain. Dist,45554348,Michael,Toronto,230,1,0,3135,1,3,1,"6,7",432,6,1,2,3,1,1,1,129,North America +1066,1BR with unique charm and extras,48821560,Julie,Toronto,75,0,0,3093,1,3,3,"6,66",214,4,1,1,2,3,1,"0,25",135,North America +1067,West End Toronto Canadiana Chic basement suite,70341512,Shannon,Toronto,149,1,1,2919,1,3,1,"6,81",75,3,1,0,2,1,1,1,73,North America +1068,Stunning Harbor/City View: 2bdrm/2bth+Free Parking,87707656,Khosro,Toronto,444,1,1,2828,1,3,1,"6,86",555,5,2,2,2,1,1,1,365,North America +1069,Private Room & Balcony (1/2) - Yonge & Eglinton,92179542,Corinne,Toronto,50,0,0,2804,1,2,2,"6,86",22,1,1,1,1,2,"0,6","0,45",102,North America +1070,Two beds with a private bathroom by Yonge subway,91208270,Cheng,Toronto,72,1,0,2809,1,2,6,"6,71",154,3,1,1,2,8,"0,96","0,93",237,North America +1071,Spacious Basement Apartment near Heart of Toronto,87491174,Meenakumari,Toronto,85,0,0,2829,1,2,1,"6,68",120,3,1,1,1,1,0,1,276,North America +1072,Room4 with private bathroom,85507924,Sophie,Toronto,136,0,0,2839,1,2,6,"6,71",21,2,1,1,1,6,0,0,0,North America +1073,Two bedrooms Guest unit,92318796,Dina,Toronto,135,1,0,2803,1,3,1,"6,4",5,4,1,2,2,1,1,1,3,North America +1074,Two Bedrooms Private Terrace Rustic City Vibe Suite Downtown,71369879,Naruemol,Toronto,230,1,1,2913,1,3,5,"6,81",80,4,1,2,2,5,1,1,100,North America +1075,Ideal 1 bedroom for TIFF in the heart of downtown,89126634,Pol,Toronto,198,0,0,2821,,3,1,7,1,2,1,1,1,1,0,0,277,North America +1076,Cozy Condo With Lake View In Heart Of Toronto,15480265,Lelian,Toronto,100,1,1,3641,1,3,1,"6,82",258,4,"1,5",1,1,1,1,"0,9",276,North America +1077,Luxury Home with all the Bells and Whistles!,92640379,Daniel,Toronto,595,1,1,2801,1,3,1,"6,86",22,6,"2,5",3,3,1,1,1,49,North America +1078,Fancy one bedroom condo Yonge & Bloor (Long Term),195095,Urbano,Toronto,140,0,0,5015,1,3,11,5,3,2,1,1,1,11,1,"0,71",115,North America +1079,Victorian home that's sleeping downtown Toronto,80603071,Miroslaw,Toronto,482,1,0,2864,1,3,3,"6,38",104,8,1,4,6,4,1,"0,89",231,North America +1080,Luxury Toronto 1BR- Best location in the city,6394819,Brett,Toronto,228,1,1,4005,1,3,1,"6,93",107,2,1,1,1,1,1,1,213,North America +1081,Studio in the Heart of Toronto,141165,Patrick & Tina,Toronto,119,0,0,5075,1,3,1,"6,57",104,2,1,1,2,2,1,"0,78",194,North America +1082,Bright Artistic Victorian - Modern 1 BDRM,92703129,Katry,Toronto,245,0,0,2801,1,3,1,"6,77",36,2,1,1,1,1,0,0,348,North America +1083,Apt C:CityCentre/UofT/Fields/DonnellyUHN/Annex,88357720,Roger And Teresa,Toronto,150,1,0,2825,1,3,11,"6,69",51,4,1,1,2,14,1,"0,88",28,North America +1084,Completely private space close to Lake Ontario.,68458396,Seema,Toronto,118,1,1,2930,1,2,1,"6,85",252,2,1,1,1,1,1,1,0,North America +1085,Couch 2 minutes from High Park,5905827,Trevor,Toronto,100,0,0,4036,1,1,1,0,0,1,1,1,1,1,0,0,277,North America +1086,Luxurious Hotel-style Bedroom with Private Ensuite,71953386,Yvonne,Toronto,70,1,0,2909,1,2,2,"6,25",13,1,1,1,0,2,1,1,3,North America +1087,Bloordale's latest oasis,92727065,Brahm,Toronto,137,0,0,2801,1,3,1,"6,63",8,4,1,2,2,1,"0,85","0,85",350,North America +1088,Room in a large private Basement,78834227,Zein,Toronto,35,0,0,2872,1,2,3,"6,71",48,4,"2,5",1,0,3,1,"0,67",53,North America +1089,Middle town Private bedroom near subway,88498594,Joey,Toronto,85,0,0,2824,1,2,1,0,0,3,1,1,2,1,0,0,275,North America +1090,"clean, cozy fully furnished apt",88500861,Deepa,Toronto,52,0,0,2824,1,3,1,"6,89",150,4,1,1,2,1,0,1,337,North America +1091,"Clean,quiet basement Apt.Close to dt Sunnybrook TO",88508504,Katya,Toronto,76,1,1,2824,1,3,1,"6,84",124,2,1,1,1,1,1,1,81,North America +1092,Traveller's Haven; Luxury Hotel Style Room,92885934,CasaRuhig,Toronto,100,1,1,2800,1,2,5,"6,9",51,2,1,1,1,5,1,1,276,North America +1093,"LT Bright quiet 2 Br DT oasis, close to subway",92893224,Shishir,Toronto,350,0,0,2800,1,3,1,7,5,3,1,2,2,1,0,1,157,North America +1094,Private Suite downtown residential,92932394,Diane,Toronto,88,0,0,2799,,2,1,7,13,2,1,0,1,1,0,0,2,North America +1095,Modern Private Lower Level Apartment Leslieville,32796228,Ian,Toronto,155,1,1,3283,1,3,1,"6,9",124,4,1,1,1,1,1,"0,93",133,North America +1096,Quiet Home on Safe Street parking and close to 401,26441637,Jason,Toronto,94,0,0,3389,,3,2,7,9,4,1,1,1,2,1,"0,8",363,North America +1097,Super Comfy & Cozy in the Heart of Brockton,3225688,Nedo,Toronto,71,1,1,4281,1,3,6,"6,56",79,2,1,0,1,6,1,"0,93",96,North America +1098,"DOWNTOWN TORONTO PRIME LOCATION, FULLY FURNISHED!",97297147,Carrie,Toronto,3500,0,0,2771,1,3,1,0,0,3,1,2,2,1,0,0,1,North America +1099,Spacious Downtown (midtown) 2bed 2 bath free parki,3120774,Varun,Toronto,235,1,1,4292,1,3,1,"6,8",303,4,2,2,2,1,1,"0,99",339,North America +1100,"Gem in Palmerston-Little Italy, Sleeps 4",84721968,Hyla,Toronto,120,0,0,2843,1,3,16,"6,83",118,4,1,1,2,15,"0,98","0,61",90,North America +1101,Shared with Owner Downtown Toronto,93212341,Julie,Toronto,171,1,1,2798,1,2,3,"6,89",257,3,1,1,2,3,1,"0,94",328,North America +1102,Midtown Penthouse 1 Bedroom,39636814,Robert,Toronto,99,0,0,3202,1,3,5,"6,62",13,2,"1,5",1,1,5,1,"0,64",20,North America +1103,Luxurious 1 bedroom condo w Balcony City View,97404279,Suzete,Toronto,157,0,0,2770,1,3,1,"6,75",32,3,1,1,1,1,1,"0,65",197,North America +1104,Luxury Suite in House,77797310,Rowena,Toronto,100,0,0,2878,1,2,2,7,2,2,1,1,1,2,0,0,282,North America +1105,Great Location at the Heart of Downtown,64693867,Michael,Toronto,414,0,0,2957,1,3,1,0,0,4,1,2,1,1,0,0,0,North America +1106,Cozy Charm in the Heart of Queen Street West,8435530,Trish,Toronto,50,1,0,3901,1,2,3,"6,86",74,1,1,2,1,3,1,"0,94",296,North America +1107,Bright & Spacious Downtown studio 多伦多领事馆正对面,92635593,Ari,Toronto,88,1,0,2801,1,3,3,"6,71",196,4,1,0,2,3,1,1,145,North America +1108,Warm welcome to a spacious room:),93464148,Umar,Toronto,70,0,0,2796,1,1,2,0,0,2,1,1,1,2,"0,63",0,275,North America +1109,The Peak at Toronto | Parking,94654746,Anum,Toronto,175,0,0,2789,1,3,1,"6,69",456,2,1,0,1,2,0,0,179,North America +1110,Cozy and Modern 2 BDRM House in DT core.,55480187,Fernando,Toronto,150,0,0,3024,1,2,1,"6,89",28,1,1,1,1,1,0,"0,71",1,North America +1111,Private room Downtown in cheerful & arty apartment,3560836,Kimberley,Toronto,58,1,0,4248,,2,1,"6,2",10,2,1,1,1,1,1,1,74,North America +1112,Premium 1 BDR /Parking/ Subway/ North York,54422135,Seyedeh Afarin,Toronto,139,0,0,3032,1,3,29,"6,39",44,2,1,1,0,69,1,"0,53",158,North America +1113,NEW MODERN BOUTIQUE CONDO,69546022,Lana,Toronto,145,0,0,2924,1,3,3,"6,71",7,2,1,1,0,3,1,"0,38",0,North America +1114,Cozy Charm in the Heart of Queen Street West 2,8435530,Trish,Toronto,55,1,1,3901,1,2,3,"6,87",47,1,1,1,1,3,1,"0,94",196,North America +1115,Roomy Comfortable Private Room,98057331,Joshua,Toronto,110,1,0,2766,1,2,2,"6,77",57,2,1,2,0,3,1,"0,96",325,North America +1116,Deluxe Single Bedroom In Trinity Bellwoods Park,31814201,Hong Xin,Toronto,48,1,0,3296,1,2,2,"6,62",35,1,1,1,0,2,1,"0,97",207,North America +1117,Large Beautiful Room in High Park @ subway,98243243,Samira,Toronto,110,1,0,2765,1,2,1,"6,77",61,2,1,2,1,1,1,"0,95",40,North America +1118,Bright Modern Guesthouse in Vibrant Trinity-Bellwoods,93948352,Steve And Victoria,Toronto,350,0,0,2794,1,3,1,"6,94",147,2,1,1,1,1,0,0,185,North America +1119,Balcony apartment in heart of downtown Toronto,83340135,Fahad,Toronto,275,0,0,2850,1,3,1,"6,74",66,4,1,1,2,1,"0,5","0,19",6,North America +1120,Convenient Location!!! E2,92357210,Sue,Toronto,37,0,0,2803,1,2,4,"6,8",93,2,"1,5",1,1,7,1,"0,64",327,North America +1121,Be my guest!,68563955,Yu,Toronto,101,1,1,2930,1,3,2,"6,83",36,2,1,0,4,2,1,1,282,North America +1122,CENTRAL DOWNTOWN LUXURY APT STEPS TO CN TOWER/LAKE,17340646,Bhavy,Toronto,195,1,1,3596,1,3,1,"6,85",273,2,1,1,1,1,1,"0,98",224,North America +1123,Comfortable Suite in the Prestigious Bluffs Area,94278208,Harold Richard,Toronto,189,1,1,2792,1,3,1,"6,73",83,3,1,1,2,9,1,1,165,North America +1124,WFH Setup + Entire floor 2 Bedroom + Private Entry,94351881,Luke,Toronto,88,0,0,2791,1,3,1,"6,76",25,4,1,2,2,1,1,"0,25",111,North America +1125,Minutes fr Eaton Centre & Dundas Sq + FREE Parking,91585814,Henok,Toronto,170,0,0,2807,1,3,1,"6,77",22,2,1,1,1,1,"0,9","0,71",247,North America +1126,Beautiful Spacious Large room,70849121,Willis,Toronto,88,0,0,2916,1,2,5,"6,26",35,4,"1,5",1,2,5,"0,75","0,86",0,North America +1127,"Scarborough North - Female host, Female guest - R1",25278998,KTC Property Management Ltd.,Toronto,38,0,0,3413,1,2,19,"6,69",53,1,1,2,2,21,"0,96","0,45",313,North America +1128,Stylish 2 BEDS Trendy King West Central Toronto,63979569,Justin And Adam,Toronto,155,0,0,2962,1,3,2,"6,66",67,6,2,2,2,2,"0,67","0,36",118,North America +1129,Charming Spacious EN SUITE in Downtown Toronto,4976043,Ping,Toronto,61,0,0,4103,1,2,4,"6,83",212,2,1,1,1,4,1,"0,79",304,North America +1130,Yorkville Luxury Accommodation,44281398,Daniel,Toronto,95,1,0,3151,1,3,3,"6,5",125,2,1,1,1,5,1,"0,97",313,North America +1131,2nd flr Toronto Studio in trendy Dufferin Grove,8380529,Jocelyn,Toronto,114,0,0,3902,1,3,1,"6,63",81,2,1,1,1,1,1,"0,8",256,North America +1132,Downtown Toronto - Amazing view of the city!,44191437,Darren,Toronto,166,0,0,3152,1,3,1,"6,95",99,2,1,1,2,1,"0,33",0,279,North America +1133,Beautiful View Luxurious condo on 23rd Floor,93896963,Andreea,Toronto,345,0,0,2794,,3,1,6,2,4,1,1,1,1,1,"0,25",83,North America +1134,*35% OFF* Large Home in Hear of City!,36823972,Hab,Toronto,180,0,0,3232,1,3,2,"6,15",13,2,1,2,3,3,"0,9","0,25",22,North America +1135,Comfortable and quite place near Pearson airport.,92185927,Amry,Toronto,150,0,0,2804,1,2,1,7,18,1,1,1,0,1,0,0,1,North America +1136,Kingsize bedroom with half washroom,78834227,Zein,Toronto,35,0,0,2872,1,2,3,"6,82",60,2,"2,5",1,0,3,1,"0,67",53,North America +1137,Minimalist's Cube; Clean Cozy Room,92885934,CasaRuhig,Toronto,100,1,1,2800,1,2,5,"6,88",70,1,1,1,1,5,1,1,276,North America +1138,Amazing views of the Lake in highrise downtown,44972033,Lana,Toronto,55,0,0,3142,,2,1,"6,77",195,1,1,1,1,1,1,"0,75",296,North America +1139,Great Condo Great Location,25607601,Christian,Toronto,600,0,0,3405,1,3,1,"6,74",35,6,1,2,3,1,0,0,275,North America +1140,Absolutely Gorgeous Yorkville Condo,6428755,Kamyar,Toronto,104,1,0,4003,1,3,2,"6,75",132,2,1,1,1,2,1,"0,85",298,North America +1141,Beautiful Old Mill retreat 3 min walk to subway,11223306,Julia,Toronto,129,1,0,3762,1,3,2,"6,72",51,2,1,1,1,4,1,"0,95",43,North America +1142,Charm in the Heart of Queen Street West,8435530,Trish,Toronto,45,1,0,3901,1,2,3,"6,78",60,1,1,1,1,3,1,"0,94",268,North America +1143,Private Danforth Suite - 3 minute walk to subway,47146729,Jennifer,Toronto,101,1,1,3115,1,2,1,"6,79",109,2,1,0,1,2,1,1,220,North America +1144,DESIGNER BEACH HOME Featured In National Magazine,99903576,Karyn,Toronto,428,0,0,2754,1,3,1,"6,5",12,6,"2,5",3,4,2,1,0,237,North America +1145,"MIDTOWN COZY, QUIET & PRIVATE ROOM",99918623,Gholamreza,Toronto,55,0,0,2754,1,2,1,"6,87",71,1,1,1,1,1,0,"0,6",247,North America +1146,Luxury Downtown Suite Steps to Subway & Yorkville,16435332,Tony,Toronto,120,1,1,3618,1,3,2,"6,57",7,3,1,1,1,2,1,1,169,North America +1147,Bright Beach Toronto Home,50778946,Dee,Toronto,380,0,0,3068,1,3,2,7,4,8,"2,5",4,5,2,"0,89","0,57",47,North America +1148,Spacious Room with private washroom in Downtown,4976043,Ping,Toronto,65,0,0,4103,1,2,4,"6,84",155,2,1,1,1,4,1,"0,79",309,North America +1149,Bright 2 bedrooms apartment,93562515,Janice,Toronto,103,1,0,2796,1,3,1,"6,68",163,4,1,2,2,2,1,1,199,North America +1150,"Conveniently Located, Spacious & Clean Room (RM 3)",77919672,Adelaida,Toronto,45,1,1,2877,1,2,3,"6,94",155,1,1,1,1,3,1,"0,97",82,North America +1151,Room in a Bunglow #2,95941458,Tanka,Toronto,51,1,1,2781,1,2,3,"6,9",316,1,1,1,1,3,1,"0,99",281,North America +1152,Room in a Bunglow #3,95941458,Tanka,Toronto,49,1,1,2781,1,2,3,"6,9",293,1,1,1,1,3,1,"0,99",288,North America +1153,Charming and Spacious Victorian House & Garden,3299475,Julie,Toronto,500,0,0,4274,1,3,1,"6,86",7,3,1,1,1,2,1,"0,63",0,North America +1154,Modern Serviced Condominium in Heart of Downtown,21023651,Natalia,Toronto,200,1,1,3525,,3,2,"6,83",306,4,1,1,2,2,1,"0,94",323,North America +1155,Crawford Garden Apartment with Fireplace & Parking,8976677,John,Toronto,200,0,0,3875,1,3,3,"6,91",35,3,"1,5",1,1,3,"0,1","0,4",33,North America +1156,Captain's Quarters With Garage Parking Queen St W,8976677,John,Toronto,115,0,0,3875,1,3,3,"6,79",33,2,1,1,1,3,"0,1","0,4",53,North America +1157,Gorgeous bright new designer 2 bdrms +Free parking,26764271,Noosh,Toronto,238,0,0,3383,1,3,4,"6,88",8,4,1,2,2,4,1,"0,36",3,North America +1158,Charming One Bedroom Condo,23716773,Ahmet,Toronto,160,0,0,3457,1,3,1,"6,67",3,2,1,1,1,1,"0,91","0,36",290,North America +1159,"Modern, bright and clean Studio Basement Apt",32437938,Nisha,Toronto,75,0,0,3287,1,3,1,"6,86",7,2,1,0,1,1,0,0,298,North America +1160,"Cozy luxurious two bed/bath condo, great location",96232022,Maria,Toronto,500,0,0,2779,1,3,1,"6,87",70,4,2,2,2,1,0,0,7,North America +1161,Downtown Toronto stay! :),2994437,Adam,Toronto,99,0,0,4304,1,2,3,"6,49",44,2,1,1,1,3,0,0,1,North America +1162,Downtown 1BR near subway,7137687,Charlene,Toronto,143,1,1,3962,1,2,1,"6,71",77,2,"1,5",1,0,2,1,1,285,North America +1163,2 Bedroom Downtown stay near Yonge&Dundas Square!,2994437,Adam,Toronto,199,0,0,4304,1,3,3,"6,23",49,5,1,2,3,3,0,0,0,North America +1164,Luxury Living: Modern 1BR in King West Hotspot,96337796,Taylor,Toronto,115,1,0,2778,1,3,1,"6,68",176,2,1,1,1,1,1,1,83,North America +1165,1 room in shared apartment.,35683478,Alison,Toronto,58,1,1,3245,1,2,2,"6,78",9,1,1,1,1,4,1,"0,89",173,North America +1166,Perfectly Located 2 Bedroom Triplex Apartment!,85349256,Ines And Carlos,Toronto,93,0,0,2840,1,3,2,"6,85",109,4,1,2,2,2,0,0,116,North America +1167,Studio condominium in downtown Toronto,37358162,Ray,Toronto,92,0,0,3226,1,3,1,"6,33",3,2,1,0,1,3,1,"0,57",2,North America +1168,83 'W',94071526,Matthew,Toronto,90,1,0,2793,1,3,14,"6,79",230,2,1,2,2,14,1,"0,88",227,North America +1169,"Cozy,Trendy & Private Apartment with Free Parking",96422154,Joanna,Toronto,70,1,1,2777,1,3,1,"6,94",231,2,1,1,1,1,1,1,86,North America +1170,"Charming 1+Den Condo, In the Heart of Toronto",60938653,Jordan,Toronto,250,0,0,2984,1,3,1,7,4,2,1,1,2,1,0,0,97,North America +1171,Room in a Bunglow #1,95941458,Tanka,Toronto,49,1,1,2781,1,2,3,"6,89",241,1,1,1,1,3,1,"0,99",286,North America +1172,Regular room shared kitchen and bathroom,71984155,Grace,Toronto,50,0,0,2909,1,2,1,"6,81",143,1,1,1,2,1,"0,83","0,95",102,North America +1173,Cozy House of Lovers,76729112,Gooni,Toronto,186,1,1,2883,1,3,2,"6,8",25,3,1,1,1,2,1,1,8,North America +1174,Ideally located cozy studio!,101293415,Mee,Toronto,104,0,0,2745,1,3,2,"6,83",75,2,1,0,2,2,"0,8",1,20,North America +1175,Leaside: separate basement unit with own entrance,101413459,Farheen,Toronto,99,1,0,2744,1,2,1,"6,63",102,2,1,1,0,1,1,1,215,North America +1176,Luxurious 1-bedroom condo in midtown Toronto,46658478,Viktor,Toronto,200,1,1,3121,1,3,1,"6,67",6,3,1,1,1,1,1,"0,87",120,North America +1177,Nice Sunny Room On Queen st west / Bell Wood Park,89407132,Issa,Toronto,74,1,1,2820,1,2,2,"6,95",22,1,1,1,1,2,1,"0,82",260,North America +1178,"Private room and entrance, central location",13616189,Leah And Richard,Toronto,91,0,0,3688,1,3,1,"6,82",102,4,1,1,2,1,0,0,278,North America +1179,"Private Bright ""Beach Hill"" Basement Guest Suite",100791919,Justine,Toronto,200,1,1,2748,1,3,1,"6,9",42,4,1,1,2,1,1,"0,98",220,North America +1180,Luxe Toronto Downtown Suite,47338007,Rahul,Toronto,299,1,1,3112,1,1,1,"6,66",131,2,1,1,2,3,1,1,347,North America +1181,Little Italy Penthouse w Remote Work Station,101537439,Stev,Toronto,159,0,0,2743,1,3,1,"6,7",47,2,1,1,1,1,1,"0,5",235,North America +1182,Luxury DT Condo - Views 2BR 2BT free parking,65897626,Donata,Toronto,420,1,1,2948,1,3,2,"6,91",69,4,2,2,4,2,1,"0,9",313,North America +1183,Executive Downtown Townhome,43576034,Supa,Toronto,343,0,0,3159,1,3,1,"6,91",45,6,"2,5",2,3,1,1,0,0,North America +1184,Sanitized Exec Suite - Amazing View & Free Parking,6671943,Liz,Toronto,60,1,1,3988,1,3,5,"6,92",167,2,1,1,2,5,1,"0,97",265,North America +1185,Cozy bedroom,61148373,Sylvie,Toronto,90,0,0,2983,1,2,2,"6,9",50,2,1,0,0,2,1,"0,73",203,North America +1186,Trendy Urban Retreat: Stylish 1BR in King West,106732184,Robyn,Toronto,109,1,1,2700,1,3,1,"6,73",174,2,1,1,1,1,1,"0,89",242,North America +1187,MMG Executive Suites - CN Tower / City View,50396723,Frankie,Toronto,157,0,0,3073,1,3,16,"6,62",202,4,1,1,1,34,"0,96","0,35",317,North America +1188,King West Gem: Sleek 1BR in Vibrant King West,106739849,Kelly,Toronto,126,1,1,2700,1,3,1,"6,66",132,2,1,1,1,1,1,1,193,North America +1189,"Downtown-Spacious Three Bedrooms, Two Full Bath with Parking",20371032,Alice,Toronto,249,1,0,3541,1,3,1,"6,78",244,8,2,3,3,1,1,1,265,North America +1190,oasis in the east - large room,106772476,Alix,Toronto,46,0,0,2699,1,2,4,"6,91",22,2,1,1,1,5,1,"0,44",293,North America +1191,"2 BDRM + Sofabed + Free Parking - Ent. Dist, MTCC",55188259,Cameron,Toronto,277,1,0,3026,1,3,1,"6,65",373,4,1,2,3,1,1,"0,99",147,North America +1192,Cozy two bedroom in central Toronto,104551258,Mike,Toronto,128,1,0,2719,1,3,4,"6,44",32,6,1,2,2,4,1,1,7,North America +1193,Great Location,95058762,Roberto,Toronto,120,0,0,2786,1,3,1,"6,75",4,2,1,0,0,1,0,1,356,North America +1194,"Conveniently Located, Comfy, Studio Apartment!",43634586,Manya,Toronto,90,1,1,3159,1,3,1,"6,7",74,2,1,1,1,1,1,1,104,North America +1195,Self Contained Bachelor,93626034,Chip,Toronto,50,1,1,2795,1,3,3,"6,82",39,1,1,1,1,3,1,"0,87",231,North America +1196,Cozy West End Garden View Retreat,74980715,Mary Young,Toronto,85,0,0,2892,1,3,1,"6,64",104,2,1,1,1,2,1,"0,33",84,North America +1197,Condominium in Former Hotel Overlooking Yorkville,6428755,Kamyar,Toronto,65,1,1,4003,1,3,2,"6,89",137,2,1,1,1,2,1,"0,85",276,North America +1198,Downtown Union .Air canada center .Westin castle,92350371,Sarah,Toronto,89,0,0,2803,1,2,1,"6,85",296,2,2,1,1,1,0,0,0,North America +1199,Well-Maintained Apartment in Central Leslieville,24202142,Ryan,Toronto,120,1,1,3444,1,3,2,"6,75",32,4,1,1,1,2,1,1,9,North America +1200,Comfy bed in French Provincial style room,60643616,Gwen,Toronto,67,1,1,2986,1,2,2,"6,92",320,1,1,1,1,2,"0,96","0,99",315,North America +1201,Heart of Downtown Apartment Stay,102498484,Sabrina,Toronto,180,0,0,2735,1,3,1,0,0,2,1,1,1,1,0,0,277,North America +1202,Seaton Village Comfy Basement Suite,61528313,Lisa,Toronto,150,1,1,2980,1,3,1,"6,78",23,2,1,1,1,1,1,1,330,North America +1203,Warden Subway Station - One Beautiful Bedroom,75922613,Jianchao,Toronto,50,1,1,2887,1,2,2,"6,72",84,2,1,1,1,2,"0,9","0,96",316,North America +1204,"Updated, Ivy-Covered Charm Steps from Casa Loma",16925504,Susan,Toronto,175,1,1,3606,1,3,3,"6,89",59,6,1,2,2,3,1,1,68,North America +1205,"Cozy Modern 1-1 Suite, Danforth/Upper Beaches",33528579,Andrea,Toronto,177,1,0,3273,1,3,2,"6,72",97,4,1,1,2,2,1,1,0,North America +1206,Boutique pied-à-terre in the heart of King West,18356997,Qui,Toronto,157,1,1,3575,1,3,2,"6,78",103,4,1,1,1,2,1,1,95,North America +1207,Spacious Unit in Amazing Location,55430413,Crystal,Toronto,150,1,1,3024,1,3,3,"6,76",170,4,1,1,2,3,1,"0,92",285,North America +1208,"Bright, cozy room w desk & ensuite bath",98422623,Yoga,Toronto,120,0,0,2764,1,2,1,"6,5",2,2,1,1,1,1,0,"0,75",0,North America +1209,Outstanding beautiful PH loft downtown Toronto,17844014,Cecelia,Toronto,300,0,0,3585,1,3,1,0,0,3,1,1,1,1,0,0,192,North America +1210,Premium 1 BDR Suite/City CNTR/Subway Dir.Access/LT,54422135,Seyedeh Afarin,Toronto,139,0,0,3032,1,3,29,"6,49",36,2,1,1,1,69,1,"0,53",0,North America +1211,"Scarborough North - Female host, Female guest - R2",25278998,KTC Property Management Ltd.,Toronto,50,0,0,3413,1,2,19,"6,47",32,1,1,1,1,21,"0,96","0,45",334,North America +1212,Comfy Room with Private Washroom M1,92357210,Sue,Toronto,39,0,0,2803,1,2,4,"6,78",38,2,1,1,1,7,1,"0,64",310,North America +1213,The Heart of Roncesvalles Village - Big & Bright!,107720908,Sebastian,Toronto,243,1,0,2690,1,3,1,"6,66",423,6,1,1,3,1,1,"0,98",266,North America +1214,Great 4 Bedroom w/Parking Toronto (Weston Village),107788572,Thomas,Toronto,216,1,0,2690,1,3,2,"6,74",192,8,"1,5",4,5,2,1,1,342,North America +1215,Lil’ oasis in the east - single room,106772476,Alix,Toronto,40,0,0,2699,1,2,4,"6,63",19,1,1,1,0,5,1,"0,44",293,North America +1216,"Bright + colourful room in Chinatown, Toronto",31103623,Alexandra,Toronto,115,0,0,3307,1,2,2,"6,93",58,1,1,1,1,2,1,"0,8",304,North America +1217,Explore Little Italy from a Chic Edwardian House,103274818,Rachael,Toronto,190,0,0,2729,1,3,1,"6,9",122,3,1,1,1,1,0,1,115,North America +1218,Rooftop Townhouse in Queen West/Kensington+Parking,8855148,Konstantin,Toronto,250,1,1,3881,1,3,1,"6,77",39,2,1,1,1,2,1,"0,93",107,North America +1219,Stunning 1000 SF One Bedroom,33237911,Aidin,Toronto,139,1,0,3277,1,3,2,"6,71",161,5,"1,5",1,1,6,1,"0,95",29,North America +1220,A double-sized private RM in York Mills,103332460,Long Xiu,Toronto,46,1,1,2728,1,2,3,"6,92",12,1,1,1,1,3,1,1,278,North America +1221,Executive Suite: Stylish 1BR Condo with City Views,102240988,Mike,Toronto,119,1,0,2737,1,3,1,"6,37",43,4,2,1,2,1,1,"0,83",191,North America +1222,"Comfortable, convenient art and light-filled home.",1340035,Sophia,Toronto,98,0,0,4571,1,3,3,"6,91",101,2,1,1,2,4,"0,89","0,69",196,North America +1223,ROYAL URBAN HAVEN -1BR HEART OF FINANCIAL DISTRICT,103698287,Paul,Toronto,322,1,1,2725,1,3,4,"6,74",118,4,1,1,1,4,1,1,0,North America +1224,Great Downtown Apartment Flat in Little Italy,9727027,Diana,Toronto,83,1,0,3836,1,3,2,"6,49",98,1,1,1,1,2,1,"0,97",193,North America +1225,Roof Top Studio Loft/Walk to Eaton Centre,4068231,Margaret,Toronto,82,1,1,4195,1,3,5,"6,8",25,2,1,0,1,5,"0,92","0,97",325,North America +1226,Lovely Downtown Condo|Walk 2 CN/Rogers/FreeParking,68950705,Omar,Toronto,211,1,0,2927,1,3,2,"6,71",216,5,1,2,2,2,1,1,334,North America +1227,Yorkville Toronto luxury condo,20068933,Anita,Toronto,131,1,1,3547,1,3,1,"6,79",169,2,1,1,1,1,"0,89",1,248,North America +1228,"Cozy Colourful Room, NY Subway, FREE parking*",7026137,Oxana,Toronto,69,1,1,3968,1,2,2,"6,4",5,1,1,1,1,2,1,1,185,North America +1229,Bright and Spacious Luxury Condo-,28284909,Mark,Toronto,305,1,0,3354,1,3,9,"6,62",340,2,1,1,2,16,1,"0,9",204,North America +1230,Home Away From Home!,104125177,James,Toronto,63,1,0,2722,,2,1,"6,29",28,1,1,1,0,1,1,1,0,North America +1231,Kashaneh at Avonshire,12033867,Kashaneh,Toronto,119,0,0,3736,1,3,16,3,1,3,1,1,1,17,"0,88","0,08",0,North America +1232,Modern 1 bedroom apartment. Great neighbourhood!,2145632,Omar,Toronto,79,1,1,4399,1,3,1,"6,85",33,3,1,1,0,1,1,"0,86",261,North America +1233,Cozy Leslieville retreat,108988081,Nicole,Toronto,121,1,1,2680,1,3,2,"6,77",126,5,1,0,3,2,1,1,0,North America +1234,Cozy room with private entrance,45723943,Cynthia,Toronto,39,0,0,3132,1,2,2,"6,5",8,1,1,1,1,2,"0,75","0,15",0,North America +1235,Private cozy room/bathroom Downtown,11949507,Tiberius,Toronto,140,0,0,3739,1,2,1,"6,88",25,2,1,1,1,1,0,"0,82",324,North America +1236,Cozy 2 bedroom Condo + Parking,1684087,Pouneh,Toronto,100,1,1,4473,1,3,22,"6,5",29,4,2,2,2,33,1,"0,98",0,North America +1237,Peaceful and friendly haven closed to downtown,81131468,R. Catalina,Toronto,65,0,0,2861,,2,1,7,1,1,1,1,1,1,0,0,0,North America +1238,Toronto Shared House (Master Bedroom) Queen Bed,21868614,Marie-Josee,Toronto,65,1,0,3503,1,2,4,6,4,1,2,1,1,6,1,"0,92",148,North America +1239,Charming 1 Bedroom Apartment minutes to Downtown,104679296,Patrick G.,Toronto,180,0,0,2718,1,3,2,7,60,3,1,1,1,3,1,"0,74",297,North America +1240,Heritage Victorian Home in downtown Toronto,104551258,Mike,Toronto,244,1,1,2719,1,3,4,"6,89",10,8,1,4,5,4,1,1,3,North America +1241,"Private Room, convenient, super close to Downtown",94329526,Richa,Toronto,50,0,0,2791,1,2,1,0,0,2,1,1,1,1,1,0,276,North America +1242,Entire Suite with Private Entrance/Bath/Laundry,110354765,Geoff,Toronto,82,1,1,2671,1,2,1,"6,82",476,2,1,1,1,2,1,1,290,North America +1243,A private bedroom with a queen bed by Yonge subway,91208270,Cheng,Toronto,46,1,0,2809,1,2,6,"6,81",73,2,1,1,1,8,"0,96","0,93",106,North America +1244,Sleek Modern Studio in the City Center,110396936,Mike,Toronto,250,0,0,2670,1,3,1,"6,88",137,2,1,0,0,1,0,0,0,North America +1245,Great Value in the City - Private Room 1 w/ view,104967828,Jose,Toronto,55,1,0,2716,1,2,2,"6,63",51,1,1,1,1,2,1,1,186,North America +1246,Downtown Styish Studio,846505,Julie,Toronto,76,1,0,4669,1,3,53,"6,38",140,2,1,0,1,102,1,1,308,North America +1247,Newly Renovated Studio Suite - Upper Beaches,110528525,Helga,Toronto,150,0,0,2670,1,3,1,"6,84",67,2,1,0,1,1,1,"0,8",295,North America +1248,Updated Bachelor 2 Min from Sbwy Private Entrance,30654608,David,Toronto,65,1,0,3314,1,3,13,"6,69",215,4,1,0,2,15,1,"0,91",266,North America +1249,1 pvt bedroom in a 2 bedroom apt,8153488,Elias,Toronto,200,0,0,3913,1,2,1,"6,92",13,1,0,0,0,1,0,0,0,North America +1250,Annex Studio in Heritage Building,516799,Athena,Toronto,110,0,0,4762,1,3,1,"6,58",26,4,1,0,2,1,1,"0,75",289,North America +1251,Spacious 2 BR Near Scarborough Bluffs Beach,110751066,Abul,Toronto,114,1,0,2668,1,3,1,"6,71",224,4,1,2,2,1,1,1,302,North America +1252,One private bedroom and bathroom / Sheppard&Yonge,47785955,Giovanna,Toronto,85,0,0,3106,1,2,1,0,0,2,1,1,1,1,0,0,188,North America +1253,Upscale Toronto - Mins to Subway & Parking Avail,16925504,Susan,Toronto,125,1,1,3606,1,3,3,"6,8",69,3,1,2,2,3,1,1,33,North America +1254,VIP's URBAN HAVEN -1BR HEART OF FINANCIAL DISTRICT,103698287,Paul,Toronto,259,1,1,2725,1,3,4,"6,82",129,4,1,1,2,4,1,1,275,North America +1255,StClair West Modern Clean Oasis - Toronto midtown,30902884,Nancy,Toronto,84,1,1,3310,1,3,1,"6,88",251,4,1,1,3,2,1,1,174,North America +1256,DUNDAS SQUARE Luxury - Fireplace & hybrid office!!,105618845,Rob And Lisa,Toronto,212,1,1,2710,1,3,7,"6,86",51,2,1,2,2,7,1,1,365,North America +1257,Great Value in the City - Private Room 2 w/ view,104967828,Jose,Toronto,60,1,0,2716,1,2,2,"6,59",41,1,1,1,1,2,1,1,222,North America +1258,"Perfect Location, Stunning View, Big Bright Condo",6540835,James,Toronto,264,0,0,3996,1,3,12,"6,87",144,2,2,1,1,12,1,"0,67",299,North America +1259,Casa Loma Deluxe Toronto Apartment w Parking,14720783,Dovran,Toronto,95,1,0,3659,1,3,3,"6,66",94,4,1,1,2,3,1,1,276,North America +1260,Serene & spacious 1bd with spectacular view!,66811794,Maja,Toronto,135,0,0,2942,1,3,1,"6,9",30,2,1,1,1,1,0,0,278,North America +1261,Executive Apartment in Heart of Toronto,106041456,Neal,Toronto,135,0,0,2706,1,3,1,"6,89",27,2,"1,5",1,1,1,0,"0,67",44,North America +1262,Lovely Layover + UP Express ~ Downtown in 15mins,104555090,Patricio,Toronto,87,0,0,2719,1,2,2,"6,77",248,2,1,1,1,2,0,1,128,North America +1263,European-Styled Home with garden,106261347,Judit,Toronto,195,1,1,2704,1,2,3,"6,85",353,6,1,3,3,3,1,1,145,North America +1264,"Sunny, bright, modern basement studio in Wilowdale",37683342,Sanaz,Toronto,80,0,0,3222,1,3,1,"6,67",3,1,1,0,1,1,0,0,129,North America +1265,Basement 1 Bedroom Apt in Little Portugal,13066292,Jose,Toronto,72,1,0,3703,1,3,10,"6,53",121,3,1,1,2,15,"0,99","0,99",24,North America +1266,Best Downtown Financial disctrict studio,104551258,Mike,Toronto,115,1,1,2719,1,3,4,"6,87",129,2,"1,5",0,1,4,1,1,208,North America +1267,Architect Designed Beauty in Dufferin Grove,1402232,Abigail,Toronto,399,1,0,4553,1,3,3,"6,68",88,4,2,2,2,4,1,"0,99",361,North America +1268,Just like home,112336182,Andrea,Toronto,482,0,0,2659,1,3,1,"6,4",5,4,2,2,2,1,0,1,278,North America +1269,Cozy Apartment steps from Casa Loma,17070560,Matthew,Toronto,400,0,0,3602,1,3,1,7,3,2,1,1,1,1,0,0,275,North America +1270,Downtown basement with private area(room6),85507924,Sophie,Toronto,119,0,0,2839,1,2,6,"6,25",8,2,1,1,1,6,0,0,1,North America +1271,100% Privacy Stylish Studio Apt Downtown Toronto,111848783,Douglas,Toronto,162,1,0,2662,1,3,1,"6,57",266,2,1,0,1,1,1,1,213,North America +1272,Spacious 1 br + Enc.den(2BR) Downtown City Centre,112566668,Lakshmi Kumar,Toronto,228,0,0,2657,1,3,1,"6,71",150,5,1,2,2,1,1,"0,79",329,North America +1273,83 'Q',94071526,Matthew,Toronto,80,1,0,2793,1,3,14,"6,8",264,4,1,2,2,14,1,"0,88",229,North America +1274,Comfy Room in Home for Cat Lovers,43697310,Vera,Toronto,70,1,0,3158,1,2,2,"6,89",9,1,"1,5",1,1,2,1,"0,94",257,North America +1275,Designer Annex Loft with Sunset Deck and Parking,33371538,Gail,Toronto,361,1,1,3275,1,3,5,"6,76",90,4,"1,5",2,2,7,1,"0,86",275,North America +1276,U6 Bright New Bachelor Downtown Toronto,9923100,Ed,Toronto,65,0,0,3825,1,3,15,"6,84",51,2,1,1,0,15,1,"0,53",57,North America +1277,Castle View @ Dupont,20760617,Robin,Toronto,155,0,0,3531,1,2,2,"6,89",9,2,1,1,1,2,1,"0,2",98,North America +1278,New Modern Glam Condo,69546022,Lana,Toronto,145,0,0,2924,1,3,3,7,5,2,1,1,1,3,1,"0,38",186,North America +1279,Beautiful & Spacious 1 bed + den Downtown Toronto,108995142,Jessie,Toronto,160,0,0,2680,1,3,1,"6,97",38,3,1,1,1,1,1,"0,63",333,North America +1280,Near AGO,109656006,Katherine,Toronto,900,0,0,2675,,2,1,0,0,1,"0,5",1,1,1,0,0,282,North America +1281,Garden Walkout Basement 1 Bedroom Apt w/ Parking,90068148,Emily,Toronto,70,0,0,2816,1,3,5,"6,76",29,2,1,1,1,5,1,"0,79",236,North America +1282,Beautiful Toronto Beaches home with a pool,67761811,Amanda,Toronto,500,0,0,2935,1,3,1,7,1,10,3,4,4,1,0,1,185,North America +1283,Adorable 17' Ceiling Loft Condo in DowntownToronto,117703826,Manna,Toronto,1000,0,0,2625,1,3,2,"6,76",72,4,"1,5",1,2,3,1,0,185,North America +1284,Downtown Hotel Style Yorkville 1 Bedroom with Den,65031558,Al,Toronto,132,0,0,2954,,3,2,"6,62",29,2,1,1,1,2,1,"0,5",302,North America +1285,North York Homestay,112322647,Eleanor,Toronto,100,0,0,2659,1,2,3,"6,5",2,2,"1,5",1,2,5,0,0,0,North America +1286,King West - Toronto,36197189,Natasha,Toronto,200,0,0,3239,1,3,1,"6,8",15,2,1,1,1,1,0,0,278,North America +1287,Entire Two Bedrooms Appartment for Toronto Visitor,113317106,Ram Hari,Toronto,125,0,0,2652,1,3,1,"6,71",18,5,1,2,6,1,1,0,188,North America +1288,Gorgeous Flat in the Heart of Yorkville,1651632,Kate,Toronto,299,0,0,4480,1,3,1,7,1,3,2,2,3,1,0,0,187,North America +1289,"Bold, Colourful Home in Leslieville, Toronto",36748838,John,Toronto,250,1,1,3233,1,3,3,"6,82",94,4,"1,5",2,2,3,1,1,171,North America +1290,Cozy suite in historic Annex with parking,20203334,Steven,Toronto,104,1,1,3544,1,3,1,"6,92",180,2,1,1,1,1,1,1,302,North America +1291,"Cozy Basement w/Parking, Mins to Downtown",44681987,Arman,Toronto,100,0,0,3146,1,3,1,"6,84",67,2,1,0,2,1,1,"0,4",2,North America +1292,Queen Street One bedroom condo - Long term,195095,Urbano,Toronto,145,0,0,5015,1,3,11,"6,42",44,3,1,1,1,11,1,"0,71",177,North America +1293,Quiet Cozy Private apartment.,40059652,Victoria,Toronto,39,1,1,3198,1,2,1,"6,84",148,1,1,1,1,1,1,1,116,North America +1294,"City house, private room",87151363,Mihaela,Toronto,200,0,0,2831,1,2,2,"6,84",142,1,1,1,1,2,0,0,0,North America +1295,Relax enjoy. Second floor retreat,106261347,Judit,Toronto,182,1,1,2704,1,2,3,"6,83",298,4,1,2,2,3,1,1,141,North America +1296,STUNNING ONE BEDROOM SUITE!,52432167,Suzanna,Toronto,150,1,1,3048,1,3,3,"6,87",108,2,1,1,1,3,1,1,52,North America +1297,Modern Eclectic Condo in King West Area,32191081,Wing Yan,Toronto,298,1,1,3290,1,3,1,"6,72",157,2,1,1,1,1,1,1,24,North America +1298,Cozy Room in a cozy home,34108478,Daniela,Toronto,70,1,1,3265,1,2,2,"6,75",8,2,1,1,0,2,1,1,1,North America +1299,Private Room close to Transit and Amenities,118720350,Anil,Toronto,65,1,0,2618,1,2,1,"6,79",223,2,1,1,2,1,1,"0,94",286,North America +1300,Executive Trinity Bellwoods Home with Backyard Patio,8702985,Clarence,Toronto,428,1,1,3888,1,3,10,"6,94",21,6,"2,5",3,3,11,1,"0,95",45,North America +1301,The Park View: Upper Beach Oasis,12617176,John David,Toronto,130,1,0,3717,1,3,1,"6,93",15,2,1,1,1,1,1,1,211,North America +1302,Restored Century House Next to Trinity Bellwoods Park,8702985,Clarence,Toronto,460,1,1,3888,1,3,10,7,96,8,"2,5",4,4,11,1,"0,95",44,North America +1303,"Bright room, own bath, TV, sofa, 3min TTC station!",18884214,Nguyen,Toronto,105,1,1,3568,1,2,3,"6,81",215,4,1,1,2,3,1,"0,99",283,North America +1304,Home Away from Home on St. Clair W./Corso Italia,77248847,Rita,Toronto,345,0,0,2880,1,3,1,"6,7",10,6,1,3,0,1,1,"0,67",17,North America +1305,Cozy one bedroom apartment in Roncesvales village,119037222,Seher,Toronto,94,1,1,2616,1,2,2,"6,91",114,2,1,1,2,2,1,1,333,North America +1306,"Homey Home for the summer in West Annex, Toronto",114197075,David&Mandie,Toronto,200,1,0,2647,1,3,1,7,4,4,"1,5",3,5,2,1,1,252,North America +1307,luxurious One bed room&den with Parking,117998634,Lee,Toronto,165,1,1,2622,1,3,3,"6,83",233,2,1,1,1,3,1,"0,86",87,North America +1308,Downtown Modern Studio Apartment 多伦多领事馆正对面,92635593,Ari,Toronto,80,1,0,2801,1,3,3,"6,69",69,4,1,1,2,3,1,1,42,North America +1309,"Private Room + Ensuite, walk in closet @ York Uni",30753730,Jeishan,Toronto,42,1,0,3312,1,2,16,"6,39",29,2,1,1,2,16,1,"0,99",53,North America +1310,Gorgeous Park House on Queen Str West With Parking,28059930,Thomas,Toronto,628,1,1,3358,1,3,1,"6,93",101,6,2,3,3,1,1,"0,98",236,North America +1311,Tour Toronto from a Chic Apartment,303527622,Urvesh,Toronto,155,0,0,1655,1,3,1,"6,88",222,2,1,1,1,1,0,0,53,North America +1312,Entertainment District 1 BD Right In The Action,6540835,James,Toronto,158,0,0,3996,1,3,12,"6,74",108,2,1,1,1,12,1,"0,67",297,North America +1313,Cozy Room Walk to Yorkdale Mall and Wilson Stn.,119546193,Aisha,Toronto,113,0,0,2613,1,2,3,7,5,2,1,1,2,3,1,"0,75",361,North America +1314,"Attentive Host, Great Price&Value, Fully Renovated",115071828,Jonathan,Toronto,63,1,1,2642,1,2,5,"6,83",169,2,2,1,1,5,1,1,311,North America +1315,"Caring Host, Best Value for Money, Fully Renovated",115071828,Jonathan,Toronto,58,1,1,2642,1,2,5,"6,82",216,2,2,1,1,5,1,1,308,North America +1316,Trinity–Bellwoods Private 1 bedroom Suite,62398808,Kaya,Toronto,100,0,0,2974,1,3,2,"6,82",75,3,1,1,1,2,1,"0,75",287,North America +1317,Lovely two bed room condo at prime location!,93397146,Sangyub,Toronto,184,0,0,2796,1,3,2,"6,51",39,6,1,2,3,6,0,"0,88",275,North America +1318,Cozy 2 BDR. Muskoka in the City near Lake & GO,8923059,Lina,Toronto,186,1,1,3878,1,3,1,"6,72",61,4,1,2,2,1,1,1,41,North America +1319,Clean & Bright Private Room with Free Parking,119792489,Anita,Toronto,35,1,0,2611,1,2,1,"6,8",193,2,"1,5",1,1,1,1,"0,82",243,North America +1320,MapleLeaf Gem,70954351,Susana,Toronto,93,1,0,2915,1,3,1,"6,73",185,3,1,1,1,1,1,1,83,North America +1321,Elegant Townhouse in the Heart of the City,119957674,Eva,Toronto,210,0,0,2610,,3,1,"6,94",54,4,"1,5",2,2,1,1,0,236,North America +1322,Unwind in a Stylish House in Trinity Bellwoods,8702985,Clarence,Toronto,278,1,1,3888,1,3,10,7,18,2,"2,5",1,1,11,1,"0,95",320,North America +1323,1 Bdrm Apt-2 Beds(4-Guests)/Shared Laundry/Hot Tub,30597584,Georgina,Toronto,85,1,0,3315,1,3,1,"6,64",67,4,1,1,2,1,1,1,261,North America +1324,"The Heart of King West Condo, Downtown Toronto",119979343,Mark,Toronto,75,1,0,2610,1,2,1,"6,62",331,2,1,1,1,1,1,1,79,North America +1325,Nice clean charming place with WiFi,120069179,Naresh,Toronto,110,1,0,2609,1,3,1,"6,76",34,4,1,2,2,1,1,1,258,North America +1326,CEO's URBAN HAVE - 1BR HEART OF FINANCIAL DISTRICT,103698287,Paul,Toronto,499,1,0,2725,1,3,4,"6,66",56,4,1,1,2,4,1,1,275,North America +1327,YOUR HOME AWAY FROM HOME YONGE AND EGLINTON,111606404,Suzana,Toronto,150,0,0,2663,1,3,1,"6,75",8,3,1,1,1,1,1,"0,75",226,North America +1328,Private basement apartment in downtown Toronto,116596822,Brandon,Toronto,120,1,1,2632,1,2,1,"6,87",371,2,1,0,2,1,1,"0,97",339,North America +1329,Studio apartment in Toronto!,69450805,Rahwa,Toronto,51,1,0,2924,1,3,1,"6,56",108,2,1,0,1,2,1,1,276,North America +1330,Sun-drenched one bedroom in Leslieville w/parking,24593297,Brenda,Toronto,75,1,1,3433,1,3,2,"6,88",174,2,1,1,1,2,1,1,215,North America +1331,Large Downtown Condo - 3 BR + 2BA + Free Parking!,115994859,Shami,Toronto,607,1,0,2636,1,3,1,"6,68",322,6,2,3,4,1,1,1,107,North America +1332,Spacious 2 Bedroom + Parking,1684087,Pouneh,Toronto,100,1,0,4473,1,3,22,"6,52",23,4,"2,5",2,2,33,1,"0,98",0,North America +1333,One Single Bed - Bloor West Village/High Park - C,5293359,Luis,Toronto,51,1,1,4078,1,2,3,"6,76",144,1,1,1,1,3,1,1,40,North America +1334,Charming place in Old Town Toronto,121229837,Elena,Toronto,122,1,1,2602,1,3,1,"6,84",31,2,1,1,1,1,1,"0,88",141,North America +1335,2 Bedr/1 Bath business ready APT w/parking,119993397,Nada,Toronto,135,0,0,2610,1,3,1,"6,83",61,3,1,2,2,1,0,0,223,North America +1336,3 Bedroom House Minutes from Core With Hot Tub,4401312,Cameron,Toronto,255,1,1,4156,1,3,1,"6,87",38,6,"2,5",3,0,1,1,1,130,North America +1337,"Chic, High-Rise Apartment with CN Tower Views",70585115,Virginia,Toronto,301,1,1,2918,1,3,1,"6,87",218,4,1,1,1,1,1,"0,84",252,North America +1338,Quiet Neighbourhood 1 Bed-Downtown by TTC in 40min,43266988,Vidyasankar,Toronto,30,0,0,3163,1,2,1,"6,69",14,1,1,2,0,1,1,"0,5",328,North America +1339,Amazing View Condo in Toronto’s historic heart,85109485,Luloo,Toronto,135,1,0,2841,1,3,4,"6,65",48,4,"1,5",2,2,32,1,1,65,North America +1340,3 Bedroom 2 Bath Waterfront Condo w Free Parking,120006793,Robert,Toronto,500,1,1,2610,1,3,1,"6,86",337,6,2,3,3,1,1,1,157,North America +1341,"West Toronto By The Lake, Close to HWY's, YYZ, GO",6540835,James,Toronto,129,0,0,3996,1,3,12,"6,73",174,2,"1,5",1,1,12,1,"0,67",238,North America +1342,Clean & Modern One Bedroom in East York,28515,Alexis,Toronto,87,1,1,5390,1,3,1,"6,88",110,4,1,1,1,1,1,1,241,North America +1343,"Room in a large, comfortable and quiet apartment",14191394,Mchendel,Toronto,33,0,0,3672,1,2,1,"6,82",33,2,1,1,1,1,"0,5","0,2",304,North America +1344,Quiet room overlooking a garden,50328841,Lina,Toronto,55,1,1,3074,1,2,3,"6,92",37,1,1,2,1,3,1,"0,97",81,North America +1345,Private suite in Downtown Toronto,39924485,Mojdeh,Toronto,165,1,1,3199,1,2,1,"6,92",688,2,1,1,1,1,1,"0,99",162,North America +1346,"Right in the heart of Toronto, ICE Condos",127276512,Lyudmila,Toronto,150,1,1,2565,1,3,2,"6,86",169,5,"1,5",2,2,2,1,"0,97",154,North America +1347,Unfurnished 500 sq ft Studio Suite,11206244,Superhost,Toronto,399,0,0,3763,1,3,19,0,0,3,1,0,1,20,1,"0,6",1,North America +1348,76Lovely View 76Luxury 2 BDR Unit76Parking+Subway,54422135,Seyedeh Afarin,Toronto,180,0,0,3032,1,3,29,"6,56",19,4,2,2,2,69,1,"0,53",142,North America +1349,Family friendly house Toronto,29456355,Estelle,Toronto,200,0,0,3334,1,3,1,7,6,7,2,4,5,1,0,0,70,North America +1350,"Cozy private upstairs, Eglinton west & Keele.",37093240,Israel,Toronto,76,1,1,3229,1,2,3,"6,87",39,1,2,1,1,3,1,"0,97",188,North America +1351,"Cosy BR, own bathroom, TV, 3mins to TTC station!",18884214,Nguyen,Toronto,92,1,1,3568,1,2,3,"6,78",199,2,1,1,1,3,1,"0,99",277,North America +1352,Sunny Room w Private Bathroom in Beautiful Apt,122740198,Rua,Toronto,85,0,0,2593,1,2,1,"6,77",22,1,1,1,1,1,1,"0,54",209,North America +1353,"Master /w ensuite bath, TV, 3mins to TTC station",18884214,Nguyen,Toronto,100,1,1,3568,1,2,3,"6,81",285,2,1,1,1,3,1,"0,99",277,North America +1354,Friendly and comfort,122818931,Jiayu,Toronto,88,1,1,2592,1,2,1,"6,83",268,4,1,1,2,1,1,"0,98",297,North America +1355,Affordable stay in the heart of Koreatown,1260282,Andreas,Toronto,38,1,0,4590,1,2,2,"6,73",22,1,1,2,3,2,1,1,328,North America +1356,Lovely room near UTSC and Cenyennial College,122085458,Sabina,Toronto,56,1,1,2597,1,2,14,"6,91",11,1,1,1,1,14,1,"0,94",0,North America +1357,Windows Galore in Modern Apartment near Waterfront,123069773,Harry,Toronto,998,0,0,2591,1,3,1,"6,75",10,6,3,3,5,1,0,0,119,North America +1358,Luxurious Subpenthouse 1300 SQFT with Lake Views,46957011,Tarit,Toronto,2059,0,0,3117,1,3,1,"6,84",105,5,2,2,2,1,0,0,0,North America +1359,Downtown Prime Location,60536810,Amar,Toronto,194,0,0,2987,1,3,1,0,0,4,1,1,1,1,0,0,276,North America +1360,"Basement Apartment-Separate Ent, 3Beds,1to4 Guests",127980028,Hamid,Toronto,200,0,0,2560,1,3,1,"6,82",110,4,1,2,2,1,0,0,276,North America +1361,Taurus Ensuite - Coxwell Subway Station,123205575,Ho Tung,Toronto,80,0,0,2590,1,2,6,"6,5",111,2,1,1,1,10,"0,97","0,77",275,North America +1362,Sagittarius - Coxwell Subway Station,123205575,Ho Tung,Toronto,60,0,0,2590,1,2,6,"6,34",78,2,1,1,1,10,"0,97","0,77",312,North America +1363,Capricorn - Coxwell Subway Station,123205575,Ho Tung,Toronto,53,0,0,2590,1,2,6,"6,43",111,2,1,1,1,10,"0,97","0,77",291,North America +1364,Your Home in the Entertainment District,3426046,Jerry,Toronto,139,1,1,4262,1,3,2,"6,85",273,4,1,1,2,2,1,1,329,North America +1365,New Spacious Apartment (A),93739862,Leyla,Toronto,42,0,0,2795,1,2,3,"6,83",66,2,1,1,1,3,1,"0,48",117,North America +1366,Cozy Room near AGO,107157336,Perle,Toronto,66,1,0,2696,1,2,3,"6,62",328,2,1,1,1,3,1,"0,97",239,North America +1367,Luxury 1 Bedroom Suite In Heart Of Toronto,123500923,Richard Jason,Toronto,250,1,1,2589,1,3,1,"6,78",230,2,1,1,1,1,1,"0,85",276,North America +1368,Bedroom with Private Bath@Pharmacy & McNicoll,83810718,Karim,Toronto,40,1,1,2848,1,2,1,"6,8",175,1,1,1,0,1,1,"0,98",73,North America +1369,Corner Private room in new build custom home,123627491,Daryush,Toronto,159,0,0,2588,1,2,1,"6,75",10,2,1,1,0,2,1,0,0,North America +1370,North York Luxury-Ensuite with Private fullkitchen,128284514,Jianqin,Toronto,88,0,0,2558,1,2,6,"6,63",168,2,1,1,1,6,1,"0,5",275,North America +1371,Spacious 3BR/2B Bloor-Yonge near UofT & ROM,123780477,Ding Yuan,Toronto,278,1,0,2587,1,3,2,"6,69",117,4,2,3,4,2,1,1,320,North America +1372,"North York Luxury Rm+Private-Ensuite, FridgeTVDeck",128284514,Jianqin,Toronto,88,0,0,2558,1,2,6,"6,63",191,2,1,1,1,6,1,"0,5",275,North America +1373,*2BEDRM kitch bath wifi laundry parking CAR rental,76373347,Yuling,Toronto,80,1,0,2885,1,3,6,"6,5",22,2,1,2,2,20,1,1,114,North America +1374,Beautiful Home in the Heart of the Beaches,50778946,Dee,Toronto,200,0,0,3068,1,3,2,"6,86",37,8,3,4,4,2,"0,89","0,57",92,North America +1375,Unique Home in Queen West w Sunroom and Backyard!,31422369,Artyom,Toronto,399,0,0,3302,1,3,1,"6,88",79,6,2,3,3,1,0,1,342,North America +1376,Perfect Family Friendly House in Little Italy,1430894,Ronen,Toronto,495,1,1,4545,1,3,2,"6,76",82,9,"2,5",5,5,4,1,"0,97",330,North America +1377,Charming Bachelor Suite With Incredible View ☆☆☆☆☆,11206244,Superhost,Toronto,139,0,0,3763,1,3,19,7,6,4,1,0,0,20,1,"0,6",0,North America +1378,"5*STAR Great Studio, King Size Bed. High Floor.",5854692,Farrukh,Toronto,298,1,0,4040,1,3,4,"6,62",74,5,1,0,2,9,1,1,288,North America +1379,7815 King Bachelor Entertainment Downtown Toronto7815,32044025,Toronto,Toronto,115,0,0,3292,1,3,15,"6,8",20,4,1,0,1,16,1,"0,71",90,North America +1380,Centrally Located! Gracious City 3-Bdrm Townhome,128750567,Trevor,Toronto,369,0,0,2555,1,3,1,"6,29",8,5,"2,5",3,3,1,0,0,2,North America +1381,Chic Luxury 1 Bedroom Condo In Yorkville,65031558,Al,Toronto,115,0,0,2954,,3,2,3,1,2,1,1,1,2,1,"0,5",319,North America +1382,Spacious 1+1 BDR(Free Parking/Bright Open View),54422135,Seyedeh Afarin,Toronto,250,0,0,3032,1,3,29,"6,6",5,3,"1,5",1,2,69,1,"0,53",180,North America +1383,Apt 3-A1 (Female Dormitory) @ Parkdale Hostellerie,377040,Leanne,Toronto,56,1,0,4835,1,1,8,"6,44",80,1,"2,5",1,1,8,"0,96","0,97",107,North America +1384,Apt 3A-2 (Female Dormitory) @ Parkdale Hostellerie,377040,Leanne,Toronto,56,1,0,4835,1,1,8,"6,35",70,1,"3,5",1,1,8,"0,96","0,97",96,North America +1385,Close 2 everything downtown Toronto,811383,Illanith,Toronto,111,0,0,4677,1,3,1,7,1,2,1,1,2,1,1,0,7,North America +1386,*2BEDRM FLAT kitchen/bath/Wi-Fi/parking/laundry,76373347,Yuling,Toronto,60,1,0,2885,1,3,6,"6,56",19,2,1,2,2,20,1,1,53,North America +1387,Apt 3A-4 (Female Dormitory) @ Parkdale Hostellerie,377040,Leanne,Toronto,56,1,0,4835,1,1,8,"6,47",66,1,1,1,1,8,"0,96","0,97",186,North America +1388,Fabulous 3 bedroom home in Toronto Chinatown,124466393,Chunzhi,Toronto,158,1,0,2583,1,3,1,"6,64",88,4,1,3,3,1,1,1,1,North America +1389,"Private Room, Bath, & Desk in Toronto's Best Neighborhood",21837301,Lucan,Toronto,164,1,1,3504,1,2,1,"6,84",131,2,1,1,1,3,1,"0,95",201,North America +1390,Bright and comfortable 2 bdrm condo in North York,125051764,Visnja,Toronto,210,0,0,2579,,3,1,"6,5",4,4,1,2,2,1,0,0,278,North America +1391,Centrally-located Republic of Rathnelly house,129007664,Jeremy,Toronto,310,0,0,2553,1,3,1,"6,87",24,6,"2,5",3,3,1,0,0,324,North America +1392,Private suite all to yourself. Separate entrance.,125192557,Andrew,Toronto,142,1,1,2578,1,3,1,"6,79",1066,2,1,1,1,1,1,1,69,North America +1393,Upper private multi level suite in High Park,129010687,Diane,Toronto,225,1,0,2553,1,3,1,0,0,4,"2,5",2,2,2,1,"0,85",129,North America +1394,Lively 1+1 Lakeview Condo near CN Tower + Free Prk,124912029,Mehrdad,Toronto,226,1,1,2580,1,3,1,"6,93",249,2,"1,5",1,1,1,1,"0,98",326,North America +1395,Top Floor Luxury 1 br at Dundas Square w Parking,122954594,Iulii,Toronto,85,0,0,2591,1,3,1,"6,86",108,2,1,1,1,1,1,"0,47",158,North America +1396,Private room single bed on the Main Floor.,129102826,Palmy,Toronto,55,1,0,2552,1,2,9,"6,83",12,1,"1,5",1,1,9,1,1,1,North America +1397,Entire House Luxury Hotel Atmosphere Free Parking,108384560,Junior,Toronto,300,0,0,2685,1,3,1,"6,41",22,2,1,2,1,1,0,0,0,North America +1398,Spacious private apartment in Toronto's West End,43719832,Victoria,Toronto,148,1,0,3158,1,3,1,"6,8",129,2,1,1,1,1,1,"0,94",320,North America +1399,Luxury 2 BDR Condo/City CNTR/ Subway Dir. Access,54422135,Seyedeh Afarin,Toronto,180,0,0,3032,1,3,29,"5,29",7,4,2,2,2,69,1,"0,53",0,North America +1400,Beautiful Condo in the Heart of Downtown Toronto,128899955,Nishita,Toronto,159,0,0,2554,1,2,1,"6,57",380,4,1,1,1,3,1,"0,39",275,North America +1401,Art Loft Downtown,125686423,Carol,Toronto,84,1,1,2575,1,3,1,"6,79",113,1,1,1,1,1,1,"0,86",258,North America +1402,Subway 1+1 Luxury Condo with Parking,120640190,Chaowen,Toronto,180,1,0,2606,1,3,1,"6,67",86,4,1,1,3,5,1,"0,96",0,North America +1403,New Condo with private washroom,39596567,Giselle,Toronto,40,0,0,3202,1,2,1,"6,92",37,2,1,1,1,1,0,0,265,North America +1404,Little Italy Luxury Plus Classic Character 1 Bdrm,14761152,B,Toronto,225,1,0,3658,1,3,9,"6,61",34,2,1,1,1,9,1,"0,93",125,North America +1405,New Spacious Apartment (B),93739862,Leyla,Toronto,42,0,0,2795,1,2,3,"6,85",48,1,1,1,1,3,1,"0,48",24,North America +1406,Charming 3 bedroom downtown w/parking!,127677828,David,Toronto,148,1,0,2562,1,3,2,"6,77",175,5,1,3,3,2,1,1,151,North America +1407,Right place to stay in toronto downtown,68111296,Alice,Toronto,100,1,0,2933,1,3,1,"6,78",147,3,1,0,2,2,1,1,147,North America +1408,Full one bedroom Private entrance bus at the door,60677334,Brianna And Sharm,Toronto,119,1,0,2986,1,3,3,"6,58",106,4,1,1,2,4,1,1,285,North America +1409,Toronto City Group Stay,80603071,Miroslaw,Toronto,732,1,1,2864,1,3,3,"6,52",31,12,2,6,7,4,1,"0,89",231,North America +1410,"Relax work play in a clean, bright King West condo",28132161,Marija,Toronto,175,1,1,3357,1,3,3,"6,62",38,2,1,1,1,4,1,"0,88",99,North America +1411,"Stylish, Private, Loft by the Lake, 3rd floor",6614234,Joanne,Toronto,139,0,0,3991,1,3,1,"6,94",97,2,1,1,1,1,1,"0,47",177,North America +1412,New Private 1 Bedrm Suite w/kitchen,76373347,Yuling,Toronto,44,1,0,2885,1,3,6,"6,5",16,1,1,1,1,20,1,1,206,North America +1413,Basement Apartment in Beaches near Lake Ontario,60733162,Abhay,Toronto,186,0,0,2985,1,3,1,"6,87",90,2,1,0,1,1,1,"0,73",306,North America +1414,*1Bedrm Flat+kitchen+bath+wifi+parking+laundry,76373347,Yuling,Toronto,51,1,0,2885,1,3,6,"6,48",40,2,1,1,1,20,1,1,23,North America +1415,Financial district Hotel and Residence,117998634,Lee,Toronto,70,1,0,2622,1,3,3,"6,94",34,2,1,0,1,3,1,"0,86",115,North America +1416,Luxurious and Stylish Condominium with Huge Private Terrace,35420372,Mark,Toronto,250,1,1,3249,1,3,1,"6,89",176,5,2,2,2,4,1,1,0,North America +1417,Feel at Home in a Gorgeous Trinity Bellwoods House,8702985,Clarence,Toronto,338,1,0,3888,1,3,10,"6,79",20,4,2,2,2,11,1,"0,95",320,North America +1418,Best Downtown Financial disctrict studio,80603071,Miroslaw,Toronto,119,1,0,2864,1,3,3,"6,53",86,2,1,0,0,4,1,"0,89",208,North America +1419,Amazing Suite with Fantastic View Next to CN Tower,102657230,Yuchen,Toronto,103,1,0,2733,1,3,1,"6,83",168,3,1,1,2,1,"0,9",1,314,North America +1420,Unwind on the Private Terrace of a Downtown Oasis,382426138,Renata,Toronto,881,0,0,1217,,3,1,"6,89",100,7,"2,5",3,3,1,0,1,365,North America +1421,Luxury 2 bedroom 2 bath downtown core condo,130451007,Tulip,Toronto,539,0,0,2543,1,3,1,"6,25",5,5,2,2,2,1,0,0,1,North America +1422,North York luxury 1 bedroom condo close to subway,89372831,Brooke,Toronto,160,0,0,2820,,3,1,7,3,2,1,1,1,1,0,0,206,North America +1423,Sunny studio bedroom in the Junction,41737699,Nitchime,Toronto,190,1,1,3180,1,2,1,"6,73",30,4,"1,5",1,4,2,1,"0,85",129,North America +1424,New Modern Condo in the Heart of Downtown Toronto,128474348,Sarah,Toronto,112,0,0,2557,1,3,1,"6,8",198,4,1,1,2,1,1,"0,61",268,North America +1425,Chic Living in the Annex above Retail Boutique,131184559,Marlene,Toronto,120,1,1,2538,1,3,1,"6,82",131,6,1,2,3,1,1,1,290,North America +1426,"Stay in a Clean, Cosy and Modern Apartment",93209118,Grant,Toronto,95,1,1,2798,1,3,1,"6,67",231,2,1,1,1,1,1,1,228,North America +1427,EXECUTIVE URBAN HAVEN-HEART OF FINANCIAL DISTRICT,103698287,Paul,Toronto,125,1,1,2725,1,3,4,"6,77",158,2,1,1,0,4,1,1,0,North America +1428,Leslieville Loft,131304220,Robin,Toronto,300,0,0,2537,1,3,1,"6,82",141,2,1,1,1,1,"0,83","0,91",62,North America +1429,Cozy and Hip Space for Rental,96552699,Arben,Toronto,65,1,1,2776,1,2,1,"6,88",826,2,1,1,1,1,1,1,73,North America +1430,"Comfy, Fast Wifi, Close to Hospitals",18483787,Kylie,Toronto,91,1,1,3573,1,2,3,"6,86",376,2,1,1,1,27,"0,97","0,99",357,North America +1431,Large 1Bdrm Close To CNTower/ACC/Convention Centre,123803824,Alice & Tina,Toronto,236,1,0,2587,1,3,2,"6,88",17,2,1,1,1,2,1,1,276,North America +1432,Waterfront Penthouse Overlooking Lake Ontario,8524051,Lindsay Elizabeth,Toronto,362,1,1,3898,1,3,1,"6,84",111,4,2,2,2,1,1,"0,92",320,North America +1433,Spacious Bedroom in Little Italy (purple room),61879834,Despina,Toronto,112,1,1,2978,1,2,2,"6,85",116,2,1,1,1,2,1,"0,86",348,North America +1434,Cozy 10'x10' Bedroom in Downtown (Little Italy),61879834,Despina,Toronto,92,1,1,2978,1,2,2,"6,8",47,1,1,1,1,2,1,"0,86",337,North America +1435,2 Brd+Solarium Toronto North,47910679,Luda,Toronto,169,0,0,3104,1,3,2,7,2,6,"1,5",2,4,2,0,0,275,North America +1436,Beautiful King West Loft with a Lovely Terrace,125543626,Shane,Toronto,129,0,0,2576,1,3,2,"6,67",23,2,1,1,1,4,1,"0,55",1,North America +1437,Mansions of Humberwood,90031229,Harj,Toronto,135,1,0,2816,1,3,1,"6,68",39,2,1,1,1,1,1,1,234,North America +1438,Cozy Studio In Entertainment District W Lg Balcony,123803824,Alice & Tina,Toronto,83,1,0,2587,1,3,2,"6,57",135,2,1,0,1,2,1,1,196,North America +1439,Private open concept apartment with fresh linens,3096598,Carl,Toronto,99,1,0,4294,1,3,3,"6,48",31,2,1,0,1,3,"0,9",1,329,North America +1440,A private bedroom with two beds by Yonge subway,91208270,Cheng,Toronto,49,1,1,2809,1,2,6,"6,84",102,3,1,1,2,8,"0,96","0,93",223,North America +1441,Bright clean loft in hip King West -long term stay,39759653,Dan,Toronto,186,1,1,3201,1,3,1,7,15,2,1,1,0,1,1,1,100,North America +1442,Stay Over @Entertainment Core.,37056781,Rajeeb,Toronto,98,0,0,3229,1,3,1,"6,82",153,2,1,2,1,1,"0,33","0,67",178,North America +1443,Large Room in DT Toronto (Queen St. W),33031,Katie,Toronto,90,0,0,5367,1,2,1,7,4,1,1,1,1,1,0,0,278,North America +1444,Wits End - The Perfect Toronto Pied-A-Terre!,133810071,Toomas,Toronto,165,1,1,2521,1,3,2,"6,97",141,3,1,1,2,2,1,1,355,North America +1445,Modern 2 bed+2 bath condo in downtown with parking,7847028,Steven,Toronto,150,1,1,3927,1,3,2,7,12,4,2,2,2,2,1,"0,91",223,North America +1446,Relax in a Bright Sub-Penthouse Downtwon Bay St,8540894,Yani,Toronto,245,1,1,3897,1,3,9,"6,79",88,5,2,2,3,24,1,"0,93",0,North America +1447,Open Concept Basement Suite in the Beaches,124058049,Erlich,Toronto,165,1,1,2585,1,3,1,"6,69",13,2,1,1,0,1,1,1,342,North America +1448,City Center Gorgeous Luxury Cond 1 BR + D + 2 bath,2629375,Kasey,Toronto,192,1,1,4340,1,3,3,"6,93",15,2,2,1,1,5,1,"0,83",157,North America +1449,"Huge Two Bedroom In-Law’s Apt., 15min to Downtown",132977563,Saba,Toronto,149,0,0,2526,1,3,5,"6,26",70,6,1,2,2,5,"0,94","0,64",135,North America +1450,Large 1bdr in Shared Basement-Apt CNTRL ETOBICOKE,45141945,Samira,Toronto,45,0,0,3140,1,2,4,"6,84",79,2,1,1,2,4,"0,6","0,75",355,North America +1451,Studio - Lower Lever Kensington/Chinatown house,134131829,May,Toronto,93,0,0,2519,1,3,2,"6,53",45,1,0,1,2,2,1,"0,8",23,North America +1452,Elegant and confortable basement studio apartment,47754626,Pat,Toronto,75,0,0,3106,1,3,1,"6,82",46,2,1,0,1,1,"0,5",0,276,North America +1453,"1 Bedroom Condo all to yourself, Downtown Toronto",101521580,Mirko,Toronto,149,0,0,2743,1,3,1,"6,7",33,2,1,1,1,1,0,"0,5",52,North America +1454,New condo w/ gorgeous lake views,34789250,Josephine,Toronto,225,1,1,3257,1,3,1,"6,84",51,4,1,1,2,3,1,"0,99",228,North America +1455,Authentic designer loft in Parkdale,3191069,Rachel,Toronto,130,0,0,4285,1,3,1,"6,92",14,2,1,1,0,1,0,0,275,North America +1456,Lawrence Room 2 near Subway Station and Mall,132038673,Yonglei,Toronto,40,1,0,2532,,2,8,"6,49",67,1,"1,5",1,2,12,1,1,0,North America +1457,College & Spadina (1+) bdrm high-rise w/ balcony!,134131829,May,Toronto,155,0,0,2519,1,3,2,"6,58",20,3,1,1,2,2,1,"0,8",156,North America +1458,Stunning View-Dundas SQ/Eaton CTR/St.Michaels HOSP,846505,Julie,Toronto,300,1,1,4669,1,3,53,"6,81",123,2,1,0,1,102,1,1,199,North America +1459,Sheppard West,1599270,Chad,Toronto,221,1,1,4493,1,3,1,"6,91",57,4,2,2,2,1,1,"0,91",224,North America +1460,Charming 3-BR Condo in DT Toronto,785826,Sky View,Toronto,162,1,1,4683,1,3,51,"6,93",28,5,2,3,3,56,1,"0,93",211,North America +1461,The Funky Friendly Parkdale Pad,22813510,Marcus,Toronto,100,1,1,3480,1,2,1,"6,95",129,2,1,1,1,1,1,"0,96",311,North America +1462,Cancer - Coxwell Subway Station,123205575,Ho Tung,Toronto,36,0,0,2590,1,2,6,"6,18",57,2,2,1,1,10,"0,97","0,77",342,North America +1463,76Premium 1+1 BR Suite/Parking/ Subway Dir.Access76,97777185,Nima,Toronto,151,0,0,2767,1,3,14,"5,71",21,3,1,1,1,21,1,"0,62",0,North America +1464,Comfy Private Room,132327994,Bijaya,Toronto,53,0,0,2530,1,2,1,"6,68",115,2,1,1,1,1,1,"0,8",281,North America +1465,"Fabulous area, Free Parking, Fast Wi-Fi, backyard",11078981,Priscilla,Toronto,145,0,0,3768,1,3,3,7,2,3,"1,5",2,3,3,1,"0,47",169,North America +1466,CasaLoma comfortable private room(long term),82329751,Ke Ren,Toronto,95,1,1,2855,1,2,2,"6,76",205,4,1,1,2,6,1,1,185,North America +1467,Casa Loma cozy&relaxing private room(long term),132861729,Lizhen,Toronto,95,1,1,2527,1,2,4,"6,8",139,1,1,1,1,6,1,"0,98",185,North America +1468,Middle town quiet house for living,134795580,Junli,Toronto,60,1,0,2515,,2,7,"6,62",14,1,1,1,1,7,1,1,247,North America +1469,"Private Room & Private Bath, Downtown, Lakefront!",132459326,Rachel,Toronto,57,1,1,2529,1,2,1,"6,7",23,1,1,1,1,1,1,1,66,North America +1470,"Entire 1 bed apartment with 2 bathrooms, & deck",7343519,Elizabeth,Toronto,93,0,0,3951,1,3,1,"6,77",23,2,2,1,1,1,0,0,239,North America +1471,"2 bedroom mins walk to St, Joseph's Health Center",5082633,Narelle,Toronto,105,1,1,4094,1,3,1,"6,8",50,3,1,2,2,2,1,"0,88",293,North America +1472,Luxury 2BDRM+2Baths @Yonge/Sheppard,2585037,Navodit,Toronto,200,1,0,4345,1,3,1,7,2,5,2,2,2,1,1,1,221,North America +1473,Beautiful House with a large backyard.,22351037,Mikhail,Toronto,219,0,0,3491,,3,1,7,9,6,2,4,4,1,0,0,237,North America +1474,U3 Spacious Renovated Downtown Annex Bachelor,9923100,Ed,Toronto,79,0,0,3825,1,3,15,"6,87",45,2,1,0,1,15,1,"0,53",92,North America +1475,Garden Home @ Trinity Bellwoods Park,12766664,David,Toronto,292,1,1,3712,1,3,1,"6,79",304,5,1,2,2,3,1,"0,99",233,North America +1476,bedroom 2 号房,50769016,Jane,Toronto,169,0,0,3068,1,2,3,7,2,2,1,1,2,3,0,0,186,North America +1477,Queen West Victorian Home (Upper Space),135291482,Bill And Cindy,Toronto,134,1,1,2512,1,3,1,"6,93",92,4,1,2,2,1,1,"0,88",218,North America +1478,1 bedroom apt/entire apt/near airport/ secnd floor,123793058,Geri,Toronto,99,0,0,2587,1,3,1,"6,78",28,2,1,1,2,1,0,0,0,North America +1479,In the Heart of Downtown Toronto,15779976,Valia,Toronto,299,1,0,3634,1,3,2,"6,6",5,6,2,2,3,4,1,1,176,North America +1480,Zoom Tiff Executive,11206244,Superhost,Toronto,799,0,0,3763,1,3,19,0,0,4,1,1,1,20,1,"0,6",0,North America +1481,Beautiful Toronto Family Home- best neighbourhood,50610533,George,Toronto,217,1,1,3070,1,3,3,"6,79",104,7,3,4,5,5,1,"0,96",121,North America +1482,Charming sunny bedroom in the Distillery District,4140598,Natasha,Toronto,75,1,1,4187,1,2,2,"6,6",16,1,1,1,1,2,1,1,7,North America +1483,"Charming, Peace and Safe just 20 mins to Downtown.",132864542,Anju,Toronto,1000,0,0,2527,1,2,1,"6,91",54,2,1,1,1,1,0,"0,6",275,North America +1484,Matt's awesome place! Perfect for Families,23132290,Matt,Toronto,225,1,1,3471,1,3,3,"6,88",110,4,"1,5",2,2,3,1,1,115,North America +1485,Middle town quiet house for living,134795580,Junli,Toronto,54,1,0,2515,,2,7,6,4,1,1,1,1,7,1,1,235,North America +1486,luxurious 3 BR. Apt - Downtown Toronto.,135651320,Yagna,Toronto,479,0,0,2509,1,2,1,"6,67",9,6,1,3,3,1,0,0,276,North America +1487,Bedroom 1 号房,50769016,Jane,Toronto,159,0,0,3068,1,2,3,7,3,2,1,1,1,3,0,0,2,North America +1488,"G2 Entire apartment downtown Toronto, quiet street",26753094,Keir,Toronto,90,1,0,3383,1,3,7,"6,81",212,2,1,1,1,9,1,"0,98",84,North America +1489,"Private loft, in Liberty Village, sleeps four.",36568706,Martin,Toronto,227,1,1,3235,1,3,1,"6,74",138,4,1,1,2,2,1,"0,98",279,North America +1490,"Clean, comfortable and cozy Room #2 in Don Mills",71028073,Debra,Toronto,58,0,0,2915,1,2,1,"6,9",21,2,1,1,1,1,0,0,276,North America +1491,Beautiful Bloordale Bed & Breakfast #2,126772106,Harrison,Toronto,115,0,0,2568,1,3,2,"6,42",93,4,1,1,2,2,0,1,0,North America +1492,"Spacious apartment downtown near U of T, hospitals",1208446,Himani,Toronto,195,1,1,4602,1,3,1,"6,76",152,2,1,1,1,1,1,"0,95",218,North America +1493,Stylish 2BR Suite in Leslieville with Parking!,136035572,Markus,Toronto,268,1,1,2507,1,3,1,"6,73",119,5,2,2,2,1,1,"0,9",243,North America +1494,Main & Basement Unit of Townhouse,43032368,Luigi,Toronto,149,0,0,3166,1,3,3,"6,63",60,8,2,4,4,3,"0,11","0,27",58,North America +1495,Private Apartment - Centrally located in the Annex,448612122,Martina,Toronto,90,1,1,785,1,3,3,"6,64",63,2,1,1,2,3,1,"0,83",313,North America +1496,"Comfortable Little Portugal, Sleeps 3",84721968,Hyla,Toronto,85,0,0,2843,1,3,16,"6,8",20,3,1,1,4,15,"0,98","0,61",95,North America +1497,"Your home in Toronto, great location",10859758,Marco David,Toronto,305,1,1,3777,,3,1,"6,68",62,7,2,2,5,3,1,1,252,North America +1498,Perfect private stay in downtown Toronto,3846996,Baruch,Toronto,123,1,1,4219,1,3,2,"6,91",205,2,1,1,2,2,1,1,272,North America +1499,Clean & Modern Studio in Bloorcourt,137403170,Anthony,Toronto,99,1,1,2500,1,3,1,"6,93",167,2,1,0,2,1,1,"0,88",330,North America +1500,"Big, bright, modern townhouse w/ private bed/bath",34890629,Corinne,Toronto,117,1,1,3255,1,2,1,"6,95",42,1,"1,5",1,2,1,1,1,231,North America +1501,Luxurious Condo With Parking in Heart of Downtown!,19198533,Kristen,Toronto,153,1,1,3563,1,3,1,"6,8",352,3,1,1,1,1,1,"0,99",251,North America +1502,"""Cozy room for one"" Newly renovated!",97035552,Vesna,Toronto,59,1,0,2773,1,2,1,"6,74",87,1,1,1,0,1,1,1,108,North America +1503,Upstairs Unit of Townhouse,43032368,Luigi,Toronto,99,0,0,3166,1,3,3,"6,58",81,5,1,2,3,3,"0,11","0,27",149,North America +1504,"Annex, apartment in house, downtown, safe, subway",103972961,Eva,Toronto,107,0,0,2723,1,3,2,"6,63",16,2,1,1,1,2,1,"0,5",186,North America +1505,Beautiful house steps to the beach,137568945,Ashley,Toronto,650,0,0,2499,1,3,1,"6,72",64,9,"3,5",3,3,2,1,"0,75",60,North America +1506,Make the Heart of Toronto Yours,34867672,Robert,Toronto,202,0,0,3256,1,3,1,"6,7",57,2,1,1,2,1,1,"0,71",294,North America +1507,Live/Work Studio East End Toronto,5306737,Zoe,Toronto,63,1,1,4077,1,3,1,"6,54",13,3,"1,5",1,2,1,1,1,337,North America +1508,Entire basement unit in Downtown Detached House,137738456,Hongying,Toronto,128,1,1,2498,1,3,1,"6,77",187,4,1,2,3,1,1,1,39,North America +1509,Airbnb Friendly- Sleeps 6 With FreeParking!,136992491,Tiyana,Toronto,411,1,0,2502,1,3,1,"6,7",317,6,1,2,3,1,1,1,199,North America +1510,Great place,23310500,Theofanis,Toronto,89,1,1,3467,1,3,11,"6,79",175,2,1,0,0,11,"0,82",1,300,North America +1511,Arts Centric House in Downtown Toronto 2,30017611,Angela,Toronto,75,0,0,3325,1,2,2,"6,93",61,2,1,1,1,2,0,0,197,North America +1512,King West and Liberty Village,16697760,Derek,Toronto,92,0,0,3611,1,2,1,0,0,1,1,0,0,2,1,"0,09",0,North America +1513,"Parkdale, self contained 1 bedroom apt with deck",93626034,Chip,Toronto,63,1,1,2795,1,3,3,"6,87",31,2,1,1,1,3,1,"0,87",122,North America +1514,"Private bedroom close to bus, subway and UP Exp",137174079,Dave,Toronto,45,1,1,2501,1,2,1,"6,92",229,1,1,1,1,1,1,"0,93",289,North America +1515,"Cozy Bedroom w/ balcony @ York University, Toronto",30753730,Jeishan,Toronto,39,1,0,3312,1,2,16,"6,67",27,1,1,1,1,16,1,"0,99",89,North America +1516,"Snug Bedroom w/ balcony @ York University, Toronto",30753730,Jeishan,Toronto,41,1,0,3312,1,2,16,"6,58",25,1,1,1,1,16,1,"0,99",114,North America +1517,Queen (Bed)room + large closet @ York University,30753730,Jeishan,Toronto,41,1,1,3312,1,2,16,"6,64",12,2,1,1,1,16,1,"0,99",304,North America +1518,Private Haven in Leslieville,14228049,Noam,Toronto,95,0,0,3671,1,3,2,"6,72",168,3,1,0,1,2,0,0,45,North America +1519,Get Up Close and Personal with the CN Tower at a Stylish Pad,117031662,Helen,Toronto,158,0,0,2629,1,3,1,"6,83",549,3,1,1,1,1,"0,8",0,0,North America +1520,"Bright, Stunning Victorian Townhouse in the Annex",8540894,Yani,Toronto,284,1,1,3897,1,3,9,"6,69",204,5,1,2,2,24,1,"0,93",291,North America +1521,Lovely 1 BDRM Apart in Little Portugal for Sublet,1747358,Leah,Toronto,88,0,0,4461,1,3,1,"6,56",19,1,1,1,1,1,0,0,278,North America +1522,Unique and stylish in The Danforth!,71348813,Morgen,Toronto,71,1,1,2913,1,2,1,"6,92",181,1,1,1,1,1,1,"0,99",148,North America +1523,"Full Townhouse, 2 Individual Units",43032368,Luigi,Toronto,199,0,0,3166,1,3,3,"6,55",31,13,3,7,7,3,"0,11","0,27",157,North America +1524,Comfortable Luxury Apartment in a Perfect Downtown Location,78700881,Olga,Toronto,125,0,0,2873,1,3,2,"6,82",168,4,1,1,2,3,0,1,136,North America +1525,Hip Leslieville-private room with parking,37888099,Adele,Toronto,42,0,0,3220,1,2,2,"6,93",30,1,1,1,1,2,"0,78",1,53,North America +1526,Discover Charisma condo by the lake and bike trail,4806336,Nella,Toronto,185,0,0,4117,1,3,1,0,0,2,1,1,1,1,0,0,186,North America +1527,Bright spacious 1 BR steps from Roncys & High Park,12919686,Robyn,Toronto,110,0,0,3707,1,3,1,"6,91",45,3,1,1,1,1,1,0,269,North America +1528,Comfy quiet clean with bathroom-right in downtown,132981106,Elena,Toronto,69,1,0,2526,1,2,1,"6,58",321,2,1,1,1,1,1,1,319,North America +1529,Spacious High Park House w/ Backyard + Parking,4628985,Kelly,Toronto,215,1,1,4131,1,3,1,"6,88",102,8,"3,5",4,5,2,1,"0,98",302,North America +1530,20 minutes from Airport & Easy access to Toronto!,57964789,Fabiano,Toronto,85,0,0,3005,1,3,1,"6,81",32,4,1,1,1,1,"0,9","0,75",302,North America +1531,Lovely Beaches Home - July/ August 2024 only!,6411439,Emily & Ryan,Toronto,232,0,0,4004,1,3,1,"6,89",36,3,1,2,2,1,0,"0,5",323,North America +1532,Apt near Finch West Subway / York University 漢語OK,96693289,Crystal,Toronto,86,0,0,2775,,3,9,"6,7",20,6,1,1,4,10,1,"0,67",0,North America +1533,Sunny & Central Apartment- Close to Downtown,136724699,Joanna,Toronto,96,1,1,2503,1,3,3,"6,84",58,1,1,1,1,3,1,"0,93",179,North America +1534,City Jewel in Cosmo Toronto Centre @ CN Tower,12535667,Lennie,Toronto,200,0,0,3719,1,3,3,"6,69",14,4,1,1,2,3,"0,9","0,24",186,North America +1535,“Cute” Private Bedroom - Share Bsmt/One Other,35084172,Hellen,Toronto,44,1,0,3253,1,2,6,"6,6",5,1,1,1,1,6,1,1,72,North America +1536,Elegant Downtown Oasis with City and Lake Views Plus Parking,15817192,Luke,Toronto,187,0,0,3633,1,3,1,"6,91",147,3,1,1,1,1,0,1,114,North America +1537,New bright and spacious studio apartment,60677334,Brianna And Sharm,Toronto,100,1,0,2986,1,3,3,"6,65",86,2,1,1,1,4,1,1,247,North America +1538,Freshly Updated Suite With Parking & Laundry,137844042,Joanne,Toronto,95,0,0,2497,1,3,1,"6,94",143,2,1,1,1,2,1,"0,8",243,North America +1539,Beautiful Bright Bungalow / A Home for Long Stays,3358187,Lisa,Toronto,150,0,0,4268,1,3,1,"6,75",16,4,1,3,3,1,"0,67","0,3",94,North America +1540,Open Concept One Bedroom in Yorkville,90696008,Rasheed,Toronto,275,0,0,2813,1,3,1,0,0,3,1,1,2,1,0,0,282,North America +1541,Yonge Midtown,138365895,Farhan L,Toronto,220,0,0,2494,1,3,1,"6,78",65,2,1,1,1,1,1,"0,64",225,North America +1542,Zen Space,139177676,Sacha,Toronto,111,0,0,2490,1,3,3,"6,64",55,5,"1,5",3,3,3,0,"0,57",207,North America +1543,"Contemporary, Urban Loft on the Danforth.",159947,Rosanne,Toronto,145,1,1,5047,1,3,1,"6,82",161,4,1,1,1,2,1,"0,94",50,North America +1544,Bright Private Suite in Roncesvalles Victorian!,3947924,Tasleem,Toronto,110,0,0,4209,1,3,1,"6,87",140,2,1,1,1,1,1,"0,8",275,North America +1545,"Beautiful, Artistic, Liberty Village Townhouse",32362567,Dawn,Toronto,200,1,1,3288,1,3,1,"6,89",227,4,1,1,2,1,1,"0,89",68,North America +1546,1 bdrm full unit condo with a beautiful view,77972511,Myss,Toronto,180,0,0,2877,1,3,1,"6,94",17,1,1,1,1,1,0,0,7,North America +1547,A Cozy Basement Room with Separate Entrance,100696745,Poonam,Toronto,59,1,0,2749,1,2,1,"6,75",304,2,1,1,1,1,1,1,45,North America +1548,Short & Long Term clean rooms near Downtown Toront,102225775,Maggie,Toronto,69,0,0,2737,1,2,1,"6,75",75,1,1,1,1,1,0,0,1,North America +1549,Bright and Spacious 2 Bdrm BSMT apartment,139740769,Cj,Toronto,96,1,1,2487,1,3,1,"6,75",61,4,1,2,2,1,1,"0,83",293,North America +1550,Entire floor with private entrance,40619693,Ivan,Toronto,85,0,0,3192,1,3,1,"6,75",12,2,1,1,1,1,1,0,305,North America +1551,Lovely Artist's Apartment with Balcony and View,611492,Sam,Toronto,180,0,0,4729,1,3,1,"6,89",9,2,1,1,1,1,0,0,282,North America +1552,5 Minute Subway Huge Luxury Studio w/ Parking,90068148,Emily,Toronto,76,0,0,2816,1,3,5,"6,82",38,1,1,0,1,5,1,"0,79",186,North America +1553,1BDRMUnit7815DowntownToronto Living7815FreeParking/WiFi’,20607592,Christine,Toronto,75,1,0,3535,1,3,5,"6,5",6,3,1,1,2,5,1,"0,93",193,North America +1554,Spectacular Penthouse~Gym/Parking/KIng BED,846505,Julie,Toronto,364,1,1,4669,1,3,53,"6,72",141,2,"1,5",1,1,102,1,1,280,North America +1555,Cozy and Modern Basement Apartment,141893978,Carmen,Toronto,78,0,0,2475,1,3,1,"6,22",19,3,1,1,2,1,1,"0,33",2,North America +1556,Room to stay,112322647,Eleanor,Toronto,100,0,0,2659,1,2,3,6,1,2,"1,5",1,2,5,0,0,0,North America +1557,Cozy room close to the heart of Toronto,142041828,Lidia,Toronto,76,1,0,2474,1,2,1,"6,8",452,1,1,1,1,1,1,1,185,North America +1558,Private RM #2 in a townhouse close public transit,64971156,Liming,Toronto,58,0,0,2955,1,2,2,"6,92",50,1,1,1,1,2,0,1,227,North America +1559,Toronto Shared House (basement w private kitchen),21868614,Marie-Josee,Toronto,70,1,0,3503,1,2,4,"6,17",12,2,1,1,1,6,1,"0,92",97,North America +1560,Cloud above the Financial District 1BR + 1B,104845062,Tracy,Toronto,160,1,1,2717,1,3,1,"6,88",147,2,1,1,1,1,1,1,197,North America +1561,"Downtown, Separate Entrance, Large Bathroom,",2515277,Jonathan,Toronto,109,1,1,4353,1,2,1,"6,75",79,2,1,1,1,1,1,"0,84",200,North America +1562,Million Dollar View Condo,37736650,Xiaoshi,Toronto,300,1,0,3222,1,3,9,"6,89",18,5,2,2,2,10,1,"0,98",273,North America +1563,Modern 1 bed w/Sauna in Trendy Trinity Bellwoods,33245670,Natalie,Toronto,225,1,1,3277,1,3,1,"6,71",56,2,1,1,1,1,1,1,3,North America +1564,Uptown Bedroom. Free parking. 1min walk2transit,45370867,Russell,Toronto,100,1,1,3137,1,2,3,"6,83",282,2,1,1,1,3,1,1,249,North America +1565,Cozy space in one of Toronto's best neighbourhoods,130353449,Jeffrey,Toronto,157,1,1,2543,1,3,1,"6,82",188,2,1,1,2,1,1,"0,98",345,North America +1566,"Bright Apt: Free Street Parking, Wifi & Cable",142506699,Tatanya,Toronto,85,1,0,2472,1,3,1,"6,73",102,4,1,1,2,2,1,"0,86",310,North America +1567,Condo in central location!,143981600,Christina,Toronto,80,0,0,2464,1,2,1,7,4,2,1,2,2,1,"0,8",0,291,North America +1568,Little paradise(private room),91117191,Harnod,Toronto,110,0,0,2810,1,2,1,"6,6",6,1,1,1,1,1,0,0,185,North America +1569,Self-contained suite with separate bedroom for 2,102557743,Yaroslav,Toronto,68,0,0,2734,1,3,5,"6,59",43,2,1,1,1,5,1,"0,41",313,North America +1570,"Furnished, clean bedroom, in a spacious apartment.",9699007,Yaron,Toronto,55,0,0,3837,1,2,1,"6,78",27,1,1,1,1,1,0,1,335,North America +1571,Private room with full access to the house,144205599,Dolores,Toronto,80,0,0,2462,1,2,1,7,35,1,1,1,1,1,0,"0,81",166,North America +1572,"""Yorkville Loft + Office -Near Four Seasons Hotel""",25036890,Patrick,Toronto,165,1,1,3420,1,3,3,"6,82",44,3,1,1,2,3,1,1,211,North America +1573,Spacious 1BR Executive Style Suite - King Bed,143053040,Randy,Toronto,69,1,0,2469,1,3,2,"6,78",61,4,1,1,1,2,1,1,301,North America +1574,"Spacious Room on Private Floor,15 min to Downtown",132977563,Saba,Toronto,64,0,0,2526,1,2,5,"5,86",8,2,1,1,1,5,"0,94","0,64",233,North America +1575,"Spacious Private Rm on Private Floor, 15 min to DT",132977563,Saba,Toronto,58,0,0,2526,1,2,5,"6,79",14,4,1,1,1,5,"0,94","0,64",290,North America +1576,Spacious 1BR Penthouse Suite with Amazing Terrace!,143053040,Randy,Toronto,120,1,1,2469,1,3,2,"6,62",74,3,1,1,1,2,1,1,176,North America +1577,Private & Cozy Guest Suite Near Downtown Toronto,203252,Helen,Toronto,119,1,1,5007,1,2,1,"6,9",195,2,1,1,1,1,1,1,315,North America +1578,Private Room with Walkout Balcony,144210650,Peter,Toronto,55,0,0,2462,,2,1,"6,5",3,1,1,1,1,1,0,0,0,North America +1579,Beautiful Bloordale Bed & Breakfast #1,126772106,Harrison,Toronto,125,0,0,2568,1,3,2,"6,51",69,4,"1,5",1,0,2,0,1,0,North America +1580,Spacious 1BR w/King Bed and Amazing Terrace!,143129329,Jennifer,Toronto,98,1,1,2468,1,3,1,"6,71",82,4,"1,5",1,1,1,1,"0,83",325,North America +1581,Beautiful Lower Level in Downtown West-End,136241595,Cory,Toronto,150,1,1,2506,1,3,1,"6,8",10,4,1,1,0,1,1,1,166,North America +1582,Newly Renovated Studio in Amazing Location!,143192708,Gordon,Toronto,183,1,1,2468,1,3,1,"6,77",224,2,1,0,1,2,1,1,231,North America +1583,Beach Vibes in Toronto’s Upper Junction,130178952,Sarah,Toronto,56,1,1,2545,1,2,4,"6,77",61,1,"1,5",1,1,4,1,"0,98",56,North America +1584,Sulgrave queen size room,103332460,Long Xiu,Toronto,43,1,0,2728,1,2,3,"6,67",3,2,"1,5",1,0,3,1,1,49,North America +1585,Stunning Luxury Yorkville Annex Townhouse,447299,Rachel,Toronto,489,0,0,4794,1,3,1,7,1,3,"2,5",0,0,1,"0,5",0,7,North America +1586,Hidden Gem - Relaxing Bluffs Apartment (TO East),21261125,Azia,Toronto,75,0,0,3519,1,2,1,"6,8",10,1,1,1,1,1,0,0,277,North America +1587,Pristine Apartment on the Lake,5819896,Mariusz,Toronto,69,1,0,4042,1,3,1,"6,77",50,2,1,1,1,5,1,"0,94",349,North America +1588,Mid-town T.O. getaway - conveniently located,143390597,Ryan,Toronto,122,1,1,2467,1,3,1,"6,88",260,2,1,1,2,1,1,"0,97",339,North America +1589,Private living+bdr+bath+parking in center Downtown,14926380,Andy,Toronto,56,0,0,3654,1,2,1,"6,9",102,2,1,2,2,1,1,"0,56",222,North America +1590,"Scarborough North - Female host, Female guest - R3",25278998,KTC Property Management Ltd.,Toronto,40,0,0,3413,1,2,19,"6,59",41,1,1,2,1,21,"0,96","0,45",335,North America +1591,The cozy spot,143385147,Jason,Toronto,111,0,0,2467,1,3,1,"6,07",15,3,1,2,0,1,0,0,185,North America +1592,Cozy Nest Retreat,143518222,Angelica Maria,Toronto,53,0,0,2466,1,2,1,0,0,1,1,0,1,1,0,0,276,North America +1593,"Sanctuary on private ravine, large luxurious space",131353822,Tom,Toronto,80,1,1,2537,1,3,1,"6,84",43,4,1,1,2,1,1,1,114,North America +1594,Greektown Getaway on the Danforth,145204099,Sameena Lisa,Toronto,120,1,1,2457,1,2,1,"6,92",167,2,1,1,1,1,1,"0,88",236,North America +1595,Modern High-Rise 2 Bedroom Apr. With 400sf Terrace,36829638,Rita,Toronto,284,1,1,3232,1,3,1,"6,8",110,4,2,2,2,1,1,1,280,North America +1596,Bright bedroom in West Toronto (DB),143583081,Dolores,Toronto,53,0,0,2466,1,2,2,7,12,1,1,2,2,2,0,0,276,North America +1597,Rebecca Toronto Guest House#2 for 1 person.,86526357,Chohui,Toronto,57,1,0,2834,1,2,4,"6,56",27,1,1,1,1,9,1,1,275,North America +1598,Bright room at Toronto West end,143583081,Dolores,Toronto,800,0,0,2466,1,2,2,"6,93",15,1,1,1,1,2,0,0,98,North America +1599,Beautiful 2 Bed 2 Bath 2 Balc Corner Unit-Downtown,75480269,Natasha And Karan,Toronto,929,0,0,2890,1,3,1,"6,75",8,4,2,2,2,1,1,0,3,North America +1600,Rebecca Toronto Guest House#1 for 1 person,86526357,Chohui,Toronto,62,1,1,2834,1,2,4,"6,73",66,1,1,1,1,9,1,1,297,North America +1601,Impressive Art Studio,94636867,Tori,Toronto,98,0,0,2789,1,3,1,"6,87",83,2,1,1,1,1,0,0,100,North America +1602,Cozy Room Steps to Subway + Netflix (Female Only),145242773,Mel And Enar,Toronto,39,1,1,2457,1,2,5,"6,94",17,1,1,1,1,5,1,1,237,North America +1603,Near Seneca College 2-floor/GO Train/TTC,130912946,Anita,Toronto,73,1,0,2540,1,2,2,"6,33",40,2,1,1,1,2,1,"0,98",280,North America +1604,Cozy. Unique. Quiet 1 bdrm. Steps to Queen West!,10049710,Chris & Mark,Toronto,105,1,1,3819,1,3,2,"6,87",83,2,1,1,1,3,1,"0,86",171,North America +1605,Spacious and Calm Lower Level Unit,57879991,Eric,Toronto,110,1,1,3005,1,3,5,"6,71",119,2,1,1,1,6,1,"0,95",335,North America +1606,Apt 6A-1 Male Dormitory @ Parkdale Hostellerie,377040,Leanne,Toronto,56,1,0,4835,1,1,8,"6,39",46,1,"4,5",1,1,8,"0,96","0,97",93,North America +1607,Admire Unobstructed CN Tower Views at a Lavish Penthouse,47669138,Peter,Toronto,219,1,1,3108,1,3,1,"6,82",196,4,2,2,2,1,1,1,237,North America +1608,"Private studio, 4K TV, super fast WiFi, long term",57534598,Anna And Igor,Toronto,115,0,0,3008,1,3,1,"6,69",51,4,1,8,0,1,0,0,53,North America +1609,"""B"" at the center of everything Toronto",61451902,B,Toronto,100,0,0,2981,1,3,1,"6,91",11,3,1,1,1,1,0,0,259,North America +1610,Amenity-Rich 2BR in Heart of City!,95667533,Suzanne,Toronto,152,1,1,2782,1,3,2,"6,72",60,6,1,2,3,2,1,1,201,North America +1611,"Private bedroom & bathroom, stunning views!",71584030,Eric,Toronto,151,1,1,2911,1,2,1,"6,94",172,2,1,1,1,1,1,"0,98",337,North America +1612,Private studio,22402793,Dr. Alam,Toronto,9999,0,0,3490,1,2,1,"6,83",133,1,1,1,2,1,0,0,282,North America +1613,5 Star Full Basement Apartment Free Car Park,89160022,Biplab,Toronto,60,0,0,2821,1,3,1,"6,61",264,2,1,1,1,1,1,0,306,North America +1614,**PERFECT** 2 Bedroom Newly Renovated Whole Home,147402552,Brent And Lori,Toronto,130,0,0,2443,1,3,1,"6,89",235,6,"1,5",3,3,1,1,0,248,North America +1615,2 BEDROOMS APT - Near U of T - Downtown Toronto,84742293,Tam,Toronto,113,1,0,2843,1,3,1,"6,69",201,5,1,2,3,2,1,1,195,North America +1616,Designer-renovated 1 bedroom on trendy Sorauren,25151300,Max,Toronto,165,1,1,3416,1,3,1,"6,87",105,4,1,1,2,1,1,1,193,North America +1617,NEW- Renovated Main Floor Suite,46580790,Haroon,Toronto,95,1,1,3122,1,3,2,"6,85",102,6,1,3,3,2,"0,9",1,95,North America +1618,"Jade house 5, single bed with private washroom",136671442,Helen,Toronto,60,1,1,2504,1,2,5,"6,77",30,1,1,1,1,5,1,1,328,North America +1619,Private Unit/Suite in the Junction,401125255,Cuong,Toronto,43,0,0,1086,1,3,7,"6,65",65,2,1,2,1,50,1,"0,77",84,North America +1620,Trinity-Bellwoods House September 2024,15148551,Melissa,Toronto,232,1,0,3649,1,3,2,0,0,8,"3,5",8,4,4,1,"0,93",115,North America +1621,Premium 1 BR Suite (City CNTR/Subway Dir.Access),54422135,Seyedeh Afarin,Toronto,130,0,0,3032,1,3,29,"6,82",17,2,1,1,1,69,1,"0,53",1,North America +1622,Amazing 3 bedrooms apt Yonge/Finch Subway,130424645,Liqun,Toronto,149,1,0,2543,1,3,1,"6,79",19,6,2,3,4,3,1,"0,92",189,North America +1623,Fantastic Space with Secured Parking; Trinity Bellwoods Park,145970887,Robyn J,Toronto,100,1,1,2452,1,3,1,"6,86",345,2,1,1,1,1,1,1,272,North America +1624,Midtown Luxury Yonge/Lawrence Close to Downtown,146171031,Donald,Toronto,249,1,1,2451,1,3,1,"6,84",195,6,1,2,3,1,1,1,120,North America +1625,Full house available downtown (east)! A rarity!,20387843,Gregory,Toronto,324,1,1,3540,1,3,1,"6,69",42,4,1,2,2,1,1,"0,92",277,North America +1626,Pristine First Floor Getaway in Little Italy,96094101,Celestine,Toronto,120,1,1,2780,1,2,1,"6,8",237,2,1,1,1,1,1,1,138,North America +1627,Luxury 2BR Private Suite Fully Equipped near UTSC,15204301,Raffat,Toronto,101,0,0,3647,1,3,2,7,8,4,1,2,3,2,"0,8","0,71",77,North America +1628,Big & Comfortable Private Room,32354557,Philip,Toronto,80,0,0,3288,,2,2,0,0,2,"1,5",2,1,2,0,0,185,North America +1629,Bright Unit in the heart of Greek Town,80369796,Jeff,Toronto,100,1,0,2865,1,3,4,"6,38",32,4,1,1,2,4,1,"0,97",329,North America +1630,Bright Queen Suite on the Main Floor,85473145,Sharon,Toronto,105,1,0,2839,1,2,5,"6,79",19,2,2,1,1,6,1,1,205,North America +1631,Midtown views,107960489,Rouzbeh,Toronto,179,1,1,2688,1,3,3,"6,77",205,2,1,1,1,3,1,1,241,North America +1632,Jade House 3 Master bedroom with private washroom,136671442,Helen,Toronto,85,1,1,2504,1,2,5,"6,88",17,2,1,1,1,5,1,1,276,North America +1633,5 BR/3 BA +Parking 2 Level Kensington Market Suite,147702149,Felicia,Toronto,2500,0,0,2441,1,3,1,"6,92",62,14,3,5,7,1,0,1,7,North America +1634,Modern Studio in Architects House,146673647,Brian,Toronto,98,1,1,2448,1,3,2,"6,82",39,1,1,0,2,2,1,"0,95",146,North America +1635,Central Downtown Location,19114479,Karen Patricia,Toronto,139,1,1,3564,1,2,2,"6,69",59,2,1,1,1,2,1,"0,96",104,North America +1636,Kashaneh at Meridian - 1 BR,12033867,Kashaneh,Toronto,169,0,0,3736,1,3,16,7,2,2,1,1,1,17,"0,88","0,08",0,North America +1637,1 Bedroom Sleeps up to 4/Great location in Toronto,147933259,Ayman,Toronto,95,1,0,2439,1,3,4,"6,37",28,4,1,1,3,4,1,"0,99",150,North America +1638,"Inviting Beach Home w/ pool - steps to lake, shops",128971124,Murray,Toronto,553,0,0,2553,1,3,1,7,2,6,"3,5",4,5,1,1,"0,5",176,North America +1639,Spacious Room near Downtown Toronto,18274975,Kaiser,Toronto,53,1,0,3576,1,2,2,"6,69",64,1,1,1,1,3,1,"0,96",277,North America +1640,TORONTO ELEGANCE,25218140,S,Toronto,195,0,0,3414,,3,1,0,0,2,1,1,1,1,0,0,2,North America +1641,"Beautiful, Sun-filled Apartment + Private Balcony",2165178,Soo Ha,Toronto,105,0,0,4397,1,3,6,"6,52",31,4,1,1,2,6,1,"0,74",116,North America +1642,Bright Modern Apt on 2F +Private Backyard +Parking,2165178,Soo Ha,Toronto,145,0,0,4397,1,3,6,"6,73",52,5,1,2,3,6,1,"0,74",147,North America +1643,Historic Home with Modern Decor in Downtown Toronto,148091094,Tullio,Toronto,325,1,1,2438,1,3,4,"6,88",41,7,2,3,3,4,1,1,0,North America +1644,Bright Apartment (Monthly Rental),43037706,James,Toronto,105,1,1,3166,1,3,2,"6,84",37,2,1,1,1,2,1,1,211,North America +1645,Pearson Pitstop + UP Express ~ Downtown in 15mins!,104555090,Patricio,Toronto,68,0,0,2719,1,2,2,"6,75",313,2,1,1,1,2,0,1,275,North America +1646,Downtown T.O Ent. District - 1 Bedroom (LTS),22025132,Jatin,Toronto,151,1,0,3500,1,3,1,"6,73",76,2,1,1,1,1,"0,9",1,175,North America +1647,Relaxing city retreat with year round swim spa,9224906,Sarah,Toronto,350,0,0,3862,1,3,1,"6,78",18,6,2,3,4,2,1,"0,64",325,North America +1648,Toronto City Group Stay,104551258,Mike,Toronto,350,1,0,2719,1,3,4,"6,5",2,12,2,6,9,4,1,1,7,North America +1649,"Bright,Newly renovated, sleeps 4, 1bdrm,bsmt suite",148292740,Karen,Toronto,73,1,0,2437,1,3,1,"6,78",146,4,1,1,4,1,1,1,111,North America +1650,Steps to it all~Eaton CNT/Dundas SQ/Toronto HOSP,846505,Julie,Toronto,150,1,0,4669,1,3,53,"6,51",72,2,1,0,1,102,1,1,82,North America +1651,Apt 6A-3 (Male Dormitory) @ Parkdale Hostellerie,377040,Leanne,Toronto,56,1,0,4835,1,1,8,"6,34",44,1,"4,5",1,1,8,"0,96","0,97",85,North America +1652,SpectacularPenthouse VIEWS/ POOL /free Parking,148239797,Judy J H,Toronto,241,1,1,2437,1,3,1,"6,87",231,2,1,1,1,1,1,"0,96",245,North America +1653,stunning apartment,23310500,Theofanis,Toronto,99,1,0,3467,1,3,11,"6,79",106,3,1,1,2,11,"0,82",1,73,North America +1654,Nice Bedroom Steps to Subway+Netflix (Female Only),145242773,Mel And Enar,Toronto,43,1,1,2457,1,2,5,"6,82",22,1,2,1,1,5,1,1,262,North America +1655,1 Bedroom Prestigious Location,148443249,Nabila,Toronto,89,1,0,2436,1,2,2,7,1,1,1,1,1,2,1,1,95,North America +1656,Luxurious Linden Lair,25900824,Arjun,Toronto,250,0,0,3399,1,2,1,"6,67",15,4,2,2,2,1,0,0,98,North America +1657,Sun-Drenched Suite Close to Little India,108988081,Nicole,Toronto,308,1,1,2680,1,3,2,"6,72",205,5,1,1,2,2,1,1,2,North America +1658,Studio with Private Bathroom/Separate Entrance,7407457,Leila,Toronto,90,0,0,3948,1,3,2,"6,58",66,2,1,1,1,4,0,0,276,North America +1659,Middle town quite house for living,134795580,Junli,Toronto,58,1,1,2515,,2,7,7,1,1,1,2,0,7,1,1,262,North America +1660,BALDWIN & HURON,139873116,Gary,Toronto,59,1,0,2486,1,3,2,"6,72",152,1,"2,5",1,1,2,1,1,164,North America +1661,Bloorcourt Retreat w/ laundry,552459,Negar,Toronto,73,0,0,4748,1,3,1,"6,85",27,1,1,1,1,2,"0,9","0,75",191,North America +1662,"Pretty, spacious one-bedroom in St. Clair West",3068752,Kate,Toronto,168,1,1,4297,1,3,1,"6,89",139,4,1,1,1,1,1,"0,96",228,North America +1663,grounding self contained basement in the east,106772476,Alix,Toronto,60,0,0,2699,1,3,4,"6,86",22,2,1,1,1,5,1,"0,44",301,North America +1664,Keele off 401 #1 (1.4km to Humber River Hospital),53618472,Raymond,Toronto,109,1,1,3038,1,3,1,"6,94",156,4,1,1,2,1,1,1,270,North America +1665,Walk to St. Lawrence Market from a Luxury Penthouse Condominium,29377324,Alex,Toronto,220,1,1,3335,1,3,1,"6,85",111,4,2,2,2,1,1,1,326,North America +1666,COZY AND AFFORDABLE ROOM CLOSE TO DOWNTOWN!,150583020,Vladimir,Toronto,53,0,0,2421,1,2,11,"6,55",33,2,2,1,1,11,1,"0,7",77,North America +1667,Spacious Bedroom,43226728,Sonia,Toronto,48,0,0,3164,1,2,2,6,1,2,1,1,1,2,0,0,53,North America +1668,Toronto Condo - Free Parking! Rare find!,67388361,Aleksei,Toronto,120,0,0,2938,1,3,1,"6,69",166,2,1,1,1,2,0,0,208,North America +1669,DOWNTOWN TORONTO FURNISHED CORPORATE SUITE,2175675,Frank,Toronto,119,1,1,4395,1,3,4,"6,56",25,2,1,1,1,6,1,1,142,North America +1670,Chic Hideaway - Private bath + kitchen,130178952,Sarah,Toronto,78,1,1,2545,1,2,4,"6,74",115,2,1,1,1,4,1,"0,98",15,North America +1671,BRAND NEW COZY ROOM NEXT TO THE SUBWAY -> DOWNTOWN,150583020,Vladimir,Toronto,50,0,0,2421,1,2,11,"6,85",40,2,2,1,2,11,1,"0,7",74,North America +1672,Uptown Separate Bright Suite ( Free Parking ),128013575,Shahrokh,Toronto,126,1,1,2560,1,3,2,"6,86",149,2,1,0,0,2,1,"0,9",359,North America +1673,Full Home Humber Bay w 3 Parking & Large Deck/Yard,5895046,Jamie,Toronto,190,1,1,4037,1,3,1,"6,79",24,7,2,2,3,1,1,1,22,North America +1674,"2BR downtown condo, lake & city view, free parking",64559882,Maryam,Toronto,350,1,1,2958,1,3,1,"6,75",32,3,2,2,2,1,1,1,103,North America +1675,*** CONDO IN HOTEL ***,4477219,Vas,Toronto,50,0,0,4147,1,3,4,"6,85",13,2,1,0,1,4,1,"0,71",312,North America +1676,Downtown 2B+2B with Huge balcony and AMAZING VIEW!,70383038,Olivier,Toronto,180,0,0,2919,1,3,2,"6,97",34,4,2,2,2,2,1,"0,75",138,North America +1677,"Motel style, Master bedroom + in-suite bathroom",52170715,Feiyang,Toronto,51,1,1,3051,1,2,33,"6,83",314,3,1,1,2,42,1,"0,9",115,North America +1678,Jade House 1 Master bedroom with private bathroom,136671442,Helen,Toronto,85,1,0,2504,1,2,5,"6,73",15,2,1,1,1,5,1,1,275,North America +1679,Modern Spacious Studio - Yorkdale Mall/401/Subway,3073250,CleanStays,Toronto,65,1,0,4296,1,3,1,"6,28",47,4,1,1,2,5,1,"0,98",61,North America +1680,"CLOSE TO DOWNTOWN, BRAND NEW COZY ROOM",150583020,Vladimir,Toronto,55,0,0,2421,1,2,11,"6,83",35,3,2,1,0,11,1,"0,7",81,North America +1681,"Single Bedroom @Basement, near UP Express/ GO Stn",119983675,Daniel,Toronto,60,1,1,2610,1,2,5,"6,77",48,1,1,1,1,5,1,1,296,North America +1682,Beautiful Studio in the heart of Downtown,149163639,Mario,Toronto,65,1,0,2431,1,3,4,"6,55",91,4,1,0,1,4,1,1,34,North America +1683,Downtown studio in a historic building 多伦多领事馆正对面,149163639,Mario,Toronto,90,1,0,2431,1,3,4,"6,66",126,4,1,0,2,4,1,1,12,North America +1684,"Entire Luxury Condo, Amazing view & location",26108202,Tatiana,Toronto,92,1,1,3395,1,3,2,"6,78",292,2,1,1,1,2,1,1,55,North America +1685,Casual place,10018350,Seth,Toronto,150,0,0,3821,1,3,1,7,3,3,1,1,1,1,0,0,186,North America +1686,"Queen Master Suite, overlooking park",85473145,Sharon,Toronto,90,1,0,2839,1,2,5,"6,48",21,2,2,1,1,6,1,1,171,North America +1687,"Luxurious 2Bed 2Bath Connected PATH, Free Parking",16423626,Vinay,Toronto,293,1,0,3618,1,3,1,"6,59",70,4,2,2,2,1,"0,9","0,92",290,North America +1688,Great one bedroom unit in Central Etobicoke,149906054,Oscar,Toronto,60,1,0,2425,1,3,2,6,5,2,1,1,1,1,1,1,196,North America +1689,Cozy basement room,152984029,Bernard,Toronto,75,0,0,2403,,2,1,0,0,1,1,1,1,1,0,0,192,North America +1690,Executive King West Casa Sleeps 14 With 2 Parking,56100313,Sevag,Toronto,499,1,1,3019,1,3,1,"6,81",165,14,2,4,7,3,1,"0,97",58,North America +1691,2 Bedroom Unit - Toronto,60084806,Sam,Toronto,99,0,0,2990,1,3,1,"6,7",145,4,1,2,2,3,1,"0,8",204,North America +1692,King Size Bed in an Executive Home w/ parking,21847817,Barbara,Toronto,99,0,0,3504,1,2,2,"6,86",7,2,1,1,1,2,0,0,186,North America +1693,"Sweet 1 bedroom condo with parking avail, Downtown",151771343,Pete,Toronto,113,0,0,2412,1,3,1,"6,8",35,2,1,1,1,1,0,1,84,North America +1694,Cozy Private Guest Suite in Junction Area,14033669,Cara,Toronto,120,1,1,3676,1,2,1,"6,84",122,2,1,1,2,1,1,"0,95",212,North America +1695,8215Stunning 1BR8215Kensington Market8215Chinatown8215,8554197,Tim And Amber,Toronto,250,0,0,3896,1,3,1,"6,79",195,2,1,1,1,3,"0,96","0,72",330,North America +1696,Fresh and cozy room close to downtown. Brand new!,150583020,Vladimir,Toronto,65,0,0,2421,1,2,11,"6,87",30,4,2,1,2,11,1,"0,7",50,North America +1697,Beautiful Apartment in Dundas West!,91047,David,Toronto,132,1,1,5166,1,3,1,"6,74",69,2,1,1,1,1,1,1,102,North America +1698,NEW COZY ROOM CLOSE TO DOWNTOWN,150583020,Vladimir,Toronto,55,0,0,2421,1,2,11,"6,96",23,2,2,2,0,11,1,"0,7",145,North America +1699,4 Bdrms 3.5 Bath Exceptional Rosedale House,30427080,Nadereh,Toronto,495,0,0,3318,1,3,1,0,0,7,"3,5",4,4,2,0,0,365,North America +1700,Riverdale sweet suite for two w. giant shower,29409602,Noelle,Toronto,135,1,1,3335,1,3,1,"6,84",32,2,1,1,1,1,1,"0,91",216,North America +1701,"Modern, luxurious family home in Leslieville",215454,Meg And Craig,Toronto,300,1,0,4995,,3,1,7,4,5,"3,5",3,3,1,1,1,64,North America +1702,AFFORDABLE AND COZY ROOM CLOSE TO DOWNTOWN,150583020,Vladimir,Toronto,55,0,0,2421,1,2,11,"6,68",25,2,2,1,0,11,1,"0,7",164,North America +1703,"Sunlit Master Bedroom, near UP Express/ GO Station",119983675,Daniel,Toronto,70,1,1,2610,1,2,5,"6,74",39,2,1,1,1,5,1,1,292,North America +1704,3 Bedroom PENTHOUSE Downtown Toronto + Parking,149407924,Fakhrieh,Toronto,585,1,1,2429,1,3,1,"6,78",220,7,"2,5",3,4,1,1,"0,96",250,North America +1705,"Double BR w Queen Bed, near UP Express/ GO Station",119983675,Daniel,Toronto,65,1,1,2610,1,2,5,"6,85",42,2,1,1,1,5,1,1,302,North America +1706,Boutique Loft Condo Downtown Toronto,152577348,Philip,Toronto,251,1,1,2406,1,3,1,"6,74",170,3,1,1,1,1,1,"0,96",199,North America +1707,"Upscale Suite CN Tower, Convention & Rogers Centre",153681890,Theodore,Toronto,120,1,1,2398,1,3,1,"6,8",83,3,1,1,1,1,1,1,328,North America +1708,1 Bedrm Apt-Downtown Toronto - Near U Of T,152610913,Ann,Toronto,90,1,0,2406,1,3,1,"6,65",82,3,1,1,1,1,1,"0,88",209,North America +1709,Iris' Comfortable Central Downtown Condo,23579569,Yu Wen,Toronto,196,1,0,3460,1,3,1,"6,67",324,2,1,1,2,1,1,"0,86",327,North America +1710,NO Clean fee! Room C Free Wifi & Prkng,134097220,Choung,Toronto,53,1,1,2519,1,2,4,"6,92",353,1,1,1,1,4,1,1,108,North America +1711,Studio in the Treetops of a Quiet Neighbourhood,106261347,Judit,Toronto,160,1,1,2704,1,2,3,"6,85",404,2,1,1,1,3,1,1,132,North America +1712,Fantastic apt,23310500,Theofanis,Toronto,85,1,0,3467,1,3,11,"6,72",141,2,1,0,1,11,"0,82",1,277,North America +1713,Cozy and Spacious Apartment in Toronto,152862842,Hafizur,Toronto,104,1,0,2404,1,3,1,"6,65",93,4,1,0,0,1,1,1,185,North America +1714,Luxurious Annex/Yorkville 1300 Sq Ft & Parking,153788315,Gloria,Toronto,446,1,1,2397,1,3,1,"6,8",103,4,1,1,1,1,1,1,162,North America +1715,Modern Rustic Designer Home in Midtown,10416017,Kamyar,Toronto,300,1,1,3802,1,3,2,"6,68",76,6,2,3,3,2,1,"0,86",190,North America +1716,"Gorgeous Downtown Toronto Home Jan 1-May 1,2025",3846996,Baruch,Toronto,160,1,1,4219,1,3,2,"6,83",12,5,2,2,4,2,1,1,244,North America +1717,Large Space with 2 Baths & Parking in Downtown,40877091,Burkhard,Toronto,122,1,1,3189,1,2,1,"6,85",401,2,"1,5",1,1,2,1,"0,98",301,North America +1718,Retreat In the City,153872649,Karen,Toronto,69,1,1,2396,1,3,1,"6,87",55,1,1,1,2,1,1,"0,86",333,North America +1719,A Great Space to Stay,129291995,Dvora,Toronto,150,0,0,2551,1,2,1,"6,65",62,4,1,2,3,1,0,0,275,North America +1720,1R Available 61 Quiet+Secure [Rarely home] DT Condo,22279159,Kareen,Toronto,48,0,0,3493,1,2,1,6,1,1,1,1,2,2,1,"0,8",220,North America +1721,2 Bedroom & Study Spacious Bright Basement Unit,146490495,Amy,Toronto,109,0,0,2449,1,3,1,"6,66",67,4,1,2,3,1,1,0,277,North America +1722,Comfort place in North York,34882515,Dicky,Toronto,80,0,0,3255,1,3,1,0,0,2,1,1,2,1,0,0,0,North America +1723,A Bedroom in an Elegant Condo for Ladies Only,143181264,Namitha,Toronto,80,1,1,2468,1,2,1,"6,78",101,2,1,1,1,1,1,"0,96",275,North America +1724,Family Chic,105620148,Milad,Toronto,159,0,0,2710,1,3,1,7,1,4,1,1,3,1,0,"0,83",298,North America +1725,Lovely Arty Apartment in Downtown Toronto's Annex,27947272,Jenna,Toronto,150,0,0,3360,1,3,1,7,7,2,"1,5",1,1,1,0,0,0,North America +1726,"Toronto Midtown Cozy - Parking incl. 2BR, sleeps 6",154099470,Jeff,Toronto,110,1,1,2395,1,3,1,"6,82",109,6,1,2,3,1,1,"0,85",85,North America +1727,Sparkling Clean Condo in the 7815 of Downtown Toronto,154140034,Nidhi,Toronto,93,1,1,2394,1,3,1,"6,67",183,2,1,0,1,2,1,1,265,North America +1728,The Terrace Getaway,31718569,Sylvia,Toronto,500,0,0,3297,1,3,1,"6,93",83,4,2,2,2,1,1,0,237,North America +1729,"Leslieville loft space, with parking",37888099,Adele,Toronto,47,0,0,3220,1,2,2,"6,87",15,1,"1,5",1,1,2,"0,78",1,174,North America +1730,Luxury heart of downtown by CN Tower/ MTCC/Union,154370038,Crystal,Toronto,323,1,1,2393,1,3,1,"6,78",291,4,1,1,2,1,1,1,58,North America +1731,Bright Large Clean Room@YorkU Village/約克大學附近 明亮套房,72198554,SuLan,Toronto,68,0,0,2908,1,2,3,"6,84",25,1,"2,5",1,1,4,1,"0,6",23,North America +1732,Modern 2 Bedroom Condo in Heart of Toronto,10396964,Milena,Toronto,170,1,1,3803,1,3,1,"6,86",122,5,1,2,3,1,1,1,221,North America +1733,"Lake View, Upscale Location, Near Union St. PATH",36088235,Kevin,Toronto,70,1,1,3241,1,2,2,"6,59",27,1,1,1,1,4,1,"0,94",327,North America +1734,Spacious Basement Apartment in North York,82968222,Basel,Toronto,97,0,0,2851,1,3,1,"6,89",35,2,1,1,1,1,0,0,144,North America +1735,Private Room Separate Entrance Steps to Subway (3),22301317,Boguslaw,Toronto,65,1,1,3493,1,2,3,"6,78",91,1,1,1,2,3,1,"0,99",142,North America +1736,Admire the Street Art in Parkdale from this Swanky Loft,45029633,Mike,Toronto,160,1,1,3142,1,3,1,"6,84",122,4,"1,5",1,1,1,1,"0,88",273,North America +1737,Modern Lower Level Apartment,19300565,Akaash & Bethany,Toronto,85,1,0,3561,1,3,3,"6,75",103,2,1,1,2,3,1,"0,83",159,North America +1738,Downtown Private room A- private wc (basement),9956811,Erica,Toronto,96,1,1,3823,1,2,10,7,2,1,1,1,1,11,1,1,0,North America +1739,Large 1-bedroom backs onto the park,2519539,David,Toronto,234,1,1,4352,1,3,1,"6,92",106,2,1,1,1,1,1,1,303,North America +1740,Spacious and bright basement studio in Roncy,1427329,Maria-Leena,Toronto,120,1,1,4546,1,3,1,"6,93",133,2,1,0,1,1,1,"0,81",303,North America +1741,Home with 3 bedroom near downtown Toronto,75385739,Nitz,Toronto,31,1,1,2890,1,2,1,"6,82",11,1,"1,5",1,1,1,1,1,288,North America +1742,SUPER COZY ROOM. CLOSE TO DOWNTOWN,150583020,Vladimir,Toronto,55,0,0,2421,1,2,11,"6,91",33,3,2,1,2,11,1,"0,7",118,North America +1743,"10 Minutes Frm Pearson Airport, Home Away Frm Home",39383270,Andy,Toronto,125,0,0,3205,1,3,2,"6,67",9,3,1,1,2,3,0,0,0,North America +1744,Cozy room with private entrance,45723943,Cynthia,Toronto,39,0,0,3132,1,2,2,"6,11",9,1,1,1,1,2,"0,75","0,15",0,North America +1745,Executive Apartment in Upscale Neighbourhood,16925504,Susan,Toronto,289,1,1,3606,1,3,3,"6,33",3,4,1,2,2,3,1,1,145,North America +1746,Toronto Studio Apt at Danforth Woodbine Subway,111033878,Cameron,Toronto,80,1,0,2667,1,3,3,"6,53",74,2,1,0,1,3,1,1,1,North America +1747,Cozy 1-bedroom apartment on Summerhill Ave,153427761,Marc,Toronto,205,1,1,2400,1,3,1,"6,84",25,2,1,1,1,1,"0,83",1,83,North America +1748,CUTE ROOM CLOSE TO KENNEDY SUBWAY STATION,150583020,Vladimir,Toronto,52,0,0,2421,1,2,11,"6,87",15,1,2,1,0,11,1,"0,7",76,North America +1749,Great location and affordable price! High standard,150583020,Vladimir,Toronto,53,0,0,2421,1,2,11,"6,89",18,2,2,1,1,11,1,"0,7",123,North America +1750,1R Available | Quiet+Secure [Rarely home] DT Condo,157667608,Bryan,Toronto,56,0,0,2368,1,2,1,"6,56",9,2,1,1,1,2,"0,8",1,241,North America +1751,Sarvin,12033867,Kashaneh,Toronto,249,0,0,3736,1,3,16,"6,15",41,4,2,2,2,17,"0,88","0,08",0,North America +1752,Luxury Condo w/Stunning Lake Views in King West,23696332,Céline,Toronto,345,1,1,3457,1,3,1,"6,84",25,4,2,1,1,1,1,1,226,North America +1753,"Private Bath, Lake View, Modern, By Union St, PATH",36088235,Kevin,Toronto,117,1,1,3241,1,2,2,"6,88",8,1,1,1,1,4,1,"0,94",334,North America +1754,Upscale Luxurious Condo Free Parking,154268543,Carlo,Toronto,178,1,1,2393,1,3,2,"6,88",172,4,1,1,2,2,1,"0,97",71,North America +1755,PERFECT COZY ROOM! 15 Min walk from Kennedy Subway,150583020,Vladimir,Toronto,45,0,0,2421,1,2,11,"6,84",19,1,2,1,1,11,1,"0,7",190,North America +1756,Sleek City Escape: Executive Style 1BR - Sleeps 4,155626288,Vladimir,Toronto,115,1,1,2384,1,3,1,"6,74",162,4,1,1,2,1,1,"0,91",253,North America +1757,PRIVATE ROOM. Super cozy and affordable,150583020,Vladimir,Toronto,52,0,0,2421,1,2,11,"6,85",26,2,2,1,1,11,1,"0,7",194,North America +1758,International Student Friendly | Bright Fast Wi-fi,158191230,Pavlena,Toronto,125,1,0,2364,1,3,1,"6,61",33,3,1,2,2,2,1,"0,98",219,North America +1759,Little Italy - Private Blue Room,16590728,Courtney,Toronto,108,1,1,3614,1,2,3,"6,8",187,2,"1,5",1,1,3,1,"0,97",318,North America +1760,"Spacious room in Century home, trendy Ossington",6893345,Christine,Toronto,86,1,1,3975,1,2,3,"6,83",150,2,"1,5",1,1,3,1,1,301,North America +1761,Jessica's Joint! Warm and cozy on the Danforth,153493471,Jessica,Toronto,55,0,0,2399,1,3,1,7,2,2,1,1,1,1,"0,33",0,237,North America +1762,North York Luxury Suite Side door entrance,128284514,Jianqin,Toronto,132,0,0,2558,1,2,6,"6,63",142,2,1,1,1,6,1,"0,5",275,North America +1763,Gorgeous 3 Bedroom home near the Airport!,43826388,Ryan,Toronto,249,0,0,3156,1,3,5,"6,75",20,8,"1,5",3,4,9,1,"0,58",280,North America +1764,Get Comfortable in Our Stylish Place,158776724,Andrey,Toronto,75,1,1,2360,1,2,1,"6,9",255,2,1,1,1,6,1,1,62,North America +1765,The Peony Loft - a Modern Take on the Victorian,54130944,Orla,Toronto,222,1,1,3034,1,3,1,"6,91",76,4,1,2,2,1,1,1,216,North America +1766,Downtown One-Bedroom Suite By Union Station,158441459,Han,Toronto,136,1,0,2362,1,3,1,"6,6",231,3,1,1,1,1,1,1,285,North America +1767,High End Condo with CN Tower & Water Views,101839532,Matt & Suzanna,Toronto,182,1,1,2740,1,3,1,"6,87",166,4,1,1,2,1,1,1,186,North America +1768,Private apartment in trendy Danforth neighbourhood,7343001,Amy,Toronto,105,1,1,3951,1,3,1,"6,8",149,4,1,1,1,1,1,1,107,North America +1769,"Green, Safe & Cozy near Sunnybrook &Glendon",50019105,Fariba,Toronto,75,1,1,3078,1,2,9,"6,8",55,1,1,1,0,9,1,"0,86",147,North America +1770,Bachelor Apt 25 min drive from dt Toronto,23761236,Usman,Toronto,62,0,0,3455,1,3,1,"6,71",119,3,1,0,1,1,0,0,0,North America +1771,CONDO-like 1 BD Trinity Queens West,146226441,Inna,Toronto,83,1,0,2451,1,3,37,"6,76",63,4,1,1,2,38,"0,93","0,93",198,North America +1772,Comfortable Couch in Luxury Condo,21743392,Senthuran,Toronto,51,0,0,3507,1,1,1,"6,88",456,1,1,1,0,1,"0,78","0,45",144,North America +1773,3BR with Crib & Parking Family-Friendly Home,157953450,Yen,Toronto,200,0,0,2366,1,3,4,"6,67",107,6,"1,5",3,4,4,1,"0,78",207,North America +1774,Kensington Market Heritage Loft with City Views,23396349,Patrick,Toronto,850,1,0,3465,1,3,1,"6,89",19,8,2,4,4,1,1,1,262,North America +1775,Entire guest suite- 1BD basement,337379,Ginna,Toronto,250,0,0,4864,1,3,1,"6,63",8,2,1,1,1,1,0,1,280,North America +1776,Private 2 bedrooms unit & separate entrance,158756374,Song Song,Toronto,68,1,0,2360,1,2,1,"6,54",167,2,1,2,4,1,1,1,284,North America +1777,Spectacular whole house,23310500,Theofanis,Toronto,220,1,1,3467,1,3,11,"6,85",130,5,"2,5",4,4,11,"0,82",1,92,North America +1778,Luxury Pad in the Heart of Queen West,14164109,Amie,Toronto,195,1,0,3673,1,3,2,"6,82",49,2,1,1,1,5,1,"0,89",310,North America +1779,Park House! Enjoy winter on the park.,16594318,Susanne,Toronto,300,0,0,3614,1,3,1,"6,67",9,8,"3,5",5,5,1,1,0,365,North America +1780,Good Vibes Space *93 Walk Score & 91 Transit Score,33879,Hanseung Michael,Toronto,54,1,1,5363,1,2,2,"6,82",119,2,1,1,1,2,1,"0,99",358,North America +1781,All You Need is Here!,783082,Liliane,Toronto,284,0,0,4683,1,3,1,"6,68",56,3,1,2,2,1,1,0,38,North America +1782,Rebecca Toronto Guest House#4 for 1 person,86526357,Chohui,Toronto,53,1,1,2834,1,2,4,"6,66",53,1,"1,5",1,1,9,1,1,321,North America +1783,airybnb,139689738,Ian,Toronto,85,0,0,2487,1,2,1,"6,83",144,2,1,1,0,1,0,"0,6",237,North America +1784,Sleepy Hollow: A savvy traveller's idyllic retreat,162288103,Christine,Toronto,100,1,1,2333,1,2,1,"6,88",204,2,1,1,1,1,1,1,309,North America +1785,1BedroomCondo/Pool/CN Tower/Entertainment District,112401831,Jacob,Toronto,181,1,1,2658,1,3,1,"6,73",11,4,1,1,2,1,1,"0,92",88,North America +1786,"Cozy, Modern, Junior 1 Bedroom Apt on Main Floor",2165178,Soo Ha,Toronto,95,0,0,4397,1,3,6,"6,47",45,2,1,1,1,6,1,"0,74",118,North America +1787,"""THE RENDEZVOUS"" Friend's Palace",22175461,Sonny,Toronto,69,1,0,3496,1,3,1,"6,73",71,4,1,1,3,1,1,"0,86",95,North America +1788,Single Room Steps to Subway+ Netflix (Female Only),145242773,Mel And Enar,Toronto,39,1,1,2457,1,2,5,"6,97",31,1,1,1,1,5,1,1,105,North America +1789,Best View In the City! Close to Everything.,25741380,Rachael,Toronto,140,1,1,3402,1,3,2,"6,64",22,3,1,1,2,3,1,"0,81",24,North America +1790,"NO Cleaning fees! Room A bdrm, FREE Wifi, Parkng",134097220,Choung,Toronto,52,1,1,2519,1,2,4,"6,9",531,1,1,1,1,4,1,1,189,North America +1791,Private 2-person room 1,98862468,Xiaohua,Toronto,79,1,0,2762,1,2,2,"6,62",13,2,1,1,1,2,1,"0,91",253,North America +1792,"Beaches, private peaceful room",50019105,Fariba,Toronto,54,1,0,3078,1,2,9,"6,75",4,1,"1,5",1,0,9,1,"0,86",69,North America +1793,"By Rogers Centre, Scotiabank Arena & CN Tower",27295363,Mani,Toronto,220,0,0,3372,1,3,2,"6,94",189,5,2,2,2,3,"0,96","0,66",359,North America +1794,2 bedroom+1 den Condo (Young-Sheppard),52427068,Negin,Toronto,250,0,0,3048,1,3,1,"6,67",6,4,2,2,2,1,0,0,176,North America +1795,U2 Charming Downtown Toronto Bachelor Apt,9923100,Ed,Toronto,81,0,0,3825,1,3,15,"6,78",27,2,1,0,1,15,1,"0,53",216,North America +1796,Beautiful Second Floor 1BR Suite Yorkdale/Parking,162433636,Bryan,Toronto,119,1,0,2332,1,3,3,"6,61",77,2,1,1,1,3,1,1,100,North America +1797,PRIVATE ELEGANCE,52432167,Suzanna,Toronto,150,1,1,3048,1,3,3,"6,95",37,2,1,1,1,3,1,1,145,North America +1798,Bright Second Floor One Bedroom,162445410,Jack,Toronto,99,1,0,2332,1,3,2,"6,69",65,2,1,1,1,2,1,1,114,North America +1799,New basement en-suite with private bathroom,100969994,Fei,Toronto,45,1,1,2747,1,2,3,"6,86",21,2,1,1,1,3,1,"0,93",253,North America +1800,Entire home in Riverdale/ Leslieville,162532093,Sarah-Jane,Toronto,325,1,1,2331,1,3,1,7,3,4,2,3,3,1,1,"0,93",229,North America +1801,Spacious Luxurious Home w/ steam room & gym,8739610,Nathan,Toronto,400,0,0,3887,1,3,2,"6,91",11,8,"3,5",4,4,2,1,"0,73",50,North America +1802,Charming 1Bedroom Private Unit - Kitchen & Laundry,36647025,Donya,Toronto,108,0,0,3234,1,3,2,"6,57",54,2,1,1,1,2,1,"0,33",275,North America +1803,Luxury 1 bedroom Condo in Fort york,160648859,Termeh,Toronto,243,0,0,2345,,3,1,0,0,2,"1,5",1,1,1,0,0,275,North America +1804,Cozy Chalet w/ a fireplace in a quiet courtyard,1717188,Calin,Toronto,344,1,1,4467,1,3,1,"6,9",21,5,1,2,3,3,1,1,152,North America +1805,Private 2-person room 1,98862468,Xiaohua,Toronto,82,1,1,2762,1,2,2,7,2,2,1,2,1,2,1,"0,91",273,North America +1806,Chic 1-BR Urban Oasis Fashion Dist Bright Cozy,6311929,Nima,Toronto,136,0,0,4010,1,3,1,"6,92",13,2,1,0,0,1,0,1,277,North America +1807,"2 BEDS, Toronto's Bloor West Village/High Park - A",5293359,Luis,Toronto,65,1,1,4078,1,2,3,"6,77",189,2,1,1,2,3,1,1,34,North America +1808,Modern Executive Condo with City Views from the Balcony,162811995,Ryan,Toronto,479,1,1,2329,1,3,1,"6,81",296,8,2,3,3,1,1,1,163,North America +1809,The Little Italy House,53318438,Carmen,Toronto,328,0,0,3040,1,3,1,"6,57",49,2,1,1,1,3,1,"0,7",30,North America +1810,Spacious Downtown condo 2bdr/2 levels 1400sq feet,15513874,Oli,Toronto,179,1,0,3640,1,3,1,"5,83",6,3,2,2,2,1,1,1,237,North America +1811,1 Bedroom Suite,160351432,Azeta,Toronto,250,1,1,2347,1,3,1,"6,76",34,2,1,1,1,1,1,"0,97",233,North America +1812,Anna's house,162851103,Anna,Toronto,35,0,0,2329,,2,1,7,11,1,1,1,1,2,0,0,278,North America +1813,Two Bedrooms near Toronto Pearson Airport,162945098,Pratima,Toronto,110,1,1,2328,1,2,1,"6,83",52,3,1,2,2,1,1,"0,89",327,North America +1814,"Historic Downtown Annex, 2 bdms, trains 2 mins, UT",2321316,Tara And David,Toronto,125,1,1,4376,1,3,2,"6,67",15,4,1,2,2,2,1,"0,83",186,North America +1815,"Cozy, spacious basement apt.in Roncesvales village",119037222,Seher,Toronto,90,1,0,2616,1,3,2,"6,81",67,2,1,1,2,2,1,1,257,North America +1816,Bright Bedroom-bunk bed-upstairs,137701267,Shengyuan,Toronto,85,0,0,2498,1,2,5,5,3,2,1,1,1,5,"0,88","0,68",276,North America +1817,Modern 2 Bedroom Apartment,88283575,Danijel,Toronto,144,1,1,2825,1,3,1,"6,84",135,6,2,2,2,1,1,1,234,North America +1818,Spacious Private unit in Kensington Market,114408617,Lee Anne,Toronto,90,1,1,2646,1,3,1,"6,89",211,2,1,1,1,1,1,"0,97",220,North America +1819,Spectacular 2 BDR+ 2BTH/Free Parking/ North York,97777185,Nima,Toronto,300,0,0,2767,1,3,14,7,1,5,2,2,1,21,1,"0,62",0,North America +1820,Modern 1 Bedroom Downtown Condo w free parking,95622196,Aaron,Toronto,193,1,0,2783,1,3,1,"6,66",181,4,1,1,2,1,1,"0,95",264,North America +1821,Luxurious Waterfront Condo in Downtown Toronto,137406673,Mirella,Toronto,225,1,1,2500,1,3,2,"6,87",202,2,1,1,1,2,1,1,208,North America +1822,2 BR FURNISHED SUITE -HEART OF DOWNTOWN TORONTO,1142531,Valerie,Toronto,130,1,1,4616,1,3,2,"6,79",202,4,1,2,2,2,1,1,226,North America +1823,"Basement Apt in Little Italy, walkable to TTC",103195074,Sonia,Toronto,70,1,0,2729,1,3,1,"6,47",45,2,1,1,2,1,1,1,147,North America +1824,Luxurious | Modern | 1BR +Den Downtown | Balcony,125689770,Ezra,Toronto,290,1,1,2575,1,3,2,"6,86",65,4,1,1,2,2,1,"0,94",164,North America +1825,Rebecca Toronto Guest House#3 for 1 person,86526357,Chohui,Toronto,54,1,0,2834,1,2,4,"6,57",42,1,"1,5",1,1,9,1,1,304,North America +1826,Downtown Private room C- private wC (Basement),9956811,Erica,Toronto,76,1,1,3823,1,2,10,7,4,1,1,1,1,11,1,1,0,North America +1827,Great location 1-bdrm apartment.,61369802,Alina,Toronto,98,1,1,2981,1,3,1,"6,83",29,2,1,1,1,2,1,"0,92",325,North America +1828,"Quiet/Priv Bdrm, Living Rm, Bath and Kitchenette",156416831,Todd,Toronto,152,1,1,2378,1,1,1,"6,9",260,3,1,1,2,1,1,1,336,North America +1829,Great Value for Shared Stays(Doesn't fit Females),147933259,Ayman,Toronto,25,1,0,2439,1,1,4,"6,41",64,1,1,1,1,4,1,"0,99",95,North America +1830,Warm comfotable place Public transit at front door,152636901,Tim,Toronto,49,0,0,2406,1,2,1,"6,88",57,1,1,1,1,1,0,1,224,North America +1831,1BD Trendy Condo in Trinity Bellwoods - Sleeps 4!,163578725,Kevin,Toronto,64,0,0,2323,1,3,1,"6,55",95,4,1,1,2,1,1,"0,5",328,North America +1832,One bedroom apartment in downtown Toronto w/ Patio,17615310,Victor,Toronto,154,1,0,3590,1,3,3,"6,6",10,1,1,1,1,3,1,1,93,North America +1833,Penthouse Condo,43308936,Ali,Toronto,300,0,0,3163,1,2,3,"6,71",7,2,1,1,1,3,0,0,276,North America +1834,Private Cozy 1brm w/kitchen in quiet area,7224490,Aneta&Taz,Toronto,120,0,0,3957,1,3,1,"6,73",37,4,1,1,1,2,0,1,110,North America +1835,Sunny & Comfy Condo with City & Lake View,6540835,James,Toronto,102,0,0,3996,1,3,12,"6,81",220,2,1,1,1,12,1,"0,67",254,North America +1836,Bright Spacious Top Floor with a Sunny Terrace,3225688,Nedo,Toronto,116,1,1,4281,1,3,6,"6,83",60,2,1,1,1,6,1,"0,93",233,North America +1837,Tranquil 1Bed Oasis Queen West Patio and Backyard,32573104,Angie,Toronto,85,1,0,3285,1,3,3,"6,72",220,3,1,1,2,3,1,"0,92",337,North America +1838,"Sunlit Single Bedroom, near UP Express/ GO Station",119983675,Daniel,Toronto,48,1,1,2610,1,2,5,"6,53",43,1,1,1,1,5,1,1,329,North America +1839,Bright 1BR Downtown King St Corner Suite w Parking,460429,Michelle,Toronto,130,0,0,4787,1,3,1,"6,71",7,2,1,1,1,1,1,"0,5",259,North America +1840,102-Private romantic studio w ensuite bathroom,142092731,Tammy,Toronto,96,1,0,2474,1,2,1,"6,61",215,4,1,0,4,1,1,"0,94",278,North America +1841,Spacious 3 bedrooms Heart of Downtown.,161763640,Dung,Toronto,130,1,1,2337,1,3,1,"6,82",276,6,1,3,4,3,1,1,190,North America +1842,Bright Basement Bedroom in High Park,164702935,Jenny,Toronto,85,1,1,2316,1,3,1,"6,89",71,3,1,1,1,1,1,1,220,North America +1843,Cozy Private Bedroom in the Heart of Toronto,9812884,Librada,Toronto,65,1,1,3831,1,2,1,"6,87",305,2,1,1,1,1,1,1,191,North America +1844,Modern Loft In The Heart Of King West,60661,Gabe,Toronto,200,0,0,5259,,3,1,7,1,3,1,1,1,1,0,0,278,North America +1845,toronto welcomehouse 101 room&private washroom,164815285,James,Toronto,90,0,0,2315,,2,10,7,1,3,1,4,7,10,0,0,237,North America +1846,Modern guest ensuite in Annex neighbourhood.,120152430,Justin,Toronto,66,1,0,2609,1,3,2,"6,69",98,2,1,1,1,2,1,"0,95",320,North America +1847,Luxury Penthouse w BREATHTAKING CN TOWER Views!,38677739,John,Toronto,1895,1,1,3212,1,3,6,"6,81",21,8,2,2,2,7,1,1,185,North America +1848,Contemporary guest ensuite in Annex neighbourhood.,120152430,Justin,Toronto,66,1,0,2609,1,3,2,"6,69",98,2,1,1,1,2,1,"0,95",328,North America +1849,toronto welcomehouse 302 room&private washroom,164815285,James,Toronto,80,0,0,2315,,2,10,"6,75",4,2,1,1,2,10,0,0,237,North America +1850,Cozy Basement,165034301,Mirela,Toronto,115,0,0,2314,1,2,1,"6,82",136,2,1,1,5,1,0,0,19,North America +1851,Trendy and Cozy Apt. in the heart of Little Italy,165679113,Thiago,Toronto,120,0,0,2310,1,3,1,"6,72",18,3,1,1,1,1,0,0,0,North America +1852,Newly renovated basement bedroom with twin bed,100969994,Fei,Toronto,33,1,1,2747,1,2,3,"6,84",37,1,1,1,1,3,1,"0,93",239,North America +1853,"Stylish 1BR/2 bed CN Tower view, parking incl.",91092536,Kyle,Toronto,221,1,1,2810,1,3,1,"6,8",134,2,1,1,1,1,1,"0,91",282,North America +1854,Newly renovated basement bedroom with full bed,100969994,Fei,Toronto,36,1,1,2747,1,2,3,"6,89",28,1,1,1,1,3,1,"0,93",270,North America +1855,Toronto Shared House (South bedroom; double bed),21868614,Marie-Josee,Toronto,60,1,0,3503,1,2,4,"6,17",6,1,2,1,1,6,1,"0,92",96,North America +1856,Toronto home with a view,90135014,Oreste,Toronto,250,1,1,2816,1,3,1,"6,86",28,4,1,1,1,1,1,1,100,North America +1857,Room Spring —Spacious quiet good deal zoo coffee,163521442,Sophia,Toronto,68,1,0,2323,,2,3,"6,6",110,1,1,1,1,3,1,1,279,North America +1858,Room Love — In a Blessed & Sweet Home,163521442,Sophia,Toronto,51,1,0,2323,,2,3,"6,75",106,1,1,1,1,3,1,1,276,North America +1859,Toronto condo with a view of the lake and sun.,9702328,Marco,Toronto,131,1,1,3837,1,3,1,"6,85",54,2,1,1,1,2,1,1,209,North America +1860,Private Room with shared bathroom in Cabbagetown,17615310,Victor,Toronto,68,1,0,3590,1,2,3,"6,29",7,1,1,1,1,3,1,1,98,North America +1861,Bright corner room upstairs,137701267,Shengyuan,Toronto,65,0,0,2498,1,2,5,"6,88",8,2,1,1,1,5,"0,88","0,68",275,North America +1862,cozy room 4/walk out basement /private room,164469834,Shilling,Toronto,59,1,0,2317,1,2,6,"6,57",56,2,1,1,2,6,1,1,1,North America +1863,Modern Toronto Condo,40651066,Fahim,Toronto,275,0,0,3191,1,3,1,"6,67",3,2,1,1,1,1,1,0,220,North America +1864,toronto welcomehouse 302+303 room&private washroom,164815285,James,Toronto,140,0,0,2315,,2,10,6,1,4,1,2,3,10,0,0,237,North America +1865,Cozy HomeAway condo Forest Hill Toronto Subway Bus,18292018,Lily,Toronto,80,1,0,3297,1,3,2,"6,5",4,2,1,1,1,8,1,"0,96",177,North America +1866,"Minutes to downtown, TV, wifi, private washroom.",166751343,Mini,Toronto,69,1,1,2304,1,2,1,"6,82",251,4,1,1,1,1,"0,97","0,97",241,North America +1867,Charming 4 Bedroom & 2.5 bath (Yonge&Eglinton),846505,Julie,Toronto,379,1,0,4669,1,3,53,"6,62",123,6,"2,5",4,4,102,1,1,298,North America +1868,High End Sanitized Condo with Parking,6671943,Liz,Toronto,95,1,1,3988,1,3,5,"6,96",91,2,1,1,1,5,1,"0,97",189,North America +1869,"Luxury Modern House: Hot Tub, Gym & Steam Shower",4191713,Michael,Toronto,661,1,1,4181,1,3,1,"6,66",62,8,"3,5",3,4,3,1,1,320,North America +1870,"New Private Room w/Bathroom, TTC, Train nearby",146026426,Jiangang,Toronto,118,1,1,2452,1,2,10,"6,75",8,2,1,1,1,10,1,"0,95",0,North America +1871,1 bedroom (Art Loft) In The Hear Of Queen West,22769328,Elena,Toronto,165,0,0,3481,1,3,1,"6,75",8,2,1,1,0,1,"0,75","0,22",325,North America +1872,Willowdale Traveler's House [A1],58113832,Sun,Toronto,60,1,0,3004,1,2,7,"6,71",7,2,1,1,1,7,1,"0,81",275,North America +1873,Expansive Home & Lake Views,28284909,Mark,Toronto,365,1,0,3354,1,3,9,"6,8",10,8,2,3,4,16,1,"0,9",175,North America +1874,Modern 3 Bedroom Suite (upper Toronto Beaches),121397857,April,Toronto,125,1,1,2601,1,3,1,"6,94",18,3,1,2,4,1,1,1,168,North America +1875,Central Cosy Bright Condo,167446093,Luz,Toronto,82,0,0,2301,,3,1,0,0,1,1,1,1,1,0,0,7,North America +1876,Unique 3 BR House in Trendy Queen West - Sleeps 6!,172196038,Randy,Toronto,199,0,0,2275,1,3,1,"6,79",82,6,2,3,3,1,0,"0,96",282,North America +1877,Leslieville Heaven,18115567,Bara,Toronto,245,1,0,3579,1,3,1,"6,8",5,4,2,2,2,2,1,"0,82",87,North America +1878,"One Bedroom , Private entrance/washroom",172052824,D.Anushka,Toronto,55,1,0,2276,1,2,2,"6,7",166,2,1,1,1,2,1,"0,98",330,North America +1879,"1 brm, 2 mins to subway, Downtown, Annex, U of T",2321316,Tara And David,Toronto,135,1,1,4376,1,3,2,"6,78",41,2,1,1,1,2,1,"0,83",152,North America +1880,Look Out to Lake From Luxurious Condo Suite in Downtown Core,96538857,Behnam,Toronto,238,1,0,2776,1,3,2,"6,71",455,2,1,1,1,7,"0,91","0,92",332,North America +1881,Blackwater Budget Stay (Room3),25278998,KTC Property Management Ltd.,Toronto,80,0,0,3413,1,2,19,"6,75",24,1,1,0,1,21,"0,96","0,45",237,North America +1882,Beautiful Large Two bedroom Apartment,36450018,Jacqueline,Toronto,175,1,0,3236,1,3,1,"6,63",46,4,1,2,2,1,1,"0,87",23,North America +1883,The Ossington,20242240,Ali,Toronto,575,0,0,3544,,3,1,"6,46",24,5,"2,5",3,3,1,0,0,52,North America +1884,"Private apartment - North York, Toronto - HURRY",58851850,Holly,Toronto,107,0,0,2998,1,3,3,0,0,2,1,1,1,3,0,0,3,North America +1885,Modern King West Condo!,168213162,Nicholas,Toronto,180,0,0,2297,1,3,1,"6,8",5,4,2,2,3,1,0,0,2,North America +1886,Fantastic Condo w/ breathtaking view near CN Tower,34660578,Thiago,Toronto,170,0,0,3258,1,3,1,"6,92",12,3,1,2,2,1,"0,88","0,67",157,North America +1887,"Downtown core, spacious,cozy two level apartment.",134763830,Richard,Toronto,250,0,0,2515,1,3,1,"6,9",49,3,"1,5",2,2,1,0,0,188,North America +1888,Sarah's Homestay,172872587,Radie,Toronto,33,1,1,2271,,2,3,"6,67",12,3,1,3,3,3,1,1,351,North America +1889,G1 Modern and bright 1 bedroom downtown Toronto,133239936,Michael,Toronto,77,1,0,2524,1,3,1,"6,74",174,2,1,1,1,6,1,"0,9",124,North America +1890,"Quiet, Relaxing Space for Residency/Electives",168886092,HeatherevetsLOVE123,Toronto,99,0,0,2293,,2,1,"6,2",5,1,1,1,0,1,0,0,0,North America +1891,Stunning Luxury Flat in Coveted Yorkville!,11310093,Deborah,Toronto,210,0,0,3760,1,3,1,"6,74",34,2,1,0,2,1,1,"0,38",223,North America +1892,Chic Bachelor in the 7815of Downtown Toronto,56621499,Liuyin,Toronto,128,1,0,3015,1,3,1,"6,63",95,2,1,0,0,2,1,1,289,North America +1893,Spacious Second Floor Private Little Italy Apt,32542633,Drake,Toronto,170,1,1,3286,1,3,2,"6,85",103,2,1,1,1,2,1,1,321,North America +1894,Cozy Modern Hideaway,147334677,Kelly,Toronto,89,1,1,2443,1,3,1,"6,93",106,2,1,1,1,1,1,1,330,North America +1895,Cozy Room in Cabbagetown,163870275,Jeff,Toronto,70,1,0,2321,1,2,5,"6,74",19,1,1,1,1,8,1,1,142,North America +1896,Downtown Luxury,171316875,Marissa,Toronto,940,0,0,2280,1,3,1,"6,86",7,4,1,1,1,2,0,0,275,North America +1897,Private and Cozy Leslieville Studio,34457487,Azeem,Toronto,69,1,1,3261,1,3,1,"6,76",29,2,1,0,1,1,1,1,171,North America +1898,Luxury downtown private room condo,97059316,Stajha,Toronto,42,0,0,2772,1,2,1,"5,91",11,1,1,1,1,2,0,"0,14",85,North America +1899,Cottage in the city,58483894,Elaine,Toronto,142,1,1,3001,1,3,1,"6,87",313,4,1,1,2,1,1,1,188,North America +1900,Back on Airbnb! 5-Star Luxury High Park Roncy,169137913,Bara Homes,Toronto,150,1,1,2292,1,3,2,7,15,2,1,1,1,4,1,"0,97",309,North America +1901,Bright and Modern Parkdale Guest Suite,46929046,Erica,Toronto,99,1,1,3117,1,2,1,"6,93",266,2,1,1,1,1,1,1,312,North America +1902,"Cats, Coffee, Charm: Downtown Toronto in Style",2523808,Andrew,Toronto,146,1,1,4351,1,2,2,"6,85",192,2,1,1,1,2,1,"0,98",336,North America +1903,Seneca ( Don Mills/Finch) Private room 2- floor,130912946,Anita,Toronto,50,1,1,2540,1,2,2,"6,56",18,2,1,1,1,2,1,"0,98",299,North America +1904,"Your Condo On The Edge Of The City, Toronto",145004484,Christopher,Toronto,140,1,0,2458,1,3,2,"6,59",140,4,1,1,1,2,1,1,283,North America +1905,Cozy Private Apartment in North York,126615519,Al,Toronto,80,0,0,2569,1,3,1,"6,67",21,2,1,1,2,1,1,0,1,North America +1906,Modernist Home + Nanny Suite + Backyard + 2parking,170201147,Maria,Toronto,425,1,1,2286,1,3,1,"6,69",45,6,"2,5",3,3,1,1,1,70,North America +1907,Modern and cozy space in trendy Queen/Dundas West!,34237282,Peter,Toronto,97,1,1,3263,1,2,2,"6,88",372,2,1,0,1,2,1,"0,99",273,North America +1908,Two Room Guest Suite with Separate Entrance,11699435,Maxim,Toronto,77,1,1,3747,1,3,4,"6,82",228,4,1,2,2,4,1,1,246,North America +1909,Private room/washroom in beautiful downtown condo,27431928,Hitheam,Toronto,236,0,0,3370,1,2,2,7,8,1,1,1,1,2,0,0,192,North America +1910,Toronto central Private room + full bath sleeps 3,170392971,Maria,Toronto,65,0,0,2285,1,2,1,"6,96",28,3,1,1,2,1,1,0,328,North America +1911,lower level Private 1 bedroom with AC,77548208,Sharm,Toronto,82,1,0,2879,1,3,4,"6,61",72,3,1,1,1,5,1,1,287,North America +1912,LUXURY 1BDRM GREAT VIEW + DIRECT SUBWAY ACCESS,170567513,Golsana,Toronto,250,0,0,2284,1,3,7,7,1,2,1,1,1,9,1,"0,64",3,North America +1913,"24hr Private Entrance, Double Bed, 3 piece bath-B",159646499,Charles,Toronto,69,1,0,2353,1,2,3,"6,61",41,2,2,1,1,3,1,1,186,North America +1914,Bright & Cozy Studio Basement Apartment,170573115,Marcia,Toronto,65,0,0,2284,1,3,1,"6,76",17,2,1,1,0,1,1,"0,31",218,North America +1915,Charming one bedroom flat in historic Old Toronto,14479629,Samuel,Toronto,240,1,1,3665,1,3,1,"6,83",35,2,1,1,1,1,"0,93","0,96",242,North America +1916,Quaint 1 bed apt in Roncesvalles,160725242,Sarah,Toronto,115,0,0,2344,,3,1,0,0,2,1,1,1,1,0,0,2,North America +1917,Cozy Basement Apartment in Little Italy,42031183,Nola,Toronto,65,0,0,3177,1,3,1,"6,89",27,1,1,1,1,1,1,"0,29",218,North America +1918,Ossington/Bloor Designer Basement Suite,111004886,Miranda,Toronto,96,1,1,2667,1,2,2,"6,82",247,2,1,1,1,2,1,"0,93",300,North America +1919,Sophisticated COMFORT Downtown Toronto PARKING,96108931,Anthony,Toronto,243,0,0,2779,1,3,3,"6,9",443,4,1,1,2,4,0,0,232,North America +1920,Bright and green haven in the Junction!,8114353,Alicia,Toronto,200,1,1,3915,1,3,2,"6,84",19,2,1,1,1,2,1,1,355,North America +1921,Classic 1 Bedroom Suite,170964862,Leonard,Toronto,213,1,1,2282,1,3,1,"6,82",179,2,1,1,1,1,1,"0,93",247,North America +1922,"24hr Private Entrance, Double Bed, 3 piece bath- A",159646499,Charles,Toronto,74,1,1,2353,1,2,3,"6,87",30,2,2,1,1,3,1,1,276,North America +1923,"24hr Private Entrance, Double Bed, 3 piece bath-C",159646499,Charles,Toronto,71,1,1,2353,1,2,3,"6,85",40,2,2,1,1,3,1,1,186,North America +1924,Toronto Beaches - Spacious 3 Bedroom Home,175644558,Charles,Toronto,465,0,0,2255,1,3,1,7,6,8,"2,5",3,5,1,1,0,96,North America +1925,"U of T area, master bedroom & workspace",74582,Neil,Toronto,108,1,1,5207,1,2,3,"6,81",318,1,1,1,1,3,1,1,214,North America +1926,BOUTIQUE Victorian Loft + BEST Location,59368738,Laura,Toronto,48,1,0,2995,1,2,1,"6,73",22,2,1,1,1,1,1,1,239,North America +1927,Quirky fun getaway in Mimico near the lake,175742735,Wendell,Toronto,210,1,1,2255,1,3,1,"6,82",67,6,1,1,3,1,1,1,156,North America +1928,Feel the warmth hospitality.,157627670,Aruna,Toronto,60,1,0,2368,1,2,2,"6,71",7,1,1,1,1,2,1,1,186,North America +1929,"Bright, clean, modern suite in the Junction",4782917,Maria,Toronto,125,0,0,4119,1,3,1,"6,93",54,4,1,1,2,1,1,"0,75",159,North America +1930,Downtown Toronto Little Italy Trinity Bellwood 672,150625571,Dash,Toronto,128,0,0,2421,1,3,12,0,0,4,1,2,2,12,"0,8","0,38",276,North America +1931,Executive Suite in Yorkville,161460462,Mila,Toronto,104,1,0,2339,1,3,2,"6,38",8,2,1,1,1,2,1,"0,97",0,North America +1932,Sunny Room in Artist's Home by Transit,897683,Hajnal,Toronto,43,1,1,4658,1,2,1,"6,91",23,1,1,1,1,2,1,"0,88",253,North America +1933,"New, Clean, Trendy & Bright in Christie Pits",5146235,Kassandra,Toronto,91,1,1,4089,1,3,1,7,27,4,1,1,2,1,1,1,45,North America +1934,QUEEN WEST retreat in the Bellwoods park,64470479,Valerie,Toronto,199,1,1,2959,1,3,2,"6,9",49,2,1,1,1,2,1,"0,99",343,North America +1935,Modern Family Home in desirable Toronto location,50610533,George,Toronto,450,1,1,3070,1,3,3,"6,81",47,7,"2,5",3,4,5,1,"0,96",50,North America +1936,Sweet House near Pacific Mall,40583994,Tian Ying,Toronto,229,1,0,3192,1,3,2,"6,52",137,5,"1,5",3,3,5,1,"0,98",126,North America +1937,Cozy and stylish condominium in the heart Toronto,116771059,Sara,Toronto,300,0,0,2631,1,3,1,7,1,6,2,2,3,1,0,0,188,North America +1938,Exquisite Yorkville 1 Bedroom Condo,177012956,Rado,Toronto,110,0,0,2248,1,3,3,"6,83",6,2,1,1,1,3,1,"0,67",58,North America +1939,3 Bedrooms Apt- Near U of T - Downtown Toronto,182314733,Monica,Toronto,90,0,0,2220,1,3,1,"6,76",270,8,"1,5",3,4,3,1,"0,67",195,North America +1940,Private room close to down town and Subway(201),177508014,Fei,Toronto,89,1,1,2245,1,2,3,"6,87",91,2,"1,5",3,1,3,1,"0,96",206,North America +1941,"Downtown - 1 Bedroom Home, Upper unit of house",8821150,Deborah,Toronto,184,1,1,3883,1,3,1,"6,81",67,2,"1,5",1,1,2,1,"0,98",213,North America +1942,Amazing View in High-rise Core Downtown w Parking,82922492,Amirsina,Toronto,207,0,0,2852,1,3,2,"6,84",126,3,1,1,1,3,1,"0,6",72,North America +1943,Modern 1BR on a gorgeous tree-lined Toronto street,4094364,Ashwini,Toronto,97,1,1,4192,1,3,1,"6,63",19,2,1,1,1,1,1,1,175,North America +1944,Stylish 2BR Executive Suite in Yorkville + Parking,9803773,Stephanie,Toronto,179,1,1,3831,1,3,2,"6,74",87,4,2,2,2,2,1,1,296,North America +1945,Beautiful newly renovated apt. near the Junction.,110716020,Hong,Toronto,85,1,0,2669,1,3,1,"6,77",43,2,1,1,1,1,1,1,1,North America +1946,"Cozy Suite with Private Amenities, Leslie Subway.",124573496,Tatyana,Toronto,63,0,0,2582,1,2,1,"6,88",129,2,1,1,1,1,1,0,218,North America +1947,Charming Leslieville Stopover,183006461,Kelly,Toronto,75,0,0,2216,,2,1,7,16,2,1,1,1,1,1,0,97,North America +1948,Hidden gem in Roncy/Parkdale/High Park,25705258,Michael,Toronto,91,1,1,3403,1,2,1,"6,81",574,2,1,0,1,1,1,1,111,North America +1949,"Guest Suite in Port Union, Toronto",55034783,Tharshini,Toronto,115,0,0,3027,,2,1,0,0,2,1,1,1,1,0,0,192,North America +1950,Shafiq's Place,178182197,Shafiq,Toronto,104,1,1,2241,1,3,1,"6,91",197,3,1,1,1,1,1,1,89,North America +1951,Beautiful and Cozy Family Friendly Guest Suite,718353,Judson,Toronto,140,1,1,3207,1,2,1,"6,86",42,2,1,1,1,1,1,"0,92",126,North America +1952,Comforting & Peaceful room at East Mall & Rathburn,183021091,Vera,Toronto,57,0,0,2216,1,2,2,"6,83",18,2,1,1,1,2,1,"0,5",117,North America +1953,Newly Renovated Suite in Queen West/Parkdale Area,85199541,Kristy,Toronto,105,0,0,2841,1,3,1,"6,81",126,3,1,2,3,1,0,1,299,North America +1954,Cozy & Clean Double Room w/ Ensuite in Heart of TO,139751167,Xing,Toronto,69,1,1,2487,1,2,5,"6,82",256,2,1,1,1,5,"0,89",1,314,North America +1955,Casa Di Mama | Beautiful 2BR Downtown-Free Parking,55460113,Julian,Toronto,232,1,1,3024,1,3,1,"6,84",73,5,1,2,2,1,"0,93","0,88",226,North America +1956,Spacious Room/Downtown/Vegan Friendly,183311197,Patricia,Toronto,79,1,1,2214,1,2,1,"6,97",232,1,1,1,1,1,1,"0,95",349,North America +1957,Parkdale 3L,43223187,Justyna,Toronto,58,0,0,3164,1,2,2,"6,79",56,1,1,1,0,2,"0,83","0,92",268,North America +1958,Cosy comfortable basement apartment.,12013800,Esther,Toronto,129,0,0,3736,1,2,4,"6,79",14,2,1,1,1,4,1,"0,78",0,North America +1959,Stylish 2 Bedroom Basement with Private Patio!,5255538,Sasha,Toronto,245,0,0,4081,1,3,1,"6,88",26,4,1,2,0,1,1,"0,77",216,North America +1960,Master suite close to down town and Subway,177508014,Fei,Toronto,99,1,1,2245,1,2,3,"6,9",96,2,0,1,1,3,1,"0,96",225,North America +1961,Sunny One Bedroom Apartment near Subway,16829219,Karen,Toronto,145,1,1,3608,1,3,1,"6,63",16,4,1,1,2,1,"0,89",1,300,North America +1962,Annex Bright & Well-Equipped Apartment,12646198,Sonia,Toronto,200,1,1,2464,1,3,1,"6,92",37,2,1,1,1,1,1,1,95,North America +1963,Mei's House(Room3)- En-Suite QueenBed(Room3),179038571,Yongmei,Toronto,65,1,0,2237,1,2,3,"6,84",111,2,1,1,1,3,1,"0,99",267,North America +1964,The Penthouse 2 bedrooms condo,112484529,Le,Toronto,150,1,0,2657,1,3,1,"6,07",14,2,1,2,2,1,1,1,1,North America +1965,Private room in modern home,123524356,Thuy Oanh,Toronto,40,1,1,2589,1,2,4,"6,65",17,2,2,1,1,4,1,"0,99",204,North America +1966,A)Boutique Style Bedroom/Near Subway/Free Parking,130331704,Lucia,Toronto,55,1,1,2544,1,2,3,"6,86",200,2,"2,5",1,1,3,1,"0,99",132,North America +1967,*Bloor West *High park * Old Mill * Old Toronto,176423357,Chris,Toronto,99,0,0,2251,1,3,2,"6,74",31,4,1,1,2,2,1,0,319,North America +1968,Private Single Room in Toronto (#1),153757180,W,Toronto,44,0,0,2397,1,2,4,"6,69",16,1,"1,5",1,4,5,1,"0,67",276,North America +1969,Stylish studio In the Financial District,516206,Krzysztof,Toronto,89,0,0,4763,1,3,5,"6,81",195,2,1,0,1,7,"0,9","0,9",35,North America +1970,Spacious Condo in The Heart of the City,85714020,Steph,Toronto,196,1,1,2838,1,3,1,"6,96",46,2,1,1,1,1,1,"0,9",349,North America +1971,Modern condo w/ large balcony in heart of downtown,81900558,Semira,Toronto,115,0,0,2857,1,3,1,"6,75",28,2,1,2,3,1,"0,75",1,99,North America +1972,Love-nest With Private Hot Tub,183948187,Peter,Toronto,119,1,0,2211,1,2,1,"6,62",340,2,1,1,1,1,1,"0,97",247,North America +1973,Beautiful Condo + CN Tower View + Free Parking,183990824,Katherine,Toronto,429,1,1,2211,1,3,1,"6,84",291,6,1,2,4,1,"0,9","0,99",10,North America +1974,Sunny room. Balcony-private bathroom.,12013800,Esther,Toronto,79,0,0,3736,1,2,4,"6,89",18,2,1,1,1,4,1,"0,78",138,North America +1975,Spacious 1+1 Apartment / Wifi / Free Parking,184065166,Jenna,Toronto,280,0,0,2210,1,3,1,0,0,2,"1,5",1,1,1,0,0,0,North America +1976,Grace Warm Room,184112371,Huiling,Toronto,71,1,1,2210,1,2,2,"6,87",97,2,1,1,1,2,1,"0,99",265,North America +1977,Designer Loft - Downtown Toronto,36748066,Hamid Reza,Toronto,152,1,0,3233,1,3,3,"6,36",42,6,2,2,2,8,1,"0,99",205,North America +1978,Cozy Relaxing bedroom-basement-Close Lawrence Stn,20782996,Shengsheng,Toronto,90,1,1,3531,1,2,3,"6,67",159,2,1,1,1,3,1,"0,98",236,North America +1979,downtown condo with private courtyard balcony,8671865,Nigel,Toronto,130,0,0,3890,1,3,1,6,3,2,1,1,1,2,0,0,68,North America +1980,Beach Vibe -4bdrm Toronto Beach Home -Entire House,31223873,Linda,Toronto,187,0,0,3305,1,3,2,7,2,8,"2,5",4,5,4,1,"0,5",115,North America +1981,One bed apartment with desk north of stockyards,8761378,Shanley,Toronto,77,0,0,3886,1,3,2,"6,85",34,2,1,1,1,2,1,0,237,North America +1982,Private room & bathroom in shared North York condo,44384977,Venessa,Toronto,62,1,1,3150,1,2,1,"6,79",75,2,1,1,1,1,1,"0,85",256,North America +1983,Beautiful Century Home,22932234,Farid,Toronto,500,1,1,3477,1,3,4,"6,8",10,6,"1,5",3,3,7,1,"0,83",7,North America +1984,Stylish downtown High-Rise Condo w/Parking,130796878,Leon,Toronto,180,1,0,2541,1,3,4,"6,7",20,4,2,2,2,6,1,1,275,North America +1985,Apt A: CityCentre/UofT/Fields/Donelly/UHN/Annex,88357720,Roger And Teresa,Toronto,250,1,1,2825,1,3,11,"6,85",131,4,1,2,3,14,1,"0,88",43,North America +1986,Modern&spacious 2 bdrooms on 2 Flr in Little Italy,114344363,Trang,Toronto,280,0,0,2646,1,2,6,7,7,4,1,2,2,6,0,1,294,North America +1987,Private room steps to Subway and Airport train-202,177508014,Fei,Toronto,89,1,1,2245,1,2,3,"6,78",120,2,"1,5",1,1,3,1,"0,96",248,North America +1988,"Main floor studio, downtown little Italy",180070204,Tommy,Toronto,59,0,0,2231,1,3,6,"6,68",25,1,1,1,1,6,"0,55","0,83",298,North America +1989,CORE downtown 1 BDRM w/ Den LAKE VIEW & PARKING,93539793,Rebecca,Toronto,196,1,0,2796,1,3,1,"6,6",113,3,1,1,1,1,"0,9","0,98",182,North America +1990,private backyard spa oasis in the city,18764369,Yevgen,Toronto,468,1,0,3570,1,3,1,"6,35",20,8,"1,5",2,6,1,1,"0,84",117,North America +1991,Leslieville Rooftop - 3BR + Rooftop Patio,42206816,Sameena,Toronto,185,1,0,3175,1,3,2,"6,7",138,5,1,3,3,2,1,"0,95",293,North America +1992,Master Bedroom in Downtown,185208324,Jawad,Toronto,60,0,0,2204,1,2,2,"6,5",2,2,1,1,1,2,0,0,243,North America +1993,Beautiful Main Floor Apartment in the Annex,185262110,Kathie,Toronto,160,0,0,2204,1,3,1,"6,9",39,2,1,1,1,1,0,1,298,North America +1994,Perfect room for students or travellers,64538392,Osama,Toronto,40,1,0,2958,,2,8,"6,73",15,1,1,1,0,8,1,"0,86",0,North America +1995,U1 Elegant Comfortable Bright Annex Bachelor,9923100,Ed,Toronto,82,0,0,3825,1,3,15,"6,73",15,2,1,0,0,15,1,"0,53",216,North America +1996,Bright Blue-y Room DufferinGrove near subway,129316348,Kalsang,Toronto,102,1,0,2551,,2,2,"6,62",42,2,1,1,1,2,1,"0,85",313,North America +1997,Kashaneh luxury one bedroom apartment,12033867,Kashaneh,Toronto,79,0,0,3736,1,3,16,6,4,2,1,1,1,17,"0,88","0,08",0,North America +1998,Prime location condo in the heart of uptown,145716333,Sara,Toronto,100,0,0,2454,,3,1,0,0,4,2,4,3,1,0,0,7,North America +1999,Mei's House(Room2)- En-Suite DoubleBed(Room 2),179038571,Yongmei,Toronto,59,1,0,2237,1,2,3,"6,77",175,2,1,1,1,3,1,"0,99",227,North America +2000,Bright Sunshine Room,185538321,Jinlan,Toronto,110,0,0,2202,1,1,3,"6,71",14,2,1,1,1,3,0,0,0,North America +2001,Mei's House(Room1) - En-Suite SingleBed(Room1),179038571,Yongmei,Toronto,47,1,0,2237,1,2,3,"6,72",137,1,1,1,1,3,1,"0,99",214,North America +2002,Furnished Luxury Suite in Custom Home,77797310,Rowena,Toronto,135,0,0,2878,1,2,2,0,0,2,1,1,1,2,0,0,192,North America +2003,"Modern, Spacious Suite in Downtown Toronto",62398808,Kaya,Toronto,189,0,0,2974,1,3,2,"6,92",13,2,1,1,1,2,1,"0,75",248,North America +2004,Designer 4 bedroom house - Ossington Station,111004886,Miranda,Toronto,600,1,1,2667,1,3,2,"6,96",27,8,3,4,4,2,1,"0,93",283,North America +2005,B)Boutique Style Bedroom/Near Subway/Free Parking,130331704,Lucia,Toronto,55,1,1,2544,1,2,3,"6,9",229,2,"2,5",1,1,3,1,"0,99",81,North America +2006,2 Room Unit with car park @ Warden Subway Station,185767296,Ankur,Toronto,175,0,0,2201,1,3,1,"6,44",18,2,1,2,3,1,0,0,275,North America +2007,"HIGH FLOOR, 1 BED, 2 WASHRM, DEN, TORONTO SKYLINE",19958885,Vas Comfort,Toronto,168,0,0,3549,1,3,1,"6,82",22,2,0,1,1,1,0,0,0,North America +2008,"Chic Toronto Apartment With Balcony, Parking & Gym",4534169,Alisa,Toronto,106,1,1,4140,1,3,3,"6,75",20,3,1,1,1,3,1,1,184,North America +2009,Home away from home 2 Br. 2 baths in little Italy,114344363,Trang,Toronto,169,0,0,2646,1,3,6,"6,85",40,4,2,2,3,6,0,1,87,North America +2010,"Comfortable Room in Laneway House, Private Bath",169175102,Stephen,Toronto,100,1,1,2292,1,2,1,"6,96",171,2,1,1,1,1,1,"0,97",294,North America +2011,Charming Private Room,185538321,Jinlan,Toronto,85,0,0,2202,1,2,3,"6,5",12,2,1,1,1,3,0,0,186,North America +2012,Private cozy Room,64538392,Osama,Toronto,38,1,0,2958,,2,8,"6,25",12,1,1,1,1,8,1,"0,86",41,North America +2013,Toronto Liberty Luxury Suites,86173827,Silvestro,Toronto,90,0,0,2836,1,3,1,"6,94",82,3,1,1,1,1,0,0,240,North America +2014,Large Spacious 1 Bed/2 Bath Right on Waterfront!,1420131,Al,Toronto,110,0,0,4548,1,3,1,"6,71",7,3,"1,5",1,1,1,1,"0,5",330,North America +2015,Your choice for single fully private stay-Toronto,147933259,Ayman,Toronto,49,1,0,2439,1,3,4,"6,73",48,1,1,1,1,4,1,"0,99",190,North America +2016,Beautifully decorated main floor studio,162433636,Bryan,Toronto,105,1,1,2332,1,3,3,"6,68",71,2,1,1,1,3,1,1,93,North America +2017,Downtown Toronto Little Italy Trinity Bellwood 3M,150625571,Dash,Toronto,56,0,0,2421,1,2,12,"6,67",3,1,2,1,1,12,"0,8","0,38",276,North America +2018,Large Main Floor Studio Yorkdale Mall -Sleeps 4,162445410,Jack,Toronto,99,1,0,2332,1,3,2,"6,72",58,4,1,1,3,2,1,1,50,North America +2019,"Clean, modern and transit friendly bsmt apt!",61249186,Zizzou,Toronto,95,0,0,2982,1,3,2,"6,77",22,1,1,2,2,2,0,"0,83",185,North America +2020,Solar Powered Living in My North York Home,26484692,Bernadette,Toronto,139,1,1,3388,1,3,2,"6,71",7,2,1,1,1,2,1,1,207,North America +2021,Splendid Spot and lake,130463318,Ania,Toronto,79,0,0,2543,1,3,2,"6,7",10,3,1,2,2,2,0,0,305,North America +2022,Midtown Luxury 1 Bedroom,39636814,Robert,Toronto,105,0,0,3202,1,3,5,"6,64",28,2,"1,5",1,1,5,1,"0,64",0,North America +2023,"Clean, Quiet Room in the Heart of Downtown",139751167,Xing,Toronto,80,1,1,2487,1,2,5,"6,79",162,2,1,1,1,5,"0,89",1,304,North America +2024,Capacious Penthouse By CN Tower & MTCC & Free PRKG,181892549,Mohammed,Toronto,308,0,0,2222,1,3,1,"6,88",149,5,2,2,4,1,0,1,275,North America +2025,2 Bedroom guest house with parking,579683,Liron,Toronto,86,1,0,4739,1,3,5,"6,05",21,5,1,2,3,5,1,1,80,North America +2026,Modern Room,3235592,Liet,Toronto,40,0,0,4280,1,2,1,"6,84",31,1,1,1,1,4,1,"0,6",40,North America +2027,"Modern 2 bedroom Basement, free Parking.",189713885,Nasrin,Toronto,98,0,0,2178,1,3,1,"6,52",46,4,1,2,2,1,1,"0,71",297,North America +2028,Bright and Spacious Single room,119476920,Helasiri,Toronto,43,0,0,2613,1,2,1,"6,71",17,1,1,1,1,1,1,"0,6",11,North America +2029,Toronto North home free street parking,4994265,Yvonne,Toronto,150,0,0,4102,1,3,2,"6,81",32,3,1,1,2,2,0,"0,56",185,North America +2030,North York 2BDR Suite yard/free street parking,4994265,Yvonne,Toronto,150,0,0,4102,1,3,2,"6,75",118,4,1,1,3,2,0,"0,56",100,North America +2031,Large 3 Bdrm Condo With Breathtaking View of City!,124771737,Edit,Toronto,161,0,0,2581,1,3,1,"6,9",10,4,"1,5",2,2,1,0,0,1,North America +2032,Midtown modern 1 bedroom suite,3966446,Amir,Toronto,196,1,1,4207,1,3,1,"6,83",121,3,1,1,2,1,1,1,237,North America +2033,toronto welcomehouse 106room 2room share washroom,164815285,James,Toronto,60,0,0,2315,,2,10,7,1,2,1,1,1,10,0,0,237,North America +2034,Toronto Independent Apartment in a modern House,187555482,Ela,Toronto,200,1,1,2191,1,3,1,"6,83",30,4,1,1,3,2,1,1,102,North America +2035,Your Inviting Home Away from Home in Toronto,75046623,Hermie,Toronto,61,0,0,2892,1,2,1,"6,86",8,1,1,1,1,1,1,"0,48",339,North America +2036,C)Boutique Style Bedroom /Near Subway/Free Parking,130331704,Lucia,Toronto,50,1,1,2544,1,2,3,"6,93",184,2,"2,5",1,1,3,1,"0,99",62,North America +2037,Bright & Stylish Main Floor Suite on College West,2632371,Cassandra,Toronto,195,1,1,4340,1,3,1,"6,98",98,2,1,1,1,1,1,1,326,North America +2038,"Newly Renovated Unit, in Downtown Toronto!",37950294,Charith,Toronto,60,1,0,3219,1,3,2,"6,5",216,2,1,1,1,3,1,1,32,North America +2039,Upper Beaches Hidden Gem (Queen Bed & Yoga Room),702688,Vikram,Toronto,69,0,0,4705,1,2,1,"6,83",110,2,1,1,1,1,1,"0,77",267,North America +2040,Luxurious Retreat Downtown with Free Parking/Wifi,190170122,E,Toronto,400,1,1,2176,1,3,2,"6,71",24,6,"2,5",3,3,2,1,1,147,North America +2041,Cozy lower level private studio with AC No Sharing,77548208,Sharm,Toronto,79,1,0,2879,1,3,4,"6,55",77,2,1,0,1,5,1,1,298,North America +2042,Gorgeous home by Lake Ontario (73) | DT Toronto,37950294,Charith,Toronto,73,1,0,3219,1,3,2,"6,54",267,2,1,1,1,3,1,1,84,North America +2043,Luxury Condo on CN TOWER,186531787,Yalda,Toronto,314,0,0,2197,1,3,1,"6,79",135,4,2,2,2,1,1,0,0,North America +2044,"Private Room near Airport ,Parking, ONE GUEST ONLY",189500336,Pedro,Toronto,39,0,0,2179,1,2,1,"6,94",353,1,1,1,1,1,1,"0,73",354,North America +2045,Welcome to my stylish apartment in prime location!,18449205,Shiva,Toronto,161,0,0,3573,1,3,2,"6,71",24,3,1,1,1,2,"0,8","0,38",268,North America +2046,Grace Nice Room,184112371,Huiling,Toronto,67,1,1,2210,1,2,2,"6,92",49,2,1,1,1,2,1,"0,99",283,North America +2047,toronto welcomehouse 105room 2room share washroom,164815285,James,Toronto,60,0,0,2315,,2,10,"6,64",11,2,1,1,2,10,0,0,237,North America +2048,Toronto Bloor West 1 bd 770sqft condo free Parking,150609715,Sabina,Toronto,120,1,1,2421,1,3,1,"6,87",136,3,1,1,1,4,1,"0,98",93,North America +2049,toronto welcomehouse 303 room&private washroom,164815285,James,Toronto,80,0,0,2315,,2,10,0,0,2,1,1,1,10,0,0,237,North America +2050,Elegant 2 BD Waterfront Condo Downtown Toronto,115442293,Tara,Toronto,528,1,1,2639,1,3,5,7,5,6,2,2,1,6,1,1,95,North America +2051,Charming coach house / guest house downtown,5479708,Alexander,Toronto,170,1,1,4065,1,3,1,"6,85",171,3,1,1,2,1,1,1,317,North America +2052,Toronto Home With a View,17280006,Hilary,Toronto,1050,1,1,3597,1,3,2,6,1,6,2,4,5,2,1,"0,94",241,North America +2053,"Luxury, Multi-level Apartment at Midtown",74285568,Neil,Toronto,124,0,0,2896,1,3,3,"6,88",76,4,"1,5",1,3,3,1,"0,71",91,North America +2054,toronto welcomehouse 305 room&private washroom,164815285,James,Toronto,80,0,0,2315,,2,10,7,2,2,1,1,2,10,0,0,237,North America +2055,"Comfort, Convenience, Location :)",79755112,Kiran,Toronto,128,1,1,2868,1,3,1,"6,84",184,6,2,2,3,4,1,"0,97",358,North America +2056,Spacious Private 1BR Suite close to Airport,5627337,Aimin,Toronto,98,1,0,4055,1,3,3,"6,71",45,2,1,1,1,3,1,"0,96",0,North America +2057,"Downtown 2 BDR + 2 FULL Baths, Sports & Concerts",190871685,George,Toronto,321,1,1,2172,1,3,1,"6,9",81,5,2,2,2,1,1,"0,93",294,North America +2058,toronto welcomehouse 205 room&private washroom,164815285,James,Toronto,80,0,0,2315,,2,10,7,1,2,1,1,1,10,0,0,237,North America +2059,Spacey Modern Bright 1BR Bsmt SepEntry Scarboro TO,187823387,Uday,Toronto,52,0,0,2189,1,3,1,"6,53",17,4,1,1,3,1,"0,7","0,6",192,North America +2060,Make your holiday healthy !,191028907,Mohammad,Toronto,65,1,1,2171,1,2,2,"6,92",26,2,1,1,1,2,1,"0,99",152,North America +2061,Toronto city views,69391731,Christina,Toronto,98,0,0,2925,1,2,1,"6,86",99,2,1,1,1,1,1,"0,67",334,North America +2062,Executive Apartment With Free Parking in Heart of Downtown,191068536,Alison,Toronto,464,1,1,2171,1,3,1,"6,83",222,8,2,3,3,1,1,"0,99",175,North America +2063,Zen Queen Room in the heart of the city,139751167,Xing,Toronto,82,1,1,2487,1,2,5,"6,79",254,2,1,1,1,5,"0,89",1,331,North America +2064,Blue Heaven,165875517,Mariathas,Toronto,79,0,0,2309,1,3,1,"6,4",43,3,1,1,1,3,1,0,237,North America +2065,7815 Stylish Cozy Apartment w Downtown Toronto Views,1614087,Ivan,Toronto,144,1,1,4489,1,3,2,"6,89",36,2,"1,5",1,1,2,1,"0,92",78,North America +2066,Luxury 1BR In Prestigious Location/Subway/Parking,188047893,Svetlana,Toronto,125,1,1,2188,1,3,1,"6,81",120,2,1,1,1,3,1,"0,89",253,North America +2067,Modern Toronto Condo in the mix of everything,6980599,Florence,Toronto,375,0,0,3970,1,3,1,0,0,4,1,2,3,1,0,0,275,North America +2068,InstantSuites-☆ Yorkville ☆ Fast Wifi ☆ Netflix ☆,184405951,Sana,Toronto,150,1,0,2208,1,3,1,"6,67",189,3,1,1,2,1,1,1,189,North America +2069,Brand new exquisite compact basement apartment,130983449,Guadalupe,Toronto,60,0,0,2540,,2,1,"6,62",37,2,1,1,1,1,0,0,18,North America +2070,Old Weston Diamond - Junction,4317807,Andrew,Toronto,99,0,0,4167,1,2,1,"6,7",40,1,1,1,1,1,1,"0,67",41,North America +2071,Leslieville Apartment with Parking,16879664,Milan,Toronto,110,1,0,3607,1,3,1,"6,72",240,4,1,2,2,1,1,1,215,North America +2072,Lively little Italy! 2+ bedrooms with Parking!,12931053,Colin,Toronto,2000,0,0,3707,1,3,2,"6,8",65,6,1,2,3,2,0,0,275,North America +2073,Perfect Place in the Heart of the City!,132226042,Sheetal,Toronto,196,1,1,2531,1,3,2,"6,85",204,2,1,0,1,2,1,1,124,North America +2074,New Midtown 2 Bdrm Apt -Free Prkng-Wifi-Fibe TV,188546426,Jane,Toronto,95,0,0,2185,,3,1,"6,96",142,4,1,2,2,1,0,0,143,North America +2075,The Bloordale.,192196322,Shane,Toronto,120,0,0,2164,1,3,1,"6,68",44,8,2,3,3,1,0,0,255,North America +2076,"Two single beds in room, Bloorcourt Village",180899424,Dulce,Toronto,75,1,0,2227,1,2,2,"6,73",131,2,1,1,2,2,1,1,94,North America +2077,Comfy Studio + Balcony in the Heart of Downtown,117056576,Qamar,Toronto,157,1,0,2628,1,3,2,"6,65",176,2,1,0,0,2,1,1,297,North America +2078,Bright bedroom upstairs with bookshelves,137701267,Shengyuan,Toronto,65,0,0,2498,1,2,5,"6,88",16,1,1,1,1,5,"0,88","0,68",0,North America +2079,Private Main Floor Renovated Unit In Little Italy,29628921,Jeff,Toronto,36,0,0,3331,1,2,1,"6,61",64,1,1,1,1,1,"0,75","0,33",305,North America +2080,Lower Penthouse 1 BD in Downtown Toronto,188755522,Adam,Toronto,189,0,0,2184,1,3,1,"6,63",41,4,1,1,2,1,0,0,0,North America +2081,Toronto West House -3BDRM - 6ppl,2536632,Csaba,Toronto,200,1,1,4350,1,3,2,"6,95",22,6,1,3,4,2,1,"0,97",298,North America +2082,Sasha And Oscar's Place,4616567,Sasha,Toronto,115,1,1,4132,1,3,1,"6,91",80,2,1,0,1,1,1,"0,95",265,North America +2083,Unit 2 -Queen St East Studio Apartment,21382885,Peter,Toronto,74,0,0,3516,1,3,2,"6,28",69,2,1,0,1,3,0,1,313,North America +2084,Entire 2 Bedroom Apt New Reno Private entrance,77548208,Sharm,Toronto,124,1,0,2879,1,3,4,"6,53",70,4,1,2,2,5,1,1,309,North America +2085,Traveler's Cozy Room on Willowdale [B1],58113832,Sun,Toronto,42,1,0,3004,1,2,7,"6,56",27,2,2,1,1,7,1,"0,81",237,North America +2086,"Sunny, spacious condo in West End (Long-term only)",5761933,Christina,Toronto,111,0,0,4045,1,3,1,"6,67",9,2,1,1,1,1,"0,9","0,75",226,North America +2087,Leslieville,100510038,Tara,Toronto,249,1,1,2750,1,3,1,"6,58",12,2,1,1,2,1,1,1,85,North America +2088,toronto welcomehouse 102 room&private washroom,164815285,James,Toronto,70,0,0,2315,,2,10,0,0,2,1,1,1,10,0,0,237,North America +2089,COMFY GUESTHOUSE IN HEART OF DOWNTOWN+FREE PARK,579683,Liron,Toronto,92,1,0,4739,1,3,5,"5,99",76,4,1,1,2,5,1,1,41,North America +2090,amazing 2 bedroom apartment,23310500,Theofanis,Toronto,99,1,0,3467,1,3,11,"6,66",70,5,1,2,2,11,"0,82",1,29,North America +2091,Hernando's Homestay for Female Students min 3 mos,183406518,Lorie,Toronto,50,0,0,2214,,2,1,0,0,1,1,1,1,1,0,0,7,North America +2092,Bright Modern Central 2Bd2Ba Lakeview + Big Screen,188971582,Nihir,Toronto,431,1,1,2182,1,3,1,"6,87",127,4,2,2,2,1,1,1,47,North America +2093,Private Room Private Bathroom Private Entrance (1),22301317,Boguslaw,Toronto,70,1,1,3493,1,2,3,"6,83",76,1,1,1,2,3,1,"0,99",145,North America +2094,Enjoy in Bright & Stylish Family Unit /Garden View,155832579,Ali,Toronto,110,1,0,2383,1,3,1,"6,72",121,5,1,2,3,2,1,"0,86",276,North America +2095,Self Check-in Detached Coach House with a parking,140335189,Miao Yan,Toronto,65,0,0,2484,1,3,1,"6,62",201,2,1,1,3,1,1,"0,5",289,North America +2096,stylish apartment,23310500,Theofanis,Toronto,90,1,0,3467,1,3,11,"6,7",104,2,1,1,2,11,"0,82",1,143,North America +2097,Toronto Home with a View,182838537,Oliver,Toronto,182,0,0,2217,,3,1,"6,77",13,1,2,1,1,1,0,0,275,North America +2098,Gorgeous Modern Apartment in Downtown Toronto!,39720022,Azita,Toronto,95,1,0,3201,1,3,1,"6,48",27,2,1,1,1,1,1,1,115,North America +2099,Downtown studio,149163639,Mario,Toronto,80,1,0,2431,1,3,4,"6,48",31,4,1,0,2,4,1,1,111,North America +2100,"Country in the City, Classic, Spacious Home",69532595,Lory,Toronto,100,1,0,2924,1,3,1,"6,86",22,4,1,2,3,2,1,1,214,North America +2101,Modern Apartment in Historic Home near Trinity Bellwoods,2745245,Benjamin,Toronto,192,1,1,4327,1,3,1,"6,64",151,2,1,1,1,2,1,1,237,North America +2102,Bedroom 2 @ Evelyn’s Airbnb,40064049,Evelyn,Toronto,41,1,1,3198,1,2,3,"6,95",56,2,2,1,1,3,1,1,116,North America +2103,W3-Queen-size BR in 2Br guest suite+yard subway AL,65479,Irene,Toronto,62,0,0,5242,1,2,1,"6,4",5,2,1,1,1,1,0,0,276,North America +2104,"Lovely, Entire 1 Bedroom Condo, Free U/G Parking",66526318,Ekene,Toronto,135,1,1,2943,1,3,1,"6,7",56,3,1,1,1,1,1,"0,97",237,North America +2105,Private Room & Bathroom to Rest & Relax (Room #2),181695830,Bruce,Toronto,68,0,0,2223,1,2,1,"6,79",28,2,"1,5",1,1,1,0,0,276,North America +2106,Leslieville Greenhouse 1+beds w/ 2 outdoor spaces,42206816,Sameena,Toronto,172,1,0,3175,1,3,2,"6,62",100,3,1,1,1,2,1,"0,95",248,North America +2107,"Private room, walk to subway",187548308,Xiaohui Lucy,Toronto,35,0,0,2191,1,2,11,"6,7",44,2,1,1,1,11,"0,94","0,83",22,North America +2108,Private Room on Yonge St. and Finch Ave.,191919805,Sylvia,Toronto,45,1,1,2166,1,2,1,"6,78",74,1,2,1,1,1,1,"0,86",303,North America +2109,Beautiful Toronto Home,28284909,Mark,Toronto,114,1,0,3354,1,3,9,"6,6",5,8,"1,5",3,3,16,1,"0,9",196,North America +2110,"Chic & Modern 1-1 Suite, Danforth/Upper Beaches",33528579,Andrea,Toronto,191,1,1,3273,1,3,2,"6,7",69,4,1,1,3,2,1,1,1,North America +2111,1 Bedroom with patio. Little Italy/Palmerston,95281504,Neil,Toronto,90,0,0,2785,,3,1,"6,61",28,2,1,1,1,1,0,0,0,North America +2112,Full walkout Basement,158449273,Sahiduzzaman,Toronto,130,1,0,2362,1,3,1,"6,8",30,4,2,2,2,4,1,"0,98",0,North America +2113,Queen West Nomad Haven W/ Visitor Parking,24149908,Yasmin,Toronto,250,0,0,3445,1,3,1,7,2,3,2,1,1,2,1,"0,67",129,North America +2114,Quiet and Cozy Home,103277486,Ewa,Toronto,51,1,0,2729,1,2,1,"6,82",120,1,1,1,1,7,1,"0,82",1,North America +2115,My Home Is Your Home.,190370345,David,Toronto,128,1,0,2174,1,3,2,"6,59",74,4,1,2,2,8,"0,98","0,96",0,North America +2116,Cozy Upper Beach home.,193771856,Roberta,Toronto,130,1,1,2157,1,3,1,"6,82",50,4,2,2,4,1,1,1,98,North America +2117,"Bright, Cozy Apartment on Danforth Village.",193455771,Claudia Elaine,Toronto,130,1,1,2158,1,3,1,"6,77",128,5,1,2,4,1,1,"0,98",306,North America +2118,"Studio in Roncesvalles, Sleeps 2",84721968,Hyla,Toronto,88,0,0,2843,1,3,16,"6,72",69,2,1,1,0,15,"0,98","0,61",90,North America +2119,2 Bedroom in the Heart of the Junction Triangle.,55430413,Crystal,Toronto,140,1,0,3024,1,3,3,"6,65",174,4,1,2,2,3,1,"0,92",275,North America +2120,"NEW DESIGNER HOME, 2 BR + OFFICE, 2 WC, w/ parking",143311610,Gnocchi,Toronto,115,1,0,2467,1,3,1,"6,46",41,4,"1,5",2,2,1,1,1,212,North America +2121,The little Red Brick house in Studio District!,193963567,Loc,Toronto,288,1,1,2156,1,3,1,"6,92",13,8,"2,5",4,4,1,1,1,83,North America +2122,Cheerful Unit in the heart of Greek Town,80369796,Jeff,Toronto,100,1,0,2865,1,3,4,6,26,4,1,1,2,4,1,"0,97",319,North America +2123,Location! Location! 2+1 Condo / Bayview Village,195885330,Shima,Toronto,99,0,0,2147,1,3,1,0,0,2,2,2,2,1,0,0,185,North America +2124,Feel Like Home sweet Home,175529316,Mohamed,Toronto,100,0,0,2256,1,2,1,"5,75",8,2,1,1,2,1,0,0,186,North America +2125,Ravine view oasis,23194639,Ingrid,Toronto,168,1,0,3470,1,3,1,7,1,4,1,1,2,5,1,1,183,North America +2126,Downtown Minimalist 3BD+2BR w/Parking,17221001,Christopher,Toronto,479,1,1,3599,1,3,1,"6,67",39,6,2,3,3,1,1,"0,81",187,North America +2127,Sky High Living on the Lake-60 Floor in the 6,81151274,Frank,Toronto,159,0,0,2861,1,3,1,"6,7",216,5,2,2,4,1,0,0,237,North America +2128,Exquisite suite in a historical Annex mansion,92635593,Ari,Toronto,85,1,0,2801,1,2,3,"6,89",9,4,1,1,1,3,1,1,0,North America +2129,BRIGHT MODERN STUDIO WITH TERRACE,194392795,Kyla,Toronto,65,0,0,2154,1,3,1,"6,84",181,2,1,1,0,3,"0,67",1,125,North America +2130,"Downtown area, 2 double beds . Cozy room.",85507924,Sophie,Toronto,139,0,0,2839,1,2,6,"6,53",15,2,1,1,2,6,0,0,0,North America +2131,Great Midtown Toronto Apartment,194562487,Edna Kris,Toronto,65,1,1,2153,1,3,1,"6,96",28,2,0,0,0,1,1,1,262,North America +2132,Home with a great view,194578313,Cissy,Toronto,150,1,0,2153,1,3,1,"6,63",89,3,1,1,2,1,1,"0,97",67,North America +2133,28 Day minimum! Popular Downtown Toronto condo,109770464,Jason,Toronto,14,1,1,2674,1,3,1,"6,88",85,2,1,1,1,1,1,1,328,North America +2134,Central - bright spacious 1 bedroom,151604271,Sigrid,Toronto,264,0,0,2413,1,3,1,"6,9",21,2,1,1,1,1,0,0,194,North America +2135,"Cozy, quiet, family home",102145933,Zoltan,Toronto,125,0,0,2738,1,2,1,"6,5",8,3,2,3,3,1,0,0,275,North America +2136,"Stylish Kitchen, 10 min. walks to Finch subway",270908954,Katie,Toronto,39,1,0,1773,1,2,2,"6,57",23,2,1,1,1,3,"0,95","0,96",306,North America +2137,2nd floor-Sunnyside Beach Room,198393365,Scott,Toronto,84,1,1,2135,1,2,4,"6,8",215,2,2,1,1,4,1,"0,98",41,North America +2138,Private. 2 single beds. Central. Well connected.,71594994,Arun,Toronto,67,1,0,2911,1,2,4,"6,42",45,3,"1,5",1,2,4,1,1,84,North America +2139,E1 Close to subway and all amenities.,92357210,Sue,Toronto,37,0,0,2803,1,2,4,"6,79",33,2,"1,5",1,1,7,1,"0,64",276,North America +2140,"Elegant, Restored Victorian House With a BBQ in Cabbagetown",7308152,Mighael,Toronto,501,1,1,3953,1,3,1,"6,93",103,6,3,3,3,2,1,"0,98",297,North America +2141,"Modern, designer room located downtown",40129122,Shylene,Toronto,61,1,0,3197,1,2,11,"6,19",88,2,1,1,1,14,1,"0,92",298,North America +2142,Beautiful Two Bedroom in Liberty Village,7228600,Jigme,Toronto,215,0,0,3957,,3,1,"6,86",14,4,2,2,3,1,1,"0,5",358,North America +2143,Best location in the core downtown of Toronto,7901401,Hady,Toronto,136,1,1,3925,1,3,1,"6,89",87,2,1,1,1,1,1,1,52,North America +2144,"Heart of TO Apartment, Free parking",16479090,Alexandra,Toronto,150,0,0,3617,1,3,2,7,1,4,1,1,2,3,0,0,276,North America +2145,"2 BDRM + 2 BATH + Free Parking - MTCC, CN, Jays!",120262823,Krishna,Toronto,441,1,0,2608,1,3,1,"6,69",273,5,2,2,2,1,1,1,196,North America +2146,"Lovely Private Room, Close to transit/LAUNDRY/WIFI",26489393,Sophie,Toronto,48,0,0,3388,1,2,2,7,7,1,1,1,1,2,"0,67",0,23,North America +2147,Large private room @ safe central Toronto location,94325307,William,Toronto,47,1,0,2791,1,2,3,"6,76",55,2,1,1,1,3,1,1,186,North America +2148,"Great midtown 2bdrm apartment, 3 min to Subway",187782980,Olga,Toronto,108,1,0,2189,1,3,2,"6,68",78,2,1,2,3,2,1,"0,89",231,North America +2149,SPACIOUS ONE Bedroom + Balcony + Parking + 3 BEDS!,179430203,Aaron,Toronto,413,1,1,2235,1,3,1,"6,69",36,4,1,1,3,3,1,1,149,North America +2150,Cozy basement apartment in North York,187471657,Betty,Toronto,80,1,1,2191,1,3,1,"6,76",29,2,1,1,1,1,1,1,154,North America +2151,Cozy apartment,65413422,Hanieh,Toronto,50,0,0,2952,1,3,1,"6,85",35,3,1,1,1,1,1,"0,67",365,North America +2152,Luxurious Toronto Condo In Heart Of Downtown,106246101,Mahsa,Toronto,220,0,0,2704,,3,1,"6,67",52,6,2,2,2,2,"0,8","0,75",279,North America +2153,Trinity Bellwoods modern rental.,64470479,Valerie,Toronto,132,1,0,2959,1,2,2,"6,65",169,2,1,1,0,2,1,"0,99",248,North America +2154,Safe Sanitized Oasis for You,54004652,Yu-Wen,Toronto,79,0,0,3034,1,2,1,"6,69",74,2,1,1,0,1,0,1,63,North America +2155,Toronto HomeStay,44450490,Dinesh,Toronto,120,0,0,3149,1,3,3,"6,42",36,6,"1,5",3,4,3,1,"0,8",365,North America +2156,Unique Loft in Quiet Pocket | Close to U of T/UHN,65395431,Kimberley,Toronto,177,1,1,2952,1,3,1,"6,86",59,3,1,1,1,3,1,"0,98",290,North America +2157,Downtown Attic w private bathroom in shared house,958382,Susan,Toronto,100,1,1,4647,1,2,3,"6,89",133,2,"1,5",1,1,3,1,1,359,North America +2158,Relax in Leslieville (private washroom),98407572,Michael,Toronto,52,1,1,2764,1,2,2,"6,84",281,2,1,1,1,2,1,1,84,North America +2159,Gorgeous 1 BD Condo-Downtown Toronto With a View !,38749053,Hilda,Toronto,300,0,0,3211,1,3,1,7,2,3,1,1,1,1,0,0,185,North America +2160,Condo suite with a spa and boutique mall,40057396,Michael,Toronto,70,0,0,3198,1,2,1,"6,5",4,1,1,1,0,1,0,1,185,North America +2161,"Stunning Studio in Roncesvalles, Sleeps 3",84721968,Hyla,Toronto,84,0,0,2843,1,3,16,"6,65",60,3,1,0,2,15,"0,98","0,61",85,North America +2162,Private Basement with Backyard Pool,124437563,Jessica,Toronto,85,0,0,2583,1,2,1,0,0,2,1,1,1,1,0,0,282,North America +2163,M3 Clean room close to subway,92357210,Sue,Toronto,36,0,0,2803,1,2,4,"6,66",38,2,1,1,1,7,1,"0,64",329,North America +2164,Stylish Urban Retreat: 2 Bedroom 2 Bath Suite,52170715,Feiyang,Toronto,131,1,1,3051,1,3,33,"6,77",31,4,2,2,2,42,1,"0,9",131,North America +2165,Newly Renovated Ideally Located Annex Ensuite,24902175,Judith,Toronto,85,1,1,3424,1,2,1,"6,95",252,2,1,0,1,1,1,"0,99",348,North America +2166,Grand Hillcrest Toronto Home,50610533,George,Toronto,534,1,0,3070,1,3,3,"6,58",19,8,2,5,5,5,1,"0,96",278,North America +2167,"Very Clean Spacious Private, 2BDR Free Parking",98936688,Harel,Toronto,80,0,0,2761,1,3,1,"6,6",42,6,1,2,4,2,0,1,300,North America +2168,Entire condo - next to CN tower - 5 star review!,29711069,Basima (Seema),Toronto,86,0,0,3330,1,3,1,"6,86",69,2,1,1,1,1,"0,9","0,88",205,North America +2169,Beautiful & Large Studio Apartment!,22932234,Farid,Toronto,98,1,1,3477,1,3,4,"6,81",32,3,1,0,0,7,1,"0,83",82,North America +2170,High-rise Condo in the Heart of Downtown Toronto,77365606,Yan,Toronto,100,1,1,2880,1,3,2,"6,78",112,4,1,1,2,2,1,1,307,North America +2171,Beautiful minimalist suite in leafy Dundas West,4190833,Heidi,Toronto,85,1,1,4181,1,3,1,7,1,2,2,1,2,1,1,1,174,North America +2172,5 Star Hotel Residence with CN Tower View,15692343,Akin,Toronto,429,1,1,3636,1,3,1,"6,8",15,3,1,1,2,1,1,1,56,North America +2173,Eglinton & Bayview 1 Bedroom,25660537,Kevin,Toronto,85,1,1,3404,1,3,3,"6,63",38,3,1,1,2,3,1,"0,91",308,North America +2174,2-nd Floor Private Entrance Cozy Suite nxt/Airport,141166875,Andrew,Toronto,101,1,1,2479,1,2,3,"6,89",334,4,1,1,2,3,1,"0,99",149,North America +2175,Stylish 2 bed near Subway! Free parking! w/Laundry,32609441,Michel,Toronto,113,1,0,3285,1,3,2,"6,73",52,2,1,1,2,4,1,1,272,North America +2176,Summer Cool Suite,185538321,Jinlan,Toronto,99,0,0,2202,1,2,3,"5,94",18,3,1,2,3,3,0,0,185,North America +2177,Stylish 1870s Home near Distillery District & Old Toronto,67672523,Jason,Toronto,459,1,1,2935,1,3,1,"6,9",181,4,1,2,2,1,1,"0,99",179,North America +2178,"#1 Clean bright, cozy room near High Park +parking",90115034,Vivian,Toronto,39,1,1,2816,1,2,11,"6,83",48,1,"1,5",1,1,17,1,"0,99",219,North America +2179,Big private RM A in 2/F near York U Subway汉语OK,96693289,Crystal,Toronto,57,0,0,2775,,2,9,"5,5",2,7,2,1,2,10,1,"0,67",0,North America +2180,Scarborough 2 Bedroom Townhouse,89935433,Nicole Grace,Toronto,190,1,0,2817,1,3,1,"6,72",18,5,"1,5",2,2,1,1,1,197,North America +2181,Quiet Lovely 3 Bedroom House with Amazing Backyard,23199693,Ati,Toronto,149,1,0,3469,1,3,2,"6,68",100,8,1,3,3,3,1,1,299,North America +2182,City Centre Gem: 2BR with Great Views & Parking,201078255,Chunpin,Toronto,252,1,0,2123,1,3,1,"6,73",116,4,2,2,2,1,1,"0,93",276,North America +2183,Beauty near UTSC and Centennial College.,122085458,Sabina,Toronto,57,1,1,2597,1,2,14,"6,77",13,1,1,1,1,14,1,"0,94",0,North America +2184,Premium Large 1 BR Downtown Condo CN Tower View,201089891,Derrick,Toronto,80,1,1,2123,1,3,3,"6,78",55,2,1,1,1,3,1,"0,92",326,North America +2185,#3 Clean and cozy room near Lakeshore + parking,90115034,Vivian,Toronto,45,1,1,2816,1,2,11,"6,8",54,1,"1,5",1,1,17,1,"0,99",290,North America +2186,#2 Perfect room for WFH near Lakeshore High Park,90115034,Vivian,Toronto,60,1,1,2816,1,2,11,"6,93",43,2,"1,5",1,1,17,1,"0,99",217,North America +2187,Admire City Views from Bed at this Chic Apartment,201103629,Elaine,Toronto,396,1,1,2123,1,3,1,"6,83",156,2,1,1,1,1,1,1,9,North America +2188,Downtown Toronto luxury condo,201137466,Lola,Toronto,200,1,0,2123,1,3,1,"6,56",61,4,1,1,1,4,1,1,30,North America +2189,Private & Central Apartment- Close to Downtown,136724699,Joanna,Toronto,98,1,1,2503,1,3,3,"6,88",24,1,1,1,1,3,1,"0,93",202,North America +2190,"SUNNY Bedroom with Desk, Closet and 4K TV",71257392,Dee &,Toronto,53,1,0,2913,1,2,5,"6,78",18,2,1,1,1,5,1,1,0,North America +2191,HOUSE NEAR PEARSON AIRPORT & HUMBER NORTH COLLEGE,202147429,Thai-Dung,Toronto,213,1,1,2119,1,3,1,"6,76",79,8,1,3,3,1,1,"0,96",192,North America +2192,Upper unit 8 minutes away from airport,184068833,To Thuy Nguyen,Toronto,829,1,1,2210,1,3,6,"6,76",168,16,"2,5",5,8,6,1,"0,97",0,North America +2193,Toronto’s Danforth/Riverdale Prime Location,112315790,Anastasia,Toronto,94,1,1,2659,1,2,1,"6,84",322,2,1,1,2,1,"0,93",1,251,North America +2194,Beautiful Lakeview 1BR Downtown,58117524,Jeffrey Chun-Wai,Toronto,105,1,1,3003,1,3,2,6,1,2,1,1,1,2,1,1,209,North America +2195,Stroll to Pretty Parks from a Private Studio,2670503,Rachel,Toronto,155,1,1,4335,1,3,1,"6,76",67,2,1,1,1,1,1,"0,91",348,North America +2196,Private Bedroom Basement Apartment 1,201259834,Amenaghawon,Toronto,60,0,0,2122,1,3,3,"6,96",26,2,1,1,1,3,"0,75",0,334,North America +2197,The palace in Toronto,202601893,Patience,Toronto,120,0,0,2117,1,1,1,7,10,1,2,1,1,1,0,0,1,North America +2198,Private Bedroom Basement Apartment #2,201259834,Amenaghawon,Toronto,78,0,0,2122,1,2,3,"6,86",22,1,1,3,3,3,"0,75",0,308,North America +2199,Stylish Yorkville Studio: Near U of T & ROM,846505,Julie,Toronto,222,1,1,4669,1,3,53,"6,75",174,2,1,0,1,102,1,1,231,North America +2200,Leslieville's Best - Stylish Designer's Home,134514729,Roland,Toronto,500,0,0,2516,1,3,1,"6,84",19,6,2,3,4,1,1,0,332,North America +2201,"1BR Convenient, Cozy, Private Apartment",5837974,Helen,Toronto,62,1,1,4041,1,3,1,"6,91",81,1,1,1,1,1,1,1,272,North America +2202,InstantSuites- PentHouse | Balcony Views | Parking,108134394,Afshan,Toronto,200,1,1,2687,1,3,1,"6,73",174,6,"1,5",2,3,3,1,1,173,North America +2203,Warren Park Apartment,194094904,Olga,Toronto,72,1,0,2155,1,3,1,"6,71",42,2,1,0,1,1,1,"0,9",101,North America +2204,Stunning Downtown Hideaway- FREE PARKING,21842077,Reid,Toronto,195,1,0,3504,1,3,1,"6,67",63,10,1,3,5,1,1,1,182,North America +2205,University of Toronto (Kensington) one bedroom,4976043,Ping,Toronto,61,0,0,4103,1,2,4,"6,5",6,2,1,1,2,4,1,"0,79",276,North America +2206,Bohemian style loft in Parkdale,27900495,Santiago,Toronto,144,1,1,3361,1,3,1,"6,78",18,2,1,1,1,1,1,1,174,North America +2207,Beautiful Private bathroom Room - Finch Station,184498350,Hai-Qing,Toronto,43,1,0,2208,1,2,3,"6,36",11,1,1,1,1,3,1,"0,97",325,North America +2208,Mid-Century Home in Little Italy,178515756,Robert J,Toronto,271,0,0,2240,1,3,1,7,3,4,"2,5",2,2,1,0,0,277,North America +2209,Kozeee Apt/ Near GO Train & TTC,159262618,Camesha Charlene,Toronto,96,0,0,2355,1,3,1,"6,83",6,2,1,2,2,1,"0,9","0,33",328,North America +2210,Lakeside,29328171,Lizzy,Toronto,79,0,0,3336,1,3,1,"6,88",33,2,1,1,0,1,0,0,275,North America +2211,Brand New Modern Toronto House,157267017,Dino,Toronto,399,1,0,2371,1,3,1,"6,71",106,8,"3,5",4,4,2,1,"0,9",318,North America +2212,North York: 15 min. to York University and subway,114088230,Svitlana,Toronto,154,1,0,2648,1,3,1,"6,72",107,6,1,1,4,1,1,1,70,North America +2213,Guest Suite B Huge Room near Subway,30062696,Candice,Toronto,68,0,0,3324,,2,3,0,0,2,1,1,1,3,0,0,167,North America +2214,New Private Studio With A View of Gwendolen Park,91382108,Shawn,Toronto,91,0,0,2809,1,3,3,7,5,1,1,0,0,3,1,"0,67",126,North America +2215,50+flr Scotiabank Arena Breathtaking View,206884960,Jenny,Toronto,10000,1,1,2099,1,3,2,"6,78",193,2,1,0,2,4,1,"0,83",1,North America +2216,"Anne,s place",203629691,Anne,Toronto,30,0,0,2113,1,2,2,"6,83",30,1,1,1,1,2,"0,71",1,327,North America +2217,Bright 2 Bedroom Yonge & Eglinton,1684087,Pouneh,Toronto,155,1,0,4473,1,3,22,"6,24",17,4,2,2,2,33,1,"0,98",38,North America +2218,The Suite Toronto 850 sq ft 2BR VIEWS Upscale,199771941,Sean,Toronto,591,0,0,2129,1,3,1,"6,7",30,5,2,2,2,1,0,0,1,North America +2219,Stunning 4 Bedroom Home in Trendy Cabbagetown,12569911,Peter,Toronto,799,0,0,3718,,3,1,"6,75",12,11,"3,5",4,4,2,1,0,185,North America +2220,Private| Close to Lake | 30 Min. to Downtown| WIFI,207357679,Nasim,Toronto,119,1,1,2097,1,3,1,7,8,4,1,2,2,1,1,1,221,North America +2221,Stay here; Be everywhere.,135933908,Sunil,Toronto,155,0,0,2508,1,3,2,"6,78",49,2,1,1,1,3,"0,7","0,54",205,North America +2222,Two bedroom artsy spacious apartment in Parkdale,16459279,Zuzana,Toronto,215,0,0,3617,1,3,1,"6,7",77,4,1,2,2,2,0,1,2,North America +2223,"Beautiful, comfy home in amazing location!",79182995,Pargana,Toronto,240,0,0,2870,1,3,1,"6,77",44,4,1,3,3,1,1,"0,71",125,North America +2224,Oasis in the city ! House with large backyard !,207551649,Wycliffe And Marion,Toronto,160,0,0,2096,1,3,1,"6,83",18,4,"2,5",2,2,1,1,0,330,North America +2225,Private Room #1 in a Beautiful Bungalow House,207578246,Rachel,Toronto,41,0,0,2096,1,2,2,"6,56",9,1,1,1,0,2,1,"0,5",186,North America +2226,Downtown loft Queen West,146130,Maja,Toronto,271,0,0,5068,,3,1,0,0,2,1,1,0,1,0,0,276,North America +2227,"Private Bed, Bath & Amenities in T.O.'s Best Hood",25479238,Dave,Toronto,150,0,0,3407,1,2,1,"6,92",77,2,1,1,1,1,0,0,186,North America +2228,"modern living space, cozy den",129641922,Vanessa,Toronto,61,1,1,2549,1,2,3,"6,8",49,1,1,1,0,4,1,1,240,North America +2229,Upscale Home in a Central Location close to the Harbor,207649490,Aly,Toronto,200,0,0,2096,1,3,1,"6,78",124,4,2,2,2,1,1,"0,25",116,North America +2230,GIANT Million Dollar 2 Bdrm 2 Bath Bay St. Suite,55442,Furnished Condo Toronto,Toronto,485,0,0,5278,1,3,22,7,1,7,2,2,4,22,1,"0,75",275,North America +2231,Guest Suite C Huge Room near Subway,30062696,Candice,Toronto,68,0,0,3324,,2,3,6,1,2,1,1,1,3,0,0,172,North America +2232,"Modern 2 Bedroom Luxury House, close to downtown",45468979,Dave,Toronto,115,0,0,3136,1,3,1,"6,79",39,4,1,2,2,1,1,"0,71",279,North America +2233,"Beautiful Modern Sleek New Flat,Walk Everywhere DT",204508588,Joseph,Toronto,200,0,0,2109,1,3,1,"6,84",57,4,1,1,1,1,0,0,276,North America +2234,Toronto scarborough house,地下室单间,208018084,Peng,Toronto,60,1,0,2094,1,2,4,"6,67",52,2,1,1,1,4,1,"0,88",281,North America +2235,"Spacious, quiet, bright Qbed w private living rm",17430748,Carey,Toronto,110,0,0,3594,1,2,3,"6,67",3,2,"1,5",1,1,3,1,"0,75",295,North America +2236,Luxurious | Modern | Spacious 1BR+Balcony Downtown,125689770,Ezra,Toronto,299,1,1,2575,1,3,2,"6,83",36,4,1,1,2,2,1,"0,94",87,North America +2237,Charming 2 bdrm Bungalow - Main Floor,33699825,Milad,Toronto,290,0,0,3270,1,3,3,7,1,3,1,2,2,3,1,"0,71",6,North America +2238,Million Dollar Views/ Perfect Walk Score Condo,149578107,Cris,Toronto,246,0,0,2428,1,3,1,"6,95",19,3,1,1,1,1,0,0,187,North America +2239,Private d/s Apt in house Riverdale Toronto,128289557,Liz,Toronto,85,1,1,2558,1,3,1,"6,84",19,2,1,1,1,1,1,"0,86",295,North America +2240,Comfy basement room near Centennial college / UTSC,122085458,Sabina,Toronto,43,1,1,2597,1,2,14,"6,46",13,1,1,1,1,14,1,"0,94",0,North America +2241,Bright Townhouse Oasis,18746089,Bradley,Toronto,220,0,0,3570,1,3,2,7,4,4,"1,5",1,1,2,0,1,338,North America +2242,Toronto Shared House (West Bedroom B) Single Bed,21868614,Marie-Josee,Toronto,52,1,0,3503,1,2,4,"6,45",11,1,2,1,1,6,1,"0,92",209,North America +2243,Yorkville Bloor Avenue Luxury Living,147106022,Harrison Nathaniel Kaisheng,Toronto,135,1,0,2445,1,3,1,"6,6",82,2,1,0,1,2,1,1,207,North America +2244,Private bathroom Beautiful Rooms - Finch Station,184498350,Hai-Qing,Toronto,58,1,1,2208,1,2,3,"6,77",31,1,1,1,1,3,1,"0,97",227,North America +2245,Toronto scarborough世嘉宝购物中心附近,别墅二楼单间,208018084,Peng,Toronto,60,1,0,2094,1,2,4,"6,64",67,2,1,1,1,4,1,"0,88",274,North America +2246,Private Entrance Suite w/Laundry&Living n/Airport,141166875,Andrew,Toronto,120,1,1,2479,1,2,3,"6,88",555,4,1,1,2,3,1,"0,99",171,North America +2247,"New Home, 4Bed,Office,Terrace,Free Parking/WiFi",105962592,Amir,Toronto,280,0,0,2707,1,3,2,"6,44",48,8,"2,5",4,4,3,1,"0,25",185,North America +2248,1 BD by QueenWest by Trinity,146226441,Inna,Toronto,79,1,0,2451,1,3,37,"6,7",111,4,1,1,2,38,"0,93","0,93",208,North America +2249,Downtown 1 bedroom condo with lake view,31685648,Hao,Toronto,270,1,1,3298,1,3,1,"6,84",131,4,1,1,2,1,1,1,323,North America +2250,1 Bedroom in the heart of Queen and King West,43592256,Corinne,Toronto,150,0,0,3159,,3,1,"6,5",4,2,1,1,1,1,0,0,3,North America +2251,Studio apt private entrance entire apt no sharing.,208496728,Liz Or Sharm,Toronto,135,1,0,2092,1,3,6,"6,6",48,2,1,0,0,6,1,"0,97",330,North America +2252,Bright and cozy 2 bedroom Apartment,1684087,Pouneh,Toronto,125,1,0,4473,1,3,22,"6,54",13,4,1,2,3,33,1,"0,98",0,North America +2253,Spacious Ensuite Bedroom near Sunnybrook & Glendon,50019105,Fariba,Toronto,75,1,1,3078,1,2,9,"6,75",75,1,1,1,0,9,1,"0,86",140,North America +2254,Toronto scarborough towncenter,别墅二楼单间,208018084,Peng,Toronto,60,1,0,2094,1,2,4,"6,64",78,2,1,1,1,4,1,"0,88",30,North America +2255,Fibre internet*Monthly Discount*Character House,2343887,Liora,Toronto,73,0,0,4374,1,3,2,"6,87",52,2,1,1,1,2,1,"0,33",299,North America +2256,Spacious and cozy home in High Park,2326374,Joseph,Toronto,400,0,0,4376,1,3,1,"6,85",33,7,2,4,4,1,"0,9","0,65",177,North America +2257,Toronto scarborough 豪华独立别墅二楼套间,208711282,Peng,Toronto,80,0,0,2091,,2,3,"6,33",3,1,1,1,0,3,1,0,276,North America +2258,Forest Hill Toronto Condo - LONG TERM ONLY,198821369,Shirley,Toronto,150,0,0,2133,1,3,1,7,2,4,2,2,2,2,1,0,53,North America +2259,The Beaches- Bright Suite with Kitchenette,134949475,Dale,Toronto,170,1,1,2514,1,3,1,"6,86",84,2,1,1,1,2,1,"0,85",179,North America +2260,"Modern gem L-L,1BR shared bath), Downtown Toronto",206207030,Zen,Toronto,56,1,1,2102,1,2,4,"6,78",79,1,1,1,1,4,1,1,172,North America +2261,Private bachelor near Warden Station 10min by foot,141030429,Jacky Kwan Kit,Toronto,54,0,0,2480,1,2,2,"6,71",7,2,1,0,1,2,0,"0,71",277,North America +2262,Central King West | Rooftop Patio | Peloton,46408632,Taylor,Toronto,111,1,1,3124,1,3,1,"6,79",24,4,1,2,2,6,1,1,316,North America +2263,Enjoy Sunset & Lake View from a Corner Suite,7858163,Konstantinos,Toronto,671,1,1,3927,1,3,3,"6,73",127,4,2,2,2,34,1,1,186,North America +2264,Victorian charm & modern confort steps from U of T,13746468,Caroline,Toronto,115,0,0,3684,,3,1,"6,58",12,2,"1,5",1,1,2,1,0,188,North America +2265,Kashaneh at Minto,12033867,Kashaneh,Toronto,199,0,0,3736,1,3,16,"5,88",8,3,1,1,1,17,"0,88","0,08",0,North America +2266,Basement apartment one or two people,111539347,Hildson,Toronto,80,0,0,2663,1,2,1,"6,9",10,2,1,1,1,1,0,0,365,North America +2267,Stylish Large Central 3 Bedroom 3 Level House,9324394,Neil,Toronto,490,0,0,3857,1,3,1,7,7,6,"1,5",3,5,1,0,0,325,North America +2268,Luxury 1200 sqft open concept downtown loft,209314766,Michal,Toronto,900,0,0,2088,1,3,1,"6,6",10,4,"1,5",1,1,1,0,0,186,North America +2269,3 Bedrooms & 3 Bathrooms. Entire house to enjoy!,209274705,Julio,Toronto,89,0,0,2088,1,3,1,7,7,4,"2,5",3,3,1,0,"0,67",197,North America +2270,"Bright, Central, Spacious Condo - Heart of Toronto",35028799,Nathalie,Toronto,495,0,0,3254,,3,1,"6,43",7,4,1,2,3,1,0,0,185,North America +2271,Private Large Bedroom in North York,209384288,Yu Jung,Toronto,1000,0,0,2088,,2,2,7,3,2,"1,5",1,1,2,1,0,185,North America +2272,High Park Home the perfect blend of Old & New.,16307111,Elisa,Toronto,750,1,1,3621,1,3,1,"6,81",37,7,"2,5",4,4,1,1,1,116,North America +2273,Davisville village 2 Bedroom Apartment,25660537,Kevin,Toronto,100,1,0,3404,1,3,3,"6,79",47,4,1,2,3,3,1,"0,91",308,North America +2274,Condo on lake humber bay shores,209499261,Tony,Toronto,124,0,0,2087,1,3,1,"6,67",18,2,1,1,1,1,0,0,0,North America +2275,"Cool 1bed, 1bath Oasis in the Annex steps to UofT",51070968,Lish,Toronto,119,1,1,3064,1,3,7,"6,86",104,2,1,1,1,7,1,"0,96",207,North America +2276,Toronto Town House,210745137,Sergio,Toronto,100,0,0,2081,,2,2,"6,77",13,2,"1,5",1,1,2,0,0,0,North America +2277,Basement Unit (One Bedroom-2 single Beds),115954043,Mahmud,Toronto,55,1,1,2636,1,2,2,"6,6",5,2,1,1,2,2,1,1,96,North America +2278,Luxurious Condo in Trendy Queen West,135029869,Paula,Toronto,135,0,0,2513,1,3,1,"6,85",20,2,1,1,1,2,1,"0,61",213,North America +2279,The Cottage In The City: Parking/Subway/Grocery,1385599,Feng,Toronto,299,1,0,4558,1,3,1,"6,57",105,8,2,4,4,2,1,1,23,North America +2280,"Designer suite, Union, Ripleys+FREE Parking",201393456,Nataliya,Toronto,350,0,0,2122,1,3,1,"6,76",96,5,1,2,3,1,0,"0,92",250,North America +2281,Studio apartment in Midtown,1843167,Laurel,Toronto,105,1,1,4443,1,3,1,"6,86",51,2,1,0,1,1,1,1,320,North America +2282,Huge 2 BR Condo King & Queen Bed Downtown Toronto,201089891,Derrick,Toronto,139,1,1,2123,1,3,3,"6,82",50,3,1,2,2,3,1,"0,92",333,North America +2283,3 BDRM + 2 BATH + Parking + 2 Patios + CN View!,210686732,Alpesh,Toronto,500,1,1,2081,1,3,2,"6,79",133,8,2,3,4,2,1,"0,97",77,North America +2284,Toronto Private Guest Suite,42930789,Roger,Toronto,77,1,0,3167,1,3,1,"6,59",135,2,1,1,2,1,1,1,0,North America +2285,2 bedroom with parking and outdoor deck!,206213810,Leo,Toronto,110,1,1,2102,1,3,1,7,3,4,1,2,2,6,1,1,158,North America +2286,Dundas Square *Luxury* hybrid office/2 Desks/Fplc,105618845,Rob And Lisa,Toronto,124,1,1,2710,1,3,7,"6,92",38,3,1,2,2,7,1,1,302,North America +2287,Large 2 - Story 2 Bedroom Unit close to subway,55430413,Crystal,Toronto,168,1,1,3024,1,3,3,"6,66",71,5,1,2,3,3,1,"0,92",299,North America +2288,Luxury hotel style studio in the heart of Toronto,210043644,Arezou,Toronto,200,0,0,2084,1,3,1,"6,88",32,2,1,0,1,1,0,0,186,North America +2289,Great get away,435660432,Al,Toronto,210,1,1,871,1,3,5,"6,9",105,6,2,2,3,8,1,"0,94",185,North America +2290,"93Very Cozy Upper Beaches 400m to subway, shops",118801588,Alan,Toronto,89,1,1,2617,1,2,1,"6,76",154,2,1,1,1,1,1,1,12,North America +2291,"Cozy Riverdale gem, walk to the subway.",84696701,Sarah,Toronto,118,1,1,2843,1,2,1,"6,92",565,2,1,0,1,1,1,"0,98",349,North America +2292,Cozy Queen Suite on 2nd floor,85473145,Sharon,Toronto,90,1,1,2839,1,2,5,"6,81",22,2,2,1,1,6,1,1,206,North America +2293,Perfectly located Modern Apartment in Greek town,61323744,Carol And Steve,Toronto,100,0,0,2982,1,3,1,7,10,2,1,1,1,1,0,0,237,North America +2294,7815 Cozy Entire Townhouse Next to College Subway,1614087,Ivan,Toronto,420,1,1,4489,1,3,2,7,11,4,0,2,2,2,1,"0,92",34,North America +2295,Green Room,64371515,Seyed Sadegh,Toronto,70,0,0,2959,1,3,1,"6,57",14,2,1,1,1,2,1,"0,74",1,North America +2296,Toronto Multi-unit building,53651007,Alishay,Toronto,250,0,0,3037,1,2,1,"6,68",19,1,1,1,1,1,0,0,186,North America +2297,Modern Furnished Two Bedroom Downtown July,349619,Cristina,Toronto,100,0,0,4854,1,3,1,7,1,4,1,2,2,1,0,0,277,North America +2298,Middle town subway room,134795580,Junli,Toronto,65,1,1,2515,,2,7,7,1,2,1,0,1,7,1,1,331,North America +2299,Huge 3 bdrm condo in core dt To - close to all,213776066,Frank,Toronto,425,0,0,2065,1,3,1,"6,71",58,8,2,3,4,1,0,"0,74",303,North America +2300,Sheppard-Yonge Subway St. Executive Private Room,82208024,Yanci,Toronto,68,1,0,2855,1,2,1,"6,72",78,1,1,1,1,5,1,"0,99",258,North America +2301,Lake View Designer Home/15 min to downtown Toronto,2466124,Dan,Toronto,550,0,0,4359,1,3,1,7,1,6,"2,5",2,2,1,0,0,3,North America +2302,Luxurious condo in prestigious location,106420029,Kamiar,Toronto,135,1,0,2703,1,3,1,"6,48",71,2,1,1,1,1,1,1,200,North America +2303,Stay in luxury and convenience. Fully equipped.,49752746,Dali,Toronto,250,1,0,3082,1,3,1,"6,79",20,4,2,2,1,2,1,"0,97",332,North America +2304,Cozy 2-bedroom Lower Apartment 静颐之家,50551745,Helen,Toronto,96,1,0,3071,1,3,4,"6,66",77,5,"1,5",2,2,4,1,"0,83",144,North America +2305,1200 SQ.FT Luxury condo+Amazing view +Huge balcony,38084605,Sam,Toronto,160,0,0,3218,1,3,1,0,0,4,3,2,2,1,0,0,7,North America +2306,Liberty Village Gem,35140948,Lee,Toronto,124,1,1,3252,1,3,1,"6,95",21,2,1,1,1,5,1,1,212,North America +2307,The perfect house in High Park!,21683340,Mike,Toronto,120,0,0,3508,1,3,3,"6,92",25,5,2,2,2,3,0,0,365,North America +2308,Very safe,57640471,Charla,Toronto,137,0,0,3007,,3,1,0,0,4,1,3,3,1,0,0,276,North America +2309,Amazing VIEW 1 BDR CONDO/direct Subway,170567513,Golsana,Toronto,150,0,0,2284,1,3,7,0,0,2,1,1,1,9,1,"0,64",185,North America +2310,"Private bedroom1, 7 Minutes walk to Subway Station",214030250,Kerui,Toronto,60,0,0,2064,1,2,3,"6,68",105,2,1,1,1,3,1,"0,71",309,North America +2311,Great Room in a Great Location!,83307611,Billy,Toronto,70,0,0,2850,1,2,2,"6,77",138,2,1,1,1,2,0,1,179,North America +2312,Architect's New Loft on Geary,1660613,Elle,Toronto,132,0,0,4478,1,3,2,"6,94",17,2,"1,5",1,1,3,1,"0,8",95,North America +2313,Downtown Exclusive Lakeview 3 BR Suite w parking,116683931,Prashant,Toronto,468,1,1,2631,1,3,1,"6,79",203,6,2,3,3,2,1,"0,98",300,North America +2314,Stunning 2 Bedroom Condo near Shops and Subway,186646215,Ebi,Toronto,647,0,0,2196,1,3,1,"6,13",8,3,2,2,2,1,0,0,185,North America +2315,Hip Two-Bedroom Loft in Junction Triangle,12587911,Mira & Dragan,Toronto,120,1,1,3718,1,3,1,"6,93",46,5,1,2,4,1,1,1,317,North America +2316,Toronto Backyard Bunkie with Private Bathroom,53098858,Jason,Toronto,40,0,0,3042,1,2,1,"6,5",2,1,1,0,1,1,1,0,0,North America +2317,Urban Elegance in Forest Hill,62546462,Ali,Toronto,174,1,1,2973,1,3,2,"6,79",63,2,1,1,1,2,1,"0,9",23,North America +2318,Matt's amazing basement apartment!,23132290,Matt,Toronto,89,1,1,3471,1,3,3,"6,77",39,2,1,1,1,3,1,1,178,North America +2319,Cozy private space in mid-town Toronto,73844473,David Stewart,Toronto,125,1,1,2899,1,2,1,"6,9",107,2,1,1,1,1,1,"0,97",224,North America +2320,Riverdale Temenos,119352112,Karen,Toronto,245,0,0,2614,1,3,4,7,3,7,1,3,6,4,1,"0,63",23,North America +2321,Cozy Bachelor Suite with Private Entrance,31652936,Claire,Toronto,56,0,0,3298,1,3,1,"6,84",19,2,1,1,0,1,0,"0,56",269,North America +2322,Bright Modern Tranquility - A place to call home,203105323,Nick,Toronto,340,1,1,2115,1,3,1,"6,9",42,6,3,3,3,1,1,"0,88",154,North America +2323,Main Floor 1 Bedroom Apartment with High Ceilings,506119636,Ori,Toronto,130,0,0,409,,3,3,"6,84",91,4,1,1,2,3,0,0,127,North America +2324,3rd floor-Roncesvalles Village Room,198393365,Scott,Toronto,80,1,1,2135,1,2,4,"6,86",283,2,2,1,1,4,1,"0,98",45,North America +2325,"Private room, great area in Toronto",213010584,Daisuke,Toronto,55,0,0,2069,1,2,2,"6,81",32,1,1,1,1,2,"0,75",0,185,North America +2326,Exquisite 3 bedroom condo with easy access to 401.,86775826,Jonathan,Toronto,100,0,0,2833,1,3,1,7,4,6,2,3,2,1,0,0,185,North America +2327,Light Bright Huge Queen West/Parkdale Apartment,213032222,Shoshana,Toronto,150,0,0,2069,1,2,1,"6,92",65,2,1,1,1,1,0,1,186,North America +2328,Private room w/ free parking spot & mins to subway,83380695,Lillian,Toronto,91,0,0,2850,1,2,1,"6,87",97,2,1,1,1,1,1,"0,6",346,North America +2329,Apartment near Yorkville,37497175,Naira,Toronto,140,0,0,3224,1,3,1,0,0,2,1,0,1,1,0,0,237,North America +2330,Cozy self contained unit - Downtown Toronto,213226836,Harry,Toronto,107,0,0,2068,1,3,1,"6,88",180,2,1,0,1,1,1,0,185,North America +2331,2nd floor-Humber Bay Room,198393365,Scott,Toronto,72,1,0,2135,1,2,4,"6,8",105,2,2,1,0,4,1,"0,98",10,North America +2332,Private Bathroom (RM #3)-@Trinity Park Queen west,214712583,YuLin,Toronto,80,1,0,2060,1,2,3,"6,7",223,2,1,1,1,3,1,1,257,North America +2333,Big Bright Beautiful 2 Bedroom Private Apartment,213294343,Georghia,Toronto,167,1,1,2067,1,2,1,"6,87",242,5,1,2,3,1,"0,9",1,212,North America +2334,"Pvt Apartment - near PanAm Ctr, UTSC & Centennial",214876814,Suzanne,Toronto,94,1,1,2059,1,3,1,"6,88",17,3,1,2,2,1,1,"0,83",38,North America +2335,Basement bedroom with separate entrance!,58635739,Gavyn,Toronto,96,1,1,3000,1,2,1,"6,84",70,2,1,0,0,1,1,"0,95",306,North America +2336,New Designer Guest Suite with Private Entrance,214876581,Arash,Toronto,154,0,0,2059,,3,1,"6,93",28,2,1,1,2,1,1,"0,5",272,North America +2337,Private Bathroom (RM #1) -@Trinity Park/Queen West,214712583,YuLin,Toronto,73,1,0,2060,1,2,3,"6,67",280,2,"1,5",1,1,3,1,1,255,North America +2338,Private Bathroom (RM #2)-@Trinity Park/Queen West,214712583,YuLin,Toronto,75,1,0,2060,1,2,3,"6,72",268,2,"1,5",1,1,3,1,1,283,North America +2339,Bright and Comfy Room with Seperate Entrance,213413216,Joy,Toronto,60,1,1,2067,1,2,1,"6,89",105,2,1,1,1,1,1,"0,89",317,North America +2340,Beautiful Modern Condo w/Stunning Views & Parking!,93376913,Kathy,Toronto,394,0,0,2797,1,3,1,"6,5",16,4,2,2,2,1,0,0,185,North America +2341,Upscale Condo in the Clouds at CN Tower,51016161,Syed,Toronto,266,1,1,3065,1,3,1,"6,76",523,3,1,1,2,11,1,1,285,North America +2342,Cozy apt in the Danforth village,113450651,Ignace,Toronto,72,0,0,2652,,2,1,0,0,1,1,1,1,3,0,0,277,North America +2343,Privacy second floor 2 bedroom with packing. In North York,135539222,Le,Toronto,165,1,1,2510,1,3,2,"6,69",55,5,1,2,2,2,1,1,185,North America +2344,"One Bed Apartment, Full Bath, Free WiFi",105962592,Amir,Toronto,150,0,0,2707,1,3,2,"6,56",27,3,1,1,5,3,1,"0,25",185,North America +2345,Enjoy Toronto Luxury Suite in Quiet Ravine Retreat,69872967,Lilian,Toronto,272,0,0,2922,1,3,1,7,127,3,1,1,2,2,0,"0,83",147,North America +2346,Downtown Toronto Next To Everything - Monthly Stay,190193295,Viseh,Toronto,86,1,1,2176,1,3,1,"6,86",50,3,1,1,1,3,1,"0,96",365,North America +2347,Private Double bed. Central. Buses nearby.,71594994,Arun,Toronto,65,1,1,2911,1,2,4,"6,77",83,2,"1,5",1,2,4,1,1,1,North America +2348,Stunning Lakeview In the heart of TO w/ Free PKG,216940957,Carl,Toronto,200,0,0,2047,1,3,4,"6,79",131,3,1,1,2,4,"0,95","0,82",59,North America +2349,Room 1-1(High speed internet been updated),96731289,James,Toronto,60,0,0,2775,1,2,1,"6,74",23,1,2,1,1,1,0,0,276,North America +2350,Cozy Entire Apartment In York village,208051256,Gbolahan,Toronto,159,1,0,2094,1,3,1,"6,57",84,4,1,1,2,1,1,"0,96",65,North America +2351,Family Friendly 4 Bedroom Beautiful Little Italy,1430894,Ronen,Toronto,190,1,0,4545,1,3,2,7,9,6,2,4,4,4,1,"0,97",54,North America +2352,Spacious Unit in the heart of downtown Toronto,107720246,Ning,Toronto,308,1,1,2690,1,3,1,"6,79",57,2,1,1,1,1,1,"0,98",78,North America +2353,"Toronto/Riverdale cozy, private studio apartment.",14633675,Terry,Toronto,110,1,1,3661,1,2,1,"6,92",49,2,1,1,1,2,1,"0,94",287,North America +2354,Cozy beaches studio to be your home in Toronto,13948434,Sammi,Toronto,90,0,0,3678,1,2,1,"6,86",7,2,1,1,0,1,0,0,3,North America +2355,"Trendy Ent. Dist. 1 bd, Free Parking/Gym",6540835,James,Toronto,203,0,0,3996,1,3,12,7,3,2,1,1,1,12,1,"0,67",57,North America +2356,1 bedroom apartment Sheppard&Leslie,76420708,Omid,Toronto,95,1,1,2885,1,3,5,"6,79",43,2,1,1,1,9,1,1,35,North America +2357,Single Room in Cabbagetown.,33782190,Jeff,Toronto,70,1,1,3270,1,2,1,"6,56",17,1,1,1,1,3,1,1,79,North America +2358,The perfect room,78317955,Soheil,Toronto,136,0,0,2875,1,2,1,"6,86",218,2,1,1,1,1,1,"0,75",346,North America +2359,The Annex - Cozy 2 Bedroom Apt. (bright 2nd floor),156695326,Edgardo,Toronto,130,1,0,2376,1,3,2,"6,81",52,4,1,2,2,6,1,1,217,North America +2360,2. Comfortable room for staying,216943549,Thi Duc Ha,Toronto,47,0,0,2047,1,2,3,"6,89",27,1,2,1,1,3,1,"0,67",290,North America +2361,"Rare sunny, stylish condo in heart of King West",66761120,John,Toronto,185,0,0,2942,1,3,1,7,1,2,1,1,1,1,0,0,102,North America +2362,Room3&Private bathroom 7Min.walk to Subway Station,214030250,Kerui,Toronto,65,0,0,2064,1,2,3,"6,65",171,2,1,1,1,3,1,"0,71",190,North America +2363,Enchanted Bedroom & Sunroom - House by the Park,175697391,Luisa,Toronto,55,0,0,2255,,2,2,7,10,1,1,1,1,2,0,0,186,North America +2364,Tranquility Room - House by the Park,175697391,Luisa,Toronto,65,0,0,2255,,2,2,7,13,1,1,1,1,2,0,0,186,North America +2365,"Private bedroom 2, 7minutes walk to Subway Station",214030250,Kerui,Toronto,60,0,0,2064,1,2,3,"6,66",121,2,1,1,1,3,1,"0,71",194,North America +2366,Toronto basement apartment,165124060,Felipe,Toronto,70,0,0,2313,1,3,1,"6,42",24,2,1,1,1,2,0,1,95,North America +2367,"1bedroom & 1bathroom, shared in 2bedroom condo",216463249,Arash,Toronto,300,0,0,2050,1,3,1,"6,93",14,2,1,1,1,1,0,0,185,North America +2368,Bright Queen Bedroom in the Upper Beach!,24235318,Sarah,Toronto,111,0,0,3443,1,2,2,"6,86",43,2,1,1,1,4,1,"0,69",186,North America +2369,NEW Lakeview Modern 2B2B Condo w DT Shuttle HotTub,29184843,MaryJo,Toronto,126,0,0,3339,1,3,1,7,1,3,2,2,2,1,0,1,242,North America +2370,5-Star Master Bedroom/Private Bathroom 1min subway,33533111,Mohammed,Toronto,42,1,0,3273,1,2,4,"6,52",64,2,1,1,1,4,1,"0,99",251,North America +2371,"Luxury 1,000 sq ft condo @ Scotiabank Arena | 2+2",43127944,Mohammed F,Toronto,450,1,1,3165,1,3,1,"6,82",103,5,2,2,2,1,1,1,275,North America +2372,Kingi's Art Space/Gallery/Paint by Number Palace.,4519336,Kingi,Toronto,189,0,0,4141,1,3,1,"6,81",27,2,1,2,3,1,0,0,0,North America +2373,Sunrise & City Views - Downtown - Comfortable Stay,25480699,Joseph David,Toronto,103,1,1,3407,,2,2,"6,85",50,2,1,1,1,2,1,"0,96",365,North America +2374,Comfortable & Cozy Tiny Home,168250441,Matthew,Toronto,400,0,0,2297,1,3,1,0,0,2,0,0,1,1,0,0,277,North America +2375,1 Bedroom Apt (A) -Central/East by Woodbine Subway,77706053,Fatima & Marcus,Toronto,90,0,0,2878,1,3,4,"6,88",8,2,1,1,1,4,1,"0,69",210,North America +2376,Penthouse living in style,55133701,Leanna,Toronto,200,0,0,3026,1,3,2,0,0,3,1,0,2,2,0,0,1,North America +2377,Luxury 1+Den condo steps away from CN Tower & Lake,38668814,Katherine,Toronto,408,1,1,3212,1,3,2,"6,83",152,6,1,2,2,2,1,1,205,North America +2378,Entire Specious 2 Bd Suite Near Airport & Downtown,220222963,Olena,Toronto,200,1,1,2028,1,3,1,"6,81",132,5,1,2,2,1,1,1,242,North America +2379,Luxury 1+1 Condo,26589442,Milad,Toronto,219,0,0,3386,1,3,1,"6,86",21,3,1,1,2,1,0,0,276,North America +2380,Single bedroom main floor #2,24085234,Cristina,Toronto,32,0,0,3447,1,2,6,"6,29",7,1,1,1,1,9,"0,67","0,86",262,North America +2381,Private Room in ComfortablE House - Monthly Rate,40829712,Graham,Toronto,41,1,1,3190,1,2,6,"6,67",6,1,2,1,1,6,1,1,22,North America +2382,str-2101-fwwphd,60537914,Jovanco,Toronto,85,1,1,2987,1,3,1,"6,78",69,4,1,1,1,1,1,1,143,North America +2383,Central Downtown Toronto Condo,33313821,Lola,Toronto,250,0,0,3276,1,3,1,"6,57",7,2,1,1,1,1,0,0,276,North America +2384,walk to Sheppard subway station,21809656,Reza,Toronto,320,1,1,3505,1,3,6,"6,86",52,4,1,2,2,6,1,"0,97",324,North America +2385,Private Apt 1 Bed 1 Bath w. Kitchen & Sep entrance,30289932,Arjun,Toronto,120,1,0,3320,1,3,1,"6,62",85,2,1,1,1,1,1,"0,82",100,North America +2386,Spacious 2bdrm/2ba Garden District Loft,4010527,Diane,Toronto,350,0,0,4202,1,3,5,"6,8",10,4,2,2,2,5,1,"0,71",270,North America +2387,Bedroom in house in Leslieville,56709498,Peter,Toronto,88,1,1,3014,1,2,2,"6,9",21,1,1,1,1,2,1,"0,85",187,North America +2388,Private Apartment Queen & Spadina,220457646,Tracy,Toronto,120,1,1,2027,1,3,1,"6,85",61,2,1,1,1,1,1,1,276,North America +2389,Downtown Toronto Home near CN Tower,5003419,Ss,Toronto,200,0,0,4101,1,2,1,0,0,2,1,1,1,1,0,0,185,North America +2390,Trinity Bellwoods Retreat,8702985,Clarence,Toronto,158,1,1,3888,1,3,10,"6,94",32,2,1,1,1,11,1,"0,95",176,North America +2391,Cute House In Golden Area,1795454,Tatjana,Toronto,350,1,1,4452,1,3,3,"6,94",18,6,2,3,4,4,1,1,93,North America +2392,Best Views in the City: 2 Bedroom Modern Condo,218807752,Sam & Rachana,Toronto,165,0,0,2036,1,3,1,6,3,6,1,2,2,1,1,"0,5",184,North America +2393,Peace Home,190005484,Onoghoete,Toronto,60,1,0,2177,1,2,1,"6,75",435,4,1,1,1,1,1,"0,99",201,North America +2394,2Be/2Ba Hi-Lakeview Condo w/Parking by ACC/CNTower,194826634,Mark,Toronto,120,1,1,2152,1,3,1,"6,84",91,5,2,2,3,1,1,1,329,North America +2395,Stylish Downtown Condo with Free Parking,94635545,Victoria Lynn,Toronto,322,1,1,2789,1,3,1,"6,88",163,2,1,1,1,1,1,1,253,North America +2396,1 Bedroom Apt (B)– Central/East by Woodbine Subway,77706053,Fatima & Marcus,Toronto,100,0,0,2878,1,3,4,"6,93",15,2,1,1,1,4,1,"0,69",113,North America +2397,Comfortable Room near downtown,18274975,Kaiser,Toronto,51,1,0,3576,1,2,2,"6,72",39,1,1,1,1,3,1,"0,96",228,North America +2398,Beautiful Private Bedroom With Private Bathroom,221036948,Dori,Toronto,80,0,0,2024,1,2,1,0,0,2,1,1,1,1,0,0,276,North America +2399,Toronto’s homestay,112322647,Eleanor,Toronto,100,0,0,2659,1,2,3,0,0,2,"1,5",1,2,5,0,0,0,North America +2400,Entire Top floor for 3/ private balcony/DT/Annex,162894786,Sherry,Toronto,139,1,0,2328,1,3,4,"6,67",66,3,1,1,2,4,1,1,185,North America +2401,Stylish 1 BDRM/Rogers CNTR/ KING W/Waterfront,846505,Julie,Toronto,130,1,1,4669,1,3,53,"6,77",60,3,1,1,2,102,1,1,185,North America +2402,"Central, Spacious, Modern Condo with Stunning View",74376784,Robert,Toronto,190,1,0,2896,1,3,1,"6,6",40,4,1,2,2,1,1,1,185,North America +2403,Private Modern Apartment - 1-3 month - Furnished,4170351,Natasha,Toronto,80,0,0,4184,1,3,1,"6,71",41,2,1,1,2,1,1,"0,75",99,North America +2404,Sulgrave blue queen size room,103332460,Long Xiu,Toronto,41,1,0,2728,1,2,3,"6,6",5,2,1,1,1,3,1,1,275,North America +2405,Trinity-Bellwoods Room w/ Private Bath & Entrance,57549545,Yueli,Toronto,145,1,1,3008,1,3,1,"6,73",98,1,1,1,1,1,1,"0,84",360,North America +2406,Spacious 2 Bedroom guest suite,200644024,Md Alamgir,Toronto,199,0,0,2125,1,3,1,"6,72",50,4,1,2,2,1,0,1,197,North America +2407,"LOON's NEST - Clean, cozy condo - AMAZING location",12620339,Janahan,Toronto,180,0,0,3200,1,3,1,"6,69",243,4,1,1,2,1,1,"0,29",120,North America +2408,New Modern Suite in Leslieville,96737822,Amy,Toronto,185,1,1,2775,1,3,2,"6,76",74,3,1,1,1,2,1,1,343,North America +2409,Luxury Penthouse w Breathtaking CN TOWER VIEWS,115442293,Tara,Toronto,1895,1,1,2639,1,3,5,"6,9",10,8,2,2,2,6,1,1,187,North America +2410,"8215Lots of amenitie, Walk to restaurants, near 7815DT",210303311,Phuong,Toronto,65,1,0,2083,1,2,3,"6,61",238,2,1,1,1,4,1,1,330,North America +2411,Lakeside in the city,163506026,Rupinder,Toronto,244,1,1,2324,1,3,1,"6,73",46,4,1,2,2,2,1,"0,98",102,North America +2412,"8215Priv. Bath, Walk to restaurants, subway near7815DT",210303311,Phuong,Toronto,78,1,0,2083,1,2,3,"6,62",380,2,1,1,1,4,1,1,320,North America +2413,"8215Ensuite bath, Walk to restaurants, subway, 7815DT",210303311,Phuong,Toronto,101,1,0,2083,1,2,3,"6,69",416,3,1,1,2,4,1,1,330,North America +2414,Studio Apt (C) – CENTRAL/EAST by Woodbine Subway,77706053,Fatima & Marcus,Toronto,70,0,0,2878,1,3,4,"6,38",16,2,1,1,1,4,1,"0,69",235,North America +2415,"Bright, family-friendly Annex apartment",167253735,Anna,Toronto,264,0,0,2302,1,3,1,7,4,4,"1,5",2,3,1,0,0,193,North America +2416,1 Bedroom Apt (D)– Central/East by Woodbine Subway,77706053,Fatima & Marcus,Toronto,80,0,0,2878,1,3,4,"6,86",21,2,1,1,1,4,1,"0,69",234,North America +2417,Cozy Home,221612085,Lee,Toronto,80,0,0,2021,1,2,1,"6,65",95,3,1,1,2,1,0,0,276,North America +2418,Welcome Home,190370345,David,Toronto,138,1,0,2174,1,3,2,"6,38",29,4,1,2,0,8,"0,98","0,96",186,North America +2419,Luxury Spacious (2B+Den/2B) Modern Condo + Parking,6889569,Andrew,Toronto,285,1,1,3975,1,3,1,"6,71",24,4,2,2,2,1,1,1,273,North America +2420,Executive Home in Lakefront Community,221710414,Deborah,Toronto,101,1,1,2020,1,3,1,"6,9",41,2,1,1,1,1,1,1,117,North America +2421,Family space in full privacy all amenities nearby,8373692,Ashoke,Toronto,125,1,1,3902,1,2,1,"6,9",166,3,1,1,2,1,1,1,300,North America +2422,The Toy Loft,29522076,Ian,Toronto,116,1,1,3333,1,3,1,"6,9",258,2,1,1,1,1,1,"0,96",359,North America +2423,Concrete Jungle - Full Condo,208253452,Randi,Toronto,300,0,0,2093,1,3,2,"6,83",24,4,1,2,2,2,0,"0,25",277,North America +2424,Toronto Beaches Industrial Chic Cottage inthe City,31223873,Linda,Toronto,114,0,0,3305,1,3,2,"6,89",35,2,1,1,1,4,1,"0,5",237,North America +2425,Superb 1 Bedroom 1 Bathroom Suite Walk to Hospital,55442,Furnished Condo Toronto,Toronto,257,0,0,5278,1,3,22,7,8,4,1,1,2,22,1,"0,75",275,North America +2426,Entire Suite! Versace Loft 10 mins from CN Tower,165119045,Olayinka,Toronto,173,1,0,2313,1,2,1,"6,56",350,2,"1,5",1,1,2,1,"0,92",320,North America +2427,Spacious Danforth Master Bedroom,15374566,Murray,Toronto,85,0,0,3643,1,2,1,"6,8",10,1,1,1,1,2,1,"0,79",284,North America +2428,Grand & Luxurious Historic Home | Central Toronto,200937660,Jeffrey,Toronto,1628,1,1,2123,1,3,1,"6,86",71,14,3,6,9,1,1,1,127,North America +2429,Cozy basement room in a bungalow,122085458,Sabina,Toronto,43,1,0,2597,1,2,14,"6,77",26,1,1,1,1,14,1,"0,94",0,North America +2430,Apt DowntownToronto close to Eaton center and TMU,30813376,Jeff,Toronto,113,0,0,3311,1,3,4,"6,68",22,3,1,1,1,4,"0,88","0,91",0,North America +2431,Toronto HomeAway from Home,44450490,Dinesh,Toronto,120,0,0,3149,1,3,3,7,2,4,1,4,2,3,1,"0,8",241,North America +2432,"Chic Toronto Downtown Luxury Condo,CN Tower, MTCC,",216906998,Mutaz,Toronto,486,1,1,2047,1,3,1,"6,85",41,5,1,2,3,3,1,"0,91",226,North America +2433,Cozy 3-BR Condo in DT Toronto,785826,Sky View,Toronto,199,1,0,4683,1,3,51,"6,89",18,5,2,3,4,56,1,"0,93",320,North America +2434,Downtown Designer Studio - Prime Location,7127968,Sal,Toronto,89,1,1,3962,1,3,2,"6,9",80,2,1,0,1,2,1,1,198,North America +2435,Magnificient View! next CN Tower/Rogers/Union/MTCC,223534055,Syed,Toronto,297,1,1,2009,1,3,1,"6,83",162,3,1,1,2,1,1,1,193,North America +2436,My Apartment,83329843,Anwar,Toronto,68,1,0,2850,1,3,3,"6,63",19,2,1,0,1,3,"0,83",1,186,North America +2437,Yorkville Downtown Hotel Style Large Suite,223553142,Samz,Toronto,132,0,0,2009,1,3,7,"6,86",14,3,2,1,2,8,"0,94","0,61",342,North America +2438,Centrally located 2-BR Condo in DT Toronto,785826,Sky View,Toronto,150,1,1,4683,1,3,51,"6,75",4,4,2,2,2,56,1,"0,93",307,North America +2439,"Culture Lovers Hideaway in Little Italy, private",3566553,Pamela,Toronto,100,1,1,4247,1,2,1,"6,84",104,2,1,1,1,1,1,"0,96",338,North America +2440,Classy & Lux Downtown 2 bdrm+ den condo,58109629,Agnes,Toronto,298,1,1,3004,1,3,1,"6,83",66,8,2,3,4,1,1,"0,93",204,North America +2441,Boutique condo steps from the St. Lawrence Market,9691054,Clint,Toronto,165,1,1,3838,1,3,1,"6,89",19,4,1,2,2,1,1,1,180,North America +2442,"Modern 2 BR+Den Suite, Balcony near Rogers/MTCC",22773087,Calvin,Toronto,320,1,1,3481,1,3,7,"6,83",75,4,2,2,2,12,1,"0,95",168,North America +2443,Private Room with Newly Renovated Bathroom,203798747,Angela,Toronto,95,0,0,2112,1,2,2,7,1,1,1,1,1,2,0,0,185,North America +2444,Executive Home ~ Close to Downtown Toronto,95307812,Jerome,Toronto,455,0,0,2785,1,3,2,7,6,8,"2,5",3,4,2,1,"0,5",2,North America +2445,Luxurious Condo Near CN Tower with FREE Parking,217925839,Felix Nnaemeka,Toronto,148,0,0,2041,1,3,1,"6,46",220,5,1,2,2,1,0,0,99,North America +2446,Private coach house near the bluffs,224041800,Antonietta,Toronto,98,1,1,2006,1,3,1,"6,93",98,2,1,1,1,1,1,1,274,North America +2447,Sunny Room,210689721,Mete,Toronto,139,0,0,2081,1,2,3,"6,22",58,5,2,1,4,3,0,1,275,North America +2448,Penthouse Suite on the Water,222577621,Ellen,Toronto,289,0,0,2015,1,3,1,0,0,6,2,1,2,1,0,0,0,North America +2449,A little gem in the heart of downtown Toronto,145712271,Margarida,Toronto,90,0,0,2454,1,3,1,7,5,2,1,1,1,1,0,0,271,North America +2450,EXECUTIVE LAKE VIEW CONDO,92826071,Festus,Toronto,300,0,0,2800,1,3,1,"6,64",33,2,1,1,1,1,1,0,276,North America +2451,Spacious Private One Room 2-Bed,50551745,Helen,Toronto,49,1,0,3071,1,2,4,"6,07",15,2,1,1,2,4,1,"0,83",330,North America +2452,☆☆☆☆☆ Luxurious Furnished Basement Suite ☆☆☆☆☆,11206244,Superhost,Toronto,199,0,0,3763,1,3,19,0,0,2,1,2,2,20,1,"0,6",0,North America +2453,Bright and Open Studio,135977622,Helio,Toronto,80,1,1,2507,1,3,1,"6,81",47,3,1,0,0,1,1,1,143,North America +2454,"Newly renovated, cozy apartment in The Beaches",171712450,Curtis & T.C.,Toronto,108,1,1,2278,1,3,1,"6,93",80,4,1,0,0,1,1,1,221,North America +2455,Private Suite w/side Entrance Near Subway,223040388,Jamuna,Toronto,70,1,1,2012,1,3,1,"6,88",58,4,1,1,2,1,1,"0,89",233,North America +2456,Rare lower level apartment with walkout to Ravine,141915599,Karen,Toronto,123,1,0,2475,1,3,3,"5,5",2,3,1,2,2,5,1,"0,91",276,North America +2457,Executive Home Heart of Toronto Restyled w/Parking,5376596,Andrew,Toronto,499,1,1,4072,1,3,1,"6,76",46,9,"1,5",3,4,1,1,"0,96",184,North America +2458,Jay's Apartment,83329843,Anwar,Toronto,68,1,0,2850,1,3,3,"5,67",9,2,1,0,2,3,"0,83",1,275,North America +2459,Premium 1 BR Suite (City CNTR/Subway Dir.Access),54422135,Seyedeh Afarin,Toronto,130,0,0,3032,1,3,29,"5,5",6,2,1,2,2,69,1,"0,53",0,North America +2460,Finch/404/Seneca Huge 2 Bedroom Home w/1 Parking,90068148,Emily,Toronto,100,0,0,2816,1,3,5,"6,9",21,4,1,2,2,5,1,"0,79",237,North America +2461,Privet room with bath,9974133,Alireza,Toronto,110,0,0,3823,1,2,1,0,0,1,1,1,1,1,0,0,186,North America +2462,Cozy Hide Away,169369485,Marina,Toronto,55,1,0,2291,1,2,3,"6,66",97,1,1,1,1,3,1,"0,99",324,North America +2463,Subway a quiet house,134795580,Junli,Toronto,65,1,0,2515,,2,7,"6,5",6,2,1,1,1,7,1,1,230,North America +2464,Stunning designer home built with all the features,23049699,Ashley,Toronto,350,0,0,3474,1,3,1,0,0,2,"2,5",2,2,1,0,0,276,North America +2465,3 bedroom house in central toronto,15757382,Michael,Toronto,800,0,0,3634,1,3,1,7,1,3,1,3,3,1,0,0,187,North America +2466,two bedrooms basement for rent,51291131,Lucy,Toronto,85,0,0,3061,1,2,2,0,0,4,"1,5",1,1,2,0,0,185,North America +2467,Modern Condo | Downtown Toronto,33931900,Ethan & Sara,Toronto,105,0,0,3268,1,3,2,"6,98",58,3,1,1,2,2,1,"0,67",233,North America +2468,Premium 1 BDR /Parking/ Subway/ North York,54422135,Seyedeh Afarin,Toronto,139,0,0,3032,1,3,29,6,5,2,1,2,1,69,1,"0,53",0,North America +2469,Premium 1 BR Suite (City CNTR/Subway Dir.Access),97777185,Nima,Toronto,130,0,0,2767,1,3,14,7,2,2,1,2,1,21,1,"0,62",0,North America +2470,Gardenview Room,210689721,Mete,Toronto,159,0,0,2081,1,2,3,"5,38",16,4,2,1,3,3,0,1,275,North America +2471,Lux. 1 BR next to Union Station/Scotiabank arena,226559119,Olivia,Toronto,172,0,0,1990,1,3,1,"6,72",154,2,1,1,1,1,0,0,326,North America +2472,"4 BDRM House at Downtown, free Parking with patio",120820256,YueQin,Toronto,386,1,0,2604,1,3,1,"6,65",125,10,2,4,5,2,1,1,193,North America +2473,Amazing Spot in Yorkville,225137954,Sara,Toronto,170,1,1,1999,1,3,2,"6,79",137,2,1,1,1,2,1,"0,89",297,North America +2474,Donmills&Sheppard Subway long term 2+2 Condo,226574539,Ping,Toronto,151,1,1,1990,1,3,4,"6,83",58,5,2,2,3,5,1,1,54,North America +2475,STYLISH LOFT 2 BED/ 2 BATH IN THE HEART OF TORONTO,21424963,Anthony,Toronto,125,0,0,3515,1,3,1,"6,67",3,5,2,2,2,3,1,"0,7",145,North America +2476,Fairview Mall& Don mills Subway longterm 2+2Condo,225456630,Sulian,Toronto,160,1,0,1997,1,3,1,"6,72",33,4,2,2,2,1,"0,88",1,188,North America +2477,Modern Airy Central Apartment with a Sunny Deck,3225688,Nedo,Toronto,89,1,1,4281,1,3,6,"6,69",39,2,1,0,1,6,1,"0,93",95,North America +2478,"Modern Bright Apartment, Lake and Parks",130463318,Ania,Toronto,100,0,0,2543,1,3,2,"6,83",12,2,1,2,2,2,0,0,305,North America +2479,An Oasis in the City,225466144,MarcIT,Toronto,49,0,0,1997,1,2,1,"6,75",4,2,"1,5",1,1,1,0,"0,67",1,North America +2480,Modern Stay,226411470,Neves & Sam,Toronto,74,0,0,1991,,3,1,"6,89",9,4,1,2,2,1,0,0,341,North America +2481,Stylish Modern Luxury Art Deco 2 Bedroom Apartment,1692513,Yin Ni,Toronto,208,0,0,4471,1,3,2,0,0,3,1,2,2,2,0,0,102,North America +2482,Jane St. and Church St. House,226909245,Marites,Toronto,50,1,0,1988,1,2,1,"6,76",289,1,1,1,1,1,"0,96","0,98",91,North America +2483,"One of a kind, Stylish, 12 Minuets Walk to Subway",141916451,June,Toronto,34,1,0,2475,1,2,1,"6,67",9,1,1,1,1,3,"0,9",1,307,North America +2484,Private Room in the heart of Danforth/Toronto,227026801,Arifur,Toronto,125,0,0,1987,1,2,1,7,1,1,1,1,1,1,0,0,0,North America +2485,Home by CN Tower & Lake Ontario,135901356,Hao,Toronto,369,0,0,2508,1,3,1,"6,79",231,4,2,2,2,1,1,"0,8",238,North America +2486,Great midtown basement appartment near Subway,187782980,Olga,Toronto,98,1,1,2189,1,3,2,"6,83",72,2,1,1,1,2,1,"0,89",213,North America +2487,Univertry/Master Suite for 3/3 single beds/ensuite,162894786,Sherry,Toronto,129,1,0,2328,1,2,4,"6,68",98,3,1,1,3,4,1,1,78,North America +2488,U of T/Back Studio suit with balcony/annex/DT,162894786,Sherry,Toronto,119,1,0,2328,1,2,4,"6,72",71,2,1,1,1,4,1,1,268,North America +2489,City Gem: Sleek 1BR with Panoramic Views & Parking,227124776,Sarah,Toronto,118,0,0,1986,1,3,1,"6,66",61,4,1,1,2,1,0,"0,75",255,North America +2490,Spacious 2-Storey townhouse Gem in Queen West,2610523,Eric,Toronto,800,1,1,4342,1,3,1,7,13,4,"1,5",2,2,1,1,"0,9",328,North America +2491,Loft in the heart of Queen West,52043756,Alejandro,Toronto,80,0,0,3053,1,3,1,0,0,2,1,1,1,1,"0,11",0,85,North America +2492,Corporate Stays | Studio 2 | Stylish 2BR,38459934,Corporate Stays,Toronto,418,1,1,3214,1,3,46,7,1,4,1,2,2,449,"0,97","0,88",277,North America +2493,7815 Victoria Main Floor Bungalow w/ New Appliances 7815,32044025,Toronto,Toronto,195,0,0,3292,1,3,15,"6,43",7,6,2,3,3,16,1,"0,71",0,North America +2494,"Single Bed, 5 min walk to subway, Wifi",227381647,Chee Keong,Toronto,55,1,0,1984,1,2,3,"6,6",94,1,1,1,1,3,1,"0,99",197,North America +2495,"Beautiful Room in Warm, Inviting House",1646497,David,Toronto,159,1,1,4481,1,2,2,"6,77",13,2,1,1,1,4,1,"0,9",274,North America +2496,1 Suit bedroom in the heart of Little Italy,203675975,Reyka,Toronto,140,0,0,2112,1,2,1,0,0,2,1,0,1,1,0,0,186,North America +2497,"宽敞舒适的单间,近地铁 private room close Don Mills subway",51291131,Lucy,Toronto,84,0,0,3061,1,2,2,7,4,2,1,1,1,2,0,0,185,North America +2498,7815Private Room in 2 bedroom basement bungalow7815,32044025,Toronto,Toronto,58,0,0,3292,1,2,15,7,2,1,1,1,1,16,1,"0,71",91,North America +2499,Modern and Spacious 2BR + 2BA Downtown Toronto,59644993,Jess,Toronto,350,1,1,2993,1,3,1,"6,87",23,4,2,2,2,1,1,1,276,North America +2500,Spacious private bedroom,197514788,Jenny,Toronto,75,1,0,2139,1,2,3,0,0,2,1,1,2,4,1,1,307,North America +2501,Scarborough 2-bdrm apmt-2 people only,167304332,Nur,Toronto,88,1,1,2301,1,3,1,"6,86",111,2,1,2,2,1,"0,86",1,288,North America +2502,"Cozy, Renovated 1 Bedroom Private Unit",8200456,Nancy,Toronto,75,1,1,3911,1,3,1,"6,73",26,2,1,1,1,1,1,1,143,North America +2503,Short walk to Woodbine Subway Station,4767435,Ekaterina,Toronto,70,1,1,4120,1,2,3,"6,8",41,1,"1,5",1,1,4,1,"0,97",207,North America +2504,Subani's Downtown Tower,228018576,Prem,Toronto,710,0,0,1981,,3,1,"6,17",6,8,2,3,3,1,0,0,185,North America +2505,Leslieville Loft w/ Free Parking,47943559,Cora,Toronto,187,1,1,3103,1,3,1,"6,5",18,2,"1,5",1,1,4,1,1,43,North America +2506,Library - Private room in downtown near subway,229604551,Stanislav,Toronto,81,1,0,1972,1,2,3,"6,64",131,3,1,1,1,3,1,1,314,North America +2507,Eglinton Ave. and Jane St. House,228135429,Rose,Toronto,45,0,0,1981,,2,2,7,6,1,2,4,2,2,0,0,1,North America +2508,"Newly built 2 bedroom, full washroom & Kitchen",228138120,Yokkumar,Toronto,129,1,0,1981,1,3,1,"6,6",57,4,1,2,2,1,1,"0,87",245,North America +2509,Superhost Self-Check-In Quiet Private Room #1,228311136,Kuinai,Toronto,62,1,1,1980,1,2,6,"6,81",208,2,1,1,1,6,1,"0,91",360,North America +2510,7815 Victoria 2 Bedrooms Basement Suite 7815,32044025,Toronto,Toronto,130,0,0,3292,1,3,15,"6,75",8,2,1,2,2,16,1,"0,71",91,North America +2511,"Cozy 2 Bedroom Suite, with parking, self check in",66504345,Adriana,Toronto,88,1,0,2944,1,3,1,"6,68",98,4,1,2,2,1,1,1,259,North America +2512,Park side house private bedroom/own bathroom,158845610,Jane,Toronto,65,1,1,2359,1,2,1,"6,6",5,1,1,1,1,1,1,1,278,North America +2513,Luxury and Spacious 1BR + Den - Financial District,228467834,Sofia,Toronto,243,1,1,1979,1,3,1,"6,78",210,5,1,1,1,1,1,"0,99",104,North America +2514,Beautiful bedroom with a private half-bathroom,4767435,Ekaterina,Toronto,71,1,1,4120,1,2,3,"6,68",63,1,"1,5",1,1,4,1,"0,97",210,North America +2515,Large & Bright 2BR+Den in Midtown w/ Free Parking,34077078,Bernard,Toronto,285,1,1,3265,1,3,1,"6,83",129,4,2,2,2,1,1,"0,89",180,North America +2516,Presidential Yorkville Suite by Instant Suites,170411850,Javed,Toronto,257,1,1,2285,1,3,1,"6,82",91,5,2,2,3,2,1,1,132,North America +2517,"Forest Hill ,Midtown Toronto ON",230269687,Aida,Toronto,100,0,0,1968,1,3,1,"6,35",31,2,"1,5",0,3,1,0,0,0,North America +2518,Beautiful Modern 1 Bedroom Suite Yonge/Lawrence,169102858,Yosef,Toronto,260,1,1,2292,1,3,1,"6,78",41,4,1,1,2,1,1,"0,83",269,North America +2519,Charming 2 Bedroom Apartment off Dundas/Ossington,58884313,Wesley,Toronto,145,0,0,2998,1,3,1,"6,78",36,5,1,2,3,1,0,0,275,North America +2520,Luxury Toronto Downtown Condo with Private Terrace,410552503,Dalip,Toronto,390,0,0,1034,,3,1,"6,55",135,5,2,2,3,1,0,0,365,North America +2521,.One queen bed room close to Sheppard Yonge subway,228782643,Wei,Toronto,33,0,0,1977,1,2,2,"5,9",10,2,1,1,1,2,"0,9","0,69",42,North America +2522,"Awesome Location, Funky Space",6540835,James,Toronto,119,0,0,3996,1,3,12,"6,81",190,2,1,1,1,12,1,"0,67",223,North America +2523,1st floor house apartment in safe central area,215027292,William,Toronto,100,1,0,2058,1,3,7,"6,66",93,4,1,2,2,7,1,"0,95",268,North America +2524,2nd Floor Private Bachelor Unit,82494471,Anthony Frank,Toronto,93,1,0,2854,1,3,1,"6,47",49,2,1,0,1,2,1,"0,84",348,North America +2525,Spectacular 2 BDR+ 2BTH/Free Parking/ North York,97777185,Nima,Toronto,300,0,0,2767,1,3,14,7,1,4,2,2,2,21,1,"0,62",139,North America +2526,"Spacious 2 Bed,2 Bath (City CNTR/ Subway/ Parking)",97777185,Nima,Toronto,199,0,0,2767,1,3,14,"6,43",7,4,2,2,2,21,1,"0,62",145,North America +2527,Cozy space in Trinity Bellwoods,144519,Magali,Toronto,132,0,0,5070,1,2,1,"6,58",12,2,1,1,1,1,1,"0,75",359,North America +2528,"Cozy One Bedroom, Toronto Downtown,Superb Location",44689932,Slobodan,Toronto,171,1,1,3146,1,3,1,"6,78",89,3,1,1,2,1,1,"0,97",357,North America +2529,Luxury 2 BDR Condo/City CNTR/Subway Dir.Access,97777185,Nima,Toronto,180,0,0,2767,1,3,14,"6,44",43,4,2,2,2,21,1,"0,62",142,North America +2530,HumberBay Park! Airport! Downtown Toronto! Clean!,225820853,Babs,Toronto,108,1,1,1995,1,3,1,"6,85",72,2,1,1,1,1,1,1,90,North America +2531,Premium 1 BR Suite (City CNTR/Subway Dir.Access),54422135,Seyedeh Afarin,Toronto,130,0,0,3032,1,3,29,"6,55",11,2,1,2,1,69,1,"0,53",128,North America +2532,Ultimate Yorkville Luxury,4085292,Sky Suites,Toronto,388,1,0,4193,1,3,2,6,3,5,2,2,2,2,1,1,0,North America +2533,"Downtown, bright, boutique condo",5900068,Dorothy,Toronto,250,1,1,4037,1,3,1,"6,8",84,5,2,2,2,1,1,"0,96",318,North America +2534,Magnificent Views,229231242,Milena,Toronto,549,0,0,1974,1,3,1,7,3,4,2,1,0,2,1,"0,5",276,North America +2535,Proof - Executive Luxury Condo King West,5988339,Toronto Luxury Suites,Toronto,376,0,0,4031,1,3,20,0,0,4,2,2,2,20,1,"0,6",16,North America +2536,...One queen bed room close Sheppard Yonge subway,228782643,Wei,Toronto,35,0,0,1977,1,2,2,"6,58",12,2,1,1,1,2,"0,9","0,69",92,North America +2537,"Cozy Private Room, short walk to Woodbine Subway",4767435,Ekaterina,Toronto,65,1,0,4120,1,2,3,"6,71",45,1,"1,5",1,1,4,1,"0,97",213,North America +2538,"Downtown Toronto, CN tower and The Well Mall",97433291,Yousef,Toronto,99,1,1,2770,1,3,1,"6,86",109,4,1,1,2,1,1,1,31,North America +2539,Quaint 1 bdrm+1 bath in upscale Yorkville Toronto,231506008,Ivana,Toronto,85,1,0,1960,1,3,1,"6,6",48,2,1,1,1,1,1,"0,9",242,North America +2540,"New、Clean and comfortable room 01, good location!",231531116,Vella,Toronto,50,0,0,1960,1,2,6,"6,96",23,1,2,1,1,6,"0,9","0,79",334,North America +2541,Downtown Corner-Unit Condo with Stunning Views,15095777,Daniel,Toronto,293,1,1,3650,1,3,1,"6,98",54,4,2,2,2,1,1,"0,98",124,North America +2542,Large Urban Scandi-Style Home in the Heart Toronto,11072610,Paige,Toronto,522,0,0,3768,1,3,1,7,7,6,"3,5",3,3,1,"0,75","0,88",255,North America +2543,Entire Studio with kitchen on Yonge and Dundas,41043270,Adam (And Jane),Toronto,140,1,1,3187,1,3,2,"6,86",14,2,1,1,1,6,1,1,332,North America +2544,Superhost King Self-Check-In Quiet Private Room #2,228311136,Kuinai,Toronto,63,1,1,1980,1,2,6,"6,78",272,2,1,1,1,6,1,"0,91",357,North America +2545,Minimal place in downtown toronto.,202071963,Neal,Toronto,59,0,0,2119,1,2,5,"6,61",88,2,1,1,1,5,1,"0,67",281,North America +2546,2 Bed Apartment Parking,45941554,Nataliya,Toronto,189,1,0,3130,1,3,1,"6,65",120,6,1,2,2,3,1,1,185,North America +2547,Cozy Retro Retreat in Trendy Leslieville,45407009,Cynthia,Toronto,150,1,1,3137,1,2,1,"6,98",97,2,1,1,1,1,1,"0,93",2,North America +2548,"New、Clean and comfortable room 02, good location!",231531116,Vella,Toronto,51,0,0,1960,1,2,6,"6,89",19,1,2,1,1,6,"0,9","0,79",84,North America +2549,"New、Clean and comfortable room 03, good location!",231531116,Vella,Toronto,53,0,0,1960,1,2,6,"6,71",14,1,2,1,1,6,"0,9","0,79",237,North America +2550,West Queen West Upper 1 Bedroom Flat w roof deck,4905778,Christina,Toronto,110,0,0,4109,1,3,2,"6,83",12,2,1,1,1,3,1,"0,75",309,North America +2551,Finch Subway 2Bed 2Bath Roomy Condo w/Free Parking,153276698,Yu,Toronto,260,1,1,2401,1,3,2,"6,72",58,4,2,2,3,3,1,"0,97",258,North America +2552,"Stylish, Cozy 1br Home Away From Home",1723300,Steve,Toronto,128,1,0,4466,1,3,1,"6,2",5,2,1,1,1,1,1,1,162,North America +2553,King West Triplex Upper PVT APT 1 BDRM w Parking,37409645,Navid,Toronto,151,0,0,3225,1,3,3,"6,74",27,3,1,1,1,3,1,"0,66",330,North America +2554,★Hip urban hideaway★Walk everywhere★Authentic TO★,21943006,Gem & John,Toronto,150,1,1,3501,1,3,1,"6,91",110,4,1,0,2,1,1,1,194,North America +2555,"Million Dollar Views, Free Parking & Swimming Pool",53214957,Rena,Toronto,294,1,1,3041,1,3,1,"6,88",83,4,1,2,0,1,1,1,305,North America +2556,Centrally located 2-BR Condo in DT Toronto,785826,Sky View,Toronto,129,1,1,4683,1,3,51,6,1,4,2,2,3,56,1,"0,93",191,North America +2557,Two story home & garden in vibrant neighbourhood,43108777,Jessica,Toronto,169,1,0,3165,1,3,1,"6,67",126,6,1,3,3,2,1,1,347,North America +2558,"Upper Beach, Renovated Stylish 1BR Apartment",21040346,Iwona,Toronto,150,1,1,3524,1,3,1,"6,93",82,4,1,1,2,2,1,1,5,North America +2559,Happy home 1,146386026,Mohamed,Toronto,50,0,0,2450,1,2,3,7,8,1,"1,5",1,1,3,0,0,0,North America +2560,MasterBedroom en-suite bathroom CN tower Lake view,232595103,Elham,Toronto,199,1,0,1953,1,2,5,"6,75",138,2,1,1,1,5,1,1,278,North America +2561,Happy home 2,146386026,Mohamed,Toronto,70,0,0,2450,1,2,3,"6,8",10,2,1,1,1,3,0,0,276,North America +2562,Charming 2-BR Condo in DT Toronto,785826,Sky View,Toronto,138,1,1,4683,1,3,51,7,2,4,2,2,2,56,1,"0,93",231,North America +2563,TreeTops! Sunny Home for 10-16. HighParkHomes .ca,225294394,Daphne,Toronto,249,1,1,1998,1,3,1,"6,8",107,10,2,3,6,2,1,"0,99",323,North America +2564,"New、clean and comfortable Suit, good location!",231531116,Vella,Toronto,67,0,0,1960,1,2,6,"6,75",4,2,1,1,1,6,"0,9","0,79",85,North America +2565,"Bright, Cozy, Modern Basement Studio",2165178,Soo Ha,Toronto,85,0,0,4397,1,3,6,"6,72",32,2,1,0,2,6,1,"0,74",190,North America +2566,Rooms in a modern house near downtown Toronto,233237200,Pas,Toronto,55,1,1,1950,1,2,1,"6,86",35,2,4,4,4,1,1,1,298,North America +2567,7815Victoria Executive 1 from 2 bedroom Basement7815,32044025,Toronto,Toronto,49,0,0,3292,1,2,15,7,3,1,1,1,2,16,1,"0,71",0,North America +2568,New Large Bright Close to Subway Beautiful Suite,177942493,Jessica,Toronto,214,1,0,2243,1,3,1,"6,73",159,6,1,2,4,1,1,1,306,North America +2569,Quiet Stylish Location with Balcony in the Heart of Downtown,7127968,Sal,Toronto,100,1,1,3962,1,3,2,"6,86",87,2,1,0,1,2,1,1,311,North America +2570,"Cozy 2 Bdrm Private apartment in Riverside, TO.",66502522,Fred,Toronto,150,1,0,2944,1,3,2,"6,76",111,4,1,2,2,2,1,1,349,North America +2571,High Park room in appt overlooking the park.,5596272,Winifred,Toronto,74,1,1,4056,1,2,1,"6,91",57,1,1,1,1,1,1,1,318,North America +2572,"Clean, white, bright and close to TTC subway",234576740,Dan,Toronto,52,1,0,1943,1,3,3,"6,74",43,2,1,1,1,3,1,"0,93",309,North America +2573,By the lake,99061985,Stefania,Toronto,110,1,1,2760,1,3,2,7,60,2,1,1,2,2,1,1,84,North America +2574,Homey beautiful Private apartment.,233511796,Susan,Toronto,100,0,0,1948,1,3,1,"6,33",3,3,1,1,1,1,0,"0,2",230,North America +2575,Private room with shared washroom.,36382621,Ping,Toronto,50,0,0,3237,1,2,1,"6,39",18,1,1,1,1,1,1,"0,75",99,North America +2576,Modern 2-Bedroom Retreat in Downtown Toronto,26842341,Imran,Toronto,95,0,0,3381,1,3,2,"6,65",106,5,1,2,2,2,"0,9","0,7",203,North America +2577,Cozy single room great for single travellers,48821560,Julie,Toronto,54,0,0,3093,1,2,3,"6,73",134,1,1,1,1,3,1,"0,25",211,North America +2578,"modern 2BD, Cozy basement",233527069,Roya,Toronto,110,0,0,1948,1,3,1,"6,86",215,6,1,2,2,1,1,"0,67",277,North America +2579,Luxurious 1B in downtown Toronto wth CN Tower view,130571947,Chrismos,Toronto,145,0,0,2542,1,3,1,0,0,2,1,1,1,1,0,0,186,North America +2580,Entire condo w CN tower &LAKE vu FREE PARKING,232595103,Elham,Toronto,699,1,1,1953,1,3,5,"6,5",2,6,1,3,3,5,1,1,278,North America +2581,Luxurious Open Concept Gem In The Heart of City,196132625,Jon,Toronto,175,0,0,2145,1,3,1,0,0,3,1,1,1,1,0,0,1,North America +2582,"Cozy, bright and comfortable 1-bedroom home",24238294,Evelyn,Toronto,179,0,0,3443,,3,1,7,1,2,1,1,1,2,0,0,277,North America +2583,Dream Suite in Harbourfront core Amazing Lake view,133467024,Jie,Toronto,300,0,0,2523,1,3,1,"6,75",110,4,1,2,2,1,"0,8","0,94",179,North America +2584,Private Apartment Close to Airport Toronto Pearson,228566962,Taras,Toronto,130,0,0,1978,1,3,1,"6,9",40,2,1,2,2,1,0,0,205,North America +2585,Luxurious suite in midtownToronto!,202419502,Janice A,Toronto,129,1,1,2117,1,2,1,"6,98",139,2,1,1,1,1,1,"0,9",169,North America +2586,Private basement apartment in Toronto,234998999,Renata,Toronto,450,0,0,1941,1,3,1,"6,9",31,6,1,2,5,1,0,0,192,North America +2587,Single Room - Riverdale Temenos,119352112,Karen,Toronto,55,0,0,2614,1,2,4,"6,94",52,2,1,1,2,4,1,"0,63",0,North America +2588,Luxury 1 Bedroom Suite - Downtown Core,22773087,Calvin,Toronto,99,1,1,3481,1,3,7,"6,64",61,2,1,1,1,12,1,"0,95",97,North America +2589,Cute 1BR+Den + Walk2 CNTower|Rogers (Fit 5 pax),237940117,Sugito,Toronto,193,1,1,1928,1,3,1,"6,92",77,5,1,1,3,23,1,1,190,North America +2590,Clean and Bright Renovated Basement,238151483,Khalid,Toronto,90,0,0,1927,1,3,1,"6,63",64,3,1,0,2,1,0,1,31,North America +2591,Leslieville Courtyard - 1bed + patio (low ceiling),238306558,Sameena,Toronto,95,1,0,1926,1,3,1,"6,54",57,2,1,1,1,1,1,"0,88",324,North America +2592,Bright 2 Bedroom + Parking close to 401,1684087,Pouneh,Toronto,195,1,1,4473,1,3,22,"6,67",12,4,2,2,2,33,1,"0,98",31,North America +2593,Casa D&D - Ground Floor Lakeside Luxury,14858918,Desirée,Toronto,165,1,1,3656,1,3,1,"6,96",85,2,1,1,1,1,1,"0,94",193,North America +2594,Lake Side Living,235548164,Dean,Toronto,343,0,0,1939,,3,1,7,7,6,2,3,3,1,0,0,7,North America +2595,78Spacious Room in Shared House by Finch Subway 78,11418370,Claude,Toronto,50,1,1,3756,1,2,13,7,19,1,"1,5",1,1,13,1,1,31,North America +2596,Trendy Condo in Toronto near airport and downtown!,7811697,Brenna,Toronto,250,1,1,3317,1,3,1,"6,97",29,4,1,1,2,1,1,"0,96",31,North America +2597,Bright cozy large windows room on Roncesvalles Ave,158892553,Kel,Toronto,89,0,0,2359,1,2,4,"6,57",7,1,1,1,1,4,0,0,282,North America +2598,King West Penthouse w/ Unobstructed CN Tower View,235663293,Mi-H,Toronto,200,1,0,1938,1,3,2,"6,33",18,6,2,3,3,2,1,"0,93",231,North America +2599,Cosy private room in house,39619269,Aline,Toronto,92,1,1,3202,1,2,1,"6,84",45,1,"1,5",1,1,1,1,"0,97",147,North America +2600,"1 min away from CN Tower, UnionStation",235652594,Alice,Toronto,84,0,0,1938,1,2,2,"6,73",44,1,1,1,1,2,1,"0,67",312,North America +2601,Bright Large Bedroom one block from Queen West,34365954,Kim,Toronto,133,0,0,3262,1,2,2,"6,8",66,2,2,1,1,2,1,"0,76",301,North America +2602,Gorgeous midtown 1bdrm+den condo (Yonge-Eglinton),235882738,Nick,Toronto,230,0,0,1937,1,3,1,"6,77",30,4,1,1,1,1,0,1,1,North America +2603,Charming Downtown Condo/Walk2CN/Rogers/FreeParking,238806220,Nayera,Toronto,207,1,0,1924,1,3,2,"6,72",159,4,1,2,3,2,1,1,314,North America +2604,Lakeside Living,83881290,Daniel,Toronto,150,1,1,2847,1,3,1,7,9,2,2,2,2,1,1,1,330,North America +2605,Fully Furnished Toronto Home for Lease,56404318,Ruchika,Toronto,150,0,0,3017,1,3,1,7,2,6,2,3,3,1,1,0,365,North America +2606,2 Bedroom basement apartment Brand NEW,41565151,Nikola,Toronto,145,1,1,3182,1,3,1,"6,96",139,5,1,2,5,1,1,1,23,North America +2607,Gorgeous 2 BD w Stunning LAKE View + FREE Parking!,238911240,Melissa,Toronto,515,0,0,1923,1,3,6,"6,6",5,5,2,2,2,7,0,1,275,North America +2608,Gorgeous 2 BD w Stunning LAKE View + FREE Parking!,38677739,John,Toronto,515,1,0,3212,1,3,6,"6,57",7,5,2,2,2,7,1,1,185,North America +2609,Bloordale walk up 2 bed near Subway! Free parking!,32609441,Michel,Toronto,96,1,1,3285,1,3,2,"6,78",105,4,1,2,2,4,1,1,210,North America +2610,Stylish High-rise with CN tower & Lake view,232595103,Elham,Toronto,285,1,0,1953,1,2,5,"6,43",7,4,1,1,2,5,1,1,278,North America +2611,Room near Dundas Square and Subway in Family Home,44215129,Jia,Toronto,400,0,0,3152,1,2,1,"6,14",22,2,1,1,1,1,0,0,185,North America +2612,"Modern Suite, King Bed, Full Kitchen, w/ Parking",2793069,Sichao,Toronto,149,1,1,4322,1,3,1,"6,88",123,4,1,1,2,1,1,"0,94",104,North America +2613,"Little Italy Cozy Corner in Toronto, Canada",88372894,Lorena,Toronto,186,1,1,2825,1,3,1,"6,81",43,2,1,1,1,1,1,"0,87",339,North America +2614,Castle View 61 Two Bedroom,20760617,Robin,Toronto,175,0,0,3531,1,3,2,6,1,4,1,2,2,2,1,"0,2",75,North America +2615,Luxury Suite steps to the CN Tower Free Parking,239411577,Camron,Toronto,229,0,0,1921,1,3,1,"6,72",29,3,1,1,2,1,"0,57","0,64",274,North America +2616,Architect Designed Cozy City Retreat,146673647,Brian,Toronto,148,1,1,2448,1,3,2,"6,89",99,2,1,1,1,2,1,"0,95",190,North America +2617,"Gorgeous and private 4 bed, 2 bath west end home",196846503,Brent,Toronto,430,0,0,2142,1,3,1,7,18,8,2,4,4,1,"0,75","0,67",176,North America +2618,Cozy Sunroom and Kitchen,189669755,Denise,Toronto,50,0,0,2178,1,2,2,"6,89",9,1,1,1,1,2,1,"0,75",236,North America +2619,Greenhouse,211671420,Leah,Toronto,350,0,0,2076,1,3,1,"6,23",13,4,1,1,1,1,0,0,276,North America +2620,Gorgeous 2 BD w Stunning LAKE View + FREE Parking!,115442293,Tara,Toronto,515,1,0,2639,1,3,5,"6,88",8,5,2,2,2,6,1,1,275,North America +2621,Beautiful Private Terrace On Willowdale [A2],58113832,Sun,Toronto,45,1,0,3004,1,2,7,"6,42",26,2,1,1,1,7,1,"0,81",185,North America +2622,Modern Scandi-style Retreat in Dufferin Grove,42611743,Sandy,Toronto,125,0,0,3171,1,3,2,"6,83",92,4,1,1,2,2,1,"0,67",105,North America +2623,3BR - Live the Lifestyle You love In Toronto!,35921234,Jason,Toronto,155,1,1,3243,1,3,1,"6,9",40,5,"1,5",3,3,1,1,1,282,North America +2624,Cool & Comfortable Step Down Apartment,506119636,Ori,Toronto,85,0,0,409,,3,3,"6,73",60,3,1,1,2,3,0,0,63,North America +2625,Cozy Downtown East 2 Storey Concrete Loft,36876811,Lauren,Toronto,239,0,0,3231,1,3,1,"6,89",35,2,1,1,1,1,1,0,186,North America +2626,50+Floor M $ Toronto Skyline61Lake Ontario Views,92540259,Xueqing,Toronto,130,1,1,2802,1,3,1,"6,85",121,3,1,1,2,3,1,1,292,North America +2627,Yorkville 29th Floor Celebrity Suite GREAT VIEW,16645321,Pierre-James,Toronto,110,1,1,3612,1,3,2,"6,85",68,3,1,1,2,2,1,"0,89",238,North America +2628,"Annex - large 2BR flat, parking available",7788565,Konstantinos,Toronto,159,1,0,3929,1,3,2,"6,8",108,4,1,2,2,2,1,"0,91",328,North America +2629,The Luxury Escape Unpack Relax Enjoy | Sleeps 12,217899603,Irina,Toronto,793,1,1,2041,1,3,2,"6,76",58,12,4,6,11,5,1,1,93,North America +2630,"Big-Room Near Airport, Private Clean quiet n safe.",44523967,Romano,Toronto,105,1,0,3148,1,2,1,"6,74",179,5,1,1,4,2,1,"0,97",277,North America +2631,Queen size bed w/ private bath,239078868,Daniela,Toronto,89,0,0,1922,1,2,5,"6,62",107,2,1,1,1,5,0,0,0,North America +2632,Cozy 1-BR Condo in DT Toronto,785826,Sky View,Toronto,107,1,1,4683,1,3,51,"6,5",2,2,1,1,1,56,1,"0,93",39,North America +2633,"Walkable to subway&near airport, free parking",237418707,Jiayin,Toronto,52,1,1,1930,1,2,8,"6,89",224,1,1,1,1,8,1,"0,97",290,North America +2634,Single bunk bed room - Riverdale Temenos,119352112,Karen,Toronto,55,0,0,2614,1,2,4,"6,92",39,2,1,1,2,4,1,"0,63",0,North America +2635,Sparkling clean home,235546167,Elouise,Toronto,48,0,0,1939,1,2,2,7,14,1,1,1,2,2,1,"0,57",0,North America +2636,Luxury Penthouse Private Room - Female Only,141163018,Salva,Toronto,100,0,0,2479,1,2,1,7,4,1,1,1,1,1,0,0,1,North America +2637,Elegant 2 BD Waterfront Condo Downtown Toronto,238911240,Melissa,Toronto,528,0,0,1923,1,3,6,"6,5",8,6,2,2,2,7,0,1,95,North America +2638,Corner Penthouse with Skyline and Lake View,238911240,Melissa,Toronto,1895,0,0,1923,1,3,6,7,35,8,2,2,2,7,0,1,185,North America +2639,The coziest room,239078868,Daniela,Toronto,40,0,0,1922,1,2,5,"6,63",51,1,1,1,1,5,0,0,318,North America +2640,Bay window queen size bed,239078868,Daniela,Toronto,65,0,0,1922,1,2,5,"6,72",105,2,1,1,1,5,0,0,64,North America +2641,"Blue, Safe & Cozy near Sunnybrook & Glendon",50019105,Fariba,Toronto,58,1,0,3078,1,2,9,"6,75",40,1,1,1,1,9,1,"0,86",6,North America +2642,Beautiful Upper Beaches Area Bungalow With Parking,242363949,Jonathan,Toronto,170,1,0,1907,1,3,1,"6,82",111,2,1,1,1,1,1,"0,95",165,North America +2643,PrivateLivingRoomSpace in the heart of DT Toronto.,202071963,Neal,Toronto,41,0,0,2119,1,1,5,"6,36",92,2,1,0,1,5,1,"0,67",298,North America +2644,"Big, BRiGHT, Delux room 30 mins to DownTown, HD TV",71257392,Dee &,Toronto,55,1,1,2913,1,2,5,"6,85",13,2,1,1,1,5,1,1,139,North America +2645,Modern Residence with Parking @ Heart of Downtown,1424576,Mahe,Toronto,200,0,0,4546,1,3,1,"6,77",62,4,2,2,2,1,"0,9","0,9",291,North America +2646,"Cozy, bright and relaxing room in Toronto",51846997,Xueyong,Toronto,55,1,0,3055,1,2,2,"6,57",97,1,1,1,1,2,1,"0,98",237,North America +2647,Chic & Modern King West 1 Bed + Sofa Bed Condo,125217722,Gurmeet,Toronto,170,1,1,2578,1,3,1,"6,87",107,4,1,1,2,1,1,1,224,North America +2648,Unwind in a Backyard Oasis - University of Toronto,240599114,Manuel,Toronto,436,1,0,1915,1,3,4,"6,55",104,10,3,5,5,4,1,1,308,North America +2649,You're in a Beautiful Flavorful Part of the City.,2607156,Craig,Toronto,214,0,0,4342,1,3,1,"6,68",113,5,1,2,2,1,0,"0,93",185,North America +2650,Walk to Sports Venues From a Chic Condo Next to the CN Tower,242949719,Mohd,Toronto,121,0,0,1904,1,3,1,"6,83",48,4,1,1,2,1,0,1,237,North America +2651,No Cleaning Fee - Centrally Located Westside Apt,49306019,Nathan,Toronto,117,0,0,3087,1,2,1,"6,5",42,2,1,1,1,1,0,1,185,North America +2652,Family Friendly Home,2674395,Christine,Toronto,550,0,0,4335,1,3,2,0,0,4,2,3,3,2,1,"0,75",51,North America +2653,"Charming 1 Bedroom Condo, Fashion District",1684087,Pouneh,Toronto,137,1,0,4473,1,3,22,"6,39",18,2,1,1,1,33,1,"0,98",0,North America +2654,78 Huge Room in Shared House by Finch Subway 78,11418370,Claude,Toronto,40,1,1,3756,1,2,13,7,15,1,"1,5",1,1,13,1,1,9,North America +2655,78 Basic Room in Shared House by Finch Subway 78,11418370,Claude,Toronto,50,1,1,3756,1,2,13,7,25,1,"1,5",1,1,13,1,1,24,North America +2656,Christie House Toronto,243144460,Robin,Toronto,877,1,1,1903,1,3,2,"6,25",8,8,2,4,6,2,"0,93","0,98",192,North America +2657,Gorgeous Annex 2 bdr House,3388423,Daniel,Toronto,262,0,0,4265,1,3,1,7,12,2,1,2,2,1,"0,9","0,22",338,North America +2658,"Toronto Modern Deluxe Condo fit 4,多倫多北约克市豪华公寓,可住4人",123815673,Edmond,Toronto,129,1,1,2587,1,3,4,"6,87",39,4,2,2,2,4,1,1,243,North America +2659,3 Bedroom Bungalow near All Amenities-West Toronto,243174136,Irene,Toronto,169,0,0,1903,1,3,1,"6,92",49,5,1,3,3,1,0,0,187,North America +2660,A private bedroom in a quiet neighbourhood!,82398690,David,Toronto,50,1,0,2855,1,2,1,"6,72",44,1,1,1,1,1,1,1,2,North America +2661,Downtown,240647362,Gail,Toronto,192,1,0,1915,1,3,3,"6,41",77,1,1,0,1,3,1,"0,86",275,North America +2662,Cozy 1BED in Bloor West near Junction Triangle,240167414,Sally,Toronto,500,0,0,1917,1,3,1,"6,25",16,2,1,1,1,1,0,0,0,North America +2663,Fabulous Junction Gem! Not to be missed!,247085058,Zorica,Toronto,206,0,0,1884,,2,1,"6,71",168,4,1,2,2,2,0,0,275,North America +2664,Garden Suite * fibre internet * monthly discount *,2343887,Liora,Toronto,84,0,0,4374,1,3,2,"6,73",26,2,1,1,1,2,1,"0,33",117,North America +2665,Cozy Studio in Little Portugal,59605643,Luisa,Toronto,90,0,0,2993,1,3,1,"6,91",160,2,1,0,0,2,0,"0,86",231,North America +2666,Private Room with Bathroom,37706315,Michael,Toronto,99,0,0,3222,1,2,1,7,4,1,"1,5",1,1,1,0,"0,58",276,North America +2667,Happy home 3,146386026,Mohamed,Toronto,60,0,0,2450,1,2,3,"6,83",24,2,1,1,1,3,0,0,1,North America +2668,New Annex Flat w patio - parking available,7788565,Konstantinos,Toronto,118,1,0,3929,1,3,2,"6,79",63,5,1,2,2,2,1,"0,91",320,North America +2669,"Artful, Modern Apt in TO's Best Neighbourhood",2056333,Brandy,Toronto,186,0,0,4412,1,3,1,7,4,2,1,1,1,1,1,"0,62",354,North America +2670,10mins from downtown - quiet street and great yard,116865581,Colin,Toronto,300,0,0,2630,1,3,1,0,0,8,"2,5",3,3,1,0,0,278,North America +2671,Escape - Luxury Executive Condo Yorkville,5988339,Toronto Luxury Suites,Toronto,216,0,0,4031,1,3,20,0,0,2,1,1,1,20,1,"0,6",54,North America +2672,Luxurious new home in the Kingsway (West Toronto),16277522,Michael,Toronto,298,1,1,3621,1,3,1,"6,79",48,10,"2,5",4,8,1,1,1,141,North America +2673,"Chic Private Guesthouse, Free Parking",67258453,Soheyl Sam,Toronto,176,0,0,2939,1,3,1,"6,86",7,2,1,1,1,1,1,"0,69",176,North America +2674,Corner Unit in Liberty Village (Parking + Balcony),78927622,Adam,Toronto,298,1,1,2872,1,3,1,"6,9",40,3,1,1,1,1,1,"0,86",246,North America +2675,Sunny Luxury Condo With the View,33365243,Sam,Toronto,167,1,1,3275,1,3,1,7,5,4,"1,5",2,0,1,1,1,64,North America +2676,Stunning 3 storey heritage townhouse for rent,31383165,Crystal,Toronto,160,0,0,3302,,2,2,0,0,6,1,3,3,2,1,0,305,North America +2677,(2F)cozy room for vacation,247236110,Ying,Toronto,50,0,0,1883,1,2,6,"6,86",14,2,"1,5",1,1,6,"0,81","0,96",300,North America +2678,"Queen Size Bed, 5 min walk to subway, Wi-Fi",227381647,Chee Keong,Toronto,69,1,0,1984,1,2,3,"6,56",88,2,1,1,1,3,1,"0,99",215,North America +2679,Incredible location 2bedroom/2full baths downtown,33237911,Aidin,Toronto,98,1,0,3277,1,3,2,"6,69",32,6,2,2,2,6,1,"0,95",57,North America +2680,"2 Rooms, Queen + Single bed, 5 min walk to subway",227381647,Chee Keong,Toronto,148,1,0,1984,1,2,3,"6,47",15,3,1,2,2,3,1,"0,99",220,North America +2681,Get Bird's Eye View from Polished Penthouse,247318064,Mario,Toronto,619,1,0,1883,1,3,6,"6,69",89,5,2,2,2,7,1,1,185,North America +2682,Trendy Townhouse Downtown Toronto,6275574,Shawna,Toronto,72,0,0,4012,1,2,2,"6,85",13,1,1,1,0,2,1,"0,75",247,North America +2683,Studio 29 Little Portugal,196466667,Edwin,Toronto,71,1,1,2144,1,3,1,"6,92",132,2,1,0,1,2,1,1,122,North America +2684,An Oasis in the Heart of Little Italy,5167476,Naomi,Toronto,150,1,1,4088,1,2,3,"6,67",42,2,1,1,1,3,1,"0,96",272,North America +2685,toronto welcomehouse 103room&private washroom,164815285,James,Toronto,70,0,0,2315,,2,10,0,0,2,1,1,2,10,0,0,237,North America +2686,Gorgeous Toronto Annex Gem,230277147,John,Toronto,130,1,1,1967,1,3,3,"6,83",29,2,1,1,1,3,1,1,223,North America +2687,Bird's Eye View Polished Penthouse Free Parking!,238911240,Melissa,Toronto,515,0,0,1923,1,3,6,"6,8",49,5,2,2,2,7,0,1,95,North America +2688,Downtown _,240647362,Gail,Toronto,192,1,0,1915,1,3,3,"6,63",57,1,1,0,2,3,1,"0,86",275,North America +2689,Bird's Eye View Polished Penthouse Free Parking!,38677739,John,Toronto,515,1,0,3212,1,3,6,"6,56",9,5,2,2,2,7,1,1,95,North America +2690,Private modern Forest Hill Suite,24375483,David,Toronto,199,1,0,3439,1,3,1,"6,54",188,4,1,2,2,1,1,"0,88",198,North America +2691,K- POP 1,143477502,Steve,Toronto,60,0,0,2466,1,2,2,"6,9",10,1,"1,5",1,1,2,"0,5",1,277,North America +2692,Private room with shared bathroom(on second floor),8569918,Sharon,Toronto,96,0,0,3895,1,2,35,7,6,2,1,1,1,35,"0,87","0,82",0,North America +2693,"Queen West Downtown | 4 Bedroom, 3 Bath, Free Park",212832355,Allan,Toronto,1057,1,1,2070,1,3,3,"6,81",182,12,3,4,5,7,1,"0,94",39,North America +2694,Beautiful Double Room at York U,92834120,Rukmini,Toronto,65,0,0,2800,1,2,7,"6,94",32,2,1,1,1,7,0,0,365,North America +2695,Fantasy Getaway | Newly Renovation | Free Parking,138551994,Athena,Toronto,120,1,0,2493,1,2,2,"6,63",46,4,1,1,2,2,1,1,305,North America +2696,"Beautiful & Modern, 1 Bdr Condo- 5 min to CN Tower",38885719,Tee,Toronto,125,0,0,3209,1,3,3,"6,78",165,2,1,1,1,3,1,"0,73",21,North America +2697,Condo in T.O,69834500,Ahelan,Toronto,63,0,0,2922,1,2,3,"6,8",44,1,1,1,1,4,"0,96","0,11",79,North America +2698,Wonderland Getaway | Newly Reno | Free Parking,138551994,Athena,Toronto,55,1,0,2493,1,2,2,"6,54",28,2,1,1,1,2,1,1,292,North America +2699,Cozy Specious Lower Level Private Apartment,209965875,KM Mahmud,Toronto,99,0,0,2085,1,2,1,5,2,4,1,2,0,1,0,"0,5",185,North America +2700,2BR - 2WR Luxury Suite Downtown TOR - Free Parking,54267676,Fady,Toronto,290,1,1,3033,1,3,1,"6,79",84,4,2,2,2,1,1,"0,98",208,North America +2701,"Bright, Beautiful Room at York U",92834120,Rukmini,Toronto,70,0,0,2800,1,2,7,"6,95",37,2,1,1,1,7,0,0,365,North America +2702,Extravagant High-Rise Condo in Downtown Toronto!,206432928,Yizhe,Toronto,190,1,1,2101,1,3,1,"6,77",65,3,1,1,1,1,1,1,226,North America +2703,"Cozy, Elegant Room at York U",92834120,Rukmini,Toronto,41,0,0,2800,1,2,7,7,31,1,1,1,1,7,0,0,365,North America +2704,Elegant Room at York U,92834120,Rukmini,Toronto,52,0,0,2800,1,2,7,"6,86",44,2,1,1,1,7,0,0,365,North America +2705,Cozy basement Room + private Bathroom | Free Wi-Fi,33048174,Krishna,Toronto,60,1,1,3279,1,2,1,"6,81",21,1,1,1,1,1,1,1,1,North America +2706,"Cozy, Single Room at York U",92834120,Rukmini,Toronto,56,0,0,2800,1,2,7,"6,87",30,1,1,1,1,7,0,0,365,North America +2707,Private bedroom with kitchen and amazing views,160007255,Xiujuan,Toronto,100,1,0,2350,1,2,2,"6,78",308,3,1,1,2,2,1,"0,99",312,North America +2708,Spacious Loft on a Quiet Street - Downtown Toronto,7858163,Konstantinos,Toronto,485,1,1,3927,1,3,3,6,2,4,1,2,2,34,1,1,294,North America +2709,Cozy cottage in the City - Suite 1,70630662,Daniela Liliana,Toronto,80,1,1,2917,1,2,3,"6,72",29,2,1,1,1,3,1,"0,95",189,North America +2710,Bright apartment minutes to subway,245357158,Dana,Toronto,80,0,0,1892,1,3,1,"6,43",7,3,1,1,0,2,"0,7","0,72",287,North America +2711,Sunset Villa,226577396,Jacqueline,Toronto,100,0,0,1990,,2,2,7,1,1,1,1,1,2,0,0,276,North America +2712,aluga se quartos Toronto North york,245652041,Antonio,Toronto,95,0,0,1891,1,2,1,7,1,2,1,1,2,1,0,0,0,North America +2713,33 1/2 - best location in downtown Toronto!,31340825,Lynne,Toronto,115,1,1,3303,1,3,1,"6,89",35,2,1,1,2,1,1,1,166,North America +2714,LTR- Master R102,32563638,Wei,Toronto,63,1,0,3285,1,2,6,"6,33",12,2,1,1,1,6,1,1,37,North America +2715,Make Yourself at Home in the City,85473145,Sharon,Toronto,529,1,0,2839,1,3,5,0,0,8,2,4,4,6,1,1,282,North America +2716,growing oasis in the east,106772476,Alix,Toronto,44,0,0,2699,1,2,4,"6,67",6,1,1,2,2,5,1,"0,44",188,North America +2717,Comfy Apartment Steps to the Beach,33860373,Joseph,Toronto,100,1,1,3269,1,3,2,"6,87",118,3,1,1,1,4,1,"0,99",156,North America +2718,Central Davenport / Hillcrest,1244099,Ottilie,Toronto,133,1,1,4594,1,2,2,"6,88",69,3,1,1,2,3,1,"0,94",184,North America +2719,Spacious triple room,92834120,Rukmini,Toronto,90,0,0,2800,1,2,7,"6,67",6,3,1,1,2,7,0,0,365,North America +2720,Private 2 beds suite Toronto,146328351,Thi,Toronto,173,1,0,2450,1,2,5,"6,76",170,6,1,2,3,5,1,1,148,North America +2721,AMAZING DOWNTOWN TORONTO CONDO BREATHTAKING VIEWS,17738768,Moun,Toronto,110,1,1,3587,1,3,1,"6,68",161,3,1,1,3,1,1,1,153,North America +2722,Modern 2 Bd condo near CN tower/MTCC/Rogers Centre,119212043,Jennifer,Toronto,248,1,1,2614,1,3,1,"6,92",99,4,1,1,2,1,1,1,232,North America +2723,"1 min away from CN Tower, UnionStation",235652594,Alice,Toronto,85,0,0,1938,1,2,2,7,5,1,1,1,1,2,1,"0,67",341,North America +2724,Unit 4 - Queen St East Studio Apt,21382885,Peter,Toronto,84,0,0,3516,1,3,2,"6,02",43,2,1,0,1,3,0,1,291,North America +2725,Exquisite Home in the Downtown City Center,95366159,Ashley,Toronto,250,1,1,2784,1,3,1,"6,78",208,2,1,1,1,2,1,"0,96",292,North America +2726,Beautiful and Stylish 2-BR Condo in DT Toronto,785826,Sky View,Toronto,133,1,1,4683,1,3,51,6,2,4,2,2,2,56,1,"0,93",229,North America +2727,Beautiful home in the heart of Beach neighbourhood,39179901,Scott,Toronto,375,1,1,3207,1,3,1,"6,91",23,8,1,3,4,1,1,1,275,North America +2728,Private Basement Apartment in North York,56338565,Nika,Toronto,100,0,0,3017,1,3,1,"6,94",17,2,1,1,1,1,0,1,277,North America +2729,2R New Modern Downtown 1 Bedrm Apt Prime Location,9923100,Ed,Toronto,79,0,0,3825,1,3,15,"6,86",7,2,1,1,1,15,1,"0,53",51,North America +2730,"Cozy, quiet, basement suite with private entrance",246247220,Jennifer,Toronto,65,1,0,1888,1,3,1,"6,71",31,2,1,1,1,1,1,"0,92",294,North America +2731,The Beaches pied-á-terre (Woodbine Beach),248699054,Ann,Toronto,170,1,1,1876,1,3,1,"6,91",116,2,1,0,1,1,1,1,319,North America +2732,Cozy 1-Bedroom in Little Village,23341567,Sandra,Toronto,89,1,1,3466,1,2,1,"6,43",7,2,1,1,1,1,1,"0,93",197,North America +2733,TRenovated basement room with private bathroom,248726708,Frank,Toronto,76,0,0,1876,1,2,3,7,11,2,1,1,1,3,0,1,0,North America +2734,Elegant 2 BD Waterfront Condo Downtown Toronto,247318064,Mario,Toronto,528,1,1,1883,1,3,6,6,1,6,2,2,2,7,1,1,95,North America +2735,Gorgeous 2 BD w Stunning LAKE View + FREE Parking!,247318064,Mario,Toronto,515,1,0,1883,1,3,6,"6,81",16,5,2,2,2,7,1,1,275,North America +2736,Cottage in the city Room D,248337733,Xiaohui,Toronto,48,1,1,1877,1,2,1,7,8,1,1,1,1,2,1,1,284,North America +2737,"Walkable to subway&near YYZ airport, free parking",237418707,Jiayin,Toronto,53,1,1,1930,1,2,8,"6,88",167,1,1,1,1,8,1,"0,97",327,North America +2738,"Bright, spacious and convenient 3-brm home",465797403,Yue Hong,Toronto,320,0,0,678,,3,1,"6,82",62,7,"2,5",3,4,1,0,0,268,North America +2739,Corner Penthouse with Skyline and Lake View!,247318064,Mario,Toronto,1895,1,1,1883,1,3,6,7,4,8,2,2,2,7,1,1,185,North America +2740,"2 Bedroom Minutes from Dundas Square, Ryerson University",4356799,Thomas,Toronto,216,1,0,4162,1,3,12,"6,48",29,5,1,2,2,17,1,"0,97",243,North America +2741,Room (B) in Toronto (currently unavailable),153757180,W,Toronto,45,0,0,2397,1,2,4,0,0,2,"1,5",1,2,5,1,"0,67",0,North America +2742,Modern & Clean 1 bed in downtown TO- J1,12742095,Emil & Sue,Toronto,205,0,0,3713,1,3,4,"6,7",10,3,1,1,2,6,"0,98","0,58",204,North America +2743,(Rented) Private Room (A) in Toronto,153757180,W,Toronto,45,0,0,2397,1,2,4,7,1,1,"1,5",3,2,5,1,"0,67",1,North America +2744,Cabbagetown Corner House at Riverdale Park West.,9815163,Nico,Toronto,300,0,0,3831,1,3,1,"6,77",44,6,"1,5",3,3,3,1,"0,8",269,North America +2745,A colorful cozy place! whimsical backyard!,495202,Marlena,Toronto,150,0,0,4771,1,2,1,"6,77",79,2,1,1,1,1,0,0,185,North America +2746,Renovated 3-Bedroom Main Floor Apartment 静颐之家,50551745,Helen,Toronto,136,1,1,3071,1,3,4,"6,9",61,7,2,3,3,4,1,"0,83",269,North America +2747,Charming 2 Bdrm Unit in Trendy Leslieville,113535627,Ian,Toronto,219,0,0,2651,1,3,1,7,6,4,1,2,3,1,0,"0,33",321,North America +2748,Eglinton West Escape,88116590,Traevor,Toronto,99,1,0,2826,1,3,1,"6,61",59,2,1,1,1,1,1,"0,83",24,North America +2749,Find Calm at a Serene Country-Chic Sanctuary in the City,7591475,Dan,Toronto,250,0,0,3939,1,3,1,"6,86",46,4,"1,5",2,3,1,0,0,0,North America +2750,"King Bed Suite w/Balcony 2TV’S, Bidet & Parking",22773087,Calvin,Toronto,325,1,1,3481,1,3,7,"6,91",70,4,1,1,2,12,1,"0,95",66,North America +2751,"Beautiful, bright and renovated central studio apt",250311734,Yafit,Toronto,65,0,0,1868,1,3,5,"6,6",5,2,1,0,1,5,1,"0,63",324,North America +2752,R1 Furnished two bedroom plus den in Riverdale,26753094,Keir,Toronto,135,1,1,3383,1,3,7,"6,58",12,4,1,2,2,9,1,"0,98",223,North America +2753,Dovercourt Park - Renovated and Detached,114878617,Michael,Toronto,200,0,0,2643,1,3,1,0,0,5,2,2,2,2,1,0,236,North America +2754,Family Rm 2 Queen Comfy Beds Near YYZ Airport,224268660,Grace,Toronto,55,1,0,2004,1,2,4,"6,59",83,4,2,1,2,4,1,1,0,North America +2755,2 Queen Bed Private Bath Near YYZ Airport Sub,224268660,Grace,Toronto,70,1,0,2004,1,2,4,"6,5",64,4,1,1,2,4,1,1,22,North America +2756,Loft in the Heart of the Junction - PurpleCats!,249695323,Janice,Toronto,129,1,1,1871,1,3,1,"6,92",98,3,1,0,2,1,1,1,335,North America +2757,"Downtown Toronto, Luxury 1+Den Condo-Lake View",139125842,Abbas,Toronto,275,1,1,2490,1,3,1,"6,75",134,3,1,1,3,1,1,1,33,North America +2758,Toronto Yonge x St Clair 2min walk from the subway,33803286,Paola,Toronto,110,0,0,3269,1,3,1,"6,69",13,4,1,1,2,1,1,"0,75",220,North America +2759,Bloor West Village Gem,69702554,Fiona,Toronto,449,0,0,2923,1,3,1,"6,88",8,5,2,4,4,1,1,0,197,North America +2760,LOWER LEVEL 1,239078868,Daniela,Toronto,44,0,0,1922,1,2,5,"6,67",60,2,1,1,1,5,0,0,24,North America +2761,LOWER LEVEL2,239078868,Daniela,Toronto,44,0,0,1922,1,2,5,"6,72",64,2,1,1,1,5,0,0,63,North America +2762,Bright and spacious Basement. Lonborough Ave.,15902536,Paul,Toronto,94,1,1,3631,1,3,2,"6,92",36,2,1,1,1,3,1,"0,91",58,North America +2763,Beautiful Ensuite Master Bedroom By CN Tower,250920080,Jay,Toronto,60,1,0,1865,1,2,1,"6,47",47,1,1,1,1,1,1,1,306,North America +2764,A bright room. Double bed and desk. Free parking.,71594994,Arun,Toronto,62,1,0,2911,1,2,4,"6,69",39,2,"1,5",1,1,4,1,1,179,North America +2765,159sqft room Classic @GTA transit hub Yonge Finch,100833811,Rachel,Toronto,60,0,0,2747,1,2,8,7,5,2,2,1,1,8,"0,47","0,16",306,North America +2766,Bright and large apartment,99061985,Stefania,Toronto,110,1,0,2760,1,3,2,0,0,4,1,3,4,2,1,1,179,North America +2767,Beautiful Room in a Condo,254017541,Sasha,Toronto,120,0,0,1850,1,2,1,0,0,2,1,1,1,1,0,0,1,North America +2768,"Roomy 2 floor, 1.5 bdrm in hip Ossington village",21967749,Courtney,Toronto,200,1,0,3501,1,3,2,"6,5",4,4,1,2,2,2,1,"0,99",2,North America +2769,Basement for guests,251190047,Saeid,Toronto,78,0,0,1864,1,3,1,"6,97",36,2,1,1,1,1,"0,5","0,83",309,North America +2770,Rachel's Room,77000637,Susiesue,Toronto,81,1,1,2882,1,2,3,"6,95",368,1,1,1,1,3,1,1,162,North America +2771,7 room semibasement GTA transit hub Yonge & Finch,100833811,Rachel,Toronto,150,0,0,2747,1,3,8,"6,4",15,7,2,4,5,8,"0,47","0,16",297,North America +2772,LIPPINCOTT HOME SHARING,65785916,Therese,Toronto,55,1,1,2949,1,2,3,"6,86",21,1,1,1,1,3,1,"0,85",297,North America +2773,Brand New Suite in Toronto with Free Wi-Fi,190170122,E,Toronto,140,1,0,2176,1,2,2,"6,4",20,2,1,0,0,2,1,1,96,North America +2774,Centrally located Studio Apartment on the Park,251544811,Susanne,Toronto,94,1,1,1862,1,3,1,"6,91",56,2,1,0,1,1,1,"0,97",332,North America +2775,Quiet Space,254385327,Elaine,Toronto,75,1,1,1849,1,2,1,7,3,2,1,1,1,1,1,1,192,North America +2776,Large Condo in king/spadina w rooftop pool,15384114,ElJony,Toronto,300,0,0,3334,1,3,1,7,5,2,1,1,1,1,0,1,2,North America +2777,Home away from home 2,66988088,Duc Hoa,Toronto,70,1,1,2940,1,2,3,"6,7",106,2,0,1,1,3,1,1,19,North America +2778,Clean & Cozy 2 Bedroom Basement Apartment,83335943,Nadine,Toronto,88,0,0,2850,1,3,2,"6,57",7,3,1,2,2,2,1,"0,75",63,North America +2779,"On the Waterfront, City Center, Free Parking",24986959,Olessia,Toronto,186,1,0,3421,1,3,1,"6,64",401,4,1,1,2,2,"0,92",1,363,North America +2780,Spacious & Modern 3 Bed 3.5 Bath Suites 401 & 404,125625405,Billy,Toronto,300,0,0,2575,1,3,1,"6,9",139,6,"3,5",3,3,1,"0,8","0,55",302,North America +2781,Cabbagetown Victorian Restored to Designer Dream Oasis,496268,Stefanie,Toronto,246,0,0,4771,1,3,2,"6,89",36,2,1,1,1,2,1,"0,79",187,North America +2782,Entire Home in The Beaches,254524409,Christina,Toronto,714,0,0,1848,1,3,1,"6,86",7,8,"3,5",4,5,3,1,"0,47",213,North America +2783,Spacious & Stylish 2-BR/Great Location/*WFH,251626229,Yinka,Toronto,118,1,0,1862,1,3,2,"6,48",90,4,1,2,2,2,1,1,304,North America +2784,Cosmos - Luxury Executive Condo King West,5988339,Toronto Luxury Suites,Toronto,600,0,0,4031,1,3,20,0,0,6,2,3,3,20,1,"0,6",7,North America +2785,Entire 2 Bedroom Apartment at Junction Triangle,47269274,Jing,Toronto,70,1,0,3113,1,3,1,"6,29",70,4,1,2,3,1,1,1,274,North America +2786,"3 Bd Home - Bellwoods, Family Friendly, Parking.",90102218,Joanna,Toronto,328,0,0,2816,1,3,1,"6,94",31,6,3,3,4,1,1,"0,65",306,North America +2787,"Motel style, Large bedroom + private washroom",52170715,Feiyang,Toronto,51,1,0,3051,1,2,33,"6,79",284,4,1,1,2,42,1,"0,9",114,North America +2788,Clean Private Bedroom,254595709,Bipana,Toronto,100,0,0,1848,,2,1,0,0,2,1,1,1,1,0,0,0,North America +2789,Small room perfect for an individual traveller .,154414224,Harry,Toronto,699,0,0,2392,1,2,2,0,0,1,1,0,1,2,0,0,277,North America +2790,Family Rm 2 Queen Bed with Garden View YYZ Airport,224268660,Grace,Toronto,55,1,0,2004,1,2,4,"6,55",83,4,2,1,2,4,1,1,213,North America +2791,B3 Private bedroom Toronto Bus at front door,146328351,Thi,Toronto,60,1,0,2450,1,2,5,"6,83",35,1,1,1,1,5,1,1,264,North America +2792,"Loft near DT Toronto, Casaloma, Bloor & Yorkwille",86338351,Alla,Toronto,130,1,0,2835,1,3,1,0,0,6,1,2,2,1,1,1,83,North America +2793,The Happy House,224323306,Laurianne,Toronto,300,1,0,2004,1,3,4,0,0,5,2,4,4,8,1,1,303,North America +2794,Modern & private bedroom 1 min to subway.,67279440,Kiet,Toronto,69,0,0,2938,1,2,3,"6,73",40,2,1,1,1,3,"0,5",0,185,North America +2795,Fresh&Bright in Heart of City + Amenity-Rich Park!,95667533,Suzanne,Toronto,111,1,1,2782,1,3,2,"6,85",41,6,1,2,3,2,1,1,319,North America +2796,Cozy & private bedroom 1 min to subway.,67279440,Kiet,Toronto,80,0,0,2938,1,2,3,"6,89",27,2,1,1,1,3,"0,5",0,185,North America +2797,Modern private master bedroom 1 min to subway,67279440,Kiet,Toronto,85,0,0,2938,1,2,3,"6,67",27,2,1,1,1,3,"0,5",0,185,North America +2798,Toronto Luxury Condominium - Yonge & Bloor St,175641442,Fahad,Toronto,114,1,1,2255,1,3,1,"6,76",17,2,1,1,2,6,1,"0,84",53,North America +2799,Mercedes Palace,251806735,Sonia,Toronto,81,1,1,1861,1,3,2,"6,85",398,2,1,1,1,2,1,"0,99",342,North America +2800,Kashaneh at Meridian ( penthouse 2 bedrooms ),12033867,Kashaneh,Toronto,279,0,0,3736,1,3,16,"6,67",3,4,2,2,3,17,"0,88","0,08",0,North America +2801,"Clean & Elegant small apartment, 1",255601789,Ali,Toronto,65,1,0,1845,1,3,6,"6,66",135,2,1,1,1,7,1,"0,9",277,North America +2802,Midtown Haven: Private Suite w/ Gourmet Kitchen,61460167,Jessica,Toronto,80,1,1,2981,1,2,1,"6,85",251,4,"1,5",1,2,1,1,1,315,North America +2803,Cozy Parisian style apartment for longer stays,3189324,David,Toronto,220,0,0,4285,1,3,1,"6,81",26,4,2,2,3,1,1,"0,33",289,North America +2804,2 bedrooms in King West Free Parking and Internet,82791,Jennifer,Toronto,175,1,0,5186,1,3,6,"6,5",4,4,1,2,2,6,1,1,86,North America +2805,4BR’s 3Baths Queen St. West | Upscale & Spacious,212832355,Allan,Toronto,900,1,1,2070,1,3,3,7,5,12,3,4,5,7,1,"0,94",39,North America +2806,Poucher House: 2nd floor of house on quiet street,252308633,John And Lesa,Toronto,65,1,1,1858,1,3,2,"6,96",25,2,1,1,2,2,1,"0,82",274,North America +2807,Explore Toronto from an Exquisite Home in King W.,29185641,Andrew,Toronto,208,1,1,3339,1,3,1,"6,68",158,2,1,0,0,1,1,"0,98",345,North America +2808,Lonborough Ave. Upstairs,15902536,Paul,Toronto,180,1,1,3631,1,3,2,"6,89",9,2,1,1,1,3,1,"0,91",130,North America +2809,Private Bedroom and Bath by CN Tower,252342660,Jerry,Toronto,57,1,0,1858,1,2,1,"6,47",43,1,1,1,0,1,"0,83",1,158,North America +2810,Modern & Spacious 2BR Apt w/ Patio + Free Parking,16152855,Joanna,Toronto,165,0,0,2913,1,3,1,"6,86",28,3,"1,5",2,2,1,1,"0,8",104,North America +2811,Luxury 1BR Executive Suite with Stunning Views!,252403083,Mackenzie,Toronto,199,1,1,1858,1,3,1,"6,75",85,3,1,1,1,1,1,"0,96",249,North America +2812,Fireside 3 Bedroom + Den Bungalow in GTA East,155230504,Paul,Toronto,85,1,1,2386,1,3,8,7,5,6,2,2,4,8,1,"0,94",152,North America +2813,One Bedroom Close to Finch Subway,17011008,Reza,Toronto,140,0,0,3604,1,3,1,"6,55",29,4,1,1,1,1,1,"0,75",321,North America +2814,1 bedroom in shared basement apartment,35683478,Alison,Toronto,58,1,1,3245,1,2,2,"6,77",13,1,1,1,1,4,1,"0,89",173,North America +2815,Cozy clean apt for single or couple visiting TO,252456582,Ezra,Toronto,75,0,0,1857,1,3,1,"6,84",25,2,1,1,1,1,1,"0,46",193,North America +2816,Boutique Studio Apt in Prime Queen West Location,209666129,Natalija,Toronto,200,0,0,2086,1,3,1,"6,7",230,2,1,1,1,1,0,0,185,North America +2817,Luxury Industrial Style Condo+Direct Subway Access,256094839,Ning,Toronto,122,0,0,1843,1,3,1,"6,73",74,2,"1,5",1,1,1,"0,9","0,6",282,North America +2818,Room In A Wonderful Home,7104206,Benjamin,Toronto,100,1,1,3963,1,2,1,7,1,1,2,0,0,1,1,1,7,North America +2819,Renovated two bedroom/free parking in Downtown TO,90757710,Perry,Toronto,140,0,0,2812,1,3,2,"6,79",205,4,1,2,3,2,0,"0,98",1,North America +2820,2 Bedroom Private Unit near Ravine trails,153311618,Sandeep,Toronto,83,1,0,2401,1,3,1,"6,73",15,4,1,2,2,1,1,1,265,North America +2821,Watch the City Lights from Bed at an Airy Urban Hideaway,61394765,E Rae,Toronto,225,1,1,2981,1,3,1,"6,82",148,4,1,1,1,1,1,1,291,North America +2822,"Cozy, bright and relaxing room in Toronto1",51846997,Xueyong,Toronto,55,1,0,3055,1,2,2,"6,68",80,1,1,1,1,2,1,"0,98",220,North America +2823,Amazing 2 floor apartment in Little Portugal,7599376,Heather,Toronto,230,1,1,3939,1,3,1,"6,72",30,4,1,1,1,1,1,"0,9",237,North America +2824,Bedroom in Downtown Toronto,185208324,Jawad,Toronto,50,0,0,2204,1,2,2,"6,82",22,1,1,1,1,2,0,0,267,North America +2825,Airy 2-storey Loft in a former perfume factory,67999641,Omar,Toronto,500,0,0,2934,1,3,1,0,0,4,"2,5",2,2,1,0,0,3,North America +2826,B5 Private bedroom Toronto bus at front door,146328351,Thi,Toronto,60,1,0,2450,1,2,5,"6,47",34,1,1,1,1,5,1,1,253,North America +2827,Breathtaking Panoramic Downtown Lake View,255248487,Omar,Toronto,264,1,1,1847,1,3,1,"6,87",80,2,1,1,1,1,1,1,322,North America +2828,Modern lakeview entire condo - West Toronto,5324807,Ehsan,Toronto,150,1,0,4076,1,3,1,"6,5",20,4,1,1,2,1,1,1,90,North America +2829,Dundas Square - Victorian - Parking/Office/Yard,105618845,Rob And Lisa,Toronto,600,1,1,2710,1,3,7,"6,9",41,3,1,2,2,7,1,1,365,North America +2830,Newly Renovated Modern Apartment in Downtown TO,4699614,Patrick,Toronto,91,0,0,4125,1,3,1,"6,92",12,2,1,1,1,1,1,"0,2",84,North America +2831,Wake up to great TO skyline views - Free parking,10236161,Raya,Toronto,259,0,0,3811,1,3,1,"6,7",30,4,2,2,2,1,0,1,17,North America +2832,Private room In house,144479372,Angela,Toronto,45,0,0,2461,1,2,3,"6,53",15,1,"1,5",1,0,3,1,"0,57",203,North America +2833,Downtown Beautiful Bed. w/ Priv. En Suite Bathroom,72182818,Emilio,Toronto,143,1,1,2908,1,2,1,"6,93",293,2,1,1,1,1,1,1,303,North America +2834,2 Heart Downtown Chinatown/Kenningston Market,106532967,Tu-Quyen,Toronto,60,1,0,2702,1,2,3,"6,66",29,2,1,1,1,13,1,"0,84",119,North America +2835,Cozy Junction Retreat,224042480,Erica Joelle,Toronto,90,1,1,2006,1,2,1,"6,75",8,2,1,1,1,1,1,"0,86",308,North America +2836,Heart Downtown Chinatown/ Kenningston Market,106532967,Tu-Quyen,Toronto,59,1,0,2702,1,2,3,"6,66",32,2,1,1,1,13,1,"0,84",241,North America +2837,Finch/Pharmacy single room facing park,191786574,Ziping,Toronto,25,0,0,2167,1,2,1,"6,25",4,1,"1,5",1,1,1,1,"0,43",334,North America +2838,Striking 1 bdrm condo stunning CN Tower View,159735119,Linda,Toronto,80,1,0,2352,1,3,2,"6,81",48,2,1,1,1,5,1,1,332,North America +2839,3 Heart Downtown Chinatown/Kenningston Market,106532967,Tu-Quyen,Toronto,59,1,0,2702,1,2,3,"6,43",23,2,1,1,0,13,1,"0,84",1,North America +2840,Grow Room + Loft Bed in Downtown Toronto Condo,72520186,Bonnie Victoria,Toronto,100,0,0,2906,,2,1,0,0,1,1,1,1,2,0,0,0,North America +2841,"2 Bedroom bungalow 1 bath, 5 people Toronto Dwntn",257071270,Steve,Toronto,99,1,0,1838,1,3,1,"6,71",77,5,1,2,5,1,1,1,325,North America +2842,Cheerful Bedroom 1 withqueen size bed in bungalow,37520003,Shirley,Toronto,48,1,0,3223,1,2,8,"6,2",5,2,1,1,1,8,1,1,275,North America +2843,Bright Chic Studio CN tower view,253680227,Nadia,Toronto,250,0,0,1852,1,3,1,"6,27",22,2,1,1,1,1,1,0,180,North America +2844,82Spacious House Close to Beach Park TTC Downtown82,257458184,William,Toronto,613,0,0,1836,1,3,1,"6,76",107,12,4,3,5,2,0,0,155,North America +2845,A quiet downtown condo right on the subway,253689994,Camilla,Toronto,105,0,0,1852,1,3,1,"6,73",15,2,1,1,1,1,1,"0,5",233,North America +2846,LIPPINCOTT HOME,65785916,Therese,Toronto,65,1,1,2949,1,2,3,7,3,1,"1,5",1,1,3,1,"0,85",179,North America +2847,Urban Retreat,213996056,Jill,Toronto,126,1,1,2064,1,2,1,"6,84",154,3,1,1,2,1,1,1,96,North America +2848,2 bedroom basement Apt with separate entrance,195891377,Taron,Toronto,114,0,0,2147,1,3,1,"6,41",22,4,1,2,2,2,0,"0,5",164,North America +2849,"Super downtown location, bright 1 bedroom",23518355,Lee-Anne,Toronto,115,1,0,3461,1,3,24,"6,4",5,2,1,1,1,24,1,1,306,North America +2850,7715 Sunny comfy room in the little Italy/ Portugal,122918659,Mario,Toronto,58,0,0,2592,1,2,1,"6,69",16,1,1,1,1,1,"0,8",1,275,North America +2851,Queen size bed spacious top floor,37520003,Shirley,Toronto,44,1,0,3223,1,2,8,0,0,2,1,1,1,8,1,1,1,North America +2852,Lakeview suite Harbour Front Centre,99561431,Mark,Toronto,350,1,0,2757,1,3,2,0,0,4,1,1,1,3,1,"0,97",282,North America +2853,Garden Room - Perfect for Festival Travelers,50157583,Kristin,Toronto,69,0,0,3076,1,2,5,7,22,8,"1,5",1,1,5,"0,6","0,5",2,North America +2854,Airy Studio Loft in the Heart of Downtown TO!,128745036,Joan,Toronto,159,1,0,2555,1,3,3,"6,61",46,2,1,0,1,3,1,1,136,North America +2855,Toronto Charming 3 Bedrooms House close to Airport,260672090,Tetyana,Toronto,214,1,1,1820,1,3,1,"6,85",154,8,1,3,4,1,1,1,191,North America +2856,"Luxurious vacation home in little Italy, Toronto",260079173,Huy,Toronto,158,1,1,1822,1,3,5,"6,8",51,3,1,1,2,5,1,1,99,North America +2857,Studio in best downtown location,23518355,Lee-Anne,Toronto,99,1,1,3461,1,3,24,"6,75",12,2,1,0,0,24,1,1,306,North America +2858,Entire main floor of home with huge backyard!,1394631,Joe,Toronto,170,0,0,4556,1,3,2,"6,69",13,4,1,1,1,2,1,"0,8",136,North America +2859,2 bedrooms - 2 bath - Downtown Toronto - CN tower,149273127,Lucas,Toronto,229,1,0,2430,1,3,4,"6,71",14,5,2,2,2,4,1,"0,86",247,North America +2860,7676Luxury 1BDR Suite/City CNTR/Subway Dir.Access7676,54422135,Seyedeh Afarin,Toronto,180,0,0,3032,1,3,29,"6,5",2,2,1,1,1,69,1,"0,53",145,North America +2861,"Quiet, comfortable 1br, easy access to downtown",1400479,Patrick,Toronto,60,0,0,4554,1,3,1,"6,42",13,2,1,1,1,1,"0,9","0,7",247,North America +2862,Bright and charming in Little Italy,260827513,Helene,Toronto,176,0,0,1819,,3,1,"6,43",14,4,1,1,1,1,0,0,275,North America +2863,Toronto City Studio,30760199,Abz,Toronto,102,0,0,3312,1,1,1,"6,89",9,3,1,1,2,3,1,"0,79",275,North America +2864,Loft Style Studio in the heart of Art District,257804044,David,Toronto,148,0,0,1834,,3,1,"6,71",17,4,1,0,0,1,0,0,186,North America +2865,60 D,94071526,Matthew,Toronto,95,1,0,2793,1,3,14,"6,6",63,2,1,1,1,14,1,"0,88",201,North America +2866,ONLY EVER 5* REVIEWS!!! Bright Leslieville lower.,36748838,John,Toronto,79,1,1,3233,1,3,3,"6,94",18,2,1,1,1,3,1,1,248,North America +2867,3-storey house with free parking in Toronto,30524531,Yan,Toronto,303,1,0,3316,1,3,1,"6,52",25,6,2,3,0,1,1,1,351,North America +2868,Lakeside Condo Studio In Downtown Toronto,148512090,Kyrylo,Toronto,189,1,1,2435,1,3,1,"6,7",365,2,1,1,1,3,1,1,266,North America +2869,7676Luxury 1BDR Suite/City CNTR/Subway Dir.Access7676,54422135,Seyedeh Afarin,Toronto,180,0,0,3032,1,3,29,"6,25",4,2,1,1,1,69,1,"0,53",145,North America +2870,New Modern Home | Queen West | Trinity Bellwoods,23044531,Hasmig,Toronto,185,0,0,3474,1,3,2,"6,83",40,5,1,2,3,2,0,0,237,North America +2871,"Bright modern condo, steps from Bloor & Lansdowne",214867985,Raluca Ana,Toronto,140,0,0,2059,1,3,1,"6,76",21,3,1,2,2,2,1,"0,44",327,North America +2872,(2F)cozy holiday room,247236110,Ying,Toronto,45,0,0,1883,1,2,6,"6,79",29,2,"1,5",1,1,6,"0,81","0,96",238,North America +2873,Nice and cozy room near York university #1,261357467,Shafei,Toronto,60,1,1,1816,1,2,3,"6,67",12,2,1,1,1,3,"0,9",1,1,North America +2874,Stunning New 1 Bedroom Loft in Heart of Toronto,258022855,Michael,Toronto,105,0,0,1833,1,3,1,"6,83",35,2,1,1,1,1,"0,75","0,17",172,North America +2875,Renovated Toronto Cliffside Basment Suite,261387307,Sultana,Toronto,74,1,1,1816,1,3,1,"6,86",36,3,1,1,2,1,1,"0,88",236,North America +2876,Nice and cozy room near York university #2,261357467,Shafei,Toronto,45,1,0,1816,1,2,3,"6,43",14,2,1,1,1,3,"0,9",1,238,North America +2877,Nice and cozy room near York university #3,261357467,Shafei,Toronto,45,1,0,1816,1,2,3,"6,6",15,2,1,3,1,3,"0,9",1,23,North America +2878,Beautiful Private Room in Central Toronto (Subway),258197415,Ana,Toronto,55,0,0,1832,1,2,3,"6,4",5,1,1,1,1,3,1,"0,18",241,North America +2879,"Charming 2 Bedrooms Condo,Prime Downtown location",79441404,Maryam,Toronto,210,1,1,2869,1,3,1,"6,82",139,4,1,2,3,1,1,1,277,North America +2880,Bright & Colourful 1 Bedroom Apartment with Patio,33859328,Katie,Toronto,350,0,0,3269,1,3,1,7,1,2,1,1,1,1,0,0,0,North America +2881,Pristine room in North York,260652800,Jugini,Toronto,65,0,0,1820,1,2,10,6,3,2,1,1,1,10,"0,1","0,83",237,North America +2882,Trinity Bellwoods with 1 parking spot,248054691,Li Qin,Toronto,230,1,0,1879,1,3,1,"6,59",71,5,1,3,4,1,1,"0,98",243,North America +2883,Master-Bedroom KING Bed,260652800,Jugini,Toronto,50,0,0,1820,1,2,10,7,1,2,1,1,1,10,"0,1","0,83",252,North America +2884,Newly Decorated 2BR Yorkville Home with Parking!,261581903,Leila,Toronto,145,1,0,1815,1,3,1,"6,62",73,4,"1,5",2,2,4,1,"0,98",52,North America +2885,Fantastic Condo w/ Amazing View and Free Parking,261641930,Jozef,Toronto,200,1,0,1815,1,3,2,"6,59",54,4,"1,5",2,3,2,1,"0,88",127,North America +2886,"Cozy, clean and well situated, parking included",1883280,Gillian,Toronto,200,0,0,4437,1,3,1,"6,94",18,6,1,3,3,1,0,0,129,North America +2887,Cozy room and washroom,182798670,Wajma,Toronto,65,1,0,2217,1,2,1,"6,52",25,1,1,1,1,1,1,"0,93",190,North America +2888,Private bedroom,140639037,Rency,Toronto,87,0,0,2482,1,2,3,7,4,1,1,1,1,3,0,0,275,North America +2889,Beach Inspired Home Close to Downtown,159767442,Natashia,Toronto,140,1,0,2352,1,3,1,"6,72",29,3,1,1,1,1,1,"0,96",186,North America +2890,"Private room & private bathroom, near subway",187548308,Xiaohui Lucy,Toronto,43,0,0,2191,1,2,11,"6,6",48,2,1,1,1,11,"0,94","0,83",22,North America +2891,Heaven in the Heart of Downtown,258669214,Sam,Toronto,200,0,0,1830,1,3,2,7,6,4,2,2,2,2,1,0,53,North America +2892,Lovely Super Quiet 5 Bedroom House in Toronto,23199693,Ati,Toronto,265,1,0,3469,1,3,2,"6,63",19,10,2,6,2,3,1,1,239,North America +2893,Private room &parking close 2 Yonge/Shepprd Subway,105820707,Valeri,Toronto,65,1,0,2708,1,2,4,"6,63",32,1,1,1,1,8,"0,88",1,275,North America +2894,Skyline - Luxury Executive Condo King West,5988339,Toronto Luxury Suites,Toronto,300,0,0,4031,1,3,20,0,0,4,2,2,2,20,1,"0,6",15,North America +2895,"Big private room, walk to subway",187548308,Xiaohui Lucy,Toronto,37,0,0,2191,1,2,11,"6,69",29,2,1,1,1,11,"0,94","0,83",4,North America +2896,Accessible place that your wanting for.,261892835,Rebecca,Toronto,42,0,0,1814,1,2,3,"6,86",7,1,1,1,1,3,"0,83","0,8",2,North America +2897,Closest condo to Rogers Centre/CN tower in Toronto,258963573,Jina,Toronto,219,1,1,1828,1,3,1,"6,81",247,2,1,1,1,1,1,1,50,North America +2898,easy and convenient,206780509,Fatima,Toronto,120,0,0,2100,1,3,1,7,1,4,2,2,2,2,0,0,247,North America +2899,Charming Downtown Victorian Home,7026177,Susan,Toronto,250,0,0,3968,1,3,1,7,1,4,1,2,2,1,0,0,2,North America +2900,"Private, quiet, and modern 2-bedroom suite!",232546055,Cheryl,Toronto,115,0,0,1953,1,2,1,"6,91",44,3,1,2,3,1,1,"0,75",251,North America +2901,Perfect for a stay-cation! Available July-August!,23083533,Oksana,Toronto,60,0,0,3473,1,3,1,"6,56",9,2,1,1,1,1,1,"0,17",293,North America +2902,7815Toronto Special7815Free Parking “WiFi”/Netflix,20607592,Christine,Toronto,80,1,0,3535,1,3,5,"6,38",13,2,1,2,2,5,1,"0,93",267,North America +2903,Cute Cosy Private Room (G) with Private Washroom,9956811,Erica,Toronto,103,1,1,3823,1,2,10,"6,6",5,1,1,1,1,11,1,1,0,North America +2904,3BRDM Waterfront Condo - 6ppl + Free Parking,262248179,Cory,Toronto,457,1,0,1812,1,3,1,"6,58",163,6,2,3,4,1,1,"0,94",203,North America +2905,Cosy Private Room (H) with Private Bathroom,9956811,Erica,Toronto,84,1,0,3823,1,2,10,0,0,2,1,1,1,11,1,1,0,North America +2906,"Clean, cozy and quiet townhouse close to downtown",56136596,Sandra,Toronto,65,0,0,3019,1,2,2,"6,91",34,2,1,1,2,2,1,"0,54",139,North America +2907,Private room in shared detached Bloor West home,6608748,Sarah,Toronto,50,0,0,3992,1,2,1,"6,83",6,1,1,1,1,1,0,1,268,North America +2908,Bright & Spacious Lakeside Suite (Private Entry),181701818,Niyosha,Toronto,102,1,1,2223,1,2,3,"6,77",87,3,1,0,1,5,1,"0,96",119,North America +2909,Modern apt perfect for families/corporate rental,7087414,Claire,Toronto,135,0,0,3964,1,3,1,"6,93",27,4,1,2,3,1,0,1,362,North America +2910,Downtown Toronto walk up basement studio,90757710,Perry,Toronto,89,0,0,2812,1,3,2,"6,72",108,2,1,1,1,2,0,"0,98",1,North America +2911,One Bedroom in Private Unit,71216886,Fenghui,Toronto,52,1,1,2914,1,2,1,7,4,2,"0,5",1,1,1,1,1,315,North America +2912,Charming Suite in the Riverdale area of Toronto,133020435,Melissa,Toronto,110,1,1,2526,1,3,1,"6,92",120,2,1,1,1,1,1,1,340,North America +2913,"Lively Little Italy, Main Floor!",12931053,Colin,Toronto,12400,0,0,3707,1,3,2,"6,79",14,2,1,1,2,2,0,0,276,North America +2914,Sleek High-Rise Condo in Heart of Yonge & Eglinton,198509230,Asa,Toronto,120,1,0,2135,1,3,1,"6,71",7,3,1,1,3,1,1,1,312,North America +2915,New downtown 30+ floor condo w CN Tower view,262678385,Min,Toronto,226,0,0,1810,1,3,2,"6,72",196,3,1,1,2,2,1,"0,54",221,North America +2916,Stunning 1BR Suite Near Downtown!,9803773,Stephanie,Toronto,164,1,1,3831,1,3,2,"6,79",96,2,1,1,1,2,1,1,218,North America +2917,"Private room & private bathroom, near subway",187548308,Xiaohui Lucy,Toronto,43,0,0,2191,1,2,11,"6,71",31,2,1,1,1,11,"0,94","0,83",126,North America +2918,Poucher House: 1st floor of house on quiet street,252308633,John And Lesa,Toronto,84,1,1,1858,1,3,2,"6,79",14,2,1,1,2,2,1,"0,82",365,North America +2919,New Luxurious Beaches Condo,262698364,Jack,Toronto,155,0,0,1809,1,3,2,"6,79",28,4,"1,5",1,1,2,1,"0,69",275,North America +2920,A beautiful one bedroom in a quiet house,145495070,Thi Hong Anh,Toronto,35,0,0,2455,1,2,1,7,3,1,"1,5",1,1,1,"0,3","0,55",219,North America +2921,Cozy private room midtown Toronto,71748498,Alejandra,Toronto,80,1,1,2910,1,2,1,"6,88",16,2,1,0,1,1,1,1,296,North America +2922,Luxury condo; breathtaking view of lake & CN tower,176859199,Ramy Dimitry,Toronto,154,1,0,2249,1,3,1,"6,81",85,3,1,1,1,1,1,1,271,North America +2923,Sunshine Room On Willowdale [A3],58113832,Sun,Toronto,50,1,0,3004,1,2,7,"6,64",22,1,1,1,1,7,1,"0,81",185,North America +2924,"Sm room, clean home. Private bathroom on 1st flr",12013800,Esther,Toronto,79,0,0,3736,1,2,4,"6,62",26,1,1,1,2,4,1,"0,78",208,North America +2925,B1-Big and nice room w parking near High Park,90115034,Vivian,Toronto,58,1,0,2816,1,2,11,"6,68",28,2,1,1,2,17,1,"0,99",276,North America +2926,Luxury Downtown Toronto Suite - Fast Wifi/Balcony,253500407,Firas,Toronto,313,1,0,1853,1,3,1,"6,7",176,3,1,1,2,1,1,1,275,North America +2927,"B2- Cozy nice room near High Park, Lakeshore",90115034,Vivian,Toronto,48,1,0,2816,1,2,11,"6,63",27,1,"1,5",1,1,17,1,"0,99",276,North America +2928,Big bed rm J in apt +A/C near York U Subway漢語OK,96693289,Crystal,Toronto,68,0,0,2775,,2,9,7,1,9,2,6,8,10,1,"0,67",0,North America +2929,Enjoy all the comforts in a newly renovated house,260079173,Huy,Toronto,499,1,1,1822,1,3,5,"6,75",57,6,2,3,3,5,1,1,132,North America +2930,Spacious & Beautiful 2 Bed Home- King West Village,39866973,Victoria,Toronto,150,1,1,3200,1,3,1,"6,74",43,3,1,2,2,1,1,"0,89",308,North America +2931,Ward's Island Cottage,76112585,Samantha,Toronto,225,1,1,2886,1,3,1,"6,67",7,4,1,2,2,1,1,"0,89",275,North America +2932,"Entire home in Little Italy , Toronto",260079173,Huy,Toronto,649,1,1,1822,1,3,5,"6,8",5,6,3,4,6,5,1,1,101,North America +2933,"Private room, walk to subway",187548308,Xiaohui Lucy,Toronto,37,0,0,2191,1,2,11,"6,48",31,1,1,1,1,11,"0,94","0,83",15,North America +2934,Beautiful 3 Bedroom/2 Bath Home Near Downtown TO,260182573,Michael,Toronto,300,0,0,1822,1,3,1,"6,55",20,6,2,3,4,1,0,0,185,North America +2935,Homey Retreat in Quiet Neighbourhood,262878999,Roland,Toronto,65,1,0,1809,1,3,2,"6,59",49,3,1,1,2,2,1,1,302,North America +2936,"Bright quiet private bedroom, 8 min walk to subway",65924609,Golrokh,Toronto,38,0,0,2948,1,2,1,"6,86",14,1,1,1,1,1,0,0,306,North America +2937,One bedroom apartment at cabbagetown. Toronto,163870275,Jeff,Toronto,125,1,0,2321,1,3,5,"6,4",5,1,1,1,1,8,1,1,23,North America +2938,Single Guest Studio Apt Downtown (Near Subway),16623914,Christopher,Toronto,172,0,0,3613,1,3,1,"6,82",159,1,1,0,1,1,1,"0,77",319,North America +2939,16thFloor DT CBD Brand New Condo w Parking,131992934,Jian,Toronto,189,0,0,2533,1,3,2,"6,71",193,5,1,2,3,5,1,"0,67",0,North America +2940,Private room/private bathroom/near subway,187548308,Xiaohui Lucy,Toronto,43,0,0,2191,1,2,11,"6,72",25,2,1,1,1,11,"0,94","0,83",28,North America +2941,STC. 24hBus/Self-Catering/Warm&Private Indie Suite,130662121,Jian 谏,Toronto,67,0,0,2542,1,3,3,7,1,1,"1,5",1,1,3,0,0,275,North America +2942,7815Best District-Toronto78152 BRDRM/Free Parking/Wifi.,20607592,Christine,Toronto,93,1,0,3535,1,3,5,"6,53",19,6,"1,5",2,3,5,1,"0,93",264,North America +2943,Charming Danforth Village Guest Suite Apartment,143249144,Ana,Toronto,100,1,1,2467,1,3,1,"6,85",26,2,1,1,1,4,1,1,306,North America +2944,Designed private suite and balcony in the Annex.,32086191,Anouk,Toronto,95,0,0,3292,1,3,1,"6,94",17,1,1,1,1,1,"0,5",0,206,North America +2945,Beautiful spacious Bedroom at the heart of town,94891041,Jacy,Toronto,100,0,0,2787,1,2,1,0,0,2,1,1,1,1,0,0,277,North America +2946,Distillery District Lane House,21727635,Christine,Toronto,300,0,0,3507,1,3,1,"6,86",7,3,2,2,2,1,0,0,185,North America +2947,Sleek private room in North York,260652800,Jugini,Toronto,32,0,0,1820,1,2,10,"5,5",8,1,1,1,1,10,"0,1","0,83",235,North America +2948,"Stylish High Park 2bd 2bath, walk to park and lake",164543821,Susan,Toronto,199,0,0,2317,1,3,3,"6,78",87,4,"1,5",2,2,4,1,"0,74",175,North America +2949,"Unique, open concept Coach House centrally located",263727224,Frank,Toronto,150,0,0,1805,,3,1,7,2,4,1,1,1,1,1,0,365,North America +2950,(U4) Modern Bedroom With Private Bathroom,217391546,Yao Cheng,Toronto,60,1,1,2044,1,2,3,7,5,2,1,1,1,7,1,1,257,North America +2951,(G1) Modern Bedroom With Private Bathroom,217391546,Yao Cheng,Toronto,60,1,1,2044,1,2,3,"6,63",8,2,1,1,1,7,1,1,314,North America +2952,Private room in townhouse Share bathroom,210745137,Sergio,Toronto,400,0,0,2081,,2,2,7,4,2,"1,5",1,1,2,0,0,0,North America +2953,Spacious 2 Bedrm apartment Yonge/Bloor - Long term,195095,Urbano,Toronto,172,0,0,5015,1,3,11,"6,5",2,4,2,2,2,11,1,"0,71",226,North America +2954,Room,196230650,Bahram,Toronto,60,0,0,2145,1,2,5,0,0,1,1,1,0,5,"0,8",1,186,North America +2955,Beautiful Harbourfront Condo in Downtown Toronto,267413903,Selwy,Toronto,100,0,0,1788,1,3,1,"6,8",65,2,1,1,1,1,1,"0,67",107,North America +2956,1 BR Luxury Condo - Eaton Centre - Yonge & Dundas,69778408,Norman,Toronto,128,0,0,2922,1,3,3,"6,43",7,2,1,1,1,5,"0,73","0,21",275,North America +2957,Beautiful Downtown Condo w CN Tower Skyline View,226185727,Cj,Toronto,111,1,0,1992,1,3,1,"6,73",49,4,1,1,2,1,1,1,157,North America +2958,SUPER-HOST stay in popular area - near transit/GO,134878529,Katharine M.,Toronto,147,0,0,2514,1,2,2,"6,83",78,2,1,1,2,2,0,"0,87",288,North America +2959,"Room 1, There's no place like home",267448174,Sam,Toronto,74,0,0,1788,1,2,7,7,3,2,"1,5",1,1,7,"0,67","0,69",296,North America +2960,超大房间,在basement整层就此一间,独立卫生间,超大衣柜,房间有400平方尺,整洁干净出行方便,213301462,Bella,Toronto,56,1,1,2067,1,2,1,"6,89",18,2,1,1,1,1,1,"0,86",174,North America +2961,Beautiful Modern Condo | 2BR + 2BA | 1000mbps Wifi,129056464,Sherif,Toronto,295,1,1,2553,1,3,1,"6,78",149,4,2,2,2,1,1,"0,96",224,North America +2962,Large Furnished Room in A Luxury House,223386352,Christine,Toronto,60,0,0,2010,1,2,2,0,0,1,1,1,1,2,1,0,313,North America +2963,"Quiet, Charming Suite in Vibrant Kensington Market",58559482,Ellen,Toronto,185,1,1,3000,1,2,1,"6,96",101,4,1,1,2,1,1,1,272,North America +2964,Bright and Cozy Basement Apartment,236366115,Miron,Toronto,95,0,0,1935,1,3,1,"6,82",45,2,1,1,1,1,1,"0,67",328,North America +2965,Roncesvalles/Parkdale/dundas w basement suite,27289708,Sabrina,Toronto,120,1,0,3373,1,2,1,"6,73",322,2,1,0,1,1,1,"0,99",144,North America +2966,Renovated one bedroom apartment with free parking,267468184,Renalda,Toronto,220,1,0,1788,1,3,1,"6,62",182,2,1,1,1,1,1,"0,99",342,North America +2967,Bedford Park 1BD Suite/Separate Entrance min28days,81937977,Lana,Toronto,79,1,1,2857,1,3,1,"6,8",147,2,1,1,1,2,1,"0,97",7,North America +2968,3rd floor-Amsterdam Room,198393365,Scott,Toronto,91,1,1,2135,1,2,4,"6,87",274,2,2,1,0,4,1,"0,98",28,North America +2969,Spacious cozy room in Scarborough McCowen/McNicoll,53986521,Eva Yanqiu,Toronto,86,0,0,3035,1,2,2,"6,88",16,2,"1,5",1,1,2,1,"0,73",275,North America +2970,Chic Condo Panoramic Views of CN Tower,97638530,Bita,Toronto,218,0,0,2768,1,3,1,"6,83",29,4,1,1,2,1,0,0,0,North America +2971,Townhouse near RT station,41370583,Peter,Toronto,35,1,0,3184,1,2,3,"6,33",9,1,1,1,1,3,1,"0,89",7,North America +2972,A Bed room with bathroom with good view,267607957,Tayebeh,Toronto,78,0,0,1787,1,2,4,"6,83",47,2,1,1,1,4,1,"0,71",1,North America +2973,Brand New Basement Apartment,157627670,Aruna,Toronto,70,1,1,2368,1,2,2,"6,86",7,1,1,1,2,2,1,1,308,North America +2974,Condo Downtown Toronto,264502697,Ash,Toronto,382,0,0,1801,1,3,1,7,1,4,1,1,2,1,0,0,1,North America +2975,Corporate Stays | Studio 2 | Bright 1BR,38459934,Corporate Stays,Toronto,219,1,0,3214,1,3,46,0,0,2,1,1,1,449,"0,97","0,88",277,North America +2976,Cozy Greektown apartment,111843817,Caitlin,Toronto,69,0,0,2662,1,3,1,"6,84",31,2,1,1,1,2,0,1,155,North America +2977,Amazing Condo in the Entertainment District,156971749,William,Toronto,239,1,0,2373,1,3,1,"6,72",173,3,1,1,2,1,1,"0,99",310,North America +2978,"Private room, private bathroom, near subway",187548308,Xiaohui Lucy,Toronto,42,0,0,2191,1,2,11,"6,56",41,1,1,1,1,11,"0,94","0,83",175,North America +2979,"Private room, walk to subway",187548308,Xiaohui Lucy,Toronto,37,0,0,2191,1,2,11,"6,65",34,1,1,1,1,11,"0,94","0,83",150,North America +2980,"Private room & private bathroom, near subway",187548308,Xiaohui Lucy,Toronto,43,0,0,2191,1,2,11,"6,76",21,2,1,1,1,11,"0,94","0,83",44,North America +2981,18,264279546,Shaofei,Toronto,98,0,0,1802,,1,2,0,0,2,1,1,1,2,0,0,276,North America +2982,Quiet room overlooking a garden 2,50328841,Lina,Toronto,55,1,1,3074,1,2,3,"6,85",13,1,1,1,1,3,1,"0,97",103,North America +2983,Spacious basement apartment with 8 foot ceilings.,35680257,Karen,Toronto,156,1,0,3245,1,3,1,"6,67",9,2,1,1,0,1,1,1,270,North America +2984,Beautiful Large Loft in King West,264859351,Agnes,Toronto,700,0,0,1799,,3,1,4,1,3,1,1,1,1,0,1,185,North America +2985,"Room 2, There's no place like home",267448174,Sam,Toronto,55,0,0,1788,1,2,7,7,2,2,"1,5",1,1,7,"0,67","0,69",296,North America +2986,Bright Condominium in the Heart of Toronto,264934407,Natik,Toronto,180,1,1,1799,1,3,2,"6,89",89,2,1,1,1,2,1,"0,89",32,North America +2987,"Room 3, There's no place like home",267448174,Sam,Toronto,55,0,0,1788,1,2,7,7,5,2,"1,5",1,1,7,"0,67","0,69",296,North America +2988,Unique Apartment near Subway with Parking,148422682,Igor,Toronto,178,1,1,2436,1,3,1,"6,93",84,2,1,1,1,1,1,1,335,North America +2989,Upper Beaches beauty!,57178818,Jillian,Toronto,700,0,0,3011,1,3,1,"6,6",10,6,"3,5",4,4,1,0,0,292,North America +2990,78 Large Room in Shared House by Finch Subway 78,11418370,Claude,Toronto,41,1,0,3756,1,2,13,"6,86",14,1,"1,5",1,1,13,1,1,40,North America +2991,"4 BR W/Fireplace, Private Yard W/In-Law Suite",1112766,Alexandra,Toronto,205,1,1,4622,1,3,4,"6,63",8,8,2,4,4,9,1,1,107,North America +2992,40th+ floor condo next to CN Tower w perfect view,268448576,Li,Toronto,226,0,0,1784,1,3,2,"6,82",162,3,1,1,2,2,1,"0,71",191,North America +2993,"Mid town TORONTO , Lawrence park Sanctuary",265009873,Safa,Toronto,85,0,0,1799,,2,1,0,0,1,1,1,1,1,0,0,275,North America +2994,Elegant & super clean small apartment T2,259472536,Tiana,Toronto,62,0,0,1826,1,2,1,"6,75",59,2,1,1,1,2,1,"0,67",35,North America +2995,Stunning Two Storey Penthouse in Downtown,9080790,Anna,Toronto,1085,0,0,3869,1,3,2,7,1,9,3,3,3,2,0,0,185,North America +2996,Private room In a house,144479372,Angela,Toronto,34,0,0,2461,1,2,3,"6,69",13,1,1,1,1,3,1,"0,57",214,North America +2997,Cute & Cosy Room Bloor & Ossington Subway,265074284,Angela,Toronto,67,0,0,1799,1,2,2,"6,71",7,1,1,1,1,2,0,"0,33",3,North America +2998,Studio in awesome downtown location,23518355,Lee-Anne,Toronto,126,1,1,3461,1,3,24,7,4,2,1,1,1,24,1,1,298,North America +2999,"Gabby's Place, Downtown Core +",125056852,Gabriela,Toronto,347,1,1,2579,1,2,2,"6,88",178,4,1,2,3,2,1,1,359,North America +3000,Home away from home at the center of Toronto,265081067,S,Toronto,180,0,0,1798,1,3,2,"6,45",11,2,1,1,1,2,1,0,1,North America +3001,"Bright,stylish Condo in Toronto area-free parking",265081067,S,Toronto,140,0,0,1798,1,3,2,0,0,2,1,1,1,2,1,0,0,North America +3002,"Quiet and private, separate entrance, bachelor",242148944,Olivia,Toronto,106,0,0,1908,1,3,1,"6,58",12,1,1,0,1,2,0,"0,89",286,North America +3003,"2 BR 2 Bath Lux. Condo, heart of downtown Toronto",261666863,Liv,Toronto,714,0,0,1815,1,3,1,"6,69",36,4,2,2,2,1,0,0,1,North America +3004,Modern beautiful townhouse in the place to be!!,264943903,Justin,Toronto,299,0,0,1799,1,3,1,0,0,4,2,2,1,2,0,0,275,North America +3005,Hotel-Style Nightly-Rental: Gardenview-Apt in BWV.,33322734,Stephan,Toronto,250,1,1,3276,1,3,1,"6,81",31,2,1,1,1,1,1,1,284,North America +3006,Excitement at your doorstep! 2BD/2BATH,846505,Julie,Toronto,120,1,0,4669,1,3,53,0,0,4,2,2,2,102,1,1,198,North America +3007,Rose2- nice and cozy room in a spacious basement,135911191,Elise Truc,Toronto,150,1,1,2508,1,2,3,"6,7",37,1,1,1,1,3,1,"0,85",0,North America +3008,Private 1 Bdr w/kitchen and bathroom,20275481,Pam,Toronto,75,1,1,3543,1,3,2,"6,74",27,2,1,1,1,2,1,1,299,North America +3009,Executive 2 Bedroom Suite/Subway/ Parking/ SH,54422135,Seyedeh Afarin,Toronto,199,0,0,3032,1,3,29,"6,4",15,4,2,2,2,69,1,"0,53",145,North America +3010,WIFI & PRIVACY DOWNTOWN TORONTO King West,268768928,Xander,Toronto,100,0,0,1782,1,3,1,"6,33",6,2,1,1,2,1,0,0,0,North America +3011,Gorgeous Condo DT Toronto mins to Scotia Arena,27277381,Sara,Toronto,283,1,1,3373,1,3,1,"6,79",53,5,2,2,3,1,1,1,174,North America +3012,"Suite, Private washroom, North York subway",110486834,Wen Bo,Toronto,84,1,0,2670,1,2,3,"6,71",41,1,1,1,1,7,1,1,208,North America +3013,Yours to Discover,64456124,Maria,Toronto,107,1,1,2959,1,3,2,"6,86",7,2,1,1,1,2,1,1,132,North America +3014,Yorkville Luxurious High-End Condominium,265633308,Alma,Toronto,300,1,1,1796,1,3,1,"6,76",242,2,1,1,1,1,1,1,41,North America +3015,Lovely 2 Bedrooms suite in North York,50181573,Vincent,Toronto,145,0,0,3075,1,3,1,"6,92",25,4,"1,5",2,2,1,1,"0,5",148,North America +3016,"20% off, Serene 2 BR 2 Bath in DT Toronto",265694719,Yun Jie,Toronto,270,1,1,1796,1,3,1,"6,79",163,6,2,2,3,2,1,"0,97",198,North America +3017,Peony - nice and cozy room in a spacious basement,135911191,Elise Truc,Toronto,53,1,0,2508,1,2,3,"6,68",50,1,1,1,1,3,1,"0,85",3,North America +3018,"Home Away From Home! Gorgeous, 2 Bed Private Apt",249297,Mahsa D,Toronto,195,0,0,4962,1,3,1,"6,59",64,5,1,2,5,3,1,"0,38",249,North America +3019,"1 beautiful suite, private washroom, near subway",110486834,Wen Bo,Toronto,68,1,1,2670,1,2,3,"6,9",49,1,1,1,0,7,1,1,32,North America +3020,Spacious Modern Condo w/ Lake View & Free Parking,87590847,Ronald,Toronto,139,1,1,2829,1,3,1,"6,89",9,2,1,1,1,1,1,1,267,North America +3021,Beautiful 1 Bdr Basement Apartment in North York,183692496,Oksana,Toronto,90,1,1,2212,1,3,2,7,19,2,1,1,2,2,1,"0,83",268,North America +3022,Private apartment with 2 Br in Brockton Village,56272448,Carlos Peres Goncalves,Toronto,150,1,1,3018,1,3,1,"6,8",45,4,1,2,3,1,1,1,39,North America +3023,Stunning Apartment Close To Downtown Toronto,95307812,Jerome,Toronto,83,0,0,2785,1,3,2,"6,87",54,5,1,1,2,2,1,"0,5",222,North America +3024,The Best is yet to come xoxo,20327820,Nathalia,Toronto,125,0,0,3542,1,2,2,0,0,2,"2,5",1,1,2,"0,97","0,73",96,North America +3025,"Top Floor Apt of Quiet, Private Family Run Triplex",76842662,Diana,Toronto,125,1,0,2883,1,3,1,"6,82",22,2,1,1,1,2,1,1,310,North America +3026,Beautiful new build apartment,7011272,Haris,Toronto,200,0,0,3968,1,3,1,"6,38",8,6,"1,5",2,3,1,0,0,11,North America +3027,"Bright Room in Large Home, Easygoing Hosts",16083796,Jonathan,Toronto,100,0,0,3626,1,2,1,"6,85",33,2,1,1,1,1,"0,6",1,219,North America +3028,Private Bedroom With Window,65785916,Therese,Toronto,60,1,1,2949,1,2,3,"6,75",4,1,1,1,1,3,1,"0,85",336,North America +3029,A spacious master bedroom with den,143016125,Yuting,Toronto,95,0,0,2469,1,2,1,"6,25",4,2,1,1,1,1,1,"0,61",95,North America +3030,"2BR Luxury Condo, Parking & Patio With A View!",195621982,Herman,Toronto,371,1,1,2148,1,3,1,"6,85",40,4,"1,5",2,2,1,1,"0,86",284,North America +3031,Room2,196230650,Bahram,Toronto,60,0,0,2145,1,2,5,0,0,1,1,1,0,5,"0,8",1,0,North America +3032,Private renovated suite in West End Toronto,74855314,Lena,Toronto,143,1,1,2893,1,3,1,"6,83",150,2,1,0,1,1,1,"0,99",355,North America +3033,Toronto Getaway. Lakeside. Close to everything !,371144993,Bailey,Toronto,169,0,0,1301,1,3,2,"6,8",40,5,1,2,2,2,0,1,275,North America +3034,"Private room, walk to subway",187548308,Xiaohui Lucy,Toronto,36,0,0,2191,1,2,11,"6,68",40,1,1,1,1,11,"0,94","0,83",131,North America +3035,2BR- Cozy home Toronto near High Park Lakeshore,90115034,Vivian,Toronto,105,1,0,2816,1,3,11,"6,56",27,5,1,2,3,17,1,"0,99",276,North America +3036,Lovely home near downtown Toronto w free parking,90115034,Vivian,Toronto,200,1,1,2816,1,3,11,"6,8",40,7,"1,5",3,4,17,1,"0,99",298,North America +3037,Chez Chodat - Midtown Leaside near Sunnybrook,109496342,Steven,Toronto,136,1,1,2676,1,3,1,"6,85",130,3,1,1,2,1,1,1,286,North America +3038,Private Downtown Apartment close to subway,57059266,Joshua,Toronto,75,1,0,3012,1,3,2,"6,31",35,4,1,1,2,2,1,"0,96",316,North America +3039,spacious room in a Garden home with wi-fi and AC,20776782,Tao,Toronto,82,1,0,3531,1,2,2,"6,52",75,1,1,1,1,2,1,"0,93",0,North America +3040,Luxury in the City - Cozy Modern Relaxing Hideaway,93915386,Shereef,Toronto,294,0,0,2794,1,3,1,"6,97",113,6,1,2,3,1,1,"0,75",44,North America +3041,Walkout service,196230650,Bahram,Toronto,120,0,0,2145,1,2,5,7,1,3,1,2,0,5,"0,8",1,186,North America +3042,0 Room,269507226,Ahmed,Toronto,285,0,0,1779,1,2,1,0,0,1,1,1,1,1,0,0,0,North America +3043,Private room with shared bathroom.,163870275,Jeff,Toronto,70,1,0,2321,1,2,5,"5,5",2,1,1,0,2,8,1,1,51,North America +3044,Superior Queen Room.,163870275,Jeff,Toronto,70,1,0,2321,1,2,5,6,1,1,0,1,1,8,1,1,67,North America +3045,"Modern, Central Condo in Financial/Discovery Dist.",8540894,Yani,Toronto,265,1,1,3897,1,3,9,"6,91",32,6,2,2,2,24,1,"0,93",315,North America +3046,King West Triplex Lower PVT APT 1 BDRM w pullout,37409645,Navid,Toronto,109,0,0,3225,1,3,3,"6,68",28,5,1,1,4,3,1,"0,66",269,North America +3047,Beach Getaway!,270388056,Lara,Toronto,80,0,0,1776,1,3,1,"6,77",22,1,1,1,1,1,1,"0,75",238,North America +3048,Artsy Chic Leslieville 1 BR Bsmt Apt w/Parking,11192458,Lena,Toronto,68,0,0,3763,1,3,1,"6,95",19,3,1,1,2,1,1,"0,8",205,North America +3049,Stunning 1BR Luxury Condo in Trendy Queen West,206535242,Mauro,Toronto,99,0,0,2101,1,3,1,7,8,2,1,1,1,1,0,0,365,North America +3050,City&Lake View Downtown 2Bdrm Condo w/Free Parking,270608601,Jidai,Toronto,220,0,0,1775,1,3,1,"6,82",108,4,2,2,2,1,0,0,298,North America +3051,Divine Bloordale Living,80794659,Jeffrey,Toronto,107,1,0,2863,1,2,4,"6,75",216,6,1,1,2,4,1,1,286,North America +3052,Bright and new suite in trendy Stockyards district,3201334,Fana,Toronto,70,0,0,4284,1,3,1,"6,9",10,2,1,1,1,1,1,"0,75",76,North America +3053,*Private Bedroom in the heart of Downtown Toronto*,101137706,Sam,Toronto,59,1,1,2746,1,2,2,"6,79",19,2,1,1,1,2,1,"0,86",275,North America +3054,LakePark Artsy 3 bedroom Townhouse/w 1 Parking,181797,Victoria,Toronto,259,1,1,5028,1,3,2,"6,66",47,7,"2,5",3,3,3,1,"0,88",335,North America +3055,Bright!Upper 2 levels self contained backsplit,269881723,Paulette,Toronto,130,1,1,1778,1,3,2,"6,88",24,4,1,2,7,2,1,1,203,North America +3056,One bedroom York U campus (females),270893178,Fiza,Toronto,40,0,0,1773,,2,2,"5,5",2,1,1,1,1,2,1,0,187,North America +3057,Luxury! Entire upper 2 level backsplit home,269881723,Paulette,Toronto,120,1,1,1778,1,3,2,"6,92",38,4,1,2,6,2,1,1,94,North America +3058,Bright Suite in Little Portugal / Queen West,44470294,Jesse,Toronto,235,1,1,3148,1,3,1,"6,9",148,4,1,1,2,1,1,1,285,North America +3059,Spacious 1 Bedroom Gem in the Heart of Bloor West,165830267,Matt,Toronto,55,0,0,2309,,3,1,"6,93",14,2,1,1,1,1,0,0,83,North America +3060,Cool Queen West apt/Laundry/deck/Parking/Pets OK!,846505,Julie,Toronto,150,1,0,4669,1,3,53,"6,62",37,3,1,1,2,102,1,1,0,North America +3061,Private Room in York University Village,270141390,Adrian,Toronto,514,1,1,1777,1,2,2,"6,88",33,1,"1,5",1,1,2,1,"0,92",2,North America +3062,Downtown Toronto Skyline - Spacious 1BR w/Parking,99090746,Tetyana,Toronto,259,0,0,2760,1,3,1,"6,8",136,2,1,1,1,4,0,0,83,North America +3063,"82 Cozy room, Queen bed, TV, minutes from downtown.",225950637,George,Toronto,93,1,1,1994,1,2,2,"6,85",439,2,1,1,1,2,1,"0,99",250,North America +3064,Beaches Living - Large 1 Bed with Parking,27061855,Patricia,Toronto,150,1,1,3377,1,3,1,"6,78",40,2,1,1,1,1,1,1,223,North America +3065,Private Urban Oasis with Deck - close to Lake!,7065628,Imaan,Toronto,75,1,0,3965,1,3,1,"6,57",28,2,1,0,0,1,1,1,201,North America +3066,Private Guest Suite 2,6969076,Darren,Toronto,125,1,1,3971,1,2,3,"6,97",212,2,1,1,2,3,1,"0,9",285,North America +3067,East End 1 bedroom in main level House,56297018,Bryan,Toronto,92,0,0,3017,,2,1,7,1,2,2,1,1,1,0,0,276,North America +3068,"Little Italy bright boutique condo (600 sf, 1 Bdr)",14053370,Bobby,Toronto,83,0,0,3676,1,3,1,6,1,2,1,1,0,1,0,0,268,North America +3069,Private Guest Suite 3,6969076,Darren,Toronto,125,1,1,3971,1,2,3,"6,97",218,2,1,1,2,3,1,"0,9",288,North America +3070,"GRAFFITI HOUSE- Queen W, Sleeps 10 & 2 x Free PRK",271635241,Tosha,Toronto,413,1,1,1771,1,3,1,"6,73",160,10,"2,5",4,5,1,1,"0,9",253,North America +3071,Sun Filled 2 Bdrm w Balcony by Kensington Market,69432,Angel,Toronto,207,1,1,5225,1,3,9,"6,88",8,3,1,2,3,9,1,1,300,North America +3072,Heritage Rowhouse in Historic Old Town Toronto,31135925,Mavis,Toronto,386,0,0,3306,1,3,1,7,1,4,1,2,2,1,0,0,2,North America +3073,Stylish 1 BR condo near subway with downtown view,271699684,Jessica,Toronto,135,0,0,1770,1,3,1,"6,81",70,4,1,6,1,1,1,"0,67",86,North America +3074,Brand New 2 Bedroom Basement Apt. Midtown Toronto,274285145,Eytan,Toronto,80,0,0,1760,1,3,2,"6,77",44,3,1,2,2,3,1,"0,38",318,North America +3075,Private space within my suite close to gay village,63890893,Neville,Toronto,95,1,1,2963,1,2,1,"6,88",131,1,1,1,1,1,1,"0,98",323,North America +3076,Lakefront Beach House in the City,101289672,Francis,Toronto,666,1,1,2745,1,3,1,"6,78",23,10,2,6,8,1,1,1,340,North America +3077,RAPTOR Private Sunshine Room Separate Entrance,266293258,Gina,Toronto,59,1,1,1793,1,2,3,"6,74",38,2,1,1,1,4,1,1,195,North America +3078,Take in Panoramic City Views from an Elegant Condo,8540894,Yani,Toronto,325,1,1,3897,1,3,9,"6,84",44,6,2,2,3,24,1,"0,93",7,North America +3079,"Modern 1,170 sq.ft two-bedroom condo on Bay",14041119,Adel,Toronto,283,1,1,3676,1,3,2,"6,79",62,4,2,2,2,2,1,"0,86",276,North America +3080,"Bisha Hotel, Kost patio",121494062,Hashim,Toronto,260,0,0,2600,1,3,1,0,0,2,1,1,0,1,0,0,102,North America +3081,Private luxury room in spacious Leslieville loft,447751,Maria,Toronto,158,0,0,4794,1,2,1,"6,91",11,2,1,1,1,2,0,0,269,North America +3082,Liberty Village Luxurious 1 Bed + Free Parking,181188867,Adriano Vito,Toronto,250,1,1,2226,1,3,1,"6,82",77,2,1,1,1,1,1,1,315,North America +3083,FIRST CLASS CONDO Female Room,212223183,A07da,Toronto,200,0,0,2073,,2,1,7,1,1,1,1,1,1,0,0,0,North America +3084,South Yorkville retreat,83069748,Anna,Toronto,186,1,1,2851,1,3,3,"6,74",19,2,1,0,2,3,1,1,100,North America +3085,Luxury Suite in Yorkville Top Floor View w/parking,16645321,Pierre-James,Toronto,110,1,1,3612,1,3,2,7,2,4,1,1,2,2,1,"0,89",263,North America +3086,2minSubway/Private BathRM/Downtown/AtLeast95Nights,272892381,Ree,Toronto,67,1,1,1765,1,2,1,"6,89",9,1,1,1,1,1,1,1,363,North America +3087,★Urban Luxury★ Ace Location & Instaworthy Rooftop,23388596,Andy,Toronto,150,1,1,3465,1,3,1,"6,94",31,3,1,1,2,2,1,1,77,North America +3088,The Maple Downtown,222875145,Evelina,Toronto,121,0,0,2013,1,3,1,"6,79",38,3,1,1,3,1,1,"0,67",201,North America +3089,Single bed,140639037,Rency,Toronto,49,0,0,2482,1,1,3,"6,6",10,1,1,1,1,3,0,0,185,North America +3090,1.5 bedroom in Rosedale!,206744374,Fiona,Toronto,300,0,0,2100,1,2,1,"6,8",5,2,1,1,2,1,0,0,192,North America +3091,Quiet and Cozy place with an extended narrow space,206274619,Shahab,Toronto,30,0,0,2102,1,2,2,7,4,1,1,1,1,3,0,0,310,North America +3092,Charming Old World Bungalow Haven in Town Central,140817985,Lawrence,Toronto,100,1,0,2481,1,2,1,"6,83",151,1,1,1,1,1,1,"0,84",14,North America +3093,Brockton Village Crash Pad,10899471,Stephanie,Toronto,97,1,0,3776,1,3,3,"6,52",21,2,1,1,1,6,1,"0,81",155,North America +3094,Private Cozy Bedroom in North York,209384288,Yu Jung,Toronto,1000,0,0,2088,,2,2,7,2,1,2,1,1,2,1,0,276,North America +3095,Cool Penthouse for Art Lovers,126122,Alx,Toronto,199,1,1,5099,1,3,1,7,10,2,1,1,1,1,1,1,22,North America +3096,Modern penthouse fashion/entertainment district,215605671,Sabeen,Toronto,700,0,0,2055,,3,1,0,0,3,"2,5",2,1,1,0,0,2,North America +3097,"2 Bedroom Luxury Condo, 980sq feet",16594320,Murray & Harry,Toronto,125,1,1,3614,1,3,2,"6,82",38,4,2,2,3,2,1,1,77,North America +3098,Unique Loft-House on Queen West,6394642,Julie,Toronto,400,0,0,4005,1,3,1,0,0,4,2,2,2,1,0,0,97,North America +3099,Modern Condo in DT Toronto with Lakeview + Parking,272855922,Ashen,Toronto,227,1,1,1766,1,3,1,"6,66",193,3,1,1,2,1,1,1,350,North America +3100,Townhouse 1min walk from RT station - close to STC,41370583,Peter,Toronto,40,1,0,3184,1,2,3,7,4,1,"1,5",1,0,3,1,"0,89",191,North America +3101,50% off - luxury Condo @Yorkville,272881274,Nima & Saba,Toronto,109,1,0,1766,1,3,1,"6,44",41,3,1,1,2,1,1,1,111,North America +3102,Toronto Oasis: Hot Tub Home Near Ossington Strip,3251873,Shane,Toronto,275,1,1,4279,1,3,2,"6,88",24,3,"2,5",2,2,3,1,"0,92",277,North America +3103,Cozy 1 bedroom apt,72228673,Hala,Toronto,264,1,1,2907,1,3,1,"6,67",6,2,1,1,1,2,1,"0,84",304,North America +3104,Heritage Building in the Heart of Downtown.,273065391,Sidney,Toronto,77,1,1,1765,1,2,1,"6,84",300,2,1,1,1,1,1,"0,97",327,North America +3105,Espacio’s Place (Female Only ),274707420,Juanita,Toronto,30,0,0,1758,,2,1,"6,9",20,1,"1,5",1,1,1,0,0,170,North America +3106,Stay safe and sleep tight - 10 mins away from DT,928581,Layla,Toronto,100,0,0,4653,1,2,1,"6,11",9,2,1,1,0,1,0,0,186,North America +3107,Amazing place to stay! Great View.,275110858,Sami,Toronto,211,0,0,1757,1,2,1,7,1,1,1,1,1,1,0,0,335,North America +3108,Beautiful FURN'D 2500 SQFT 4Bd 2Bth & Ofic and 4PK,35256388,Mohamed Hosein,Toronto,300,1,1,3250,1,3,2,"6,73",11,8,2,4,4,4,1,1,210,North America +3109,Spacious Comfortable Private Room,270760767,Wai Yin Adrian,Toronto,128,1,0,1774,1,2,2,"6,71",52,3,1,1,0,8,"0,99","0,98",314,North America +3110,Gem one bedroom apartment,23310500,Theofanis,Toronto,99,1,0,3467,1,3,11,"6,87",23,4,1,1,1,11,"0,82",1,228,North America +3111,"Bright, Spacious & Upscale, Steps to Subway/Mall",436308803,Sofia,Toronto,384,0,0,867,1,3,2,"6,9",109,6,2,3,4,2,1,"0,6",158,North America +3112,Lovely 2BR Leslieville home - 10 mins from DT TO,21849389,Renee,Toronto,193,0,0,3504,1,3,1,0,0,3,"1,5",2,2,1,0,0,24,North America +3113,toronto世嘉宝中心 别墅二楼套间,208018084,Peng,Toronto,70,1,0,2094,1,2,4,"6,76",58,2,1,1,1,4,1,"0,88",273,North America +3114,Great location two bedrooms apartment clean safe,176473542,Omer,Toronto,152,0,0,2250,,2,1,0,0,1,1,1,0,1,0,0,186,North America +3115,"Unbelievable CN Tower Views..50+Floor, Union/MTCC",275191472,Rehan,Toronto,188,1,0,1756,1,3,1,"6,73",80,1,1,0,1,1,1,1,302,North America +3116,Charming 2 Bed + Den Family Home - Walk to Subway,170581,Carla,Toronto,200,0,0,5036,,3,1,0,0,4,1,2,2,1,0,0,64,North America +3117,Midtown place basement,272796519,Nasser,Toronto,70,1,1,1766,1,2,3,"6,8",20,1,1,1,1,3,1,1,11,North America +3118,Modern Retreat in Trendy JUNCTION Neighbourhood,273391128,James,Toronto,160,1,1,1764,1,3,1,"6,94",287,2,1,1,1,1,1,"0,95",340,North America +3119,Corner Chic Condo by CNTower/Rogers/Union Station,194852818,Chaojun,Toronto,100,0,0,2151,1,3,2,"6,79",42,2,1,1,2,2,1,"0,6",227,North America +3120,73Trendy 1bd + Den with City and Lake Views 82,273400138,David,Toronto,123,0,0,1764,1,3,1,"6,68",56,4,1,2,3,1,1,"0,71",108,North America +3121,Beautiful main floor apartment in the Annex,273646031,Karam,Toronto,74,1,0,1763,1,3,4,"6,64",33,3,1,1,2,4,1,1,240,North America +3122,"Toronto, Private contemporary cozy room",248726708,Frank,Toronto,76,0,0,1876,1,2,3,7,3,1,1,1,1,3,0,1,185,North America +3123,DUNDAS SQUARE - Two Work Desks! - Modern Bunker,105618845,Rob And Lisa,Toronto,180,1,1,2710,1,3,7,7,13,2,1,2,2,7,1,1,362,North America +3124,30+ floor condo in the sky overlooking CN Tower,275661428,Hanming,Toronto,218,0,0,1755,1,3,2,"6,78",191,3,1,1,1,2,1,"0,65",192,North America +3125,Beautiful Guest Suite in Great Area 5 min from UP,181132072,Elizabeth,Toronto,74,0,0,2226,1,2,1,"6,81",240,2,1,1,1,1,"0,94","0,58",65,North America +3126,The Lawrence,146375472,Sam,Toronto,69,1,0,2450,1,3,5,"6,68",210,4,1,1,2,10,1,"0,97",47,North America +3127,Downtown Toronto Little Italy Trinity Bellwood 3W,150625571,Dash,Toronto,77,0,0,2421,1,2,12,"6,33",3,1,1,1,1,12,"0,8","0,38",1,North America +3128,Bright + Modern Downtown Toronto Summer Hot-spot!,275779406,Natalie,Toronto,290,0,0,1754,,3,1,0,0,3,1,1,2,1,0,0,276,North America +3129,Cozy Historic Brockton Home,166602545,Benito,Toronto,499,1,0,2305,1,3,1,"6,7",43,10,"2,5",4,4,1,1,1,263,North America +3130,"Bright, Spacious & clean 1BR with private bathroom",42166282,Yingxia,Toronto,93,1,1,3176,1,2,5,"6,9",10,1,1,1,1,5,1,"0,91",84,North America +3131,Raptor Apartment!Separate Entrance Walkout NoShare,266293258,Gina,Toronto,99,1,0,1793,1,3,3,"6,71",69,4,1,2,2,4,1,1,275,North America +3132,Great lights marble counter tops and stainless,276001838,Albert,Toronto,100,0,0,1753,,2,1,0,0,2,1,1,1,1,0,0,187,North America +3133,The GREEN Room in the trendy Ossington-Bloor area,172682372,Heather,Toronto,69,1,1,2272,1,2,2,"6,91",200,2,1,1,1,2,1,1,355,North America +3134,Spacious 2 Bedroom Condo Steps Away From TIFF,205928054,David,Toronto,500,0,0,2103,,3,1,0,0,2,2,1,1,1,0,0,277,North America +3135,Brand new lower-level studio in Toronto,277471208,Dmytro,Toronto,70,0,0,1748,1,3,1,"6,9",101,2,1,1,1,1,1,"0,74",305,North America +3136,Private Room/Almost Entire Place in Centre Ville,90843735,Carlos,Toronto,76,1,1,2812,1,2,1,"6,85",54,2,1,1,1,1,1,"0,96",273,North America +3137,Elegant Spacious Studio in Downtown Toronto,273658759,Bas,Toronto,101,0,0,1763,1,3,12,"6,8",30,2,1,1,2,12,1,"0,66",227,North America +3138,"78Private Room(C) in Shared House, Subway, Parking78",11418370,Claude,Toronto,49,1,1,3756,1,2,13,"6,75",16,1,1,4,1,13,1,1,119,North America +3139,Private Basement Studio,257955199,Jeff,Toronto,63,0,0,1833,1,2,1,"6,74",19,1,1,0,0,1,"0,8","0,83",278,North America +3140,Big private Rm I near York U Subway 漢語OK,96693289,Crystal,Toronto,68,0,0,2775,,2,9,"6,33",3,8,"1,5",6,7,10,1,"0,67",0,North America +3141,Sweet + Inviting Toronto Midtown One Bedroom Apt,276315481,Yvette,Toronto,58,0,0,1752,1,3,2,"6,58",38,2,1,1,1,3,"0,83","0,89",207,North America +3142,Bright and specious basement guest suite.,276128018,Spas,Toronto,119,0,0,1753,,3,1,6,6,2,1,1,1,1,0,0,276,North America +3143,"Huge Bedroom with French window,fireplace",62443792,Ayeesha,Toronto,41,1,0,2974,1,2,3,"6,75",68,1,1,1,1,3,"0,92","0,96",208,North America +3144,Unobstructed CN Tower View Condo beside CN Tower,277765690,Bao Yong,Toronto,165,0,0,1746,1,3,2,"6,75",175,3,1,1,2,2,1,"0,71",227,North America +3145,Bright studio just outside Kensington Market,40215037,Ciera,Toronto,150,0,0,3196,1,3,1,"6,6",10,1,1,1,1,1,0,"0,33",334,North America +3146,Amazing basement apartment in prime Scarborough,18754509,Moe,Toronto,105,0,0,3570,1,3,1,"6,67",3,2,1,1,2,1,0,0,1,North America +3147,*Spring Deal* Large Modern Studio - Monthly,6803755,Alexander,Toronto,98,0,0,3980,1,2,1,"6,68",37,1,1,0,1,1,1,"0,64",237,North America +3148,1 BEDROOM LOFT IN LIBERTY VILLAGE,276576885,Sacha,Toronto,150,0,0,1751,,3,1,"6,91",11,2,1,1,1,1,0,0,276,North America +3149,Designer Penthouse,36576298,Ron,Toronto,500,0,0,3235,1,3,2,7,2,4,2,2,2,2,0,0,1,North America +3150,Cabbagetown Guest Suite 8215 Cleanings Included! 8215,5939874,Liora,Toronto,176,1,1,4034,1,3,1,7,22,2,1,1,1,1,1,1,198,North America +3151,Designers Walk Penthouse,36576298,Ron,Toronto,600,0,0,3235,1,3,2,"6,33",3,4,2,2,2,2,0,0,1,North America +3152,Cozy & beautiful DOWNTOWN apt & FREE wifi,22172910,Sepideh,Toronto,94,0,0,3496,1,3,1,"6,59",37,2,1,1,1,1,0,1,275,North America +3153,Downtown Luxury 1 BR Smart Condo (1mins -CN Tower),91804225,Deon Lee,Toronto,450,0,0,2806,1,3,1,"6,5",10,2,1,1,1,1,0,0,275,North America +3154,Toronto Condo near Airport,169664485,Ivy,Toronto,92,1,1,2289,1,3,1,7,3,6,1,2,3,2,1,1,145,North America +3155,St Lawrence. Mrkt,27781286,Mike,Toronto,105,0,0,3363,1,2,1,0,0,2,1,1,1,1,0,0,276,North America +3156,Margaret House: Jupiter 2,281036922,Calina,Toronto,55,0,0,1736,,2,5,7,18,2,1,1,1,6,0,0,195,North America +3157,Elegant and bright basement in prime location!!!,78890375,Dewan,Toronto,85,1,0,2872,1,3,1,"6,65",62,3,1,1,1,1,1,"0,9",299,North America +3158,Downtown basement appartment for long term.,52873585,Dimitri,Toronto,63,0,0,3044,1,3,1,0,0,2,1,1,1,1,0,0,144,North America +3159,Suriya's happy home!,494563000,Nevetha,Toronto,179,0,0,482,1,3,1,"6,78",99,6,1,3,3,1,0,0,23,North America +3160,"Modern Penthouse Downtown, Queen and Ossington",272301657,Roni,Toronto,255,0,0,1768,1,3,1,"6,92",12,2,"1,5",1,1,1,0,0,148,North America +3161,"Free parking, near airport, walkable to subway",237418707,Jiayin,Toronto,52,1,1,1930,1,2,8,"6,9",93,1,1,1,1,8,1,"0,97",298,North America +3162,Luxury Condo Downtown Toronto 2BR/2BA,278939798,Somayeh,Toronto,190,0,0,1743,1,3,1,"6,89",9,6,2,2,2,2,0,"0,4",142,North America +3163,Private bedroom Toronto (females only),270893178,Fiza,Toronto,40,0,0,1773,,2,2,0,0,1,1,1,0,2,1,0,2,North America +3164,One Bedroom in Downtown Toronto,147556519,Michelle,Toronto,135,0,0,2442,1,3,1,7,1,1,1,1,1,1,0,0,3,North America +3165,Beautiful & Spacious Studio in the heart of Annex,149163639,Mario,Toronto,110,1,0,2431,1,3,4,"6,6",10,4,1,0,2,4,1,1,14,North America +3166,Executive suite w/ private urban terrace + parking,25852486,Ankur,Toronto,231,1,1,3400,1,3,1,"6,77",121,3,1,1,1,1,1,1,276,North America +3167,Downtown _ _,240647362,Gail,Toronto,211,1,1,1915,1,3,3,"6,79",47,1,1,0,1,3,1,"0,86",275,North America +3168,Toronto Bloor West Village Comfort,281128957,Van,Toronto,125,1,0,1736,,3,1,6,2,2,1,1,1,1,1,1,217,North America +3169,78 of Downtown Leslieville73Netflix73Full Kitchen73W/D,281495688,William,Toronto,365,1,1,1735,1,3,5,"6,91",11,8,3,4,5,12,"0,96","0,98",323,North America +3170,Vi's place - Studio near Yorkdale Shopping Mall,278928585,Vi,Toronto,100,1,1,1743,1,2,3,"6,92",77,2,1,0,3,6,1,1,121,North America +3171,CONDO IN THE HEART OF ENTERTAINMENT DISTRICT!,176061832,Eve,Toronto,250,0,0,2253,1,3,1,"6,67",3,2,1,1,1,1,0,0,276,North America +3172,Waterfront,29395026,Sylvester,Toronto,152,1,1,3335,1,3,5,"6,78",64,6,2,3,3,5,1,1,301,North America +3173,LOCATION LOCATION Toronto Condo with parking,233002186,Share,Toronto,195,0,0,1951,1,3,1,0,0,2,2,2,2,1,0,0,7,North America +3174,Fully Furnished North York Walkout Basement Suite,185563751,Sangeethai,Toronto,200,0,0,2202,1,3,1,0,0,2,"1,5",1,1,1,0,0,278,North America +3175,Hidden Gem In The City (3BDR),83812170,Hai Hoa,Toronto,150,0,0,2848,1,2,1,"6,77",88,6,1,3,3,1,0,0,133,North America +3176,Spacious Boujee Beach House (Woodbine Beach),13936429,Stephen,Toronto,200,0,0,3679,1,2,3,"6,92",26,5,"1,5",2,3,3,0,"0,5",328,North America +3177,Comfortable Room in Charming Westend Home,27361518,Beverley,Toronto,75,1,1,3371,1,2,2,7,28,2,1,1,1,6,1,1,237,North America +3178,"78Private Room(A) in Shared House, Subway, Parking78",11418370,Claude,Toronto,50,1,1,3756,1,2,13,7,8,1,1,1,1,13,1,1,83,North America +3179,"A nice, quiet and safe neighbourhood",282118315,Hanh,Toronto,70,0,0,1733,1,2,2,"6,45",53,1,1,1,1,2,0,"0,87",23,North America +3180,Bright Yellow Bedroom,22964552,Brunilda,Toronto,85,0,0,3476,1,2,3,"6,9",157,2,1,1,1,3,1,0,0,North America +3181,Downtown Luxury Spacious 2BR / 3 beds / Parking,10486938,Elena,Toronto,105,1,0,3798,1,3,8,"6,25",8,4,1,2,3,9,1,"0,85",148,North America +3182,2BR Condo by CN Tower/ Rogers,282261335,Shahzer,Toronto,3570,0,0,1733,1,3,1,"6,71",55,6,1,2,3,1,0,0,95,North America +3183,SpaciousTwo Bedrooms & Two Baths in Little Italy,260079173,Huy,Toronto,399,1,1,1822,1,3,5,"6,86",14,4,2,2,2,5,1,1,211,North America +3184,Private apartment on the subway near airport,138826603,Milan,Toronto,80,1,1,2491,1,2,1,"6,75",205,2,1,1,1,1,1,1,0,North America +3185,Gorgeous 2 Bedroom - Queen St W Next To DrakeHotel,1684087,Pouneh,Toronto,145,1,1,4473,1,3,22,"6,93",14,4,1,2,2,33,1,"0,98",24,North America +3186,Downtown Toronto Little Italy Trinity Bellwood 02S,150625571,Dash,Toronto,72,0,0,2421,1,2,12,0,0,1,2,1,1,12,"0,8","0,38",1,North America +3187,Melvin & Caroline - Ensuite Double Bedroom 3,279557934,Melvin,Toronto,60,0,0,1741,1,2,2,"6,86",14,2,1,1,1,2,1,0,208,North America +3188,"78Private Room(B) in Shared House, Subway, Parking78",11418370,Claude,Toronto,40,1,1,3756,1,2,13,"6,81",16,1,1,1,1,13,1,1,130,North America +3189,Recently renovated 1-bdrm suite in the Junction,157509352,Susan,Toronto,100,1,1,2369,1,3,1,"6,8",30,4,1,1,1,1,1,"0,86",225,North America +3190,"78Private Room(D) in Shared House, Subway, parking78",11418370,Claude,Toronto,45,1,1,3756,1,2,13,"6,8",15,1,1,1,1,13,1,1,65,North America +3191,60 Dupont,94071526,Matthew,Toronto,100,1,1,2793,1,3,14,"6,44",16,2,1,1,1,14,1,"0,88",184,North America +3192,Cozy 1BR Apartment in North Toronto near Yorkdale,156502661,Michael,Toronto,99,1,1,2377,1,3,1,7,2,2,1,1,1,1,1,1,44,North America +3193,Luxury Urban Oasis with Pool Spa - Toronto,13453875,Claire,Toronto,937,0,0,3692,1,3,1,6,2,6,"3,5",4,4,1,1,0,45,North America +3194,Stylish one bedroom in the Junction Triangle,22541363,Meghan,Toronto,90,1,1,3487,1,3,1,"6,63",24,2,1,1,1,1,1,1,178,North America +3195,New double room in Shared basement apartment (2),279557934,Melvin,Toronto,56,0,0,1741,1,2,2,7,5,2,1,1,1,2,1,0,215,North America +3196,Spectacular Bright Toronto Annex Gem,230277147,John,Toronto,210,1,1,1967,1,3,3,"6,82",11,3,1,2,2,3,1,1,220,North America +3197,"Luxurious, bright, gorgeous space",280725010,Shobha,Toronto,249,1,1,1737,1,3,1,7,1,5,"1,5",4,4,1,1,1,1,North America +3198,Comfortable work from home One Bedroom on College,56999877,Daniela,Toronto,110,1,0,3012,1,3,1,"6,67",118,3,1,1,1,1,1,"0,83",238,North America +3199,Luxurious 1 bedroom condo downtown,281410778,Jacques,Toronto,266,1,0,1735,1,3,1,5,1,2,1,1,1,1,1,1,187,North America +3200,"Bright, Central & Stunning Modern Downtown Studio",7808730,Sina And Mary,Toronto,85,1,1,3929,1,3,1,"6,74",50,2,1,0,1,2,1,1,325,North America +3201,Elegance at Trendy Bloor. 1560 SF luxury suite,21530128,Natalia,Toronto,750,0,0,3512,1,3,2,0,0,5,"2,5",3,7,7,1,"0,75",98,North America +3202,Luxurious bedroom suite.Private entrance/washroom.,172052824,D.Anushka,Toronto,61,1,1,2276,1,2,2,"6,76",21,4,1,1,2,2,1,"0,98",325,North America +3203,White House SUBWAY/DOWNTOWN/AIRPORT/YORKDALE,265969337,Helen,Toronto,288,0,0,1794,1,3,1,0,0,6,2,3,3,1,0,0,188,North America +3204,Luxury Loft in Liberty Village,5271418,Ellise,Toronto,193,0,0,4080,1,3,1,"5,75",4,3,1,1,0,1,0,"0,5",186,North America +3205,Peaceful Bright Bedroom,22964552,Brunilda,Toronto,65,0,0,3476,1,2,3,"6,83",206,2,1,1,1,3,1,0,0,North America +3206,★Stunning View★Central Downtown at Waterfront+Prkg,61713393,Berta,Toronto,130,1,1,2979,1,3,4,"6,7",53,4,1,2,3,6,1,"0,96",221,North America +3207,"PRIVATE 1BR, SEPAR. ENTRANCE+kitchen",34695406,Vladimir,Toronto,117,1,1,3258,1,3,1,"6,97",92,2,1,1,1,1,1,1,332,North America +3208,"Vibrant, Luxurious & Chic King West Designer Loft",496268,Stefanie,Toronto,239,0,0,4771,1,3,2,"6,94",50,2,1,1,1,2,1,"0,79",365,North America +3209,Cozy Private Entrance suite w/Laundry nxt/Airport,141166875,Andrew,Toronto,111,1,1,2479,1,2,3,"6,92",353,2,1,1,1,3,1,"0,99",159,North America +3210,Stunning Condo w/ WFH area in booming Yonge & Eg,41209891,Michelle,Toronto,200,0,0,3186,1,3,1,0,0,2,0,0,2,1,0,0,282,North America +3211,7815 Cozy Studio Apartment - near Downtown Toronto,281667112,Jay,Toronto,103,1,0,1734,1,3,6,"6,47",15,2,1,1,1,6,1,1,78,North America +3212,Clean and spacious Entire Apartment,40702769,Yiye,Toronto,110,0,0,3191,1,3,1,"6,89",9,2,1,1,2,1,1,"0,79",252,North America +3213,95 Spacious Bachelor Apartment - near DT Toronto,281667112,Jay,Toronto,88,1,0,1734,1,3,6,"6,09",23,4,1,1,2,6,1,1,205,North America +3214,99 Designer Loft Apartment - near Downtown Toronto,281667112,Jay,Toronto,78,1,0,1734,1,3,6,"5,56",9,3,1,1,2,6,1,1,206,North America +3215,Affordable Toronto Three Bedroom Apartment,21878865,Violeta,Toronto,350,0,0,3503,1,3,2,0,0,7,1,3,4,2,"0,5",0,1,North America +3216,1 Bdrm Condo Steps to Lively King Street West!,235369434,Vikas,Toronto,110,1,0,1939,1,3,1,"6,53",19,3,1,1,2,2,1,"0,86",200,North America +3217,First floor apartment,90714639,Diana Santos,Toronto,180,1,1,2813,1,3,1,"6,79",108,2,1,1,2,1,1,1,281,North America +3218,Private Cozy Apartment* Free Parking* Near Airport,273730029,Tran Thien Ly,Toronto,87,1,1,1762,1,2,2,"6,79",233,2,1,1,0,4,1,"0,98",286,North America +3219,Private Appartment in Bloordale Village,40738775,Anthony,Toronto,141,1,0,3191,1,3,1,"6,81",69,2,1,1,1,1,1,1,143,North America +3220,Large Room in Boujee Beach House (Woodbine Beach),13936429,Stephen,Toronto,120,0,0,3679,1,2,3,"6,9",10,3,"1,5",1,2,3,0,"0,5",328,North America +3221,Full Condo in Downtown Toronto,76027130,Nicholas,Toronto,231,0,0,2887,1,3,1,"6,84",45,3,1,1,2,1,1,"0,79",280,North America +3222,PACE,284330525,Yeny,Toronto,250,0,0,1727,1,2,2,"6,82",17,1,1,2,1,2,1,0,0,North America +3223,Clean and safe room by UTSC with a PUG!,233489588,Andrea,Toronto,54,0,0,1948,1,2,2,"6,86",7,3,1,1,1,2,1,"0,47",264,North America +3224,Junction Urban Escape w/Parking,285720137,Ciara,Toronto,117,0,0,1722,1,3,1,"6,9",59,2,1,1,1,1,1,"0,64",179,North America +3225,Entire Suite: Weston Village,254676587,Nigel,Toronto,300,1,1,1848,1,3,1,"6,8",212,4,1,1,2,2,1,1,185,North America +3226,"A guest suite with free parking, 20min to downtown",131390879,Anila,Toronto,75,0,0,2536,1,3,1,"6,64",11,2,1,1,1,4,1,"0,67",38,North America +3227,"Cheerful Private room, North York Subway",110486834,Wen Bo,Toronto,59,1,1,2670,1,2,3,"6,71",49,1,1,1,0,7,1,1,26,North America +3228,Downtown lifestyle suite,177090973,Nelson,Toronto,250,0,0,2247,1,3,1,0,0,2,1,1,1,1,0,0,305,North America +3229,The heart of Dtown,259848607,Pedro,Toronto,206,0,0,1824,,2,4,0,0,2,1,1,1,4,0,0,185,North America +3230,Luxury Suite in the Heart of Leslieville w Terrace,85741726,Jonathan,Toronto,255,0,0,2838,1,3,1,"6,87",63,4,"1,5",2,2,1,0,"0,8",208,North America +3231,2 BDR condo in the heart of downtown and harbor,39090786,Maha,Toronto,250,0,0,3207,1,3,1,0,0,4,2,2,2,1,0,0,282,North America +3232,Cozy Room close to the Subway,284807390,Fidele,Toronto,60,0,0,1725,,2,1,"6,75",12,2,1,1,1,1,0,1,186,North America +3233,"Lux Studio Apartment, 30 Day+: Everything You Need",3826255,Steve,Toronto,65,0,0,4221,1,3,2,"6,93",28,2,1,1,1,3,1,"0,71",338,North America +3234,"Beautiful 1Bed 1Bath apartment, Pet Friendly",98307199,Omar,Toronto,85,0,0,2765,1,3,1,"6,6",5,2,1,1,1,1,0,0,275,North America +3235,beautiful sparkling clean one bedroom condo,281012434,Mahmoud,Toronto,120,0,0,1736,1,3,2,"6,75",8,3,1,1,1,2,0,1,276,North America +3236,BREATHTAKING PRIVATE HOT TUB OASIS 3BR 2WR FIREPL,4822494,Maxwell,Toronto,409,0,0,4116,1,3,1,"6,85",87,5,2,3,3,1,1,"0,74",38,North America +3237,2 Bed Main Floor Suite with Serene Views,286109265,Kusum,Toronto,110,1,1,1721,1,3,1,"6,76",90,4,1,1,2,1,1,1,343,North America +3238,Newly rennovated basement suite in Dufferin Grove,3740441,Allyson,Toronto,77,0,0,4229,1,3,1,7,6,2,1,0,1,1,"0,8","0,33",319,North America +3239,900sqft1BDR+Free Street Parking+Patio+ MetroAccess,285079740,Sylvie,Toronto,150,0,0,1724,1,3,1,7,8,2,1,1,1,1,1,"0,78",167,North America +3240,Spacious room in detached house in the middle town,102857973,Krishna,Toronto,25,0,0,2732,1,1,5,7,1,1,"1,5",1,1,71,1,"0,7",306,North America +3241,The spot at the Bisha residence/ 2 Bedroom/Parking,54422135,Seyedeh Afarin,Toronto,300,0,0,3032,1,3,29,7,1,4,2,2,0,69,1,"0,53",0,North America +3242,The spot at the Bisha residence/ 2 Bedroom/Parking,97777185,Nima,Toronto,300,0,0,2767,1,3,14,"5,33",3,4,2,2,2,21,1,"0,62",0,North America +3243,Bright room for female,286459784,Margarita,Toronto,33,0,0,1720,1,2,1,"6,7",10,1,1,2,1,2,"0,8","0,42",190,North America +3244,Beautifully designed. Comfortable 1 bd.,455251166,Ginger,Toronto,125,0,0,742,1,3,2,"6,92",51,2,1,1,0,2,1,0,328,North America +3245,Walk to Sheppard Subway station,21809656,Reza,Toronto,95,1,1,3505,1,3,6,"6,86",35,2,1,1,1,6,1,"0,97",315,North America +3246,The Perfect Getaway,9080790,Anna,Toronto,493,0,0,3869,1,3,2,0,0,4,2,2,2,2,0,0,0,North America +3247,Luxurious Fully Private Studio in Midtown/Uptown,286656451,Rashekh,Toronto,79,1,1,1719,1,3,1,"6,86",100,3,1,0,4,1,1,"0,83",365,North America +3248,Humber Bay Family Friendly condo w Terrace&Parking,35816742,Lawrence R.,Toronto,227,1,0,3244,1,3,1,"6,65",74,4,1,2,3,1,1,"0,95",271,North America +3249,Large XL 2BR at Dundas & Roncey,146226441,Inna,Toronto,149,1,0,2451,1,3,37,"6,76",49,6,"1,5",2,2,38,"0,93","0,93",237,North America +3250,its a convenient place,261892835,Rebecca,Toronto,42,0,0,1814,1,2,3,"6,86",7,1,1,1,1,3,"0,83","0,8",1,North America +3251,Chez Arni,99920224,Arnold,Toronto,80,0,0,2754,1,2,1,7,4,2,"1,5",1,1,1,0,0,186,North America +3252,"Stylish, Bright & Modern, Steps from TIFF",11362355,Bjanka,Toronto,250,0,0,3758,1,3,1,0,0,2,1,1,1,1,0,0,277,North America +3253,"Escape : Downtown ""Getaway"" w outdoor jacuzzi",13053259,Craig,Toronto,96,1,0,3703,1,2,1,"6,7",419,3,1,1,1,1,1,1,38,North America +3254,Fully private North York 1-bedroom unit (cats ok),102557743,Yaroslav,Toronto,80,0,0,2734,1,3,5,"6,67",9,1,1,1,1,5,1,"0,41",275,North America +3255,Bright & Spacious Bedroom w/ Private Washrm #203,286934409,RongZhi,Toronto,129,1,1,1718,1,2,3,"6,78",78,2,1,1,1,3,1,1,342,North America +3256,Near to shopping centre,279765021,Hossein,Toronto,900,0,0,1740,,2,1,0,0,1,1,1,1,1,0,0,186,North America +3257,Bright condo Downtown,286970349,Bao,Toronto,335,0,0,1718,1,3,1,"6,92",12,3,1,1,2,1,0,0,185,North America +3258,Luxury 2 BD apt subway & High Park,146226441,Inna,Toronto,223,1,0,2451,1,3,37,"6,77",97,6,"1,5",2,2,38,"0,93","0,93",245,North America +3259,"Beautiful, Bright Basement Apartment by High Park.",286211530,Ali,Toronto,99,1,1,1721,1,3,1,"6,58",26,4,1,1,2,1,1,1,90,North America +3260,Homey Independent Condo Unit Convenient Location,271089142,Lucy,Toronto,110,0,0,1773,1,3,2,"6,67",49,4,1,1,2,2,1,"0,77",247,North America +3261,cool comfortable bedroom in the heart of downtown,34106626,Christina,Toronto,70,0,0,3265,1,2,4,0,0,1,1,1,0,4,1,"0,46",276,North America +3262,One Bedroom w/ Private Shower on 2nd fl#202,286934409,RongZhi,Toronto,119,1,0,1718,1,2,3,"6,66",44,2,1,1,1,3,1,1,342,North America +3263,Superb 2 br free parking High Park,146226441,Inna,Toronto,121,1,0,2451,1,3,37,"6,59",44,6,2,2,2,38,"0,93","0,93",248,North America +3264,One bed room for female student,287195333,Shahida,Toronto,618,0,0,1717,,2,1,0,0,1,1,0,0,1,0,0,187,North America +3265,Cozy Furnished Studio @ Downtown Toronto,253321896,Eric,Toronto,94,1,1,1854,1,3,2,7,5,2,1,0,1,5,1,"0,91",77,North America +3266,★PRIVATE STUDIO★separate entrance★FREE PARKING,34352200,Daria,Toronto,116,1,1,3262,1,2,1,"6,95",161,2,1,1,2,1,1,1,302,North America +3267,Spacious Unit Central to Downtown Toronto,95945877,Vikaas,Toronto,232,0,0,2781,1,3,1,"6,71",21,2,1,1,0,1,1,"0,5",186,North America +3268,Cute & Cozy Apt heart of QUEEN WEST w parking,846505,Julie,Toronto,130,1,0,4669,1,3,53,"6,6",45,2,1,1,1,102,1,1,185,North America +3269,Large Luxurious Room,92834120,Rukmini,Toronto,100,0,0,2800,1,2,7,7,1,2,1,1,1,7,0,0,1,North America +3270,College Street Comfort,290344002,Jason,Toronto,61,1,0,1706,1,2,1,"6,75",237,2,1,1,1,1,1,"0,99",364,North America +3271,"82Modern Luxury King 1BD82 by Roger Centre, CN Tower",287643427,Nova,Toronto,125,1,0,1716,1,3,1,"6,39",23,4,1,1,2,5,1,"0,85",211,North America +3272,Bright apartment in the heart of North York,290401798,Kaveh,Toronto,2000,0,0,1706,1,3,1,"6,75",4,4,2,2,2,1,0,0,185,North America +3273,Eglinton and Jane St.,228135429,Rose,Toronto,45,0,0,1981,,2,2,"6,6",5,1,2,2,0,2,0,0,0,North America +3274,Private Modern Studio*Free Parking*Near Airport,273730029,Tran Thien Ly,Toronto,93,1,1,1762,1,2,2,"6,8",379,2,1,1,1,4,1,"0,98",288,North America +3275,Private room - vibrant Locality - heart of Toronto,58917662,Joginder,Toronto,65,1,1,2998,1,2,3,"6,85",39,1,1,1,1,5,1,"0,97",280,North America +3276,"Luxe, Family-Friendly Oasis",29889412,Jonathan,Toronto,421,1,1,3327,1,3,1,"6,93",60,7,2,4,4,1,1,"0,98",270,North America +3277,Bachelor,286411918,Brian,Toronto,425,0,0,1720,1,3,1,0,0,2,1,1,1,1,0,0,185,North America +3278,Bright apartment in great location in Toronto,290511199,Azizollah,Toronto,3000,0,0,1705,,3,1,0,0,4,2,2,2,1,0,0,186,North America +3279,"Beautiful Modern Home, Heart of Bayview Village",273148697,Alessandro,Toronto,357,1,1,1765,1,3,1,"6,83",101,6,2,3,4,2,1,"0,92",227,North America +3280,Toronto's hippest location!,270151487,Raphael,Toronto,199,0,0,1777,1,3,1,"6,94",18,4,1,2,2,1,0,1,276,North America +3281,Lovely 2BR Suite-Lake View-Free Parking-CN Tower,18751367,CityCentre Suites,Toronto,250,0,0,3570,1,3,1,"6,79",24,4,2,2,2,2,1,"0,74",320,North America +3282,BIG 2 BED 2 BATH near SICK KIDS Hospital FREE Prkg,262595111,Carolyn,Toronto,299,1,1,1810,1,3,29,"6,6",5,6,2,2,4,29,1,"0,83",275,North America +3283,My cozy crib !!,288895931,Latoya,Toronto,50,0,0,1711,1,2,1,7,1,1,1,1,1,1,0,0,129,North America +3284,Cozy accommodation - room 1,280754761,Stanislav,Toronto,58,1,0,1737,1,2,3,"6,62",116,2,1,1,1,3,1,"0,86",278,North America +3285,One private room and one private washroom,207165672,Samuel,Toronto,56,0,0,2098,1,2,1,"6,64",14,2,1,1,1,1,0,1,1,North America +3286,Stylish basement house with 2 bedrooms near subway,290631596,Veena,Toronto,140,0,0,1705,,2,3,"6,89",9,4,"1,5",2,2,3,0,0,186,North America +3287,Private Room in Upscale Toronto Home,7153656,Tom,Toronto,191,0,0,3961,1,2,3,"6,89",44,1,1,1,1,3,0,1,185,North America +3288,Lovely Leslieville Launchpad,1311028,Heather,Toronto,119,1,1,4578,1,3,2,"6,98",42,4,1,1,2,2,1,1,312,North America +3289,"Sun-filled Apt by Lake, Nature & Humber College",333410455,Sue,Toronto,95,0,0,1548,1,3,7,7,19,2,1,1,2,7,1,"0,78",108,North America +3290,Luxury Modern Designer Renovated 2bdr Next to Mall,288542938,Sharareh,Toronto,149,0,0,1713,1,3,1,"6,91",11,4,1,2,3,1,1,"0,39",307,North America +3291,Luxurious Penthouse down town Toronto,290716405,Everardo,Toronto,250,0,0,1704,1,3,1,7,2,4,2,2,2,1,1,0,221,North America +3292,Luxury cozy suite in the heart of downtown,270343633,Krista,Toronto,590,0,0,1776,1,3,1,7,1,2,1,1,1,1,0,0,185,North America +3293,Luxury condo Downtown Toronto,240737008,Maksim,Toronto,220,0,0,1914,1,3,1,"6,57",23,2,1,9,1,1,0,"0,75",275,North America +3294,Beautiful luxury basement cozy and clean,290737695,Iman,Toronto,90,0,0,1704,1,2,1,"6,75",28,2,1,2,2,1,"0,5",0,30,North America +3295,Fresh Style Lakeside Views - Long term available!,290744799,Nadia,Toronto,95,0,0,1704,1,3,1,"6,9",10,3,1,1,1,1,1,0,115,North America +3296,Stunning PENTHOUSE in Entertainment District!,86958858,Amy,Toronto,650,0,0,2832,,3,1,0,0,4,2,2,2,1,0,0,277,North America +3297,"Beautiful, Clean Suite, Easy Access to Downtown",288671055,Marie,Toronto,97,0,0,1712,1,3,2,"6,88",26,2,1,0,1,2,1,"0,69",331,North America +3298,Cosy Studio Apt. in Toronto's Artsy Queen West,290780726,Jennifer,Toronto,138,1,1,1704,1,2,2,"6,72",540,2,1,1,1,2,1,1,190,North America +3299,*Cool&Contemporary* Condo steps from Eaton Center,46175105,Paul,Toronto,484,1,1,3127,1,3,1,"6,71",98,4,2,2,3,2,1,"0,83",116,North America +3300,Driveway Parking Available,5118421,David,Toronto,90,0,0,4091,1,3,1,"6,86",28,2,1,1,1,1,1,"0,8",298,North America +3301,Modern Studio @ Downtown | Clean & Convenient,285518432,Rachel,Toronto,164,1,1,1723,1,3,1,"6,8",60,2,1,0,1,1,1,"0,91",331,North America +3302,Nice and comfortable basement bedroom,282118315,Hanh,Toronto,60,0,0,1733,1,2,2,"6,9",10,1,0,1,1,2,0,"0,87",120,North America +3303,Small Rm N in big unit near YORK U Subway 漢語OK,96693289,Crystal,Toronto,38,0,0,2775,,2,9,6,2,7,2,6,7,10,1,"0,67",4,North America +3304,Panoramic City Views In Stylish and Trendy Suite,249994142,Frank,Toronto,185,0,0,1869,1,3,2,"6,67",15,5,2,2,2,2,0,0,309,North America +3305,Quiet Oasis in the Heart of Downtown,16668155,Zhara,Toronto,105,0,0,3612,1,3,1,7,1,4,1,1,2,1,0,0,3,North America +3306,Luxurious Newly Renoed 2Bed +Parking & Yard,80202988,David,Toronto,178,1,1,2865,1,3,3,"6,8",21,6,1,2,5,3,1,"0,85",97,North America +3307,"1Bedrm Condo|7815 of Dt-Union Stn, Scotiabank Arena",269916332,Baraq,Toronto,243,1,1,1777,1,3,1,"6,78",162,3,1,1,2,1,1,"0,98",303,North America +3308,*CN Tower-Corner High Floor-Rooftop Pool City View,266159976,Pardis,Toronto,158,0,0,1794,1,3,10,"6,7",20,3,1,1,2,17,"0,93","0,4",307,North America +3309,Elegant Modern Condo Waterfront Toronto W/Parking,131001508,Gilbert,Toronto,280,0,0,2539,1,3,1,6,4,2,1,2,3,3,0,0,0,North America +3310,Cozy Retreat not shared main floor 2nd picture,170561439,Demetrios,Toronto,70,1,1,2284,1,2,1,"6,89",500,2,1,1,1,1,1,1,161,North America +3311,COZY AND COMFORTABLE STUDIO IN HEART OF DOWNTOWN,579683,Liron,Toronto,75,1,0,4739,1,3,5,"5,73",11,2,1,1,0,5,1,1,239,North America +3312,A detached home for winter rental,45477306,Glenn,Toronto,150,0,0,3136,1,3,1,7,1,6,3,3,3,1,0,0,7,North America +3313,Newly renovated Shared Unit with a modern touch,40406859,Ed & Jean,Toronto,35,1,1,3194,1,2,9,"6,8",5,1,1,3,3,11,"0,9","0,96",155,North America +3314,Premium Condo Downtown Great View!,291208789,James,Toronto,144,1,1,1702,1,3,1,7,8,2,1,1,1,1,1,1,52,North America +3315,Modern 1 Bedroom Luxury Suite - Downtown Core,22773087,Calvin,Toronto,139,1,1,3481,1,3,7,"6,87",31,2,1,1,1,12,1,"0,95",212,North America +3316,Vi's place - 2 brs near Yorkdale Shopping Mall,278928585,Vi,Toronto,150,1,0,1743,1,2,3,"6,66",38,4,1,2,2,6,1,1,214,North America +3317,"Townhouse, downtown/financial dist/St Lawrence",113826425,Jasna,Toronto,233,1,0,2649,1,3,1,0,0,5,"1,5",3,3,3,1,1,7,North America +3318,Stylish 2 Storey 2BR in Downtown Toronto,273658759,Bas,Toronto,161,0,0,1763,1,3,12,"6,71",21,3,"1,5",2,2,12,1,"0,66",93,North America +3319,Contemporary Room in Elegant Downtown Home,7153656,Tom,Toronto,249,0,0,3961,1,2,3,"6,84",19,2,1,1,1,3,0,1,185,North America +3320,Leslieville large one bedroom apartment,8692710,Robyn,Toronto,75,0,0,3889,1,3,1,7,5,2,1,1,1,1,1,"0,5",177,North America +3321,Toronto Private Suite/Entrance - 11km to Airport,97014845,Susan,Toronto,115,1,1,2773,1,2,1,"6,93",352,2,1,1,1,2,1,"0,99",279,North America +3322,Cozy & Modern w/ beautiful Downtown Toronto view,72294356,Christian,Toronto,200,0,0,2907,1,3,1,7,7,2,1,1,1,1,0,0,276,North America +3323,Private Annex Getaway,291424503,Phillip,Toronto,225,1,1,1702,1,3,1,"6,86",150,5,1,2,2,2,1,1,246,North America +3324,Elegant Master Suite in Old Cabbagetown,7153656,Tom,Toronto,319,0,0,3961,1,2,3,"6,78",51,2,1,1,1,3,0,1,185,North America +3325,Luxury Condo Downtown Toronto City Views 8215 5 Star,290012750,Neha,Toronto,130,0,0,1707,1,3,1,"6,9",92,3,1,1,1,1,1,"0,75",242,North America +3326,Floating Yacht Cottage Stay near Toronto downtown,12090782,Abdallah,Toronto,150,0,0,3734,1,1,1,7,1,4,1,1,2,2,0,0,278,North America +3327,The BLUE Room in the trendy Ossington-Bloor area,172682372,Heather,Toronto,64,1,1,2272,1,2,2,"6,89",198,2,1,1,1,2,1,1,359,North America +3328,Spectacular 2bdrm/2bath- Waterfront Patio & Office,293274089,Dan & Kim,Toronto,89,1,1,1697,1,3,1,"6,78",36,4,2,2,2,18,1,"0,83",273,North America +3329,Home Away from Home. Fully equipped and spacious.,291576734,Anneta,Toronto,130,0,0,1702,1,3,1,7,18,3,1,2,2,1,1,"0,5",221,North America +3330,*Cozy Private SUITE wBath DTCore*Separate Entrance,291533774,Hong Jia,Toronto,96,1,1,1702,1,2,2,"6,82",497,2,1,1,1,2,1,1,327,North America +3331,"Double-Bed Room with Couch, TV Free parking & WIFI",48649427,Josh,Toronto,165,0,0,3095,,2,1,0,0,3,1,1,1,1,0,0,186,North America +3332,Cozy crib Dtown Toronto,259848607,Pedro,Toronto,206,0,0,1824,,3,4,7,1,3,1,1,0,4,0,0,7,North America +3333,Modern studio with high ceilings & ensuite laundry,19746853,Oren,Toronto,99,0,0,3553,1,3,1,"6,8",5,2,1,1,1,1,"0,75",1,330,North America +3334,Heart Inside the heart of Toronto Enjoy your Stay.,283622663,Joseph,Toronto,249,0,0,1729,,3,1,"6,63",19,2,1,1,3,1,"0,83","0,69",211,North America +3335,Downtown Toronto,289994902,Mina,Toronto,299,1,1,1708,1,3,4,"6,17",6,4,"2,5",2,2,4,1,1,185,North America +3336,Big Private BR / Private BA /FreeParking,160171162,Lixin,Toronto,36,0,0,2348,,2,3,7,9,2,1,1,1,3,"0,9","0,9",196,North America +3337,Private Room/Two single bed/Free parking,160171162,Lixin,Toronto,31,0,0,2348,,2,3,"6,73",15,2,1,1,2,3,"0,9","0,9",114,North America +3338,EXECUTIVE 2 BEDS SUITE W/ FREE PARKING DT TORONTO,1349884,Justin,Toronto,102,1,0,4568,1,3,1,"6,73",56,4,1,2,2,2,1,1,115,North America +3339,Downtown Toronto - the Entertainer,289994902,Mina,Toronto,499,1,1,1708,1,3,4,"6,78",37,4,2,2,2,4,1,1,185,North America +3340,Cozy accommodation - room 2.,280754761,Stanislav,Toronto,58,1,0,1737,1,2,3,"6,69",101,2,1,1,1,3,1,"0,86",275,North America +3341,Premium CN Tower & Lake Views next2 Union Station,293480306,Uptej,Toronto,155,1,0,1696,1,3,1,"6,7",67,2,1,1,1,1,1,"0,99",270,North America +3342,Luxurious Suite With Amazing City View !!!,249994142,Frank,Toronto,166,0,0,1869,1,3,2,"6,43",21,5,2,2,2,2,0,0,309,North America +3343,Condo Steps from Queen/King & major Event Venues,17002197,Michael,Toronto,343,1,0,3604,1,3,1,"6,73",30,4,2,2,2,1,1,"0,84",151,North America +3344,Cozy beach cabin,292257317,Michele,Toronto,90,1,1,1700,1,3,1,"6,82",34,2,1,1,1,1,1,1,80,North America +3345,Beatiful private room heart of the city,286790129,Ahmet,Toronto,178,0,0,1718,,2,1,0,0,2,1,1,0,1,0,0,186,North America +3346,Luxury condo master br in the heart of downtown,148787014,Sui,Toronto,207,0,0,2433,,2,1,"6,33",3,2,1,1,1,1,0,0,42,North America +3347,Airport stay near Humber College in Etobicoke,35570115,Mika,Toronto,83,1,1,3247,1,3,2,"6,67",3,2,1,1,1,2,1,"0,86",286,North America +3348,Modern and cozy crib!,259848607,Pedro,Toronto,206,0,0,1824,,3,4,0,0,3,1,1,1,4,0,0,1,North America +3349,BEAUTIFUL FURNISHED HOUSE TO SHARE,5845313,Catherine,Toronto,80,0,0,4040,1,2,4,0,0,1,1,1,1,4,1,0,297,North America +3350,Cozy accommodation - room 3,280754761,Stanislav,Toronto,58,1,0,1737,1,2,3,"6,66",125,2,1,1,1,3,1,"0,86",275,North America +3351,Garden studio at Bloor West - Close to subway,28748491,Patricia,Toronto,80,1,1,3346,1,3,1,"6,96",51,4,1,1,2,1,1,1,305,North America +3352,73Stunning Lake Views 7815 Modern 1bd + Den Apt,292730860,Santiago,Toronto,119,1,1,1699,1,3,1,"6,81",43,4,1,2,3,1,1,"0,89",102,North America +3353,Petite inboard Private room with single bed,40406859,Ed & Jean,Toronto,27,1,0,3194,1,2,9,"6,64",14,1,1,3,3,11,"0,9","0,96",281,North America +3354,"Modern, Renovated 1 Bedroom Near Pape Station",2020529,Chris,Toronto,104,1,1,4418,1,3,1,"6,9",21,2,1,1,2,1,1,1,139,North America +3355,Downtown Toronto Little Italy Trinity Bellwood 3E,150625571,Dash,Toronto,59,0,0,2421,1,2,12,"6,5",2,1,1,1,1,12,"0,8","0,38",1,North America +3356,New building!! best location in Toronto.,245008110,Jay,Toronto,200,0,0,1894,1,3,1,"6,88",17,2,1,1,1,1,0,0,0,North America +3357,Yorkville Luxury Corner Suite w/ Walkthrough Video,16435332,Tony,Toronto,129,1,1,3618,1,3,2,"6,75",4,2,1,1,0,2,1,1,98,North America +3358,"Affordable 1 bedroom, Downtown, close to subway",290631596,Veena,Toronto,100,0,0,1705,,2,3,"6,6",10,2,"1,5",1,1,3,0,0,186,North America +3359,1 bedroom downtown basement close to subway,290631596,Veena,Toronto,75,0,0,1705,,2,3,7,4,2,"1,5",1,1,3,0,0,186,North America +3360,An elegant basement apartment in Toronto,154710872,Anita,Toronto,68,1,0,2390,1,2,1,"6,73",26,2,1,1,2,1,1,"0,99",73,North America +3361,Private Room & Bath In Upscale Neighbourhood,11723357,Cathy,Toronto,42,0,0,3746,1,2,3,0,0,1,1,1,1,4,1,"0,73",299,North America +3362,Large Luxurious Three Bedroom Condominium.,294416777,Mohammad,Toronto,400,0,0,1693,1,3,1,"6,83",24,10,"1,5",3,5,1,0,0,275,North America +3363,Chic Studio - King West Toronto,125608964,Chloe,Toronto,109,0,0,2576,1,3,2,"6,64",11,2,1,0,1,2,"0,88","0,92",147,North America +3364,Breeze Studio - Sunset View @KingWest walk2CNTower,223221924,Martha,Toronto,119,1,1,2011,1,3,2,7,5,2,1,0,1,5,1,"0,85",226,North America +3365,Gorgeous Master bedroom,97447353,Massi,Toronto,288,0,0,2770,1,2,1,0,0,1,1,1,1,2,0,0,2,North America +3366,Luxury waterfront two bedroom two bathroom condo,11635710,Gaby,Toronto,250,0,0,3749,1,3,2,0,0,4,1,2,2,2,1,"0,67",186,North America +3367,Spacious waterfront 3 bedrooms (1350 SQ ft),11635710,Gaby,Toronto,300,0,0,3749,1,3,2,7,1,5,2,3,3,2,1,"0,67",29,North America +3368,Modern apartment in a newly build house,292991667,Nataliya,Toronto,120,0,0,1698,1,3,1,"6,79",14,4,1,2,2,1,1,"0,75",53,North America +3369,Quiet Retreat next to Toronto Airport,164338870,Abhi,Toronto,59,0,0,2318,1,3,1,7,1,4,1,1,2,2,0,0,237,North America +3370,20% discount for long-term basement near Yonge,288699462,Yan,Toronto,69,1,1,1712,1,2,4,"6,76",38,1,1,1,1,4,1,1,185,North America +3371,Spectacular Presidential Loft - Downtown Toronto,36748066,Hamid Reza,Toronto,300,1,0,3233,1,3,3,"6,56",124,5,2,2,2,8,1,"0,99",214,North America +3372,(B) Beautiful 1 bd apartment with wifi & parking,28931375,Farrukh,Toronto,52,0,0,3343,1,3,2,7,5,2,1,1,1,6,"0,91","0,75",23,North America +3373,Brand new penthouse+ parking,87852475,Farzaneh,Toronto,166,1,1,2827,1,1,1,"6,81",226,3,1,1,2,1,1,"0,99",175,North America +3374,2 Bedroom kitchen living dining laundry + parking,147702591,Delroy,Toronto,105,0,0,2441,1,3,1,"6,31",13,2,"1,5",2,2,1,"0,4","0,2",298,North America +3375,Amazing Lake View Suite/Free parking,287596754,Jiawei,Toronto,188,1,0,1716,1,3,3,"6,65",78,4,1,1,2,13,1,"0,96",299,North America +3376,Cozy Master Suite,40406859,Ed & Jean,Toronto,37,1,1,3194,1,2,9,7,5,2,1,3,3,11,"0,9","0,96",278,North America +3377,Downtown Toronto Little Italy Trinity Bellwood 2W,150625571,Dash,Toronto,64,0,0,2421,1,2,12,6,1,1,1,1,1,12,"0,8","0,38",0,North America +3378,3BR&2BATH Condo CNT+Lake 2mins walk Subway Station,281004951,Chunhao,Toronto,320,1,1,1736,1,3,1,"6,88",122,6,2,3,3,1,1,1,270,North America +3379,"1.5 BR+1 Bath, Toronto DownTown Living Experience",175868258,Ali,Toronto,199,0,0,2254,1,3,1,"6,75",8,2,1,2,2,2,1,"0,67",145,North America +3380,Quiet Residential Retreat,24346665,Shanny,Toronto,32,0,0,3439,1,2,10,"6,67",3,1,1,1,1,11,"0,92","0,88",217,North America +3381,Comfy & Private Room @ York University of Toronto,24346665,Shanny,Toronto,36,0,0,3439,1,2,10,7,3,1,1,1,0,11,"0,92","0,88",163,North America +3382,Private contemporary cozy room .,248726708,Frank,Toronto,68,0,0,1876,1,2,3,"5,92",12,2,1,1,0,3,0,1,0,North America +3383,*****MARVELOUS DOWNTOWN LOFT *****,203561104,Darya,Toronto,199,0,0,2113,1,3,4,"6,61",23,6,2,2,4,6,"0,75","0,83",185,North America +3384,Queen bedroom - can accommodate 3 people,12013800,Esther,Toronto,99,0,0,3736,1,2,4,0,0,3,1,1,1,4,1,"0,78",291,North America +3385,Free parking Prime Location new decor HOT TUB/POOL,296180138,Chandra,Toronto,125,1,1,1687,1,3,1,"6,9",106,3,1,1,2,1,1,1,231,North America +3386,Large Top Floor 2-Level Luxury Loft with Parking,40190528,Victoria,Toronto,120,0,0,3196,1,3,1,7,10,2,1,1,1,1,1,"0,67",277,North America +3387,Bright Penthouse in Financial Dist w Stunning View,8540894,Yani,Toronto,383,1,1,3897,1,3,9,"6,67",18,6,2,2,3,24,1,"0,93",7,North America +3388,Your Private Home Base near everything,106310804,Janet,Toronto,120,1,1,2704,1,3,1,7,1,3,1,2,2,1,1,1,30,North America +3389,"Modern Apt @ Lake Ontario, Nature & Humber College",333410455,Sue,Toronto,101,0,0,1548,1,3,7,"6,65",20,3,1,1,2,7,1,"0,78",132,North America +3390,Lovely 1-bedroom condo w patio Trinity Bellwoods,21286788,Patrick,Toronto,124,0,0,3518,1,3,1,0,0,2,1,1,1,1,0,0,0,North America +3391,Agincourt huge bedroom,50227423,Qinglian,Toronto,65,1,1,3075,1,2,1,"6,78",40,2,1,1,1,1,1,"0,99",6,North America +3392,Centrally Located Basement Apt 2 w/ private W/C,298476946,Wei Zhong,Toronto,77,1,0,1677,1,2,2,"6,58",91,3,1,1,2,2,1,"0,97",175,North America +3393,Luxury Travel Unpack Relax Enjoy | Sleeps 14,217899603,Irina,Toronto,751,1,1,2041,1,3,2,"6,83",30,12,6,6,10,5,1,1,176,North America +3394,NEW-Luxury 2 BDR Condo-City CNTR-Subway Dir.Access,54422135,Seyedeh Afarin,Toronto,173,0,0,3032,1,3,29,"6,2",5,4,2,2,2,69,1,"0,53",185,North America +3395,Luxury Loft in the Heart of King West | Toronto,40968064,Mina,Toronto,170,0,0,3188,1,3,1,"6,9",21,2,1,1,2,1,0,1,182,North America +3396,Guest Suite. 1 Bdrm. Ensuite Bath. Balcony.,75125810,Pedro,Toronto,110,1,1,2891,1,2,1,7,26,1,1,1,1,1,1,1,180,North America +3397,Downtown Toronto Little Italy Trinity Bellwood 3N,150625571,Dash,Toronto,54,0,0,2421,1,2,12,0,0,1,2,1,1,12,"0,8","0,38",33,North America +3398,Gorgeous Spot in Yorkville,225137954,Sara,Toronto,243,1,1,1999,1,3,2,"6,76",51,2,1,1,2,2,1,"0,89",308,North America +3399,King West - Bright corner one bedroom Suite,13534402,Taylor,Toronto,180,0,0,3690,1,3,1,7,3,2,1,1,1,1,0,0,186,North America +3400,"Good location, good price basement near Yonge",288699462,Yan,Toronto,59,1,1,1712,1,2,4,"6,95",37,1,1,1,1,4,1,1,276,North America +3401,Cozy Bedroom in brand new modern home,53306655,Ashley,Toronto,45,0,0,3040,,2,2,7,1,2,1,1,1,2,1,0,269,North America +3402,Happy Homestay #2 with Breakfast and Dinner daily,224323306,Laurianne,Toronto,60,1,1,2004,1,2,4,"6,5",2,1,2,1,1,8,1,1,64,North America +3403,Cozy Guest Suite in the Scenic Upper Beaches Area,95440173,Nathalie,Toronto,80,0,0,2784,,2,1,7,1,3,1,2,2,2,0,0,275,North America +3404,20thFloor Modern DT luxury condo w/Parking,433351213,Leiwen,Toronto,279,0,0,889,1,3,1,"6,69",134,5,1,2,3,2,0,0,0,North America +3405,The T Dot Spot,284822782,Emile,Toronto,154,1,1,1725,1,3,1,7,12,5,1,1,3,6,1,1,119,North America +3406,Comfortable room in authentic Toronto home,21148215,Blake,Toronto,800,0,0,3522,1,2,1,"6,83",6,1,"1,5",1,1,1,0,0,277,North America +3407,"Private Suite, Own Entrance, Not Shared!",299293749,Helena Rebecca,Toronto,121,1,1,1674,1,2,1,"6,9",191,2,1,1,1,1,1,1,136,North America +3408,Private Room with Workspace & Private Kitchen,265437617,Paul & Helen,Toronto,40,1,1,1797,1,2,2,"6,73",22,1,2,1,1,2,1,"0,9",253,North America +3409,7815Hidden Gem fully equipped 2BR w/ free parking,321096050,Ivan,Toronto,381,1,1,1588,1,3,2,"6,81",119,4,1,2,2,2,1,1,204,North America +3410,Anne’s home,203629691,Anne,Toronto,58,0,0,2113,1,2,2,"6,8",5,1,1,1,0,2,"0,71",1,0,North America +3411,Brand new downtown condo in sky w large balcony,297753128,Duc Lo,Toronto,160,0,0,1681,1,3,2,"6,67",100,3,1,1,2,2,1,"0,74",365,North America +3412,"Clean, Quiet, and Cozy Apartment in Midtown West",41731722,Dylan,Toronto,400,1,1,3180,1,3,1,"6,79",161,4,1,1,2,1,1,1,0,North America +3413,Modern Condo with Spectacular Views,96892723,Charles,Toronto,227,1,1,2774,,3,1,7,3,4,2,2,2,1,1,1,35,North America +3414,Air Cond'd New High Park close 2 subway,146226441,Inna,Toronto,69,1,0,2451,1,3,37,"6,56",102,4,1,1,2,38,"0,93","0,93",24,North America +3415,Private Master Bedroom with Bathroom,299588175,Asa,Toronto,110,0,0,1673,1,1,3,0,0,2,1,1,1,3,0,0,275,North America +3416,Dufferin Grove Suite,141346872,Danielle,Toronto,82,0,0,2478,1,3,2,"6,71",24,2,1,1,1,2,1,"0,73",176,North America +3417,Private Room in fully Renovated House,299588175,Asa,Toronto,85,0,0,1673,1,1,3,0,0,2,1,1,1,3,0,0,277,North America +3418,Private Room in Renovated Home,299588175,Asa,Toronto,85,0,0,1673,1,1,3,0,0,2,1,1,1,3,0,0,276,North America +3419,Luxury fully furnished 2+1 condo/ Yonge & Sheppard,97777185,Nima,Toronto,140,0,0,2767,1,3,14,6,2,4,2,2,2,21,1,"0,62",231,North America +3420,Bright Modern Dragon Alley apartment,141346872,Danielle,Toronto,85,0,0,2478,1,3,2,"6,95",21,2,1,1,1,2,1,"0,73",269,North America +3421,Cozy & private apartment in heart of Corso Italia,297954736,Michele,Toronto,65,1,0,1680,1,3,1,"6,65",17,2,1,1,2,1,1,1,299,North America +3422,WORK from HOME Bay St 1 Bedroom Condo with BALCONY,262595111,Carolyn,Toronto,290,1,1,1810,1,3,29,"6,4",10,4,1,1,2,29,1,"0,83",275,North America +3423,Yonge & Eglinton Private 1 Bedroom,298131595,Mehtap,Toronto,70,0,0,1679,,2,2,7,2,1,1,2,0,2,1,0,2,North America +3424,Large Lower Level Space in Midtown Toronto,88031268,Tea,Toronto,154,0,0,2827,1,3,1,"6,89",19,2,1,1,2,1,0,0,258,North America +3425,Large Studio Style Room Mins to Yorkville,298156186,Sandra,Toronto,110,0,0,1679,1,2,1,0,0,2,1,0,1,1,0,0,186,North America +3426,"Bsmnt (Airport, Humber College, Casino, EvCharger)",192542693,Ibrahim,Toronto,82,1,0,2163,1,3,2,"6,21",14,3,1,1,2,2,1,"0,98",22,North America +3427,Bisha Suite near CNtower&Roger's Ctr Entire Condo.,300193553,Noorullah,Toronto,214,1,0,1671,1,2,1,"6,51",244,2,1,0,1,1,1,1,345,North America +3428,Yours To Discover T.O.,64456124,Maria,Toronto,104,1,1,2959,1,3,2,7,7,1,1,1,1,2,1,1,335,North America +3429,Blue,29395026,Sylvester,Toronto,37,1,0,3335,1,2,5,"6,68",19,2,1,1,1,5,1,1,292,North America +3430,Spring,29395026,Sylvester,Toronto,31,1,0,3335,1,2,5,"6,25",4,2,1,1,1,5,1,1,279,North America +3431,Centrally Located Basement Apt 1 w/ private W/C,298476946,Wei Zhong,Toronto,84,1,0,1677,1,2,2,"6,59",92,3,1,1,1,2,1,"0,97",202,North America +3432,Charming Bungalow in Greektown!,17004293,Bernie,Toronto,220,1,1,3604,1,3,1,7,8,4,1,2,2,1,1,"0,94",219,North America +3433,Roncey - home from home,39392691,Des,Toronto,200,0,0,3205,1,3,1,7,1,4,3,2,2,1,1,0,114,North America +3434,Clean Room for short stay.,234351593,Charles,Toronto,55,0,0,1944,1,2,2,"6,67",6,2,1,1,0,2,0,0,275,North America +3435,Newly Renovated Basement Apartment Downtown Core,287874042,Ilona,Toronto,80,1,0,1715,1,3,4,"6,7",30,4,1,1,2,4,1,1,222,North America +3436,Toronto West - Lower Level Suite,2536632,Csaba,Toronto,110,1,1,4350,1,3,2,"6,71",72,4,1,1,2,2,1,"0,97",335,North America +3437,Stylish Open Concept Studio Downtown Toronto,287874042,Ilona,Toronto,110,1,0,1715,1,3,4,"6,75",20,4,1,1,2,4,1,1,213,North America +3438,Spacious Seaton Village basement suite,302509919,Ben,Toronto,95,0,0,1660,,3,1,7,1,2,1,1,1,1,0,0,275,North America +3439,Gorgeous Two-Level Apartment Downtown Core,287874042,Ilona,Toronto,150,1,0,1715,1,3,4,"6,63",24,6,2,2,2,4,1,1,232,North America +3440,Beautiful Luxury Urban Retreat in Leslieville,79920843,Anna,Toronto,811,1,0,2867,1,3,1,0,0,8,2,4,4,1,1,1,159,North America +3441,26th floor DT core Brand new condo w/Parking,180726154,Wenhuan,Toronto,279,0,0,2228,1,3,1,"6,58",103,5,1,2,3,1,0,0,0,North America +3442,"Comfy, Spacious Wilson Basement w. Parking",33692669,Kyung Joon,Toronto,145,1,1,3271,1,2,1,"6,89",71,3,1,1,2,1,1,1,177,North America +3443,Three-Unit Stunning Townhouse in Downtown Toronto,287874042,Ilona,Toronto,350,1,0,1715,1,3,4,0,0,14,4,4,7,4,1,1,268,North America +3444,Gorgeous Pet Friendly Condo FREE Parking Sleeps 4,262595111,Carolyn,Toronto,268,1,1,1810,1,3,29,"6,71",17,4,1,1,2,29,1,"0,83",275,North America +3445,City Chic Living: Great Modern 1BR in King West,188402186,Jas,Toronto,69,1,1,2186,1,3,1,"6,67",51,2,1,1,1,1,1,1,281,North America +3446,Corporate Stays | Richmond | Bright & Modern 1BR,38459934,Corporate Stays,Toronto,300,1,0,3214,1,3,46,0,0,2,1,1,1,449,"0,97","0,88",277,North America +3447,Amazing CN Tower View Luxury Boutique Condo!,846505,Julie,Toronto,243,1,0,4669,1,3,53,"6,38",68,6,1,1,2,102,1,1,275,North America +3448,Luxury 3 Bedroom Condo,281012434,Mahmoud,Toronto,250,0,0,1736,1,3,2,7,1,6,0,0,3,2,0,1,1,North America +3449,High End 2 Bedroom Plus Den Penthouse DT Condo,82276880,Mags,Toronto,2050,0,0,2855,1,3,1,0,0,6,"2,5",2,2,2,0,0,186,North America +3450,Big Private Rm B large unit near York U subway漢語OK,96693289,Crystal,Toronto,45,0,0,2775,,2,9,0,0,8,2,5,7,10,1,"0,67",1,North America +3451,Private basement unit near Bloor West,37905670,Khang,Toronto,52,1,1,3220,1,3,10,"6,67",27,2,1,1,1,17,1,"0,9",329,North America +3452,Luxury Penthouse in Heart of Toronto,65657032,Lizzy,Toronto,500,0,0,2950,1,3,1,0,0,2,1,1,1,1,0,0,185,North America +3453,Home away from home,90870225,Khang My,Toronto,75,1,1,2812,1,2,1,"6,96",25,2,1,0,1,1,1,"0,98",280,North America +3454,Newly Renovated 3 Bdr Bungalow w/ Private Backyard,141737863,Daniel,Toronto,300,1,1,2476,1,3,1,"6,77",62,7,2,3,4,1,1,1,327,North America +3455,A spacious quiet room,61148373,Sylvie,Toronto,91,0,0,2983,1,2,2,0,0,2,1,0,1,2,1,"0,73",0,North America +3456,Top floor 1 bedroom in the Annex,273646031,Karam,Toronto,91,1,0,1763,1,3,4,"6,8",15,4,1,1,2,4,1,1,223,North America +3457,Main floor 2 bedroom. 5mins from dufferin station,303452157,Rashan,Toronto,1000,0,0,1655,1,3,1,0,0,5,1,2,2,1,0,0,185,North America +3458,Cozy spacious 2- bedroom suite in North York,303455543,Alan Shih Lun,Toronto,122,0,0,1655,1,3,1,"6,8",87,4,2,2,2,1,1,"0,78",248,North America +3459,Snazzy 2BR Suite near Dundas Square,273658759,Bas,Toronto,90,0,0,1763,1,3,12,"6,4",10,2,1,2,2,12,1,"0,66",217,North America +3460,Spectacular 1+D Brand New Condo in Beyview Village,272874078,Sherry,Toronto,250,1,1,1766,1,3,1,"6,8",16,3,1,1,2,1,1,"0,82",171,North America +3461,Modern 2 bedroom basement apt with chromecast.,301094607,Joanne,Toronto,110,1,0,1667,1,3,1,"6,5",16,4,1,2,2,1,1,1,215,North America +3462,Luxury One Bedroom Apartment Upper Beaches,303616502,Sahand,Toronto,90,1,0,1654,1,3,1,"6,74",23,3,1,1,2,1,1,1,68,North America +3463,valuable North York Walk 4 minutes to Yonge Street,288699462,Yan,Toronto,99,1,1,1712,1,2,4,"6,6",10,1,"1,5",1,1,4,1,1,1,North America +3464,Beautiful Sunny large 1 bd w pvt Patio Ossington,3033489,Eric,Toronto,110,0,0,4300,1,3,1,"6,88",34,2,1,1,1,1,1,"0,43",252,North America +3465,Private suite in Annex near U of T and Subway,303649675,Miriam,Toronto,136,0,0,1654,1,2,1,"6,81",47,2,1,1,1,1,"0,67","0,94",237,North America +3466,Cozy 1BR Suite - Near Downtown!,16441519,Ling,Toronto,100,1,1,3618,1,2,1,"6,84",105,2,1,1,2,1,1,1,137,North America +3467,Chic 1BR Retreat near Dundas Square,273658759,Bas,Toronto,80,0,0,1763,1,3,12,"6,33",6,2,1,1,1,12,1,"0,66",238,North America +3468,Toronto U-Home Master Spacious Room,275282572,Mingqiang,Toronto,45,0,0,1756,1,2,2,"6,2",10,1,1,1,1,2,1,"0,67",295,North America +3469,Downtown Toronto Little Italy Trinity Bellwood 3S,150625571,Dash,Toronto,58,0,0,2421,1,2,12,7,1,1,2,1,1,12,"0,8","0,38",186,North America +3470,Downtown Toronto Little Italy Trinity Bellwood 22S,150625571,Dash,Toronto,53,0,0,2421,1,2,12,"4,5",2,1,1,1,1,12,"0,8","0,38",186,North America +3471,Bright Modern 2nd floor Apartment,1707154,Elie,Toronto,85,0,0,4468,1,3,1,"6,8",5,2,1,1,1,1,0,1,267,North America +3472,A Beautiful Master Bedroom For Rent!,246906243,Mysel,Toronto,55,0,0,1885,1,2,3,0,0,2,1,1,1,3,0,0,114,North America +3473,Perfect apartment at the basement,64538392,Osama,Toronto,76,1,1,2958,,3,8,"6,92",13,2,1,1,1,8,1,"0,86",137,North America +3474,House is newly built and very clean!,301687482,Fabrice,Toronto,70,0,0,1664,,2,1,0,0,2,1,1,1,1,0,0,275,North America +3475,Beautiful & Clean Room/10 Mins to Pearson Airport,303955716,Maria Luisa,Toronto,45,1,0,1653,,2,2,"6,75",4,1,2,1,1,2,1,1,275,North America +3476,The Heart Of Vibrant Humber Bay,5767877,Kamran,Toronto,65,1,1,4045,1,2,1,"6,78",9,1,1,1,1,1,1,"0,89",329,North America +3477,Loft Photography Studio (NOT for overnight stays!),28749740,Sheryl,Toronto,251,0,0,3346,1,3,1,"6,89",18,1,1,0,0,1,0,0,276,North America +3478,Harbord Village 3 Bedroom House,20486883,Matthew,Toronto,440,0,0,3538,1,3,1,"6,5",4,5,"2,5",3,3,1,0,0,115,North America +3479,"Private suite, all amenities",267634734,Jenny,Toronto,60,1,1,1787,1,2,1,7,2,2,"1,5",1,1,1,1,1,22,North America +3480,Splendid Bloordale Living,80794659,Jeffrey,Toronto,93,1,0,2863,1,2,4,"6,83",206,2,1,1,1,4,1,1,307,North America +3481,Bright & new fully furnished 1 bedroom condo,302087197,Gino,Toronto,65,0,0,1662,,3,1,7,2,2,1,1,2,1,0,0,179,North America +3482,Cute 1 Bedroom close to Everything (not Basement),107788572,Thomas,Toronto,80,1,1,2690,1,3,2,"6,88",17,2,1,1,1,2,1,1,60,North America +3483,Nadia,288837657,Nadia,Toronto,137,0,0,1711,1,2,3,0,0,2,"1,5",1,2,3,0,0,186,North America +3484,2 Bedroom cozy 2nd storey flat with Netflix!.,298876999,John And Jesse,Toronto,110,1,0,1676,1,3,1,"6,4",15,4,1,2,2,1,1,1,78,North America +3485,Single male room long term or short trip.,288837657,Nadia,Toronto,110,0,0,1711,1,2,3,0,0,2,"1,5",1,0,3,0,0,186,North America +3486,Brightly Private room - Little Italy !,305136681,Ying,Toronto,86,1,0,1647,1,2,3,"6,71",226,2,1,1,1,3,1,1,313,North America +3487,The Trillium,146375472,Sam,Toronto,68,1,0,2450,1,2,5,"6,51",168,2,1,1,1,10,1,"0,97",9,North America +3488,Cozy private room - Little Italy !,305136681,Ying,Toronto,90,1,0,1647,1,2,3,"6,69",253,2,1,1,1,3,1,1,334,North America +3489,Waterfront Luxury Condo,139904781,Aviva,Toronto,474,0,0,2486,1,3,1,"6,33",9,4,2,2,2,2,1,"0,5",116,North America +3490,PERFECT HOME FOR FAMILY FUN,8461192,Heidi,Toronto,321,1,0,3900,1,3,1,0,0,6,2,3,4,2,1,"0,85",273,North America +3491,THE PEACEFUL PLACE,303996826,Adekunle,Toronto,95,0,0,1652,1,2,1,"6,65",20,2,1,1,1,1,0,0,186,North America +3492,Stunning Lake View - Harbourfront Centre,50075592,Sandra,Toronto,99,1,0,3077,1,3,1,"6,5",4,2,1,1,2,9,1,"0,97",240,North America +3493,Brand New Luxury 4 BR Townhome with Roof Terrace,239677286,Yuanyuan,Toronto,338,1,0,1919,1,3,2,"6,59",22,12,"3,5",4,5,6,1,1,194,North America +3494,55 Harbour Sq,188420792,Reza,Toronto,220,0,0,2186,1,3,1,0,0,5,2,2,0,1,0,0,0,North America +3495,Queen bedroom in a newly renovated lovely house,304737109,Perry,Toronto,40,0,0,1649,1,2,2,"6,78",18,1,1,1,1,9,1,"0,78",25,North America +3496,House in family-friendly Toronto neighborhood,81974899,Alana,Toronto,325,0,0,2857,1,3,1,"6,4",5,4,2,3,3,1,0,0,313,North America +3497,"Waterfront, Penthouse Condo",180058136,Chris,Toronto,280,0,0,2232,,3,1,0,0,4,2,2,2,1,0,0,276,North America +3498,Best location walkable downtown sightseeings,304851008,Meijiu Xi,Toronto,126,1,0,1648,1,3,1,"6,44",32,2,1,0,1,1,1,1,137,North America +3499,Budget Single Room with Shared Bathroom,69350557,Long,Toronto,59,1,0,2925,1,2,8,"6,7",135,1,1,1,1,8,1,1,58,North America +3500,Destination Kool Haus T.O. Canada Experience,52201746,Peter,Toronto,161,0,0,3050,1,2,1,"6,78",27,4,"1,5",2,2,2,1,0,95,North America +3501,*NEW* Luxury Penthouse in the Sky!,305528277,Gav,Toronto,1999,0,0,1645,1,3,2,"6,4",5,6,3,3,3,2,0,0,188,North America +3502,One of a kind Getaway home,40789358,Ali,Toronto,750,0,0,3190,1,3,1,0,0,8,"2,5",3,0,3,0,0,340,North America +3503,"Private, cozy bedroom in Jane & Finch",257764364,Lê Qu63c,Toronto,40,0,0,1834,1,2,1,"6,33",3,1,1,1,1,1,0,0,185,North America +3504,Yonge and Eglinton private 1 bedroom,298131595,Mehtap,Toronto,70,0,0,1679,,2,2,7,1,1,1,2,0,2,1,0,276,North America +3505,Budget Double Room with Shared Bathroom,69350557,Long,Toronto,72,1,0,2925,1,2,8,"6,57",141,2,1,1,1,8,1,1,43,North America +3506,Best price for 31 days - Small cozy apartment,21809656,Reza,Toronto,73,1,1,3505,1,3,6,"6,83",29,2,1,1,1,6,1,"0,97",331,North America +3507,3BDRS LUXURY CONDO DOWNTOWN TORONTO W/FREE PARKING,65322800,Aryanne,Toronto,310,0,0,2952,1,3,1,"6,79",80,6,1,3,4,1,"0,94","0,69",139,North America +3508,"Exceptional 2Bedroom Condo+subway access,Toronto N",304960688,Atousa,Toronto,180,1,1,1647,1,3,4,"6,74",19,4,1,2,3,4,1,1,208,North America +3509,Quiet Room Across From the Lake!,47659921,Katherine,Toronto,50,1,1,3108,1,2,3,7,4,1,"1,5",1,1,3,1,1,35,North America +3510,"Cozy Room close to Downtown, lake+ parking spot",304960688,Atousa,Toronto,40,1,1,1647,1,2,4,7,7,1,"1,5",1,1,4,1,1,186,North America +3511,"Brand New, Luxury Apartment in Leafy Neighbourhood",1386077,Vick,Toronto,150,0,0,4558,1,3,1,"6,8",10,4,1,1,1,1,"0,67","0,8",37,North America +3512,A large bright basement apartment,305667231,Bo,Toronto,98,1,1,1644,1,3,1,"6,89",110,2,1,1,1,1,1,"0,89",101,North America +3513,Rm 1 of Roncy Bsment aptment near Beach/High park,202338294,Andy,Toronto,33,0,0,2118,1,2,9,"6,75",4,1,2,1,1,9,1,"0,71",214,North America +3514,Modern Boutique Condo in Heart of DownTown Toronto,305782229,Mona,Toronto,110,1,0,1644,1,3,2,"6,8",54,2,1,1,1,3,1,1,215,North America +3515,"Cozy Room R2 near Downtown,lake+ parking spot",304960688,Atousa,Toronto,80,1,1,1647,1,2,4,7,2,1,1,1,1,4,1,1,276,North America +3516,Modern cozy bedroom CN tower view,232595103,Elham,Toronto,199,1,1,1953,1,2,5,7,2,2,1,1,1,5,1,1,275,North America +3517,"Luxury 1BR Scotiabank Arena, CN Tower, MTCC, FPKG",305791771,Rockson,Toronto,200,0,0,1644,1,3,1,"6,72",164,4,1,1,2,1,"0,5",1,275,North America +3518,"Beautiful , bright room in Toronto for rent .",235552669,Sharon,Toronto,124,0,0,1939,1,2,1,0,0,1,1,1,1,1,0,0,7,North America +3519,Clean Quiet Room in Luxury Home,223386352,Christine,Toronto,50,0,0,2010,1,2,2,0,0,1,1,1,1,2,1,0,276,North America +3520,Spacious three bedrooms + 3 bathrooms house,56047363,Yong,Toronto,158,1,1,3019,1,3,1,7,10,6,3,3,3,1,1,1,4,North America +3521,Lovely 1Bedroom+Den Condo (no bsmt) at Toronto,294165506,Demitri,Toronto,98,0,0,1694,1,3,2,"6,91",11,2,1,1,2,3,1,"0,46",24,North America +3522,Yorkville Condo,7987194,Jose,Toronto,150,0,0,3921,,3,1,0,0,2,1,1,1,1,0,0,185,North America +3523,2 Free parking/walk to MtCC Rogers CN Exhibition,304355450,Ho Sook,Toronto,1113,1,1,1651,1,3,1,"6,89",104,12,2,3,9,1,"0,9",1,200,North America +3524,Ultra Modern 2 Bedroom Downtown Toronto Suite,466471697,Megha,Toronto,623,0,0,674,1,3,1,"6,54",13,5,"2,5",2,3,1,0,0,130,North America +3525,★High-End Fashion District★Prime Downtown Location,61713393,Berta,Toronto,120,1,1,2979,1,3,4,"6,71",106,2,1,1,1,6,1,"0,96",185,North America +3526,Luxurious Trendy Skyline View Condo - no Parking,6671943,Liz,Toronto,99,1,1,3988,1,3,5,"6,93",61,2,1,1,2,5,1,"0,97",198,North America +3527,Toronto Home Stay,187795859,Saroj,Toronto,80,0,0,2189,1,2,1,"6,5",4,3,1,1,0,1,0,0,276,North America +3528,Superhosts provide a modern & cozy clean stay,306488177,John & Samira,Toronto,99,0,0,1641,1,2,1,"6,84",32,2,1,1,1,1,0,0,185,North America +3529,Elegant Furnished one Bedroom apartment,79258600,Leila,Toronto,86,1,0,2870,1,3,2,"6,76",95,2,1,1,1,3,1,1,55,North America +3530,Green house,306615156,Mehrdad,Toronto,100,0,0,1641,1,3,1,0,0,2,1,1,1,1,0,0,186,North America +3531,City Oasis: Wonderful Modern 1BR Condo - Sleeps 4,309364369,Jas,Toronto,129,1,0,1631,1,3,2,"5,94",17,4,1,1,2,2,1,"0,94",270,North America +3532,Bright Quad Room with En Suite Bathroom,69350557,Long,Toronto,98,1,1,2925,1,2,8,"6,71",149,4,1,1,2,8,1,1,58,North America +3533,"Large bsmt bedroom, near UTSC & Centennial College",263343219,Jialing,Toronto,68,1,1,1807,1,2,1,"6,77",13,2,"1,5",1,1,1,1,"0,85",180,North America +3534,Affordable Downtown West place,51924016,Loxley,Toronto,67,0,0,3054,1,2,1,7,1,1,1,1,1,1,0,0,275,North America +3535,fuscia,112754391,Mike,Toronto,329,0,0,2656,,3,1,0,0,5,1,2,3,1,0,0,96,North America +3536,Single room in beautiful area of Toronto west,309725435,Vince,Toronto,40,0,0,1629,1,2,2,7,2,1,1,1,1,2,1,"0,5",188,North America +3537,Corporate Stays | Richmond | Bright 1BR,38459934,Corporate Stays,Toronto,300,1,1,3214,1,3,46,6,1,2,1,1,1,449,"0,97","0,88",277,North America +3538,Sonder The Slate | King Room,301014754,Sonder (Toronto),Toronto,396,1,0,1667,,2,32,"6,5",179,2,1,1,1,32,1,"0,98",46,North America +3539,Private floor room + Tv + Private bathroom in room,41370583,Peter,Toronto,55,1,0,3184,1,2,3,"6,5",6,2,"1,5",1,0,3,1,"0,89",275,North America +3540,Instant Suites -Stunning Designer Studio Yorkville,37918663,Instant Suites,Toronto,175,1,0,3220,1,3,1,"6,64",76,2,1,0,1,22,1,"0,99",138,North America +3541,Super cozy beach house in city!,15808611,Stephanie,Toronto,275,0,0,3633,1,3,1,"6,67",3,4,1,2,2,1,"0,9","0,59",87,North America +3542,Cozy 2 Bed Suite in Toronto!,307318572,Elimeen Eugenie,Toronto,130,1,1,1639,1,3,1,"6,89",46,4,1,2,2,1,1,1,281,North America +3543,Modern Clean Spacious Condo Living,261536879,Karen,Toronto,70,0,0,1815,1,3,1,0,0,2,1,1,1,1,0,0,185,North America +3544,Cozy Cottage-like apartment in trendy Bloorcourt,2402112,Taesnine,Toronto,91,1,1,4367,1,2,1,"6,67",72,2,1,1,1,1,1,1,27,North America +3545,4 month rental at Stunning Downtown Condo,4894948,Emily,Toronto,200,0,0,4110,1,3,1,0,0,2,1,1,1,1,0,0,192,North America +3546,Silver Room: Double bed 9 minute walk to UP Train,76832937,Rose,Toronto,40,1,0,2883,1,2,2,"6,78",89,2,1,1,1,2,1,"0,93",357,North America +3547,Sunny Private bedroom in Downtown Toronto,114261806,Sarvjot,Toronto,111,1,1,2647,1,2,4,"6,72",29,2,1,1,1,4,"0,97",1,354,North America +3548,Ideal Toronto Base in the Annex,10899471,Stephanie,Toronto,115,1,1,3776,1,3,3,"6,7",37,2,1,1,1,6,1,"0,81",262,North America +3549,Luxury Executive Condo Yorkville,223699816,Vanessa,Toronto,170,1,0,2008,1,3,4,"6,22",9,2,1,1,1,4,1,"0,96",184,North America +3550,Renovated 1 Bedroom Basement Apartment,183692496,Oksana,Toronto,85,1,1,2212,1,3,2,"6,83",12,2,1,1,1,2,1,"0,83",54,North America +3551,Large and Spacious 1 bedroom Bluff Side apartment,307890067,Kostoula,Toronto,90,1,1,1637,1,3,1,7,19,2,1,1,1,1,1,1,237,North America +3552,Luxury one bed+Den Downtown in front of CN Tower,49585560,Fady,Toronto,120,0,0,3084,1,3,1,0,0,3,1,1,1,2,1,"0,13",145,North America +3553,Fancy & Spacious One Bedroom Condo @ Yonge & Bloor,685702,Toronto,Toronto,180,0,0,4709,,3,1,7,3,3,1,1,1,1,"0,5",0,175,North America +3554,Downtown West Entire Basement,289668916,Yifei,Toronto,69,0,0,1709,1,3,1,"6,67",6,2,"1,5",1,1,1,0,0,357,North America +3555,Spectacular 2 BDR+ 2BTH/ Free Parking/ North York,54422135,Seyedeh Afarin,Toronto,300,0,0,3032,1,3,29,0,0,5,2,2,3,69,1,"0,53",139,North America +3556,Luxury room and private washroom,310612059,Adel,Toronto,200,0,0,1625,1,2,1,7,1,1,1,0,1,1,0,0,185,North America +3557,2 Bd/2 Bth Deluxe Furnished Condo-Downtown Toronto,169697179,DelSuites,Toronto,270,1,0,2289,1,3,27,0,0,5,2,2,3,47,1,1,70,North America +3558,Refresh Room near Finch Station [B3],58113832,Sun,Toronto,42,1,0,3004,1,2,7,"6,64",14,2,1,0,1,7,1,"0,81",0,North America +3559,New High Park Roncesvalles,146226441,Inna,Toronto,79,1,0,2451,1,3,37,"6,72",120,4,1,1,2,38,"0,93","0,93",88,North America +3560,Beach Retreat in the Heart of the City-27B,310717311,Louise,Toronto,145,1,1,1625,1,3,2,"6,83",40,4,1,2,2,2,1,"0,88",135,North America +3561,BEAUTIFUL CONDO IN THE CENTRE OF DOWNTOWN,134074325,Contemporary,Toronto,200,0,0,2519,1,2,2,"6,65",139,4,1,1,3,2,"0,5","0,67",275,North America +3562,Heart of Downtown/ Financial district,308304009,Mehraz,Toronto,120,0,0,1635,1,3,1,"6,81",16,4,1,1,2,1,0,0,278,North America +3563,Luxury Condo in downtown CN Tower MTCC TIFF Union,488090714,Aarti,Toronto,323,0,0,531,1,3,1,"6,82",179,6,1,2,3,1,0,0,225,North America +3564,A place where you feel happy.,308430311,Agnes,Toronto,55,0,0,1634,1,2,1,0,0,1,"1,5",1,1,1,0,0,276,North America +3565,Your Home Away From Home!,284236961,Shona,Toronto,140,1,1,1727,1,3,1,"6,87",95,4,1,2,4,1,1,"0,91",122,North America +3566,Architect's New Home on Geary,1660613,Elle,Toronto,175,0,0,4478,1,3,2,0,0,2,"1,5",1,1,3,1,"0,8",270,North America +3567,Cozy & Comfortable,308353373,Josef (Yousef),Toronto,165,1,1,1635,1,3,1,"6,8",25,4,1,2,3,5,1,1,213,North America +3568,Toronto U-Home BSMT Spacious Room,275282572,Mingqiang,Toronto,40,0,0,1756,1,2,2,7,2,1,"1,5",1,1,2,1,"0,67",303,North America +3569,Private room & bath in charming Victorian house,20085940,Michelle,Toronto,59,1,1,3547,1,2,6,"6,63",16,1,1,1,1,7,1,1,324,North America +3570,"Comfy atTheToronto Beaches, 1 Qn Bed Room",65821818,Rosie,Toronto,40,0,0,2949,1,2,2,7,2,2,1,1,1,2,0,0,185,North America +3571,Super clean Executive suite,311051988,Atiqa,Toronto,130,1,0,1624,1,3,1,"6,72",29,2,1,1,1,1,1,1,312,North America +3572,Private room & bath in charming Victorian house,20085940,Michelle,Toronto,59,1,1,3547,1,2,6,"6,69",16,1,1,1,1,7,1,1,264,North America +3573,Toronto Marina South Beach Town Home Condominium,311179556,Philip,Toronto,319,0,0,1623,1,3,1,0,0,2,1,1,1,1,0,0,186,North America +3574,Private room & bath in charming Victorian house,20085940,Michelle,Toronto,59,1,1,3547,1,2,6,"6,54",13,1,1,1,1,7,1,1,356,North America +3575,"Large room with private bathroom , little Italy",308376590,Xuemei,Toronto,100,0,0,1635,1,2,3,"6,79",279,2,1,1,1,3,"0,91","0,88",307,North America +3576,Private room & bath in charming Victorian house,20085940,Michelle,Toronto,59,1,1,3547,1,2,6,"6,77",13,1,1,1,1,7,1,1,325,North America +3577,Luxury Studio with Panoramic Downtown Toronto View,311241702,Ashley,Toronto,80,0,0,1623,1,3,1,"6,83",6,2,1,0,2,2,"0,67","0,44",225,North America +3578,Private Bsmt Room/Bath/Entrance-Bayview & Eglinton,21088128,Edgard,Toronto,80,0,0,3523,,2,1,7,1,2,1,1,1,2,0,0,185,North America +3579,Coleman Ave BR with Private WR near Subway Station,132038673,Yonglei,Toronto,44,1,0,2532,,2,8,"6,36",11,2,1,1,1,12,1,1,1,North America +3580,MMG PS Premium Suite - City View!,50396723,Frankie,Toronto,146,0,0,3073,1,3,16,"6,59",221,3,1,1,1,34,"0,96","0,35",287,North America +3581,Vera's Private Bedroom for Low Budget Traveler,183021091,Vera,Toronto,59,0,0,2216,1,2,2,7,4,2,1,1,1,2,1,"0,5",148,North America +3582,Ginger cushions in a cosy apartment in the Village,940908,German,Toronto,110,0,0,4650,1,3,1,7,5,2,1,1,1,1,1,"0,17",331,North America +3583,Cozy 1 BD Basement Apt w/ Separate Entrance,311818674,Edgardo,Toronto,71,0,0,1620,1,3,1,"6,93",43,2,1,1,1,1,0,1,23,North America +3584,Eglinton & Bayview Cozy BSMT 1BED,25660537,Kevin,Toronto,75,1,0,3404,1,3,3,"6,61",51,2,1,1,2,3,1,"0,91",275,North America +3585,Chic place in Toronto’s most exclusive location,135278014,Vanja,Toronto,329,1,1,2512,1,3,1,"6,84",57,2,1,1,1,1,1,"0,97",63,North America +3586,One room for short stay,234351593,Charles,Toronto,50,0,0,1944,1,2,2,0,0,2,1,1,1,2,0,0,2,North America +3587,Corporate Stays | The Pinnacle | Cosmopolitan 1BR,38459934,Corporate Stays,Toronto,300,1,1,3214,1,3,46,7,1,2,1,1,1,449,"0,97","0,88",265,North America +3588,Luxurious Toronto Condo with a LAKE VIEW!,308789059,Moe,Toronto,189,1,1,1633,1,3,1,"6,93",14,6,2,2,2,2,1,1,140,North America +3589,Cozy private room with a beautiful view to patio.,102857973,Krishna,Toronto,32,0,0,2732,1,2,5,7,2,1,"1,5",1,1,71,1,"0,7",328,North America +3590,Corporate Stays | 300 Front | Modern 1BR,38459934,Corporate Stays,Toronto,340,1,0,3214,1,3,46,0,0,2,1,1,1,449,"0,97","0,88",277,North America +3591,途客精品酒店Mehouse-Willowdale 店,236883483,Jianchuan,Toronto,880,0,0,1933,1,3,1,0,0,8,"1,5",1,1,1,0,0,1,North America +3592,Luxury 2+2 condo in a great place,259828265,Roya,Toronto,250,0,0,1824,1,3,1,6,1,4,2,2,2,1,0,0,276,North America +3593,Double room 2 beds very nice area of Toronto west,309725435,Vince,Toronto,60,0,0,1629,1,2,2,0,0,2,1,1,2,2,1,"0,5",7,North America +3594,Corporate Stays | Studio 2 | Sophisticated 1BR,38459934,Corporate Stays,Toronto,219,1,1,3214,1,3,46,7,1,2,1,1,1,449,"0,97","0,88",277,North America +3595,Bright 1 bedroom - High Park,177659502,Sarah,Toronto,100,0,0,2244,1,3,1,"6,5",6,4,1,1,0,1,"0,33","0,73",65,North America +3596,"Luxurious Hideout close to Yorkdale, Subway, 401",312678612,Julia,Toronto,199,0,0,1617,1,3,1,"6,75",12,4,1,2,2,1,1,"0,2",49,North America +3597,New 1BR by Queen West Walk anywhere,146226441,Inna,Toronto,107,1,0,2451,1,3,37,"6,61",61,4,1,1,2,38,"0,93","0,93",0,North America +3598,1 Bd+Sofa Bd+Futon Bd CN Twer and City Views!,312740390,Anna,Toronto,206,0,0,1616,1,3,1,"6,78",9,4,1,1,1,1,0,0,276,North America +3599,Comfortable 2 Bed-room Apartment,98712163,Jawad,Toronto,150,0,0,2763,1,3,1,6,2,4,1,2,3,1,0,0,186,North America +3600,Corporate Stays | Richmond | Bright 2BR,38459934,Corporate Stays,Toronto,398,1,0,3214,1,3,46,7,3,4,2,2,2,449,"0,97","0,88",280,North America +3601,78Toronto Cozy Guest Suite78959209,312250265,Ediz,Toronto,200,1,1,1618,1,2,2,"6,92",71,2,1,1,2,3,1,"0,98",83,North America +3602,Spacioius and bright entire 3 bedroom in Etobicoke,317529496,Pavlo,Toronto,85,0,0,1600,1,3,1,"6,62",13,4,1,2,2,1,0,0,279,North America +3603,Home away from Home,180322511,Vassiliki,Toronto,155,1,1,2230,1,3,1,"6,86",122,4,"1,5",2,4,1,1,"0,97",331,North America +3604,Danforth Withrow Park Basement Studio,246638,Van Hau,Toronto,80,1,1,4965,1,3,2,"6,8",15,1,1,0,2,2,1,1,258,North America +3605,"Bright, Clean, Newly Renovated Basement Apartment",145533602,Jason,Toronto,80,1,1,2455,1,3,2,"6,79",39,2,1,1,2,2,1,"0,93",94,North America +3606,Beautiful Condo Unit 5mins from the CN Tower!!!,313442456,UrbanHommes,Toronto,120,0,0,1614,1,3,1,"6,58",26,4,1,1,3,1,0,0,0,North America +3607,Junction Venue for private events/parties,317859074,Green,Toronto,550,0,0,1599,,3,1,0,0,16,2,0,0,1,0,0,3,North America +3608,Big Bright Beautiful High Park Getaway,3058259,Melissa J.S.,Toronto,208,1,1,4298,1,3,1,"6,69",83,3,1,1,1,2,1,1,300,North America +3609,"Private Annex 2 BR, Newly Renovated",35091862,David,Toronto,150,1,1,3253,1,3,1,"6,88",65,7,1,2,3,1,1,1,79,North America +3610,Cozy Condo Heart Downtown Toronto,206506241,Sherine,Toronto,351,0,0,2101,1,3,1,"6,93",14,4,2,2,2,1,"0,8","0,55",233,North America +3611,Cute & Cosy studio In Heart of Downtown Toronto,318182741,Natalia,Toronto,99,1,1,1598,1,3,1,"6,79",42,1,1,0,1,1,1,1,231,North America +3612,"Entire suite, kitchen, family room, Washroom.",22929016,Qun,Toronto,79,0,0,3477,1,3,1,"6,55",121,6,1,1,3,1,0,1,127,North America +3613,Modern 1BR In Downtown TO King West-Free Parking,301747040,Hadi,Toronto,100,1,0,1664,1,3,6,"6,48",21,3,1,1,2,8,1,"0,97",293,North America +3614,Cozy Retreat @ Downtown Toronto Queen / King West,301747040,Hadi,Toronto,65,1,0,1664,1,3,6,"6,6",25,2,1,0,1,8,1,"0,97",307,North America +3615,Comfortable Bedroom,303955716,Maria Luisa,Toronto,49,1,0,1653,,2,2,0,0,2,1,1,1,2,1,1,0,North America +3616,Renovated Bachelor Unit + Free Parking,318276587,Anila,Toronto,700,1,0,1597,1,3,1,"6,69",36,2,1,0,0,1,1,1,298,North America +3617,One bedroom Unit,40120407,Toronto,Toronto,90,1,1,3197,1,3,8,7,3,3,1,1,1,8,1,1,89,North America +3618,Cozy House! In Midtown Toronto