From a4a0514836774e9f4fa3e88da44e95217f4af8b0 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 11:51:02 -0700 Subject: [PATCH 01/11] Working pipeline --- components/conda.yml | 2 +- components/get_data/conda.yml | 8 +-- components/test_regression_model/conda.yml | 10 +-- components/train_val_test_split/MLproject | 2 +- components/train_val_test_split/conda.yml | 10 +-- conda.yml | 11 +-- config.yaml | 4 +- .../{{cookiecutter.step_name}}/conda.yml | 4 +- environment.yml | 22 +++--- main.py | 67 +++++++++++++++++-- src/data_check/conda.yml | 10 +-- src/data_check/test_data.py | 13 ++++ src/eda/conda.yml | 14 ++-- src/train_random_forest/conda.yml | 16 ++--- src/train_random_forest/run.py | 27 ++++++-- 15 files changed, 154 insertions(+), 66 deletions(-) diff --git a/components/conda.yml b/components/conda.yml index 6a97fdc6c..b472d58e9 100644 --- a/components/conda.yml +++ b/components/conda.yml @@ -3,4 +3,4 @@ channels: - conda-forge - defaults dependencies: - - mlflow=1.14.1 + - mlflow=2.2.2 diff --git a/components/get_data/conda.yml b/components/get_data/conda.yml index 6b6a9fae0..1078e793a 100644 --- a/components/get_data/conda.yml +++ b/components/get_data/conda.yml @@ -3,9 +3,9 @@ channels: - conda-forge - defaults dependencies: - - pip=20.3.3 - - requests=2.24.0 - - mlflow=1.14.1 + - pip=23.0.1 + - requests=2.28.2 + - mlflow=2.2.2 - pip: - - wandb==0.10.31 + - wandb==0.14.0 - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/components/test_regression_model/conda.yml b/components/test_regression_model/conda.yml index 00093af38..1ab0e0375 100644 --- a/components/test_regression_model/conda.yml +++ b/components/test_regression_model/conda.yml @@ -3,10 +3,10 @@ channels: - conda-forge - defaults dependencies: - - pandas=1.1.4 - - pip=20.3.3 - - mlflow=1.14.1 - - scikit-learn=0.24.1 + - pandas=1.5.3 + - pip=23.0.1 + - mlflow=2.2.2 + - scikit-learn=1.2.2 - pip: - - wandb==0.10.31 + - wandb==0.14.0 - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/components/train_val_test_split/MLproject b/components/train_val_test_split/MLproject index 391fa3a90..a1ac11e1e 100644 --- a/components/train_val_test_split/MLproject +++ b/components/train_val_test_split/MLproject @@ -23,4 +23,4 @@ entry_points: type: string default: 'none' - command: "python run.py {input} {test_size} --random_seed {random_seed} --stratify_by {stratify_by}" + command: "python run.py --input {input} --test_size {test_size} --random_seed {random_seed} --stratify_by {stratify_by}" diff --git a/components/train_val_test_split/conda.yml b/components/train_val_test_split/conda.yml index 43c097803..6abcc7fdb 100644 --- a/components/train_val_test_split/conda.yml +++ b/components/train_val_test_split/conda.yml @@ -3,10 +3,10 @@ channels: - conda-forge - defaults dependencies: - - pip=20.3.3 - - requests=2.24.0 - - mlflow=1.14.1 - - scikit-learn=0.24.1 + - pip=23.0.1 + - requests=2.28.2 + - mlflow=2.2.2 + - scikit-learn=1.2.2 - pip: - - wandb==0.10.31 + - wandb==0.14.0 - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/conda.yml b/conda.yml index 220ec0b90..6d26f45e8 100644 --- a/conda.yml +++ b/conda.yml @@ -3,9 +3,10 @@ channels: - conda-forge - defaults dependencies: - - mlflow=1.14.1 - - pyyaml=5.3.1 - - hydra-core=1.0.6 - - pip=20.3.3 + - mlflow=2.2.2 + - pyyaml=6.0 + - hydra-core=1.3.2 + - pip=23.0.1 - pip: - - wandb==0.10.31 \ No newline at end of file + - wandb==0.14.0 + - hydra-joblib-launcher==1.2.0 \ No newline at end of file diff --git a/config.yaml b/config.yaml index 39ca0482a..1700bdbd9 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ main: - components_repository: "https://github.com/udacity/build-ml-pipeline-for-short-term-rental-prices#components" + components_repository: null # All the intermediate files will be copied to this directory at the end of the run. # Set this to null if you are running in prod project_name: nyc_airbnb @@ -32,7 +32,7 @@ modeling: min_samples_leaf: 3 # Here -1 means all available cores n_jobs: -1 - criterion: mae + criterion: absolute_error max_features: 0.5 # DO not change the following oob_score: true diff --git a/cookie-mlflow-step/{{cookiecutter.step_name}}/conda.yml b/cookie-mlflow-step/{{cookiecutter.step_name}}/conda.yml index b944ff4fd..2b72c4e30 100644 --- a/cookie-mlflow-step/{{cookiecutter.step_name}}/conda.yml +++ b/cookie-mlflow-step/{{cookiecutter.step_name}}/conda.yml @@ -3,6 +3,6 @@ channels: - conda-forge - defaults dependencies: - - pip=20.3.3 + - pip=23.0.1 - pip: - - wandb==0.10.31 + - wandb==0.14.0 diff --git a/environment.yml b/environment.yml index efabac598..b6da6dc4e 100644 --- a/environment.yml +++ b/environment.yml @@ -3,15 +3,15 @@ channels: - conda-forge - defaults dependencies: - - mlflow=1.14.1 - - ipython=7.21.0 - - notebook=6.2.0 - - jupyterlab=3.0.10 - - cookiecutter=1.7.2 - - hydra-core=1.0.6 - - matplotlib=3.3.4 - - pandas=1.2.3 - - git=2.30.2 - - pip=20.3.3 + - mlflow=2.2.2 + - ipython=8.11.0 + - notebook=6.5.3 + - jupyterlab=3.6.2 + - cookiecutter=2.1.1 + - hydra-core=1.3.2 + - matplotlib=3.7.1 + - pandas=1.5.3 + - git=2.39.2 + - pip=23.0.1 - pip: - - wandb==0.10.31 + - wandb===0.14.0 diff --git a/main.py b/main.py index 27a89b1d6..704ac6715 100644 --- a/main.py +++ b/main.py @@ -53,19 +53,53 @@ def go(config: DictConfig): ################## # Implement here # ################## - pass + context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "basic_cleaning") + _ = mlflow.run( + context_path, + "main", + parameters={ + "input_artifact": "sample.csv:latest", + "artifact_name": "clean_sample.csv", + "artifact_type": "clean_sample", + "artifact_description": "Data with outliers and null values removed", + "min_price": config["etl"]["min_price"], + "max_price": config["etl"]["max_price"], + }, + ) if "data_check" in active_steps: ################## # Implement here # ################## - pass + context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "data_check") + _ = mlflow.run( + context_path, + "main", + parameters={ + "csv": "clean_sample.csv:latest", + "ref": "clean_sample.csv:reference", + "kl_threshold": config["data_check"]["kl_threshold"], + "min_price": config["etl"]["min_price"], + "max_price": config["etl"]["max_price"], + }, + ) if "data_split" in active_steps: ################## # Implement here # ################## - pass + context_path = config["main"]["components_repository"] + "/train_val_test_split" + _ = mlflow.run( + context_path, + "main", + parameters={ + "input": "clean_sample.csv:latest", + "test_size": config["modeling"]["test_size"], + "random_seed": config["modeling"]["random_seed"], + "stratify_by": config["modeling"]["stratify_by"], + "stratify": config["modeling"]["stratify_by"], + }, + ) if "train_random_forest" in active_steps: @@ -81,15 +115,38 @@ def go(config: DictConfig): # Implement here # ################## - pass + context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "train_random_forest") + _ = mlflow.run( + context_path, + "main", + parameters={ + "trainval_artifact": "trainval_data.csv:latest", + "val_size": config["modeling"]["val_size"], + "random_seed": config["modeling"]["random_seed"], + "stratify_by": config["modeling"]["stratify_by"], + "rf_config": rf_config, + "max_tfidf_features": config["modeling"]["max_tfidf_features"], + "output_artifact": "random_forest_export", + }, + ) + if "test_regression_model" in active_steps: ################## # Implement here # ################## + + context_path = config["main"]["components_repository"] + "/test_regression_model" + _ = mlflow.run( + context_path, + "main", + parameters={ + "mlflow_model": "random_forest_export:prod", + "test_dataset": "test_data.csv:latest", + }, + ) - pass if __name__ == "__main__": diff --git a/src/data_check/conda.yml b/src/data_check/conda.yml index 057bb9de3..a2175516a 100644 --- a/src/data_check/conda.yml +++ b/src/data_check/conda.yml @@ -3,9 +3,9 @@ channels: - conda-forge - defaults dependencies: - - pandas=1.1.4 - - pytest=6.2.2 - - scipy=1.5.2 - - pip=20.3.3 + - pandas=1.5.3 + - pytest=7.2.2 + - scipy=1.10.1 + - pip=23.0.1 - pip: - - wandb==0.10.21 + - wandb==0.14.0 diff --git a/src/data_check/test_data.py b/src/data_check/test_data.py index 6ed3ec6fb..81245dcda 100644 --- a/src/data_check/test_data.py +++ b/src/data_check/test_data.py @@ -63,3 +63,16 @@ def test_similar_neigh_distrib(data: pd.DataFrame, ref_data: pd.DataFrame, kl_th ######################################################## # Implement here test_row_count and test_price_range # ######################################################## +def test_row_count(data: pd.DataFrame): + """ + Test that the number of rows in the dataset is between 15000 and 1000000 + """ + assert 15000 < data.shape[0] < 1000000 + +def test_price_range(data: pd.DataFrame, min_price: float, max_price: float): + """ + Test that the minimum price is between the given limits + """ + assert data['price'].between(min_price, max_price).all() + + diff --git a/src/eda/conda.yml b/src/eda/conda.yml index 241136912..8974947b4 100644 --- a/src/eda/conda.yml +++ b/src/eda/conda.yml @@ -3,11 +3,11 @@ channels: - conda-forge - defaults dependencies: - - jupyterlab=3.0.12 - - seaborn=0.11.1 - - pandas=1.2.3 - - pip=20.3.3 - - pandas-profiling=2.11.0 - - pyarrow=2.0 + - jupyterlab=3.6.2 + - seaborn=0.12.2 + - pandas=1.5.3 + - pip=23.0.1 + - pandas-profiling=3.6.0 + - pyarrow=11.0.0 - pip: - - wandb==0.10.31 \ No newline at end of file + - wandb==0.14.0 \ No newline at end of file diff --git a/src/train_random_forest/conda.yml b/src/train_random_forest/conda.yml index c481bc614..db9261694 100644 --- a/src/train_random_forest/conda.yml +++ b/src/train_random_forest/conda.yml @@ -1,13 +1,13 @@ -name: basic_cleaning +name: train_random_forest channels: - conda-forge - defaults dependencies: - - pandas=1.1.4 - - pip=20.3.3 - - mlflow=1.14.1 - - scikit-learn=0.24.1 - - matplotlib=3.2.2 - - pillow=8.1.2 + - pandas=1.5.3 + - pip=23.0.1 + - mlflow=2.2.2 + - scikit-learn=1.2.2 + - matplotlib=3.7.1 + - pillow=9.4.0 - pip: - - wandb==0.10.21 + - wandb==0.14.0 diff --git a/src/train_random_forest/run.py b/src/train_random_forest/run.py index d8f37d41b..022eb1183 100644 --- a/src/train_random_forest/run.py +++ b/src/train_random_forest/run.py @@ -37,7 +37,6 @@ def delta_date_feature(dates): logging.basicConfig(level=logging.INFO, format="%(asctime)-15s %(message)s") logger = logging.getLogger() - def go(args): run = wandb.init(job_type="train_random_forest") @@ -54,7 +53,7 @@ def go(args): ###################################### # Use run.use_artifact(...).file() to get the train and validation artifact (args.trainval_artifact) # and save the returned path in train_local_pat - trainval_local_path = # YOUR CODE HERE + trainval_local_path = run.use_artifact(args.trainval_artifact).file() ###################################### X = pd.read_csv(trainval_local_path) @@ -77,6 +76,7 @@ def go(args): # Fit the pipeline sk_pipe by calling the .fit method on X_train and y_train # YOUR CODE HERE ###################################### + sk_pipe.fit(X_train, y_train) # Compute r2 and MAE logger.info("Scoring") @@ -99,7 +99,7 @@ def go(args): # HINT: use mlflow.sklearn.save_model # YOUR CODE HERE ###################################### - + mlflow.sklearn.save_model(sk_pipe, "random_forest_dir") ###################################### # Upload the model we just exported to W&B # HINT: use wandb.Artifact to create an artifact. Use args.output_artifact as artifact name, "model_export" as @@ -108,6 +108,14 @@ def go(args): # run.log_artifact to log the artifact to the run # YOUR CODE HERE ###################################### + model_export_artifact = wandb.Artifact( + args.output_artifact, + type="model_export", + description="Random Forest model exported as an MLFlow model", + metadata=rf_config, + ) + model_export_artifact.add_dir("random_forest_dir") + run.log_artifact(model_export_artifact) # Plot feature importance fig_feat_imp = plot_feature_importance(sk_pipe, processed_features) @@ -118,6 +126,7 @@ def go(args): # Now log the variable "mae" under the key "mae". # YOUR CODE HERE ###################################### + run.summary['mae'] = mae # Upload to W&B the feture importance visualization run.log( @@ -158,7 +167,10 @@ def get_inference_pipeline(rf_config, max_tfidf_features): # Build a pipeline with two steps: # 1 - A SimpleImputer(strategy="most_frequent") to impute missing values # 2 - A OneHotEncoder() step to encode the variable - non_ordinal_categorical_preproc = # YOUR CODE HERE + non_ordinal_categorical_preproc = make_pipeline( + SimpleImputer(strategy="most_frequent"), + OneHotEncoder() + ) ###################################### # Let's impute the numerical columns to make sure we can handle missing values @@ -217,7 +229,12 @@ def get_inference_pipeline(rf_config, max_tfidf_features): # ColumnTransformer instance that we saved in the `preprocessor` variable, and a step called "random_forest" # with the random forest instance that we just saved in the `random_forest` variable. # HINT: Use the explicit Pipeline constructor so you can assign the names to the steps, do not use make_pipeline - sk_pipe = # YOUR CODE HERE + sk_pipe = Pipeline( + [ + ("preprocessor", preprocessor), + ("random_forest", random_Forest) + ] + ) return sk_pipe, processed_features From ec05db0e507656da1acbc6df6b83252d2c4adf9b Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 11:53:37 -0700 Subject: [PATCH 02/11] Working pipeline --- .vscode/settings.json | 3 + src/basic_cleaning/MLproject | 35 + src/basic_cleaning/clean_sample.csv | 19074 ++++ src/basic_cleaning/conda.yml | 9 + src/basic_cleaning/run.py | 105 + src/eda/EDA.ipynb | 127351 +++++++++++++++++++++++++ 6 files changed, 146577 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 src/basic_cleaning/MLproject create mode 100644 src/basic_cleaning/clean_sample.csv create mode 100644 src/basic_cleaning/conda.yml create mode 100644 src/basic_cleaning/run.py create mode 100644 src/eda/EDA.ipynb diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..457f44d9b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.analysis.typeCheckingMode": "basic" +} \ No newline at end of file diff --git a/src/basic_cleaning/MLproject b/src/basic_cleaning/MLproject new file mode 100644 index 000000000..9ecb6bc6e --- /dev/null +++ b/src/basic_cleaning/MLproject @@ -0,0 +1,35 @@ +name: basic_cleaning +conda_env: conda.yml + +entry_points: + main: + parameters: + + input_artifact: + description: The name of the input artifact + type: string + + artifact_name: + description: The name of the output artifact + type: string + + artifact_type: + description: Type of the output artifact. This will be used to categorize the artifact in the W&B + interface + type: string + + artifact_description: + description: A brief description of the output artifact + type: string + + min_price: + description: Minimum price of the rental + type: float + + max_price: + description: Maximum price of the rental + type: float + + + command: >- + python run.py --input_artifact {input_artifact} --artifact_name {artifact_name} --artifact_type {artifact_type} --artifact_description {artifact_description} --min_price {min_price} --max_price {max_price} diff --git a/src/basic_cleaning/clean_sample.csv b/src/basic_cleaning/clean_sample.csv new file mode 100644 index 000000000..da6c5ecc1 --- /dev/null +++ b/src/basic_cleaning/clean_sample.csv @@ -0,0 +1,19074 @@ +id,name,host_id,host_name,neighbourhood_group,neighbourhood,latitude,longitude,room_type,price,minimum_nights,number_of_reviews,last_review,reviews_per_month,calculated_host_listings_count,availability_365 +9138664,Private Lg Room 15 min to Manhattan,47594947,Iris,Queens,Sunnyside,40.74271,-73.92493,Private room,74,2,6,2019-05-26,0.13,1,5 +31444015,"TIME SQUARE CHARMING ONE BED IN HELL'S KITCHEN,NYC",8523790,Johlex,Manhattan,Hell's Kitchen,40.76682,-73.98878,Entire home/apt,170,3,0,,,1,188 +8741020,Voted #1 Location Quintessential 1BR W Village Apt,45854238,John,Manhattan,West Village,40.73631,-74.00610999999999,Entire home/apt,245,3,51,2018-09-19,1.12,1,0 +34602077,Spacious 1 bedroom apartment 15min from Manhattan,261055465,Regan,Queens,Astoria,40.76424,-73.92351,Entire home/apt,125,3,1,2019-05-24,0.65,1,13 +23203149,Big beautiful bedroom in huge Bushwick apartment,143460,Megan,Brooklyn,Bushwick,40.69839,-73.92044,Private room,65,2,8,2019-06-23,0.52,2,8 +4402805,LRG 2br BKLYN APT CLOSE TO TRAINS AND PARK,22807362,Jenny,Brooklyn,Prospect-Lefferts Gardens,40.66025,-73.9627,Entire home/apt,120,3,3,2018-08-28,0.05,1,16 +30070126,✩Prime Renovated 1/1 Apartment in Upper East Side✩,4968673,Sean,Manhattan,Upper East Side,40.76831,-73.95929,Entire home/apt,200,5,2,2019-05-26,0.68,1,71 +34231172,Fully renovated brick house floor in Brooklyn,59642348,Kevin,Brooklyn,Sunset Park,40.6455,-74.01262,Entire home/apt,95,1,9,2019-07-08,9.0,1,106 +5856760,"Renovated 1BR in exciting, convenient area",29408349,Chad,Manhattan,Chinatown,40.7149,-73.99976,Entire home/apt,179,5,7,2017-04-18,0.14,1,0 +7929441,Beautiful Loft w/ Waterfront View!,1453898,Anthony,Brooklyn,Williamsburg,40.71268,-73.96676,Private room,105,2,232,2019-06-19,5.0,3,64 +35468220,Forest Hills Charming 1 bdrm apartment!,7599704,Sasha,Queens,Forest Hills,40.72085,-73.84088,Entire home/apt,75,1,0,,,1,7 +18340498,Private bedroom and bathroom near Prospect Park,33723491,Suzzanne,Brooklyn,Flatbush,40.65274,-73.95848000000001,Private room,39,2,7,2017-09-29,0.27,1,0 +34760,Sunny Room in Old Historical Brooklyn Townhouse,149929,Obed,Brooklyn,Fort Greene,40.69101,-73.97312,Private room,44,8,27,2019-06-29,1.05,5,280 +15982208,"Huge Yellow Room- AC, 20 Min to Manhattan",103841276,Cristina And Sasha,Brooklyn,Bushwick,40.69891,-73.93072,Private room,45,1,158,2019-06-25,4.93,2,201 +14994076,Dominiques NYC 4Bedrm crashpad**Stay here**metro,310670,Vie,Bronx,Eastchester,40.88207,-73.83538,Entire home/apt,299,2,2,2019-05-21,0.18,13,358 +7126110,Sunny East Village Bedroom,37325763,Noah,Manhattan,East Village,40.72393,-73.98271,Private room,100,1,0,,,1,0 +35005489,Exquisite Park Slope Paradise,229604812,Jake,Brooklyn,Windsor Terrace,40.65863,-73.98495,Entire home/apt,300,3,0,,,1,335 +22702906,Cozy Brownstone Brooklyn Studio Near Subway!!,6291509,Daniel,Brooklyn,Boerum Hill,40.6876,-73.98472,Entire home/apt,160,4,4,2018-09-26,0.3,1,14 +25015496,"5min from JFK airport, Train, Casino, Racetrack",189108951,Doris,Queens,South Ozone Park,40.669540000000005,-73.80601,Entire home/apt,93,2,48,2019-06-22,3.47,1,316 +7074488,"Bilevel Penthouse: Park, City Views",43772,David,Brooklyn,Greenpoint,40.72074,-73.94740999999999,Entire home/apt,272,3,3,2015-08-31,0.06,1,0 +34432701,THE STUDIO LODGE NYC,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68087,-73.92061,Private room,60,3,3,2019-06-30,2.31,2,322 +15971308,Private Room with Private Bathroom in Harlem,1301576,Siobhan,Manhattan,East Harlem,40.80604,-73.94233,Private room,85,3,97,2019-06-24,3.07,2,14 +22078755,Bohemian East Village Apartment,50292311,Brian,Manhattan,East Village,40.72837,-73.98546,Entire home/apt,250,4,17,2019-05-28,1.1,1,5 +27454297,Brooklyn Style Hostel RM4 #1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69322,-73.95519,Shared room,36,3,12,2019-06-19,1.06,34,361 +19382104,Stylish Share With Exposed Brick In Brooklyn,25064774,Eden,Brooklyn,Bedford-Stuyvesant,40.68936,-73.94189,Private room,33,14,1,2017-07-16,0.04,1,0 +8953404,LARGE BEDROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76801,-73.92501,Private room,55,1,78,2019-06-20,1.78,9,311 +16323239,Spacious 2 BDR - Hell's Kitchen/Times Square,2559886,Sy,Manhattan,Hell's Kitchen,40.76284,-73.98849,Entire home/apt,130,4,2,2017-11-30,0.07,1,0 +22064197,Upper West Side Central Park apartment,20153029,Tal,Manhattan,Upper West Side,40.77244,-73.98043,Entire home/apt,190,7,0,,,1,0 +21786337,Master Bedroom in Harlem - 20 min to Midtown!,64837680,Andrea,Manhattan,Harlem,40.827740000000006,-73.94609,Private room,60,1,1,2018-01-01,0.05,1,0 +10166820,Brooklyn apartment 20 min to Manhattan,486147,Christopher,Brooklyn,Park Slope,40.67174,-73.98616,Private room,63,30,17,2018-09-01,0.44,1,73 +15894199,Crown Heights Duplex Apt.,103087934,Martha,Brooklyn,Crown Heights,40.67567,-73.93744000000001,Entire home/apt,158,4,61,2019-05-31,1.92,1,264 +31670237,Dominiques Homesharing room NYC* metro*quiet*safe,310670,Vie,Bronx,Eastchester,40.88009,-73.83456,Private room,68,2,0,,,13,364 +26125349,Beautiful apartment in Greenpoint,502897,Malu,Brooklyn,Greenpoint,40.72791,-73.95689,Entire home/apt,150,5,1,2018-06-20,0.08,1,0 +15928635,"Sunny, Cozy, Private Room In The Heart of Bushwick",278393,Dylana,Brooklyn,Bushwick,40.69906,-73.92430999999999,Private room,40,2,96,2019-06-24,2.99,3,78 +18459547,Dumbo Penthouse Loft with Outdoor Spaces & Views,1349266,Adam,Brooklyn,Vinegar Hill,40.70369,-73.98306,Entire home/apt,186,30,1,2019-06-11,1.0,1,1 +22546236,SJU大学,133825714,Peng,Queens,Flushing,40.72465,-73.80162,Shared room,30,1,0,,,1,0 +29614352,Steps from Times Square and Subway!,9489892,Serim,Manhattan,Hell's Kitchen,40.76186,-73.98850999999999,Private room,99,1,15,2019-06-16,1.81,1,0 +19967657,Sanjay's Art Lab - Prime LES - Quintessential NYC,16549535,Sanjay,Manhattan,Lower East Side,40.71624,-73.98935,Entire home/apt,50,1,6,2018-09-28,0.28,1,0 +13042051,Modern Williamsburg Condo near restaurants + metro,43339525,Jeff,Brooklyn,Williamsburg,40.7163,-73.94394,Entire home/apt,178,2,22,2018-10-21,0.59,1,3 +13740793,Beautiful Elevator Bldg near Columbia University,76590834,Omar,Manhattan,Upper West Side,40.80165,-73.96497,Private room,65,1,0,,,1,0 +33869355,"Cozy big Apt, Manhattan, Columbia, Central Park",163365183,Sijia,Manhattan,Morningside Heights,40.81153,-73.96112,Shared room,34,5,0,,,1,14 +19890678,Sunny room with a Balcony in Prospect Heights,513517,Tak,Brooklyn,Crown Heights,40.67567,-73.95779,Private room,59,2,1,2018-05-25,0.07,1,0 +24792114,Sunny apartment,3405917,Juliana,Queens,Sunnyside,40.74597,-73.91434,Private room,55,3,26,2019-06-17,1.82,1,1 +7788880,"Home 4 Medical Professionals- The ""Camphor""",26377263,Stat,Brooklyn,Bushwick,40.70387,-73.91665,Private room,47,30,4,2018-08-18,0.13,43,144 +6130145,Moma Casanova. New Additions!,29871437,Ester,Queens,Sunnyside,40.74315,-73.91733,Private room,78,3,113,2019-07-01,2.23,1,285 +1300216,1 Bdrm Apt 2 blocks to subway 15 mins to Midtown,2135948,Giovanni,Queens,Astoria,40.76788,-73.92334,Entire home/apt,100,1,102,2019-07-03,1.73,1,33 +34313601,Large 1 BR *** Featured on This Old House,29659188,Kevin And Karen,Brooklyn,Prospect Heights,40.6774,-73.96864000000001,Entire home/apt,279,2,11,2019-07-06,5.69,1,112 +3565617,Modern sunny one bed apt,17953139,Oisin,Manhattan,Lower East Side,40.7211,-73.98397,Entire home/apt,175,7,9,2018-12-07,0.27,1,255 +5271997,NEW YORK CITY!!! LOCATION LOCATION!,6716330,Chris,Manhattan,Upper West Side,40.77311,-73.98606,Private room,125,3,124,2019-06-24,2.32,3,347 +27633987,One bedroom apt in a brownstone - Manhattan,208531763,Féven,Manhattan,Harlem,40.81915,-73.9425,Entire home/apt,112,4,9,2019-06-22,1.04,1,89 +3642801,"Cozy Brooklyn studio, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.95815999999999,Entire home/apt,80,3,24,2019-06-23,0.4,3,19 +7615409,AMAZING 1 BR APT LES/Chinatown NYC,39938343,Aleksey,Manhattan,Lower East Side,40.71813,-73.99231,Entire home/apt,145,6,13,2018-06-03,0.27,1,0 +34860021,"Spacious sunny 1 bedroom, steps away from subway",262803937,Roddison,Brooklyn,Prospect-Lefferts Gardens,40.66288,-73.95277,Entire home/apt,90,2,4,2019-06-24,2.73,1,73 +10184162,In the heart of Williamsburg,50466143,Louis,Brooklyn,Williamsburg,40.71215,-73.95801,Private room,65,2,0,,,1,0 +35575973,Luxury Building one stop from midtown Manhattan !!,265422938,泽宇,Queens,Long Island City,40.74887,-73.93829000000001,Private room,149,2,0,,,2,53 +8685857,Spacious Brooklyn Getaway,42713726,Emily,Brooklyn,Crown Heights,40.66882,-73.95396,Private room,80,1,1,2016-01-05,0.02,1,0 +951944,Quiet Studio in Prime SoHo,1408973,Dom,Manhattan,SoHo,40.72493,-74.00307,Entire home/apt,235,3,73,2019-07-05,0.94,1,44 +29881570,New york Cozy Studio Near multiple metro Lines,12131971,Maria,Manhattan,Midtown,40.75855,-73.96961,Entire home/apt,140,1,3,2018-12-09,0.37,1,0 +10056541,"Bright Studio - Park Slope, BK",10807649,Yehua,Brooklyn,South Slope,40.66218,-73.98385,Entire home/apt,61,2,20,2019-05-30,0.57,1,0 +24327546,Cozy & warm private studio apartment in Astoria,80885460,Amy,Queens,Ditmars Steinway,40.77467,-73.9094,Entire home/apt,100,2,6,2019-06-16,0.42,1,0 +1130680,It's all about Bushwick BROOKLYN,55176,Madison,Brooklyn,Bushwick,40.68767,-73.91261,Entire home/apt,100,3,308,2019-07-05,4.11,1,99 +23754446,1 bedroom apartment on West 34th street,76104209,Rated,Manhattan,Midtown,40.75015,-73.98651,Entire home/apt,200,30,0,,,33,365 +26803876,"Brooklyn studio by the park, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.65501,-73.95948,Entire home/apt,80,3,2,2019-06-10,0.32,3,0 +6652755,The Art Loft! Spacious and Bright!,16718896,Kim,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96029,Entire home/apt,145,5,25,2018-01-02,0.51,1,0 +12396603,Dean Street Oasis,20942935,Miriam,Brooklyn,Crown Heights,40.67529,-73.93670999999999,Private room,66,1,1,2016-05-02,0.03,1,0 +7665764,US Open? Perfect Lg 1 BR apartment,40244009,Marvin,Queens,Sunnyside,40.73926,-73.92045,Entire home/apt,150,3,2,2015-09-13,0.04,1,0 +10801094,FT Greene Flat Private Entrance,11189753,Sj,Brooklyn,Fort Greene,40.68729,-73.96995,Entire home/apt,225,10,10,2019-06-24,0.26,4,350 +6780285,Beautiful Williamsburg townhouse on a park.,230856,Gabrielle & Malcolm,Brooklyn,Williamsburg,40.7154,-73.93866,Entire home/apt,295,30,6,2018-04-19,0.13,1,0 +6885369,Beautiful Apt in Lefferts Gardens,1442860,Godfrey,Brooklyn,Flatbush,40.6548,-73.95388,Private room,40,2,32,2019-07-01,0.68,1,82 +14041141,"Epic West Village, NYC rental",20971070,Melani,Manhattan,Chelsea,40.73819,-73.99835,Entire home/apt,175,27,2,2018-10-26,0.06,1,310 +20899010,"Historic (& happening!) Prospect Heights, BK",5761096,Leah,Brooklyn,Prospect Heights,40.67556,-73.96427,Private room,80,1,1,2017-09-13,0.05,1,0 +2206311,Modern Studio in Midtown East,5149997,Christine,Manhattan,Midtown,40.75701,-73.96781,Entire home/apt,140,3,0,,,1,0 +24493582,Charming beautiful studio perfect location!!,26584499,Ofir,Manhattan,Upper West Side,40.78382,-73.98235,Entire home/apt,135,30,0,,,8,290 +4233705,looking for someone to stay 12days,11243583,Joseph,Manhattan,Upper West Side,40.77715,-73.98235,Entire home/apt,260,1,0,,,1,0 +21080763,"CHIC 2 BEDROOM W/ LUXURY FINISHES, WASHER DRYER",61391963,Corporate Housing,Manhattan,Kips Bay,40.74061,-73.97991,Entire home/apt,185,30,4,2019-03-31,0.25,91,201 +32237469,Sonder | Stock Exchange | Welcoming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01175,Entire home/apt,228,2,2,2019-05-18,0.73,327,350 +28895817,SUNNY ROOM WITH SKYLIGHT + 2 BEDS,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.695240000000005,-73.95322,Private room,67,30,31,2019-06-16,3.41,6,333 +25950590,Cozy room close to Central Park and Columbia,2732777,Beatriz,Manhattan,Upper West Side,40.8018,-73.96264000000001,Private room,115,3,19,2019-06-17,1.5,1,189 +30091592,Best view near Times Square,16768238,Julio Adrian,Manhattan,Hell's Kitchen,40.75975,-73.9944,Private room,215,2,0,,,1,0 +6044964,Beach Lovers Dream!,31204745,Monika,Queens,Arverne,40.58921,-73.79479,Entire home/apt,89,2,150,2019-06-11,3.0,1,268 +13333542,Beautifully Designed Island Style Garden Suite,75478154,Malene,Brooklyn,Bedford-Stuyvesant,40.68252,-73.93863,Entire home/apt,229,4,92,2019-06-15,2.54,1,236 +22249013,Cozy Bushwick Loft Apartment,17672907,Imani,Brooklyn,Bushwick,40.69178,-73.91243,Private room,30,3,7,2018-03-12,0.38,1,0 +27802387,Living Room sofa Bed in Chelsea,12750945,Luis,Manhattan,Chelsea,40.74186,-73.99769,Shared room,85,2,22,2019-06-23,2.19,4,365 +29233568,Cozy apartment in PERFECT location!,41083526,Brenda,Queens,Sunnyside,40.74529,-73.92175999999999,Shared room,50,1,9,2019-03-23,1.03,2,0 +22051863,Sunny Apt. near Columbus circle,44869463,Nardys,Manhattan,Hell's Kitchen,40.7668,-73.98428,Entire home/apt,160,3,0,,,1,0 +19381437,Big furnitured room in UWS for August!,22655081,Alan,Manhattan,Upper West Side,40.79205,-73.97261999999999,Private room,45,5,0,,,1,0 +25213872,Cheap & Comfy Huge Private Room!,5789204,Honglip,Brooklyn,Bensonhurst,40.61006,-73.99902,Private room,37,4,52,2019-06-30,3.94,1,70 +7498508,The big little room,24377694,Kori,Brooklyn,Crown Heights,40.67804,-73.95411,Private room,105,1,1,2017-09-24,0.05,3,0 +13746257,Prime North Williamsburg Luxury Studio,80501262,Raquel,Brooklyn,Williamsburg,40.718,-73.9525,Entire home/apt,175,2,9,2018-12-30,0.29,1,0 +26774653,"Bright, Spacious Apartment in Brooklyn",27742407,Filippo,Brooklyn,Clinton Hill,40.68453,-73.96773,Entire home/apt,120,5,2,2018-09-14,0.19,1,13 +27236170,Staten Island Home with a View,205132904,Farah,Staten Island,Tompkinsville,40.63513,-74.07929,Private room,135,2,65,2019-06-24,6.13,2,293 +16722564,12 East 86th St full furnished,53179388,Raymond,Manhattan,Upper East Side,40.78046,-73.96047,Entire home/apt,200,30,0,,,10,164 +9334840,Cozy warm one bedroom,2716515,Nick,Queens,Astoria,40.7576,-73.9067,Entire home/apt,70,1,1,2015-11-11,0.02,1,0 +20914425,"Room in duplex w/sep. bathroom, close to J train",878546,Semih,Brooklyn,Bedford-Stuyvesant,40.688590000000005,-73.92238,Private room,100,2,8,2019-02-11,0.38,1,0 +34336740,Upper West 1 Bedroom / 1 Bath. Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77567,-73.988,Entire home/apt,190,30,2,2019-06-15,1.36,25,322 +29828614,New York home ferry ride from Manhattan.,224370048,Pariis,Staten Island,Tompkinsville,40.63304,-74.09244,Private room,90,1,6,2019-06-23,0.95,1,262 +30425770,Queens Corner Lot,128580688,-TheQueensCornerLot,Queens,Queens Village,40.70524,-73.73349,Entire home/apt,150,1,51,2019-07-07,7.43,1,248 +12519645,Upper East Side Room,56623911,Christa,Manhattan,East Harlem,40.78809,-73.95333000000001,Private room,45,1,3,2016-05-20,0.08,1,0 +18675599,Large Place bushwick with furniture,129812563,Roodmy,Brooklyn,Bushwick,40.69416,-73.90816,Private room,45,7,11,2017-09-20,0.42,1,0 +21526187,West Village Bedroom in duplex apartment,118137788,Chris,Manhattan,West Village,40.72986,-74.00465,Private room,100,2,3,2017-11-16,0.15,1,0 +30717487,Charming Williamsburg Loft - 1 BR,63260432,Thibaut,Brooklyn,Greenpoint,40.7198,-73.95489,Entire home/apt,179,1,15,2019-05-19,2.54,1,0 +6357128,Private Bedroom in Beautiful Apartment,20156894,Florence And Peter,Manhattan,Harlem,40.80627,-73.94896,Private room,95,4,20,2018-10-02,0.51,1,69 +9597258,Cozy and affordable room.,32379616,Fabiola,Bronx,Williamsbridge,40.88165,-73.85625,Private room,34,5,17,2019-05-31,0.4,2,313 +35467129,Gorgeous Luxury Studio!!,205510323,Dave,Manhattan,Hell's Kitchen,40.77044,-73.99126,Entire home/apt,220,3,0,,,1,29 +587698,Very close to Downtown Awesome Room,807642,Jeffrey,Brooklyn,Gravesend,40.60399,-73.97091999999999,Private room,72,1,61,2019-07-06,0.81,2,335 +29943455,Cozy and Nice room in Queens! good subway access!,200239515,Shogo,Queens,Woodside,40.74287,-73.89439,Private room,32,28,3,2019-06-01,0.47,15,0 +20149318,Wonderful room for rent in the Bronx,19297877,Albena,Bronx,Bronxdale,40.85527,-73.86719000000001,Private room,35,1,21,2018-12-11,0.96,1,284 +14809342,Soho/Nolita Apartment w/Rooftop Terrace,3599088,Chris,Manhattan,Nolita,40.72191,-73.99472,Entire home/apt,120,19,5,2018-03-25,0.17,2,0 +24378513,Sunny Spacious Private Bedroom in Brooklyn,714531,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95664000000001,Private room,55,4,26,2019-06-24,1.81,1,73 +18913450,Light Filled Private Room,27982346,Christopher,Manhattan,East Harlem,40.79729,-73.93536999999999,Private room,49,7,5,2017-12-29,0.21,1,0 +9615209,Cozy Studio in Luxury Building LIC,49746656,Elva,Queens,Long Island City,40.74572,-73.95679,Entire home/apt,85,5,1,2016-08-13,0.03,1,0 +15958726,"Affordable 1 bedroom apt, in great neighborhood",103631576,Nayamkah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94494,Entire home/apt,100,2,5,2017-05-24,0.16,1,0 +31070935,Cozy room in duplex apartment - terrace with view,232112395,Alessandro,Brooklyn,Crown Heights,40.67686,-73.93159,Private room,45,14,0,,,1,30 +2460611,1890s North Williamsburg Townhouse,4137875,Rachel,Brooklyn,Greenpoint,40.72559,-73.95033000000001,Private room,145,2,21,2019-04-22,0.45,1,64 +34706620,Trendy open concept Williamsburg loft apartment,261768544,Kori,Brooklyn,Williamsburg,40.71125,-73.96115999999999,Entire home/apt,300,2,5,2019-07-01,2.94,1,57 +13845597,1 Bedroom in williamsburg,81730337,Geoffray,Brooklyn,Williamsburg,40.70912,-73.94107,Entire home/apt,150,7,0,,,1,0 +764753,Beautiful 3 bedroom apartment!!,3371859,Jenny & Jose,Brooklyn,Crown Heights,40.67679,-73.93776,Entire home/apt,82,8,108,2019-06-16,1.33,2,238 +4512329,Spacious Room in Sugar Hill,16685925,Douglas,Manhattan,Washington Heights,40.83089,-73.94125,Private room,49,3,3,2016-07-14,0.05,2,0 +15095408,One bedroom in luxury FiDi building,17423162,Rishab,Manhattan,Financial District,40.7083,-74.01406,Private room,80,5,1,2017-01-01,0.03,1,0 +17459791,Bedroom Upper West Side 10min walk to Central Park,12588825,Kyle,Manhattan,Upper West Side,40.79358,-73.97452,Private room,175,4,3,2017-11-05,0.11,1,0 +7255372,~Room for Guest in Stunning BK Apt~,37987441,Addie,Brooklyn,Bedford-Stuyvesant,40.68538,-73.92447,Private room,32,3,7,2019-01-27,0.15,1,0 +35195915,Chelsea HIGHLINE Prime Location,244131674,Alexis,Manhattan,Chelsea,40.749,-74.00244,Entire home/apt,300,2,3,2019-07-07,3.0,1,365 +34717733,TheGreystone,239661123,Shantell,Queens,Queens Village,40.72774,-73.73461999999999,Entire home/apt,99,1,6,2019-07-07,4.86,1,15 +4267133,Large private room in huge LES Apt,6793885,Nick,Manhattan,Lower East Side,40.72156,-73.98711999999999,Private room,70,1,2,2015-06-10,0.03,1,0 +36115461,Private Room In a Beautiful Tree-Lined Brownstone,24633205,Joshua,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93982,Private room,50,1,1,2019-06-30,1.0,1,27 +27338033,"Private Bushwick Room -- Close to J, M, L Trains",206009618,Keilyn,Brooklyn,Bushwick,40.70055,-73.93024,Private room,56,2,32,2019-06-25,2.97,1,158 +959478,"Chic, Cozy LES 1BR. Weekly clean included!",4191076,Michelle,Manhattan,Chinatown,40.71687,-73.99046,Entire home/apt,87,59,51,2019-02-01,0.66,1,0 +35768121,Murray Hill studio,2448443,Alex,Manhattan,Murray Hill,40.74849,-73.97708,Entire home/apt,140,3,1,2019-06-17,1.0,1,3 +30512146,Artsy Upper East Side Apartment,21296382,Victor,Manhattan,Upper East Side,40.76703,-73.95957,Entire home/apt,200,3,3,2019-04-22,0.46,1,188 +17624418,LOFTY 3 BEDROOMS DUPLEX 30MN FROM DOWNTOWN,6978404,Samira,Brooklyn,Bay Ridge,40.62645,-74.02888,Entire home/apt,165,20,0,,,1,46 +35612199,Designer large studio in Brooklyn Heights,213432040,Naomi,Brooklyn,Brooklyn Heights,40.69924,-73.99296,Entire home/apt,150,2,0,,,1,74 +20000820,Sunny and Spacious private bedroom,27527984,S,Brooklyn,Bushwick,40.69613,-73.90768,Private room,66,1,2,2017-10-08,0.09,1,0 +450577,1 bdrm brownstone-west 70's-1 block Central Park,2237267,Marjorie,Manhattan,Upper West Side,40.77555,-73.9767,Entire home/apt,250,3,73,2019-06-07,0.84,1,284 +21824124,Boutique Gowanus Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.6786,-73.98380999999999,Private room,139,1,82,2019-07-07,4.16,17,355 +13802334,Bright chic room in Clinton hill,35775878,Lisa,Brooklyn,Clinton Hill,40.68366,-73.96563,Private room,65,7,10,2017-12-10,0.28,1,0 +32160889,Brand NewXL 1BR~Prime midtown~Laundry~Elev~Sleeps4,162280872,Izi,Manhattan,Hell's Kitchen,40.76273,-73.9942,Entire home/apt,185,30,0,,,13,298 +25943635,Sunny room in great location,10304316,Engorako,Queens,Astoria,40.76549,-73.9149,Private room,60,50,0,,,1,21 +1455804,One Bedroom Apt Near Central Park,4028305,Abigail,Manhattan,Morningside Heights,40.8057,-73.95826,Entire home/apt,175,2,1,2017-10-28,0.05,1,0 +20662567,Home with Private Terrace Off the Park,147796643,Cole,Manhattan,Upper West Side,40.78875,-73.9679,Private room,150,2,5,2018-09-22,0.22,1,0 +8372368,The Herkimer House Room #2,27708645,Malik,Brooklyn,Bedford-Stuyvesant,40.67831,-73.93903,Private room,65,3,3,2015-10-13,0.07,1,342 +33113990,Adorable walk-up on the high line—with views!,2919299,Sean,Manhattan,Chelsea,40.750240000000005,-74.00213000000001,Entire home/apt,175,4,3,2019-06-09,1.11,1,15 +34962979,Cozy 1bedroom apt/Manhattan/East side,48950686,Lili,Manhattan,Upper East Side,40.77821,-73.95504,Entire home/apt,150,2,3,2019-06-30,3.0,1,164 +19317834,"Artsy, Cozy 1 bedroom in Flatbush",5416971,Nia,Brooklyn,East Flatbush,40.64041,-73.95133,Entire home/apt,97,2,21,2019-05-13,0.85,1,0 +35380023,Owners duplex in beautiful bed stuy brownstone,413316,Laurel,Brooklyn,Bedford-Stuyvesant,40.67866,-73.94759,Entire home/apt,225,4,0,,,1,9 +19914250,Close to all NYC! Perfect place and cozy room,48972208,Yuri,Manhattan,Hell's Kitchen,40.75996,-73.99798,Private room,89,1,0,,,1,0 +31275494,Comfortable affordable room #5,20120009,Jannices,Brooklyn,Bushwick,40.68929,-73.90605,Private room,38,1,5,2019-06-19,0.82,6,7 +14030375,Vanilla Tea - Cozy Studio Hideaway in Bed Stuy #5,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9447,Private room,68,2,134,2019-06-20,3.8,3,245 +34742586,Bright and Sunny Urban Getaway,85521952,Gregory,Manhattan,Inwood,40.86858,-73.92042,Entire home/apt,200,2,1,2019-06-30,1.0,1,234 +21814906,Live/Work East Williamsburg Loft,6502688,Bryan,Brooklyn,Williamsburg,40.70592,-73.93513,Entire home/apt,165,2,7,2019-02-03,0.37,1,0 +32517517,Bright room with Open Terrace 3min walk to Subway,204704622,Momoyo,Queens,Elmhurst,40.74063,-73.87732,Private room,33,29,1,2019-06-16,1.0,7,34 +31859909,Beautiful room with view in newly-renovated house,5704932,Victor,Bronx,Fordham,40.86643,-73.88895,Private room,65,2,7,2019-04-01,1.28,3,110 +27201257,Charming & convenient to subways/1 bed. brownstone,200391647,Lauren,Brooklyn,Park Slope,40.67947,-73.97618,Entire home/apt,150,7,1,2018-10-18,0.11,1,0 +10340695,Spacious bedroom near Prospect Park,53217509,Kelsey,Brooklyn,Crown Heights,40.67434,-73.95761999999999,Private room,45,4,0,,,1,0 +22480570,Sunny & Cozy Double Bedroom with private entrance,22382224,Meryem,Brooklyn,Windsor Terrace,40.66023,-73.9804,Private room,85,1,6,2018-04-02,0.33,1,0 +7497287,Massive Bedroom by Prospect Park,241593,Thomas,Brooklyn,Flatbush,40.65036,-73.96306,Private room,70,1,0,,,2,0 +33776235,Bright apt in the heart of the lower east side!,42615337,Capucine,Manhattan,East Village,40.72241,-73.98554,Entire home/apt,180,5,1,2019-07-03,1.0,1,32 +27817851,A Nice Room For Unique people,152246149,Catherine,Bronx,Throgs Neck,40.82952,-73.82818,Private room,140,1,31,2019-06-09,3.01,5,365 +10360144,Live like a local in NYC! Next to Ditmars subway,16823940,Missy,Queens,Ditmars Steinway,40.77673,-73.90993,Private room,40,2,8,2019-06-08,0.2,2,229 +31369708,ROOMS ONE and TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68537,-73.87442,Private room,250,3,0,,,3,364 +20582991,Private studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74844,-73.97713,Entire home/apt,130,30,1,2017-11-01,0.05,50,364 +10035920,Best of Brooklyn,51502398,Sasha,Brooklyn,Crown Heights,40.6698,-73.94991999999999,Entire home/apt,175,3,77,2019-06-17,1.8,1,54 +16916926,Clean! Quiet! Near train and park!,420620,Kathryn,Brooklyn,Windsor Terrace,40.65998,-73.97811,Private room,70,3,0,,,1,0 +17111449,Spacious Private Room - Harlem/Manhattan Townhouse,4538012,Karen,Manhattan,East Harlem,40.80921,-73.94001999999999,Private room,70,2,89,2019-06-29,3.28,4,249 +8777936,Prime carroll gardens chrming 2 bed rooms,40611169,Sol,Brooklyn,Carroll Gardens,40.67778,-73.9952,Entire home/apt,250,1,50,2019-06-25,1.46,5,365 +32308362,Quiet Mid-Century Modern Apartment,99763169,Ashlin,Manhattan,Upper West Side,40.77995,-73.98464,Entire home/apt,220,2,3,2019-04-29,0.62,1,36 +3638852,Sunny room in Alphabet City,3563235,Andra,Manhattan,East Village,40.72135,-73.98,Private room,85,5,12,2016-09-06,0.2,1,0 +4129487,Peaceful Retreat in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68706,-73.93077,Private room,67,2,21,2019-05-21,0.36,7,58 +26706133,Beautiful brand new apartment !,199147185,Lou,Brooklyn,Sunset Park,40.66362,-73.99616,Entire home/apt,330,1,1,2018-11-04,0.12,5,174 +4605455,Private Room & Bathroom in LES,23575977,Carly,Manhattan,Two Bridges,40.71205,-73.99463,Private room,120,5,0,,,1,0 +12869679,Loft Apartment in Williamsburg,1233402,Evan,Brooklyn,Williamsburg,40.7125,-73.9529,Entire home/apt,180,3,3,2016-06-06,0.08,1,0 +31692860,2 bedroom apartment with a big outdoor terrace,169148493,Alan,Queens,Ditmars Steinway,40.77363,-73.91188000000001,Private room,90,4,0,,,1,0 +31042197,Sunny Boutique Condo on Picturesque Harlem Street,231863607,Jerry And Kate,Manhattan,East Harlem,40.807190000000006,-73.94088,Entire home/apt,250,2,10,2019-04-07,1.54,1,0 +25135772,Comfy one bedroom with backyard,189971299,Karen,Manhattan,Upper West Side,40.8004,-73.96866999999999,Entire home/apt,225,3,23,2019-06-30,1.8,1,283 +12422277,Spacious Studio w/ Patio- Ft Greene,43924728,Shawn,Brooklyn,Fort Greene,40.68702,-73.97506,Entire home/apt,169,2,136,2019-06-16,3.46,1,251 +7074961,"Spacious bright 2-bed duplex in Bed-Stuy, Brooklyn",37095710,Mary,Brooklyn,Clinton Hill,40.68664,-73.95981,Entire home/apt,170,7,3,2016-09-09,0.08,1,0 +27215478,LUXURY STUDIO ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76701,-73.98174,Entire home/apt,225,30,0,,,65,249 +16497297,Glass factory loft,5379884,Jacob,Brooklyn,Greenpoint,40.73792,-73.95541,Private room,60,7,5,2019-05-31,0.16,1,0 +13923165,Cozy Private Bedroom in Uptown Manhattan,69376422,Abbey,Manhattan,Washington Heights,40.84198,-73.93816,Private room,40,2,1,2016-07-26,0.03,1,0 +19913783,Micheal's Apartment in Harlem,31856573,Micheal,Manhattan,Harlem,40.81671,-73.94013000000001,Private room,80,6,0,,,1,364 +14089282,"Comfy room in brownstone, Ridgewood",57517386,Ruthy,Queens,Ridgewood,40.70365,-73.89572,Private room,100,1,0,,,1,0 +20384987,Cozy Apartment in Time Square with Amazing view,19045109,J,Manhattan,Theater District,40.76122,-73.98583,Private room,136,3,0,,,1,0 +16135399,Nice Room in the Upper West Side. Great Location.,105258361,Elena,Manhattan,Upper West Side,40.79528,-73.97325,Private room,100,3,38,2019-04-03,1.21,1,14 +31430577,Upper East Side One Bedroom,79520100,Bee,Manhattan,East Harlem,40.7868,-73.95228,Private room,50,2,29,2019-06-08,5.0,1,0 +30246807,Stay into heart of Brooklyn close Prospect Park B,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.94126,Private room,74,1,20,2019-06-23,2.83,5,125 +5418807,Home away From Home in Queens!,27614204,Stella,Queens,Bayswater,40.59968,-73.76451999999999,Private room,60,2,81,2019-06-16,1.6,1,312 +19714056,"Bright, spacious bedroom in comfy Brooklyn home",3013202,Chelsea,Brooklyn,Bushwick,40.69997,-73.91666,Private room,70,4,1,2017-08-21,0.04,1,55 +14349588,DUMBO Brooklyn Authentic Loft,32207621,Cynthia,Brooklyn,DUMBO,40.70267,-73.98828,Private room,125,12,24,2018-10-28,0.69,1,0 +21472882,Cozy Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71766,-73.94937,Private room,60,2,7,2018-10-15,0.34,3,0 +9973134,Location Location!! 1 bed apt,7614268,Ronnie,Manhattan,West Village,40.73299,-74.00444,Entire home/apt,139,7,0,,,1,0 +29612355,Rare gem nestled in the heart of Bushwick,6814283,Marc,Brooklyn,Bushwick,40.70218,-73.93034,Entire home/apt,140,3,3,2019-04-28,0.48,1,0 +193853,Quiet Chelsea Studio w/Charm,48599,Anastasia,Manhattan,Chelsea,40.74033,-74.00024,Entire home/apt,149,6,23,2018-05-21,0.27,2,0 +25999678,Light & Airy home 1 minute to subway,7772526,Ting Yi,Brooklyn,Bushwick,40.68658,-73.91418,Entire home/apt,140,3,15,2019-06-12,2.76,2,240 +30158174,SWEET + SUNNY WILLIAMSBURG SANCTUARY,4085985,Kimberly,Brooklyn,Williamsburg,40.71134,-73.96059,Entire home/apt,200,3,0,,,1,28 +27752788,Bright and Spacious Apt in the Heart of Manhattan,22072708,Mk,Manhattan,Midtown,40.74264,-73.98361,Entire home/apt,199,3,14,2019-06-17,1.33,1,3 +21751275,Modern West Soho Apartment,27551651,Rachel,Manhattan,SoHo,40.72591,-74.00395999999999,Entire home/apt,225,2,9,2019-04-30,0.49,1,6 +17045488,Huge Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.87031,-73.89322,Private room,79,3,98,2019-06-24,3.45,10,68 +22953136,Private Specious Sunny Brooklyn Loft,4383475,Keiichiro,Brooklyn,Williamsburg,40.70593,-73.92818,Entire home/apt,125,3,0,,,1,0 +9926520,BK/NYC Apt near Prospect Prk,432318,Taylor,Brooklyn,Kensington,40.644,-73.98091,Entire home/apt,85,7,3,2019-01-02,0.14,1,0 +18716602,Charming 2brs w/ private garden in Carroll Gardens,62734,Kremer,Brooklyn,Gowanus,40.67862,-73.9923,Entire home/apt,120,30,2,2018-11-01,0.19,2,342 +27783586,Williamsburg nest with private bathroom,20448671,Kandi,Brooklyn,Williamsburg,40.70755,-73.94377,Private room,65,2,22,2019-06-29,2.25,3,173 +21982758,Cozy 1 Bedroom in the Heart of Clinton Hill,10763283,Heather,Brooklyn,Clinton Hill,40.68165,-73.96006,Entire home/apt,110,3,15,2019-06-04,0.83,1,3 +15060262,Amazing Brooklyn Townhouse Studio,34126778,Kwame,Brooklyn,Bedford-Stuyvesant,40.6898,-73.93746,Private room,99,7,0,,,1,72 +13554710,"Modern Oasis l -Prospect Park, Close to B/Q Subway",47050813,Jewel,Brooklyn,Flatbush,40.65034,-73.96342,Private room,62,1,167,2019-06-27,4.52,2,48 +33156988,Beautiful Bright TriBeCa Loft - steps from Soho!,61256671,Jason,Manhattan,Tribeca,40.71989,-74.00668,Entire home/apt,290,2,4,2019-06-25,2.26,1,75 +34416461,Amazing room at Brooklyn close to subway station,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91261999999999,Private room,58,2,3,2019-07-08,1.48,5,167 +6262645,Queen-sized bed in sunny East Harlem private room,32304586,Amanda,Manhattan,East Harlem,40.79115,-73.94663,Private room,90,3,95,2019-06-18,1.88,1,175 +21490894,BRIGHT SUNNY LOFT,56411266,Colin,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95908,Private room,60,3,0,,,1,0 +17249755,Bedstuy/Bushwick - Fully Renovated One Bedroom,11638358,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69,-73.93783,Entire home/apt,100,4,77,2019-06-16,2.66,2,100 +20573565,Spacious room in central Brooklyn location,125692898,Andrea,Brooklyn,Bushwick,40.70463,-73.92428000000001,Private room,70,2,2,2017-09-04,0.09,1,0 +34999128,Nice and cozy ✌ holiday apartment✿,255222056,Alex,Manhattan,Midtown,40.75869,-73.96725,Entire home/apt,195,5,12,2019-07-01,7.83,1,6 +9461660,Room in a Historic Old Brownstone,11611066,Nazgol,Manhattan,Harlem,40.8096,-73.94099,Private room,90,1,0,,,1,0 +7840953,Large Lofted Brooklyn Studio,7579910,Christine,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93944,Entire home/apt,105,30,5,2018-12-31,0.11,1,363 +36200778,Cozy bedroom in BUSHWICK by GATES stop J Train!!!,272127488,Jim&Daniela,Brooklyn,Bushwick,40.69048,-73.92258000000001,Private room,55,1,0,,,2,276 +29900395,Your Manhattan Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73214,-73.95510999999999,Private room,119,1,0,,,33,365 +28587071,Private Bedroom in Queens at St. John's University,215759678,Andrew,Queens,Jamaica Estates,40.71987,-73.79816,Private room,35,2,30,2019-07-03,3.35,1,233 +17829241,All in one place (A),74179880,Silvia,Brooklyn,East New York,40.6754,-73.88989000000001,Private room,75,3,71,2019-06-10,2.61,8,360 +36038003,Modern & Hip Building-Lower East Side- Elevator!,4239407,Steve,Manhattan,Lower East Side,40.71467,-73.98985,Entire home/apt,209,3,0,,,2,5 +21730105,Large & Private Bedroom in Fort Greene,14294841,Waahid,Brooklyn,Fort Greene,40.69399,-73.97153,Private room,75,2,0,,,1,0 +34109512,Beautiful Apartment in Luxury building,156853666,Helen!,Manhattan,Hell's Kitchen,40.7689,-73.98993,Entire home/apt,225,3,8,2019-06-14,4.29,1,49 +27159664,Beautiful Sunny Private Bedroom in Brooklyn (JMZ),53365451,Brigid,Brooklyn,Bedford-Stuyvesant,40.6939,-73.93239,Private room,50,6,2,2019-01-01,0.18,1,0 +29165306,15% Discount - Cozy Room in LES with Backyard,219782181,Vince,Manhattan,Lower East Side,40.715,-73.98595999999999,Private room,80,1,22,2019-06-17,2.54,3,123 +212109,2-bedroom share in heart of Greenwich Village!,666271,Susan,Manhattan,West Village,40.73854,-74.00820999999999,Private room,80,90,9,2019-06-30,0.2,1,338 +28489062,Cozy 2 Bedroom by the Park !,20104851,Scott,Brooklyn,South Slope,40.66595,-73.97973,Entire home/apt,195,4,22,2019-06-25,3.01,1,67 +19431893,Nice small room NYC (5 min from LaGuardia Airport),136230287,Jhon,Queens,East Elmhurst,40.76523,-73.86966,Private room,40,1,16,2017-11-20,0.65,1,0 +34253845,Bedroom w full kitchen & living room - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70992,-73.94698000000001,Private room,100,1,4,2019-06-02,2.03,3,365 +3979613,ECO-CHIC PALLET DESIGN APARTMENT,20625992,Christian,Queens,Jackson Heights,40.74892,-73.88883,Entire home/apt,200,2,0,,,1,364 +23879304,Beautiful room,179416315,Elizabeth,Bronx,University Heights,40.85989,-73.91189,Private room,60,2,7,2019-01-01,0.46,2,156 +29966943,Your Home Away From Home,225309985,Ashley,Bronx,Fordham,40.8689,-73.88552,Entire home/apt,98,2,30,2019-05-24,4.46,1,327 +28151027,"Home sweet home +&(QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94591,Private room,40,1,16,2019-06-16,1.84,2,310 +36265970,Comfortable Brooklyn room close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69549,-73.9416,Private room,77,2,0,,,7,150 +18404432,2 bedroom apartment & private backyard,104170260,Lauren,Queens,Astoria,40.76736,-73.91685,Entire home/apt,99,4,1,2017-07-09,0.04,1,0 +31502830,Flatiron Designer Loft! Private Elevator! 3BR/2BA,231295106,Sam,Manhattan,Gramercy,40.73667,-73.98592,Entire home/apt,199,3,20,2019-06-16,3.7,1,123 +1240594,Private room 2nd Fl near C&A line and 15mins JFK,6762657,Yvette,Brooklyn,Cypress Hills,40.68287,-73.87295,Private room,42,3,28,2018-01-01,0.74,2,355 +16339429,Quiet Room in Unique Carroll Gardens,106977720,Kristan,Brooklyn,Carroll Gardens,40.67711,-73.99691999999999,Private room,50,2,2,2017-03-02,0.07,1,0 +35619415,Gorgeous Central Park Sanctuary,267980502,Yinelda,Manhattan,Upper West Side,40.78544,-73.97062,Entire home/apt,150,4,0,,,1,317 +17606850,Spacious 2 BR Bedford Stuyvesant Bklyn NY,119669258,Alvin,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94098000000001,Entire home/apt,200,2,77,2019-06-24,2.97,1,88 +16081134,Well connected private room,24630962,Ercio,Brooklyn,Williamsburg,40.70627,-73.94946999999999,Private room,70,10,17,2018-03-13,0.61,1,0 +148201,NYC - Sunny Greenwich Village 1br,715807,John,Manhattan,Greenwich Village,40.72831,-74.00177,Entire home/apt,175,3,18,2013-05-31,0.19,1,0 +17407264,"Small Basic Room in Great Area: Long Term, 2 beds!",117699517,Leo & Family,Queens,East Elmhurst,40.75602,-73.88110999999999,Private room,49,4,2,2018-12-13,0.09,1,355 +7311209,SUPER HUGE ROOM IN GREENPOINT BK,1641537,Lauren,Brooklyn,Greenpoint,40.72503,-73.93909000000001,Private room,53,7,7,2016-03-09,0.15,2,0 +9804814,Cozy Midtown East apt,10487850,Nael,Manhattan,Midtown,40.75287,-73.96708000000001,Entire home/apt,230,1,0,,,1,0 +35868596,LOFTED BED IN CONVERTED FACTORY LOFT NEAR 2 METROS,35606248,Blake And Madia,Brooklyn,Bushwick,40.70301,-73.92551999999999,Private room,63,2,0,,,5,358 +31463824,"Studio at Battery Park, Downtown Manhattan",21229164,Alex,Manhattan,Battery Park City,40.70417,-74.01709,Entire home/apt,115,1,12,2019-06-30,2.02,1,0 +14322182,Greenpoint amazing private room,15235299,Hai-Hsin,Brooklyn,Greenpoint,40.73293,-73.95919,Private room,60,3,52,2019-05-05,1.49,2,0 +60794,"Bright and spacious, garden below!",293394,Rachel,Manhattan,Upper West Side,40.80021,-73.96070999999999,Entire home/apt,195,4,4,2017-08-25,0.04,1,0 +21985066,Crown Heights Comfort: Cozy Room & Warm Livingroom,52610301,Jason,Brooklyn,Crown Heights,40.67068,-73.95764,Private room,43,1,5,2018-01-01,0.26,1,0 +7492539,urban cottage,6004716,Rosalyn,Queens,Astoria,40.7573,-73.92773000000001,Private room,75,1,0,,,1,0 +17431995,2 bedroom apt. in Manhattan-Gramercy apt building,117932348,Deborah,Manhattan,Gramercy,40.73521,-73.98147,Entire home/apt,155,20,25,2019-07-05,1.06,2,62 +32595081,13ft Ceilings > Prime Historic Brownstone Brooklyn,19807856,Jack,Brooklyn,Clinton Hill,40.68575,-73.96311,Entire home/apt,200,2,6,2019-06-30,2.5,1,76 +30848952,Cozy private room in the Upcoming Bronx,230646296,Cesar,Bronx,Concourse Village,40.83311,-73.9116,Private room,34,2,2,2018-12-26,0.29,1,0 +19546150,Studio Apartment.,137270801,Jose,Queens,Ozone Park,40.67557,-73.85145,Private room,100,1,0,,,1,0 +23940102,BRAND NEW PRIVATE STUDIO 5 BLOCKS TO CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77172,-73.95427,Entire home/apt,125,30,5,2019-05-14,0.34,3,283 +1476238,Spacious Midtown 1BR Apt - 4.5 Stars/21 Reviews,7324189,Buke,Manhattan,Midtown,40.76084,-73.96908,Entire home/apt,300,15,6,2018-11-07,0.58,2,98 +29516678,Harlem Heights Pearl Suite,39174150,Keanna,Manhattan,Harlem,40.8252,-73.95189,Private room,100,1,13,2019-06-11,1.58,3,71 +31673405,Sunny 2 bedroom in Central Brooklyn!,121842697,Lo,Brooklyn,Crown Heights,40.67648,-73.93814,Entire home/apt,200,5,14,2019-06-22,3.59,1,96 +1024113,"Lovely room in East Williamsburg, NY",2120889,Megan,Brooklyn,Williamsburg,40.71238,-73.9379,Private room,63,2,0,,,1,66 +31467371,J-m-l train 20 mint to city 20 to jfk clean 4/20,235734225,Khaled,Brooklyn,Bushwick,40.69812,-73.92134,Private room,130,2,6,2019-06-10,1.18,1,356 +4645824,"Room in front of Prospect Park, 1 block to subway",1660261,Andres Mekos,Brooklyn,Prospect-Lefferts Gardens,40.65859,-73.96195999999999,Private room,40,6,10,2019-04-15,0.21,1,0 +25355807,Cozy bedroom approx 5 minutes from JFK.,123506305,Kisha,Queens,Springfield Gardens,40.66601,-73.77638,Private room,92,1,0,,,3,180 +22730298,Spacious King size Apartment near Prospect Park,131827796,Rose,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95427,Entire home/apt,130,3,36,2019-06-25,2.23,1,132 +27936839,Big & Sunny room w/toilet in Williamsburg,1472433,Marcos,Brooklyn,Williamsburg,40.70698,-73.94295,Private room,110,1,3,2019-06-11,0.28,2,173 +33853889,Private Spacious Bedroom in lush green Fort George,45776423,Aman,Manhattan,Washington Heights,40.85719,-73.93048,Private room,35,3,3,2019-06-14,3.0,1,5 +34755841,"Your own private, fully furnished large room.",262116941,Paul,Manhattan,East Harlem,40.7963,-73.93087,Private room,65,7,0,,,1,151 +30792215,Room steps from Times Square,192754619,Liza,Manhattan,Hell's Kitchen,40.75568,-73.99661,Private room,159,1,1,2018-12-30,0.16,1,189 +29243359,Shared Apt living-room w/pull out click open couch,220322871,Elisa,Manhattan,Upper East Side,40.77156,-73.95716,Shared room,75,1,1,2018-10-22,0.12,1,365 +17792856,Cute bedroom available near subway in Astoria!,73610315,Kerstin,Queens,Astoria,40.76529,-73.92304,Private room,53,2,14,2018-05-17,0.55,1,0 +35711784,Private 1BR Apt 3min from Times Square,268352337,Logan,Manhattan,Hell's Kitchen,40.76494,-73.98874,Entire home/apt,250,1,0,,,2,360 +34939305,Sunny East Village Room Across from the Subway,126012313,Madison,Manhattan,East Village,40.72276,-73.98741,Private room,78,2,7,2019-07-06,5.38,1,1 +17512282,Amazing Apartment | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74526,-73.97679000000001,Entire home/apt,150,30,1,2017-05-26,0.04,23,365 +19564437,Sunny BK Bedroom with Private Bathroom and Balcony,6313371,Ashley,Brooklyn,Clinton Hill,40.689,-73.9613,Private room,90,3,0,,,1,0 +14534676,"Private room in SUNNY gorgeous apt in Brooklyn,NYC",7156036,Ahmed,Brooklyn,Flatbush,40.64528,-73.9612,Private room,95,6,2,2019-01-02,0.06,1,249 +30377654,Greenpoint Creative's Apartment,2011313,Ariana,Brooklyn,Greenpoint,40.72471,-73.939,Entire home/apt,100,7,3,2019-06-10,0.78,1,6 +9516142,In the Heart of Williamsburg,42597922,Al,Brooklyn,Williamsburg,40.71171,-73.95704,Entire home/apt,149,1,87,2019-06-16,1.99,1,151 +1281023,Your private bedroom in the Upper East Side!,6970732,Sullivan,Manhattan,East Harlem,40.78747,-73.95276,Private room,150,3,18,2019-05-04,0.25,1,0 +35065083,Best views in the city is here,3398621,Nikita,Brooklyn,Brooklyn Heights,40.69664,-73.99467,Entire home/apt,140,2,1,2019-06-10,1.0,1,0 +15729325,Cozy Bedroom in a great location.,101632253,Linnette,Manhattan,East Harlem,40.78857,-73.94951999999999,Private room,100,3,20,2018-06-10,0.66,1,188 +24245265,Cozy Room For Two/ Steps to Train/Coffee included!,79913651,Darryl,Manhattan,Harlem,40.82268,-73.953,Private room,54,2,26,2019-05-03,1.73,4,157 +3594408,Bedr w Priv Bathr+Balc 15m frm city,6150064,Sonya,Queens,Astoria,40.76972,-73.9206,Private room,85,2,2,2015-08-25,0.04,1,0 +4241028,Private Studio Apartment ,22006854,Kishorie,Queens,Jamaica,40.6852,-73.7962,Entire home/apt,89,1,352,2019-06-16,6.1,1,359 +35855969,Stunning bedroom!! Walking to Central Park!!!,130617332,Haley,Manhattan,Harlem,40.81226,-73.94349,Private room,80,3,0,,,3,187 +34653572,Bright room in newly renovated duplex apartment,3042136,Jenni,Brooklyn,Red Hook,40.67634,-74.01009,Private room,99,2,1,2019-06-30,1.0,3,8 +8427772,The real deal 2 blox away from CP!,21737404,Miklos,Manhattan,Harlem,40.8022,-73.95737,Private room,99,4,2,2015-10-26,0.04,1,0 +32466401,Sonder | The Nash | Modern Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74915,-73.97556999999999,Entire home/apt,172,29,2,2019-05-30,0.75,327,338 +9832827,Full apartment,50638417,Nany,Manhattan,East Harlem,40.78442,-73.94722,Entire home/apt,110,5,70,2019-06-28,1.81,2,310 +13920697,Brownstone apt in Bklyn w/ gorgeous natural light,29513490,Whitney,Brooklyn,Bedford-Stuyvesant,40.6837,-73.93325,Entire home/apt,125,2,4,2017-01-02,0.12,1,0 +29727132,Amazing one bedroom for a getaway in Brooklyn,44358422,Akeema,Brooklyn,Flatbush,40.63919,-73.95219,Private room,38,1,2,2018-11-26,0.27,1,238 +11697308,Spacious 1 BR Upper East Side,61391963,Corporate Housing,Manhattan,Upper East Side,40.78002,-73.95284000000001,Entire home/apt,125,30,8,2019-05-31,0.23,91,343 +31731555,Spacious Bedroom with King Bed in Light-Filled Apt,2278050,Jill Laurie,Manhattan,Upper West Side,40.80272,-73.96916,Private room,80,5,3,2019-04-30,0.65,1,188 +268481,Resort-like living in Williamsburg,1380703,Vishal,Brooklyn,Williamsburg,40.71647,-73.93974,Entire home/apt,290,30,1,2013-09-24,0.01,1,0 +27540139,STUDIO IN VILLAGE CHARM~PERRY STREET!,200380610,Pranjal,Manhattan,West Village,40.73485,-74.00313,Entire home/apt,188,30,0,,,65,326 +27670819,"Large BR in beautiful 2BR artist loft, best of NYC",112545065,Diana,Brooklyn,Bushwick,40.69898,-73.92266,Private room,50,7,1,2019-05-24,0.65,2,55 +26126570,Two bedroom apartment with all amenities,673215,Jessica Rose,Manhattan,Harlem,40.82299,-73.95461,Entire home/apt,200,5,0,,,2,39 +1691188,4 bedroom 2Bath apt Maspeth Queens,8934751,Mike,Queens,Maspeth,40.72509,-73.89686999999999,Entire home/apt,200,4,24,2019-06-01,0.38,2,157 +18347330,Sunny One-Bedroom Apartment in Brooklyn,36678842,Danny,Brooklyn,Crown Heights,40.66939,-73.95832,Entire home/apt,150,3,2,2018-01-02,0.08,1,0 +12901480,Artistic pad in East Williamsburg!,70674019,Jack,Brooklyn,Bushwick,40.69968,-73.92645,Entire home/apt,179,7,117,2019-06-26,3.04,2,137 +12086351,Peaceful Private Room In Warm Brooklyn Apt,4462547,Ryan,Brooklyn,Prospect Heights,40.678340000000006,-73.96685,Private room,37,180,0,,,1,0 +16603823,"Luxury bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80288,-73.96396,Private room,120,5,11,2019-05-23,0.76,2,134 +19942242,Home away from home.,141322867,Peggy,Brooklyn,Flatlands,40.62468,-73.94532,Private room,46,2,4,2017-08-12,0.17,1,4 +19979903,Jolly Bedroom! 3 minute walk to Astoria Ditmars!,135845936,Claire,Queens,Ditmars Steinway,40.77233,-73.911,Private room,75,3,2,2017-12-04,0.09,1,0 +7193201,Private RM in Heart of East Village,33739627,Natasha,Manhattan,East Village,40.72896,-73.9843,Private room,99,1,4,2015-10-24,0.08,1,0 +27125757,Artsy Brooklyn Gem-1 min to subway & Prospect Park,8052047,Kristiina,Brooklyn,Prospect-Lefferts Gardens,40.65421,-73.96155,Shared room,47,2,10,2018-11-04,0.93,1,0 +5192219,Metro Retreat - - Harlem,26856159,Glenda,Manhattan,Harlem,40.82153,-73.94651,Private room,58,1,194,2019-06-22,3.81,3,307 +21308528,East Village/Lower East Side Artsy Flat,51547093,Kai Chieh,Manhattan,Lower East Side,40.72026,-73.98468000000001,Shared room,68,1,5,2018-03-09,0.24,2,0 +33042347,★★ Spacious Single House | Close to Everything! ★★,16637631,J.C & Johanna,Brooklyn,Williamsburg,40.70984,-73.96366,Entire home/apt,260,1,24,2019-07-05,6.43,1,45 +11782120,Times Square Two Bedroom,40219037,Ziv,Manhattan,Hell's Kitchen,40.764520000000005,-73.99439,Entire home/apt,200,4,107,2019-06-26,2.73,1,203 +35281242,Magical Room In the heart of Greenwich Village,141425524,Nickolas,Manhattan,Greenwich Village,40.73081,-74.00089,Private room,200,7,0,,,1,15 +33295827,Private Room in 4 Bedroom Apartment in Upper West,250771864,Zhou,Manhattan,Upper West Side,40.80131,-73.96596,Private room,37,50,0,,,1,1 +32549231,温馨的家,239139334,Fang,Queens,Bayside,40.76898,-73.78855,Private room,48,1,7,2019-06-21,3.18,3,244 +9919518,Spacious bedroom in shared 3 bdrm,22954228,Cassandra,Brooklyn,Prospect-Lefferts Gardens,40.65433,-73.96117,Private room,55,3,0,,,2,0 +21473648,Must Love Dogs and Tribeca NYC,155944475,Robert,Manhattan,Tribeca,40.71844,-74.00901,Private room,200,1,0,,,1,0 +8222951,Artsy Studio near The Brooklyn Museum,19379151,David,Brooklyn,Crown Heights,40.6766,-73.95987,Entire home/apt,75,3,21,2019-04-08,1.06,1,0 +7149452,Clinton Hill Apartment,16478353,Ali,Brooklyn,Clinton Hill,40.68538,-73.96479000000001,Private room,65,14,6,2017-06-21,0.16,1,0 +23451337,Spacious fully furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75988,-73.96115,Entire home/apt,100,30,5,2019-04-30,0.34,8,229 +30159757,PRIVET ROOM FOR YOUR VACATION NEAR Central Park !!,214137767,Anna,Manhattan,East Harlem,40.78572,-73.94468,Private room,100,1,13,2019-05-24,1.78,1,270 +9043722,Lavish 1BR in FiDi + city views,30283594,Kara,Manhattan,Financial District,40.705740000000006,-74.00809,Entire home/apt,239,30,2,2018-06-10,0.09,121,186 +22032605,Spacious Attic Room,160899890,Carly,Brooklyn,Midwood,40.61609,-73.95893000000001,Private room,35,1,2,2018-01-02,0.11,1,0 +20394608,Hamilton Heights sun filled spacious master BR,75749777,Mykola,Manhattan,Harlem,40.82094,-73.95366,Private room,49,16,1,2017-08-21,0.04,1,0 +32018402,Spacious warm clean private room in the Brooklyn,34556469,Zhansaya,Brooklyn,Gravesend,40.60653,-73.97725,Private room,50,1,0,,,2,0 +1703834,Your Own Private Room To Sleep In! BEAUTIFUL!,8136206,Rob,Brooklyn,Prospect-Lefferts Gardens,40.65763,-73.96029,Private room,64,2,108,2019-06-16,1.61,2,296 +23235762,Bright Brooklyn Heights One Bedroom Apt,32927725,Lee,Brooklyn,Brooklyn Heights,40.69109,-73.99654,Entire home/apt,200,1,0,,,1,0 +21265628,Fabulous Room in East Willamsburg!,20583151,Deona,Brooklyn,Bushwick,40.697790000000005,-73.92282,Private room,95,1,1,2019-05-19,0.59,1,89 +34896977,Home away from Home.,261995854,Indira,Queens,Richmond Hill,40.68243,-73.82668000000001,Entire home/apt,120,2,5,2019-07-06,5.0,1,356 +27735126,Cozy shared place by Central Park Manhattan,209386156,Abraham,Manhattan,East Harlem,40.80033,-73.94201,Shared room,49,2,60,2019-06-22,5.54,9,109 +16414081,15 min to NYC-CITY VIEWS FROM ROOM! Safe/warm home,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69055,-73.95394,Private room,58,1,16,2019-01-18,0.52,2,8 +9902343,Cozy Williamsburg,5325431,Bil,Brooklyn,Williamsburg,40.71374,-73.96336,Private room,68,2,0,,,1,0 +30369652,Central Park Loft,93717558,Abe,Manhattan,Upper West Side,40.78687,-73.97189,Entire home/apt,175,2,17,2019-06-20,2.64,1,27 +19121957,Big private room in huge artsy Williamsburg loft,42405567,Chris,Brooklyn,Williamsburg,40.7116,-73.94431999999999,Private room,90,2,13,2019-06-10,0.58,2,7 +34317924,Sonder | The Biltmore | Bright 1BR + Workspace,219517861,Sonder (NYC),Manhattan,Theater District,40.76118,-73.98628000000001,Entire home/apt,154,29,0,,,327,343 +33967235,Skyline view 1BR condo with balcony,8485868,Jake,Brooklyn,Bushwick,40.70044,-73.93472,Entire home/apt,150,3,0,,,1,17 +32240873,Sonder | Stock Exchange | Classic Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70796,-74.01205999999999,Entire home/apt,196,2,9,2019-06-18,2.48,327,318 +9944710,Cozy Room in the heart of Hell’s Kitchen!,51108205,Alyssa,Manhattan,Hell's Kitchen,40.76322,-73.99354,Private room,66,2,0,,,1,0 +6332130,Lefferts Apt in Brownstone @ Park,21725994,Tim,Brooklyn,Prospect-Lefferts Gardens,40.65597,-73.95806999999999,Entire home/apt,95,2,77,2019-06-18,1.61,2,83 +3431378,Luxe Tuscan Suite Private Room,17292935,Anne,Bronx,Mott Haven,40.81055,-73.92482,Private room,55,1,231,2019-06-22,3.95,2,16 +15411988,Honey and milk - A creative studio apartment.,98714463,Georges,Manhattan,Hell's Kitchen,40.76043,-73.995,Private room,110,3,94,2019-06-24,2.83,1,26 +11610515,Opening my space while I travel,19479273,Ryan,Brooklyn,Bushwick,40.69019,-73.91574,Private room,45,1,0,,,1,0 +33717575,Large studio for 2,254164653,Cedar,Manhattan,Hell's Kitchen,40.75896,-73.9956,Entire home/apt,150,7,4,2019-06-23,2.67,1,213 +31595389,Private Cozy&Quiet Bedroom 1min from central park,47038126,Brigitte,Manhattan,Upper West Side,40.78541,-73.97343000000001,Private room,110,1,2,2019-06-18,1.4,2,72 +13830463,Maria and Yiannis East Village studio,20549983,Ioannis,Manhattan,East Village,40.72712,-73.98705,Entire home/apt,100,3,18,2019-06-10,0.5,1,20 +26816742,Cozy living room in the center of Manhattan,42730216,Tatjana,Manhattan,Upper East Side,40.76639,-73.95817,Shared room,150,3,2,2019-06-19,2.0,2,142 +15728780,"SOMMwhere in NYC/ a unique, conscious artists loft",148108,Fatima,Manhattan,Lower East Side,40.72297,-73.98946,Private room,333,1,40,2019-06-10,1.27,2,62 +31139974,3 bedroom apartment for your perfect stay,44477551,Sammy,Brooklyn,Midwood,40.62532,-73.96285999999999,Entire home/apt,250,3,0,,,1,101 +5845124,Beautiful Astoria Apartment,30346554,Kristin,Queens,Astoria,40.76956,-73.91787,Private room,75,2,6,2016-06-06,0.12,1,0 +16396640,Wonderful UES Studio...,107416436,Eddie,Manhattan,Upper East Side,40.77848,-73.9486,Private room,70,7,1,2017-01-02,0.03,1,0 +22209583,Spacious sanctuary + private bath in hip Bedstuy,162291393,Olya,Brooklyn,Bedford-Stuyvesant,40.6834,-73.94209000000001,Private room,98,1,26,2018-11-25,1.4,1,73 +13388649,Spacious Private Home - 20m to Manhattan,1544804,Michelle,Queens,Astoria,40.76406,-73.90769,Entire home/apt,99,1,185,2019-06-19,5.28,1,211 +25277640,The Greenwood - One Bedroom Garden Apartment,190962476,Teresa,Brooklyn,Sunset Park,40.66332,-73.99727,Entire home/apt,155,3,26,2019-07-06,2.18,1,67 +3476431,Charming Fort Greene Studio,4374828,Michelle,Brooklyn,Clinton Hill,40.68407,-73.96715,Entire home/apt,110,3,39,2019-01-01,0.85,1,0 +9253505,Spacious room in Midtown East,3001268,Tianni,Manhattan,Midtown,40.75261,-73.97063,Private room,99,1,0,,,1,0 +22496369,Pleasant & Low-priced place in Manhattan,23719409,Carlina,Manhattan,Harlem,40.82645,-73.94984000000001,Private room,60,1,41,2019-06-22,2.24,4,132 +31979292,Oceanfront Beach Bungalow,4955499,Samantha,Queens,Rockaway Beach,40.58344,-73.81456,Entire home/apt,200,1,4,2019-04-28,1.12,1,124 +4430645,Brooklyn Townhouse Duplex,819257,Nina,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95225,Entire home/apt,200,7,0,,,1,0 +32587918,One Bedroom Apartment in Central of Midtown.,211549023,Studioplus,Manhattan,Midtown,40.74766,-73.9868,Entire home/apt,260,2,2,2019-05-29,1.13,13,259 +21967523,Comfy 1 bedroom in the heart of HARLEM,160379705,Jamesetta,Manhattan,Harlem,40.8041,-73.95260999999999,Private room,35,2,7,2018-01-03,0.37,1,0 +7627784,Modern & Stylish HK Private Bedroom,6684858,Jd,Manhattan,Hell's Kitchen,40.76769,-73.99405,Private room,150,3,17,2019-05-24,0.37,1,364 +9958442,NYC 2BR ap for HOLIDAYS in the CITY,10558287,Julian,Manhattan,Kips Bay,40.7439,-73.97974,Entire home/apt,199,10,0,,,1,0 +35652334,"Rooms in the new hipster area of Brooklyn, NYC 2",266998393,Hector,Brooklyn,Bushwick,40.69423,-73.91945,Private room,40,3,1,2019-07-02,1.0,3,96 +27137301,"Bright, modern duplex w/ rooftop deck & balcony",9736367,Katie,Brooklyn,Bedford-Stuyvesant,40.68652,-73.94848,Private room,46,3,5,2019-04-22,0.47,1,0 +36315267,"Great Soho Apartment "" Renovated & Clean """,138379336,Karin,Manhattan,SoHo,40.72654,-74.00201,Entire home/apt,285,5,0,,,1,365 +32725337,Ayo's Abode 2,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.6867,-73.93835,Entire home/apt,160,1,6,2019-05-05,1.49,2,68 +30131273,Private shared space TV/WiFi included bus/train,226410935,Ninosca,Manhattan,Washington Heights,40.83815,-73.94385,Private room,40,3,23,2019-07-01,3.0,1,129 +28130741,"Renovated, Stylish Apt! Next to Prospect Park",6109032,Claire,Brooklyn,Prospect-Lefferts Gardens,40.66159,-73.95921,Entire home/apt,104,3,11,2019-03-25,1.05,1,0 +32494991,Brand New 2 bed 1 bath in the UES #6129,113805886,Yaacov,Manhattan,Upper East Side,40.77883,-73.9505,Entire home/apt,206,30,0,,,33,217 +10614204,Bright Clean North Central Park,13620283,Brenn,Manhattan,Harlem,40.8027,-73.94629,Entire home/apt,135,3,16,2019-01-01,0.39,1,0 +730480,Private Bedroom in Sunny Brooklyn Apartment,3798686,Jonathan,Brooklyn,Sunset Park,40.65989,-73.99535999999999,Private room,66,3,51,2019-05-30,0.64,1,329 +5663222,Elegant Private Studio - Town House,29358602,Lillybeth & Crystal,Manhattan,Harlem,40.80663,-73.94991,Private room,90,1,151,2019-06-30,4.42,1,129 +18670480,Sunny Art + Plant Brownstone Apartment,6356476,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68988,-73.94136999999999,Entire home/apt,116,2,0,,,1,0 +17106473,Contemporary 3BR w Nursery in Brownstone Brooklyn,14927662,Michael,Brooklyn,Carroll Gardens,40.68255,-73.99280999999999,Entire home/apt,100,4,4,2018-11-25,0.14,1,15 +21384941,Great UWS alcove studio,11774785,Greg,Manhattan,Upper West Side,40.79027,-73.97241,Entire home/apt,135,2,0,,,1,0 +29632875,Bright and Cozy Brooklyn Apartment,14906911,Sophie,Brooklyn,Williamsburg,40.71867,-73.95161999999999,Private room,75,1,3,2019-02-14,0.37,1,0 +5797398,"1 bedroom, large williamsburg loft",30078721,Elizabeth,Brooklyn,Williamsburg,40.71375,-73.96311999999999,Private room,80,7,0,,,1,0 +27752128,sofa Bed And Breakfast,205706382,Peter,Queens,Maspeth,40.72514,-73.89845,Shared room,11,1,0,,,1,245 +127387,"Luxe, Spacious 2BR 2BA Nr Trains",23276,Katharine,Brooklyn,Gowanus,40.66862,-73.9926,Entire home/apt,260,30,3,2014-08-04,0.03,1,316 +10434806,Studio near to TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76486,-73.99479000000001,Entire home/apt,150,30,8,2018-05-04,0.2,31,298 +25816034,Bronx 2 Bedroom with View of Manhattan Skyline,179677211,Bettina,Bronx,Van Nest,40.84778,-73.86146,Entire home/apt,150,1,29,2019-06-03,2.23,3,24 +34315546,Hell's Kitchen Luxury (East Room),50597569,Michael,Manhattan,Hell's Kitchen,40.76215,-73.99589,Private room,112,2,7,2019-06-22,3.39,1,1 +32916183,SPACIOUS SUNNY ROOM NEAR SUBWAY AND HUDSON rIVER,1190978,Linden & Bah,Manhattan,Harlem,40.82195,-73.95572,Private room,52,30,1,2019-06-21,1.0,2,365 +4387152,Petit chalet with secret garden,22262958,Kanae,Brooklyn,Williamsburg,40.71142,-73.95535,Entire home/apt,160,3,87,2019-06-19,1.63,1,302 +33077150,Comfortable & Private One Bedroom Apt in NYC!,248944703,Sasha,Manhattan,Murray Hill,40.7462,-73.97296,Entire home/apt,160,2,11,2019-07-03,4.34,1,90 +22352661,Modern 1 Bedroom in East Williamsburg,11742675,Malik,Brooklyn,Williamsburg,40.7078,-73.94619,Entire home/apt,135,1,24,2019-06-27,1.42,2,36 +14823526,"Located in heart of SOHO, super convenient!",9390190,Amy,Manhattan,SoHo,40.72281,-73.9987,Private room,120,1,9,2018-10-28,0.35,4,89 +113945,Cozy room in Time Square!,275582,Natalia,Manhattan,Hell's Kitchen,40.75835,-73.99193000000001,Private room,85,10,116,2019-05-11,1.17,1,174 +20120739,Large bedroom plus in 2 bdr apartment uptown.,24559370,Gabrielle,Manhattan,Washington Heights,40.8555,-73.93517,Private room,98,3,4,2018-09-04,0.17,2,0 +33492234,Penthouse with Manhattan views,37273247,Gary,Queens,Maspeth,40.7289,-73.89803,Entire home/apt,130,2,4,2019-06-30,1.88,1,338 +13959556,Comfy Accommodations in Queens NY (JFK - 8 Mins),74331597,Nickesha,Queens,St. Albans,40.68482,-73.76929,Private room,55,5,28,2019-06-15,0.81,5,365 +195240,"Prospect Pk*NYC in 5 stops* Cozy,Clean & Legal!",949221,Dennis,Brooklyn,Prospect-Lefferts Gardens,40.65589,-73.95539000000001,Private room,42,1,72,2019-06-17,0.84,2,96 +18637912,Family-friendly Bright Studio in Our Brooklyn Home,129497806,Jody,Brooklyn,East Flatbush,40.65064,-73.95045,Entire home/apt,94,2,73,2019-06-29,3.09,1,66 +21596854,佳源家庭旅馆套房,157067019,Ada,Queens,Flushing,40.76519,-73.82979,Private room,85,1,5,2019-06-03,0.27,3,85 +22081871,Artsy 2BR Home w/ High Ceilings + Brick Walls,19909719,Danny,Brooklyn,Greenpoint,40.72397,-73.94695,Entire home/apt,295,7,1,2018-01-04,0.05,2,0 +33603476,A beautiful Gem,4621134,Ulrika,Bronx,Clason Point,40.80626,-73.85122,Private room,40,7,2,2019-06-07,1.76,1,59 +5509771,"Modern, renovated garden apartment",1098902,Amy,Brooklyn,Park Slope,40.669990000000006,-73.98079,Entire home/apt,184,3,123,2019-07-07,2.35,2,292 +15784377,"Sixth Ave Chelsea, 1bd Serviced Apartment*",22541573,Ken,Manhattan,Chelsea,40.74584,-73.99103000000001,Entire home/apt,229,30,3,2019-03-08,0.12,87,364 +26235873,Voted #1 Airbnb In NYC,197169969,Maria,Queens,Jamaica,40.68939,-73.79885999999999,Entire home/apt,10,2,22,2019-07-06,1.76,1,332 +6966985,Large Room in Central Apt,2714997,Shirly,Manhattan,Upper West Side,40.801,-73.96647,Private room,70,30,76,2018-07-11,1.57,1,0 +29646041,"Comfortable place, 15 min from JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.68639,-73.86088000000001,Private room,60,5,11,2019-05-31,1.44,2,17 +182177,A PRIVATE FLAT / APARTMENT- $SPECIAL$,873273,Christian & Carla,Bronx,Allerton,40.86466,-73.85709,Entire home/apt,125,2,271,2019-06-20,2.84,2,347 +31124175,Botanical Bedstuy,21152553,Phi,Brooklyn,Bedford-Stuyvesant,40.68655,-73.92112,Entire home/apt,125,2,32,2019-07-06,5.16,1,57 +6085932,"Historic, Sunny Prospect Park Apt!",1211856,Kim,Brooklyn,Prospect-Lefferts Gardens,40.6586,-73.96104,Private room,80,3,4,2019-01-01,0.22,1,331 +9450180,Private Room Available,7989399,Esin,Queens,Sunnyside,40.7388,-73.92501,Private room,65,3,13,2019-05-18,0.58,2,167 +3357882,Spacious and unique 1 bdrm / 2 bath,16942970,Caleb,Manhattan,Upper East Side,40.766490000000005,-73.96453000000001,Entire home/apt,200,5,49,2018-12-02,0.84,1,25 +36148417,1 Bedroom Bungalow-Rockaway-By Beach&Subway,271885652,Elizabeth,Queens,Rockaway Beach,40.58681,-73.8128,Entire home/apt,159,1,0,,,4,166 +20479960,Garden mini apt minutes from Manhattan (studio),85330,Jean,Queens,Forest Hills,40.71089,-73.85384,Entire home/apt,60,4,97,2019-07-06,4.42,3,273 +30852631,Tiny bedroom in Williamsburg - Brooklyn,15788530,Diana,Brooklyn,Williamsburg,40.71847,-73.94509000000001,Private room,60,4,1,2019-01-01,0.16,2,0 +993040,YOUR HARLEM HOME AWAY FROM HOME!!! ,5454862,Barbara,Manhattan,Harlem,40.8278,-73.94891,Entire home/apt,97,3,185,2019-06-14,2.46,1,6 +19984134,Beautifully Decorated 1 Bedroom w/ Large Terrace,5962328,Alan,Queens,Flushing,40.76112,-73.82327,Entire home/apt,140,30,3,2018-08-11,0.14,15,244 +9452237,2 BED STEP TO THE TRAIN,5855145,Edward,Queens,Ditmars Steinway,40.77588,-73.90782,Entire home/apt,125,2,38,2019-06-03,0.87,2,330 +25786000,Explorer's Apartment,193791518,Micheal,Manhattan,Midtown,40.75565,-73.96722,Entire home/apt,186,3,45,2019-07-06,3.8,1,219 +21561860,"Modern, clean, NEW apt 1 block from train!",143696286,Peter Alex,Brooklyn,Cypress Hills,40.67929,-73.8847,Private room,89,1,23,2019-05-16,1.14,1,74 +9334365,1bd steps from Central Park/museum,20592462,Julia,Manhattan,Upper East Side,40.77751,-73.9556,Entire home/apt,125,1,1,2015-11-23,0.02,1,0 +20055786,Fully equipped apartment on perfect location,142502018,Steve,Queens,Elmhurst,40.7355,-73.88131,Entire home/apt,115,7,4,2018-09-19,0.18,1,0 +3403034,Modern Manhattan Living Suite 2A,17161465,Judette,Manhattan,Harlem,40.82967,-73.94428,Entire home/apt,95,30,36,2019-04-30,0.61,1,245 +10267242,Cinque Terre Room. Clean and Quiet Queen Bedroom,2787,John,Brooklyn,Gravesend,40.6081,-73.97541,Private room,149,1,24,2019-05-11,0.64,6,180 +5794806,Brooklyn Soul,257676,Linda,Brooklyn,Flatbush,40.65409,-73.96025,Private room,148,1,11,2019-01-04,0.22,2,90 +29059768,Gramercy 3 Bedroom - Central to Everything! #10294,28422641,Dylan,Manhattan,Gramercy,40.73551,-73.98546,Entire home/apt,350,2,29,2019-07-05,3.27,1,65 +34477790,Penn room 14,244817841,Aminul,Brooklyn,East New York,40.66814,-73.8953,Private room,38,7,2,2019-06-01,1.2,13,258 +1925224,"Beautiful, large, charming spot",9946315,Susan,Brooklyn,Williamsburg,40.71758,-73.9543,Entire home/apt,250,8,79,2019-07-01,1.16,1,78 +26164046,"New Designer 4 Bedroom, AC-Laundry. Next to Subway",17510243,Yankel,Brooklyn,Crown Heights,40.66741,-73.92974,Entire home/apt,300,2,27,2019-06-30,2.13,1,347 +28136160,Manhattan theater district,17101801,Marina,Manhattan,Hell's Kitchen,40.75819,-73.99347,Entire home/apt,150,29,3,2019-05-23,0.37,1,287 +10772141,Luxury Building 5 Mins- Times Sq,55718379,Aaash,Manhattan,Hell's Kitchen,40.76407,-73.98868,Entire home/apt,169,30,0,,,1,364 +26894548,Cozy private room near Times Square 53E1,190921808,John,Manhattan,Hell's Kitchen,40.75518,-73.99706,Private room,45,30,2,2019-05-21,0.32,47,347 +28517278,Williamsburg Brooklyn Apartment,215239210,Brit,Brooklyn,Williamsburg,40.71528,-73.94331,Entire home/apt,150,2,14,2019-06-21,1.45,1,2 +11653913,spacious 1 BR heart of astoria,10575779,Andrea,Queens,Astoria,40.7588,-73.91762,Entire home/apt,190,2,1,2016-03-26,0.03,1,0 +17006745,Wonderful 1BR in ideal Williamsburg location,6194871,Christie,Brooklyn,Williamsburg,40.7097,-73.95411,Private room,57,2,31,2019-01-03,1.05,1,40 +9713116,Cheerful 1BR Bed-Stuy Apartment with Cat,50144878,Bailey,Brooklyn,Bedford-Stuyvesant,40.68362,-73.94646,Entire home/apt,50,7,1,2016-08-01,0.03,1,0 +18734568,"Room in sunny, relaxing apartment in Ft. George",130307692,Mara,Manhattan,Washington Heights,40.85618,-73.93085,Private room,44,2,7,2017-07-23,0.27,1,0 +5534192,"Spacious, cozy 1BR in Washington Heights",28696923,Steven,Manhattan,Washington Heights,40.84347,-73.93406,Entire home/apt,99,1,8,2016-12-04,0.23,1,0 +1672860,New**Beauty**W50's_Luxury&BALCONY!!,2119276,Host,Manhattan,Hell's Kitchen,40.76493,-73.98652,Entire home/apt,150,30,18,2019-04-04,0.27,39,340 +20634950,Waterfront Condo with private bedroom and bathroom,25518844,Alison,Brooklyn,Greenpoint,40.72992,-73.96,Private room,200,2,11,2018-10-07,0.51,1,179 +1449263,Beautiful Brooklyn Brownstone Apt,7777902,Zachary,Brooklyn,Bedford-Stuyvesant,40.68665,-73.93293,Entire home/apt,168,2,1,2016-05-04,0.03,1,0 +3741530,Large Light-Filled Brownstone 1-BR,19131844,Gemma,Brooklyn,Bedford-Stuyvesant,40.68237,-73.94811,Entire home/apt,90,8,17,2019-03-12,0.42,1,0 +35770530,"Spacious, Luxury Duplex with Outside Deck",37888781,Fran,Brooklyn,Bedford-Stuyvesant,40.67884,-73.92611,Entire home/apt,195,2,1,2019-06-17,1.0,1,71 +30066459,"Upper West Side, NYC",10273945,Camila,Manhattan,Morningside Heights,40.80741,-73.96658000000001,Entire home/apt,150,13,1,2018-11-19,0.13,1,0 +3039110,The proud New Yorker Room,8159536,Genae,Bronx,Concourse Village,40.83288,-73.91834,Private room,50,1,21,2019-06-02,0.36,3,188 +30469490,"Quick walk to Metro, Cleaning, & Great roommates",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70029,-73.91188000000001,Private room,35,30,0,,,9,45 +28053065,Astoria Room,211682646,Martin & Soledad,Queens,Astoria,40.77194,-73.92985,Private room,58,1,41,2019-07-01,3.97,1,156 +35282511,2 Bedroom Apartment Rental in Upper West Side,10746551,Glenn,Manhattan,Upper West Side,40.78085,-73.97508,Entire home/apt,153,30,0,,,1,38 +30013315,New Bedroom in a nice apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66736,-73.99467,Private room,53,1,0,,,3,317 +4436944,COMFORTABLE & COZY-2 STOPS BARCLAY,21841949,Patwell,Brooklyn,Crown Heights,40.66825,-73.95304,Private room,150,7,21,2019-06-10,0.54,2,292 +22226156,"Manhattan 1BD in 2BD near ESB, UN, NYU w/roof deck",14103679,Hugh,Manhattan,Murray Hill,40.74623,-73.97404,Private room,199,2,75,2019-06-13,4.04,1,80 +36449345,"Private Room in Brooklyn, 5minutes from Subway",115528632,Rachel & Alex,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95418000000001,Private room,80,1,0,,,1,43 +1785187,Classic Cool Comfortable LES,8222814,Rock,Manhattan,Lower East Side,40.72131,-73.98527,Private room,100,3,210,2019-07-05,3.01,1,256 +15709537,Cozy 1-bedroom apartment in LES,10773304,Lili,Manhattan,Lower East Side,40.71983,-73.98196,Entire home/apt,160,3,90,2019-06-22,3.17,1,147 +31224656,Private Room with Backyard,4281300,Alex,Brooklyn,Williamsburg,40.71602,-73.94189,Private room,119,1,0,,,3,0 +5237422,Private modern BR & Bath in BK,1297675,Helena,Brooklyn,Prospect Heights,40.68093,-73.97182,Private room,135,2,79,2019-06-19,1.49,2,11 +8063565,Light-filled Brooklyn duplex loft,5072735,Rory,Brooklyn,Clinton Hill,40.6854,-73.96741,Entire home/apt,150,7,0,,,1,0 +6652353,Bienvenue à NY - 2BDM with a view,7106617,Nacer,Manhattan,Upper West Side,40.79828,-73.97231,Entire home/apt,150,5,6,2016-08-30,0.12,1,0 +33686419,Prime Williamsburg 2BR w/ NYC View -Long Term Only,82742663,Scott,Brooklyn,Williamsburg,40.71948,-73.96376,Entire home/apt,150,30,1,2019-04-29,0.42,1,160 +26877222,Clean cozy room in Manhattan. 5 min to 135 St,137358866,Kazuya,Manhattan,Harlem,40.81657,-73.94261999999999,Private room,33,30,3,2019-04-30,0.46,103,189 +11751916,Large 2BR apt. steps from Subway,62530335,Adam,Bronx,Concourse,40.8199,-73.9281,Entire home/apt,110,1,0,,,1,0 +2416191,Cute Apartment in Williamsburg,1473507,Moema,Brooklyn,Williamsburg,40.7186,-73.9451,Private room,70,1,0,,,1,0 +34230337,Master Bed Room With Private Bathroom #1,258217172,Jin Sen,Brooklyn,Bushwick,40.68757,-73.90961,Private room,70,1,9,2019-06-29,4.22,1,262 +742026,NOLITA&SOHO BEST LOCATION&GREAT APT,132132,Rachel,Manhattan,Nolita,40.7229,-73.99574,Entire home/apt,199,7,66,2019-06-09,0.83,1,142 +33855726,Modern 2 Br Apartment in Brooklyn. Close to NYC,107950422,Eric And Tansey,Brooklyn,Bushwick,40.68773,-73.91039,Private room,88,28,5,2019-06-30,2.73,1,24 +20740322,The Prince - A Nolita One Bedroom Apartment,147647020,Bruce,Manhattan,Nolita,40.72372,-73.99318000000001,Entire home/apt,250,2,0,,,1,2 +4645831,Light filled room w/full size bed in LES,24052348,Tara,Manhattan,East Village,40.72052,-73.98003,Shared room,65,10,21,2017-12-30,0.38,4,0 +3185489,Private Bedroom in Nice Apt. Near Riverside Park!,16142344,Jeffrey,Manhattan,Harlem,40.82165,-73.95491,Private room,70,3,16,2016-07-31,0.26,1,209 +26061337,LIC 5 Minutes from Manhattan,384654,Fabio,Queens,Long Island City,40.74623,-73.94051,Entire home/apt,140,2,7,2019-06-07,2.23,1,122 +3324498,Garden apt 15 mins from Manhattan,11827364,Cris,Queens,Sunnyside,40.73873,-73.92435,Private room,74,30,9,2018-08-24,0.16,1,76 +1919896,Sunny 2 bedroom in Prospect/Crown Heights,1345452,Nico,Brooklyn,Crown Heights,40.67689,-73.95878,Entire home/apt,150,5,11,2017-05-25,0.16,1,0 +24161365,Das Bushwick Haus,2497606,John,Brooklyn,Bushwick,40.68261,-73.90714,Private room,45,6,1,2018-06-16,0.08,1,0 +10545815,Whole Apt. in East Williamsburg,4148248,Guillermo,Brooklyn,Williamsburg,40.70687,-73.93981,Entire home/apt,125,4,138,2019-06-01,3.5,2,37 +3050544,Large 2 Full BR 15min to Manhattan!,2534076,Helen,Brooklyn,Park Slope,40.6728,-73.97166,Entire home/apt,245,4,3,2014-08-17,0.05,1,0 +32792015,Elegant and convenient access,63966717,Carol,Bronx,Fordham,40.85912,-73.89254,Private room,59,3,0,,,2,0 +28890190,"5 min from Manhattan, Williamsburg new building!",217784241,Analia,Brooklyn,Williamsburg,40.7087,-73.95940999999999,Private room,70,1,67,2019-06-06,7.18,4,5 +34312163,Queen Room,95570540,Eileen,Staten Island,Oakwood,40.56033,-74.11953000000001,Private room,65,1,1,2019-06-28,1.0,3,179 +10050847,"Cozy, Bright room in Williamsburg",51584665,Andrew,Brooklyn,Williamsburg,40.71229,-73.96245,Private room,50,10,3,2016-07-15,0.07,1,0 +30925647,Private room 20 minutes away from Manhattan,184641438,Saly,Queens,Sunnyside,40.74194,-73.91787,Private room,65,1,4,2019-06-03,0.59,2,341 +34399801,Fabulous gut renovated apt 15 minutes to Midtown,21040187,Maja,Manhattan,Washington Heights,40.84367,-73.93728,Entire home/apt,95,7,1,2019-05-31,0.77,1,25 +18077717,Cozy 1-br UWS in front of Central Park,62680545,Juan Felipe,Manhattan,Upper West Side,40.79795,-73.96199,Entire home/apt,175,5,2,2017-08-04,0.08,1,4 +15831628,1BR apartment with a spectacular view!,18143446,Courtney,Manhattan,Hell's Kitchen,40.7659,-73.98371,Entire home/apt,250,15,1,2019-04-14,0.35,1,52 +8719522,Charming Upper East Side apt,2610741,Olivia,Manhattan,Upper East Side,40.775,-73.95071,Entire home/apt,190,2,26,2019-07-01,0.58,1,42 +3928525,Stunning 2 bed 2bath Wall St. Luxury Apt,16101222,Andrew M.,Manhattan,Financial District,40.70563,-74.00878,Entire home/apt,275,3,9,2018-05-26,0.19,1,0 +9975425,Most Colorful Hamilton Heights Home,4844390,Jade,Manhattan,Harlem,40.82502,-73.95186,Entire home/apt,110,5,9,2017-10-23,0.22,1,0 +14070671,"Independent Basement Apt.(2 bed rooms, 1 Bath)",83377687,Fernando,Queens,Jackson Heights,40.75479,-73.85776,Entire home/apt,69,2,177,2019-06-28,5.13,2,105 +16351193,Cozy Attic RM in Private Home Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.86909,-73.89395999999999,Private room,55,3,74,2019-06-19,2.42,4,84 +30489218,"Gorgeous 1-bedroom apt in Williamsburg, Brooklyn",59026607,Anuj,Brooklyn,Williamsburg,40.70392,-73.94885,Entire home/apt,72,3,7,2019-05-16,1.26,1,0 +19728214,Large beautiful room in luxury building with view,139076348,Candelyn,Queens,Long Island City,40.74515,-73.95583,Private room,150,3,0,,,1,0 +19720907,"Cozy bedroom in Harlem, NY",54283436,Maurice,Manhattan,East Harlem,40.7993,-73.94164,Private room,60,3,6,2018-07-26,0.25,1,0 +9487497,"Sunny, Charming Brooklyn 1 Bedroom!",2448332,Robyn,Brooklyn,Cobble Hill,40.69035,-73.99633,Entire home/apt,119,8,37,2019-06-19,0.87,1,85 +34588996,Entire gorgeous sunny 1 bd/1 bath apt in Astoria,68275154,Haneef,Queens,Astoria,40.77101,-73.92931999999999,Entire home/apt,200,3,2,2019-05-27,1.2,1,0 +6292893,Great East Village Studio,2563284,Jonas,Manhattan,East Village,40.72232,-73.98289,Entire home/apt,120,3,6,2016-11-06,0.12,1,0 +8323015,Caribbean Retreat in the heart of Brooklyn,43876308,Everol,Brooklyn,East Flatbush,40.64464,-73.94807,Entire home/apt,90,2,4,2019-07-02,1.85,1,93 +17000278,The Most Amazing Duplex Apt w/ Outdoor Space in BK,63474828,Ryan,Brooklyn,Sunset Park,40.66135,-73.98841,Entire home/apt,185,30,2,2017-05-02,0.07,1,337 +14086770,Cozy and Classy Private Duplex in UES,26111584,Joseph,Manhattan,Upper East Side,40.77601,-73.95441,Entire home/apt,178,2,72,2018-06-18,2.07,1,0 +13077317,"East 29th Street, Luxury Studio in NOMAD",22541573,Ken,Manhattan,Midtown,40.74426,-73.98535,Entire home/apt,192,30,0,,,87,334 +4165278,HUGE Room in an AMAZING Location!,4403262,Adam,Manhattan,Lower East Side,40.71906,-73.98433,Private room,79,9,5,2016-08-15,0.09,1,0 +6627254,Private room - Perfect location!,10899109,Dave & Nat,Brooklyn,South Slope,40.66526,-73.98449000000001,Private room,100,2,1,2015-06-26,0.02,1,0 +24105281,Clean Private room in Manhattan(females only),29582228,Aki,Manhattan,East Harlem,40.79309,-73.94346999999999,Private room,90,4,1,2018-04-16,0.07,1,6 +34485283,"High floor king bed, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72172,-74.00435999999999,Private room,100,1,1,2019-06-26,1.0,7,270 +2249464,Full of Light Studio Apartment close to Subway,4358264,Sole,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94579,Entire home/apt,80,13,109,2019-04-01,1.66,1,15 +29655150,Ground Floor Gem w/ tiny patio!,304262,Bjorn,Manhattan,Lower East Side,40.71555,-73.98949,Entire home/apt,165,30,0,,,1,353 +35223189,"Spacious, Crown Heights 3BR (15 mins to Manhattan)",265204049,Albert,Brooklyn,Crown Heights,40.66765,-73.93928000000001,Entire home/apt,260,2,1,2019-07-01,1.0,1,343 +5373297,Comfy 1 Bedroom Apt with Guest Room,26951283,Alexsis,Brooklyn,Park Slope,40.67092,-73.98759,Entire home/apt,100,2,4,2016-10-23,0.08,1,0 +19359445,Honeycomb hideout,135680128,Shoshannah,Bronx,Wakefield,40.90391,-73.85311999999999,Entire home/apt,120,2,34,2019-06-22,1.42,1,77 +5316377,"5 Bedroom, 2 Bath, Steps to Train. FREE PARKING!",11137400,Eli,Brooklyn,Crown Heights,40.6686,-73.93037,Entire home/apt,249,3,193,2019-06-05,3.61,1,344 +32808737,Sonder | The Nash | Original Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7475,-73.97569,Entire home/apt,231,2,5,2019-06-03,1.32,327,82 +31795183,Bright Room in Bushwick,10512556,Julie,Brooklyn,Bushwick,40.70108,-73.92401,Private room,55,2,0,,,1,0 +253803,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73708,-73.95271,Entire home/apt,199,3,23,2019-06-22,0.26,28,60 +13974993,# TIMES SQUARE - 19 MinutesBIG ROOM,82921914,G. Matthew,Manhattan,Harlem,40.82097,-73.95473,Private room,45,2,97,2019-06-22,2.79,3,101 +9953403,Marc Alfred,2361525,Marc,Brooklyn,Crown Heights,40.67565,-73.91582,Shared room,75,1,2,2019-04-06,0.19,1,318 +4365833,"Lux Baby Friendly Apt, Williamsburg, Brooklyn",208410,Mauricio,Brooklyn,Williamsburg,40.71759,-73.95407,Entire home/apt,150,5,7,2019-02-18,0.12,1,0 +20071791,The real Brooklyn experience in Greenpoint!,6026276,Janelle,Brooklyn,Greenpoint,40.73768,-73.95741,Private room,63,7,0,,,1,0 +15492561,Great 1 bedroom full Apartment!,7765138,Ally,Manhattan,Upper East Side,40.78057,-73.95734,Entire home/apt,120,2,13,2017-04-12,0.4,1,0 +8830825,Spacious Rooms near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.93993,Private room,65,2,81,2019-04-08,1.79,4,131 +23797329,Newly & Comfy Shared room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72104,-73.93985,Shared room,35,30,3,2018-08-01,0.19,10,365 +10142056,Authentic studio-UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77349,-73.95225,Entire home/apt,99,30,7,2018-12-31,0.18,15,327 +15789023,Stay in a Private Room Close to Manhattan :),8076496,Agnes,Queens,Astoria,40.76982,-73.93500999999999,Private room,60,4,6,2019-06-06,0.28,1,96 +32717722,Brand New Furnished Room in Prime NYC,242962235,Yuval,Queens,Ridgewood,40.70725,-73.89473000000001,Private room,45,30,1,2019-06-09,1.0,23,309 +2025779,Charming East Village One Bedroom,212572,Joyce,Manhattan,East Village,40.72977,-73.98713000000001,Entire home/apt,175,4,0,,,1,0 +8846634,442 w 57st. hanover apt sharing,23521722,Jinwon,Manhattan,Hell's Kitchen,40.76767,-73.98783,Shared room,64,2,0,,,1,0 +35029487,Beautiful Studio APT in the heart of K-TOWN,76971491,Kyeng Tae,Manhattan,Midtown,40.7482,-73.98599,Entire home/apt,180,1,3,2019-06-19,3.0,1,259 +8173232,Bright studio on Upper East Side!,14196588,Julia,Manhattan,Upper East Side,40.779140000000005,-73.94965,Entire home/apt,180,14,0,,,1,0 +30769303,Luxury Apartment Building,155261188,Ahmed,Queens,Kew Gardens,40.70555,-73.82138,Private room,200,1,0,,,1,365 +9843634,"Spacious, quiet Greenpoint 1-bedroom",3820569,Eleanore,Brooklyn,Greenpoint,40.73528,-73.95647,Entire home/apt,80,3,2,2016-10-11,0.06,1,0 +7153138,Sunny and Airy near Manhattan,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92782,Entire home/apt,120,2,74,2019-04-30,1.83,2,60 +25509463,"Charming oasis, w/pvt garden, 2 stops to manhattan",3094754,Numi,Brooklyn,Sunset Park,40.65399,-74.00363,Private room,149,1,1,2018-06-08,0.08,2,357 +21984232,Cosy bedroom in bushwick near Jefferson L train,69546339,Michael,Brooklyn,Bushwick,40.70401,-73.92629000000001,Private room,41,6,2,2018-05-10,0.11,2,0 +30369889,Modern 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76135,-73.98668,Entire home/apt,316,30,0,,,232,35 +5885201,SUNNY ROOM A IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9598,Private room,95,30,40,2019-06-01,0.8,11,331 +20680045,Private Room for 1 guest with air conditioner,35242969,Prime,Brooklyn,Bedford-Stuyvesant,40.6824,-73.91315,Private room,48,4,7,2019-06-22,0.31,1,2 +17607488,"Cute, artsy place in Bed/Stuy",119667654,Marcus,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94755,Entire home/apt,71,5,0,,,1,0 +35512438,Private Room in Ground Floor Apt w/Backyard access,13678557,Eb,Manhattan,East Harlem,40.80857,-73.93951,Private room,90,1,0,,,1,102 +32785423,"Soulful, Artistic Space in a Brooklyn Townhouse",3040104,Todd,Brooklyn,Park Slope,40.67687,-73.98170999999999,Entire home/apt,140,4,9,2019-07-01,2.33,1,227 +12050885,Your lovely and cozy space 7 train,17638424,Sophie,Queens,Elmhurst,40.74485,-73.87552,Private room,52,1,108,2019-07-07,2.71,8,174 +21799111,Charming and snug 1 bd in West Village near soho,17692768,Isabella,Manhattan,West Village,40.73226,-74.00184,Entire home/apt,175,6,11,2018-10-08,0.62,1,0 +9778049,PRIVATE STUDIO Central Park West,11026504,Alinka,Manhattan,Upper West Side,40.78818,-73.96928,Entire home/apt,144,2,30,2019-04-07,0.8,1,0 +30446240,Original NoHo Loft full of Charm & Character,35352941,Bonnie,Manhattan,NoHo,40.72662,-73.99423,Entire home/apt,350,7,0,,,1,219 +4920912,Stylish & New Chelsea Apartment,22338025,Kerrie,Manhattan,Chelsea,40.74244,-73.99854,Entire home/apt,175,1,0,,,1,0 +9348923,Modern/Spacious 1Br-1 stop to city!,6264251,Chris,Brooklyn,Williamsburg,40.71968,-73.9602,Entire home/apt,110,2,24,2017-10-13,0.56,1,0 +36000993,SHANGRI-LUZ: Urban Oasis,50224626,Luz,Queens,Ridgewood,40.70491,-73.91024,Private room,45,2,1,2019-07-07,1.0,1,133 +823618,"Large,sunny private room in Harlem",4324286,Ettice,Manhattan,Harlem,40.81024,-73.94154,Private room,80,4,41,2019-06-20,0.52,2,119 +32890531,Distinctive 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75544,-73.9829,Entire home/apt,177,29,0,,,327,354 +13083020,Spacious Bedroom in the heart of Bedstuy,1892402,Emily,Brooklyn,Bedford-Stuyvesant,40.68347,-73.95461999999999,Private room,50,3,4,2016-08-29,0.11,1,0 +7900575,"Charming, quiet West Village studio",41657584,Beatriz,Manhattan,West Village,40.73519,-74.00641999999999,Entire home/apt,200,3,9,2019-06-02,0.2,1,168 +34723946,Suit3,257683179,H Ai,Queens,Flushing,40.76296,-73.80724000000001,Private room,42,1,7,2019-06-21,5.0,6,207 +23884206,Clean Apt right by Columbus Circle / Central Park,26921064,Ken,Manhattan,Hell's Kitchen,40.76665,-73.98568,Entire home/apt,115,2,0,,,2,0 +7842116,Huge room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64362,-74.00046,Private room,55,1,0,,,2,0 +4053987,Small Private Room for 1 person,1960128,Luana,Queens,Ozone Park,40.6844,-73.8472,Private room,58,1,2,2015-08-16,0.04,2,364 +34774681,Hidden gem! Private home in heart of NY village,259283179,John,Manhattan,East Village,40.7281,-73.98354,Entire home/apt,219,2,7,2019-07-01,4.2,1,316 +13794822,Cozy room in 2BR apartment - Greenpoint,5574626,Jana,Brooklyn,Greenpoint,40.72325,-73.9432,Private room,59,4,1,2016-08-02,0.03,1,0 +35866719,THE WHITE HOUSE BEDROOM 1,269775225,Dennis,Bronx,Port Morris,40.80146,-73.91673,Private room,125,3,0,,,2,365 +12650830,Quiet room in Bed-Stuy,68585649,Joseph,Brooklyn,Bedford-Stuyvesant,40.69186,-73.94038,Private room,30,80,0,,,1,0 +30285772,"Sunny & Spacious, Studio-Like Ridgewood Apartment",5937189,Leigh,Queens,Ridgewood,40.70247,-73.90474,Private room,45,2,8,2019-06-26,1.08,1,2 +29550259,Sugar Cove,222430446,JohnP,Manhattan,East Village,40.7229,-73.98698,Private room,89,1,44,2019-07-01,5.59,2,4 +26535575,179st Hub Master Bedroom w/ balcony,20912691,Jeff,Queens,Jamaica,40.70985,-73.78429,Private room,50,2,4,2019-06-12,0.34,7,0 +36197063,Small private room 2 windows,2793778,Fernando,Queens,Forest Hills,40.71716,-73.83452,Private room,50,4,0,,,5,55 +15494542,Amazing Bedroom in Manhattan Midtown East Condo,31661494,Elise,Manhattan,Murray Hill,40.74817,-73.97595,Private room,150,2,74,2019-07-01,2.34,1,112 +14979450,Simple Spacious Apartment,21261796,John,Brooklyn,Greenpoint,40.73515,-73.95645,Entire home/apt,154,5,0,,,1,0 +2664975,"Cute Studio in Bushwick BK, NYC",12461367,Brittany,Brooklyn,Bushwick,40.69987,-73.92551999999999,Entire home/apt,100,1,104,2019-06-23,1.65,1,334 +467569,Curated 1BR on the prettiest block of the LES,282315,Rj,Manhattan,Lower East Side,40.72106,-73.98384,Entire home/apt,311,3,31,2019-06-11,0.41,1,28 +4163710,Cozy private room in beautiful apt ,21609476,Beatrice,Brooklyn,Midwood,40.6251,-73.96163,Private room,40,15,1,2014-11-03,0.02,1,0 +27809255,Luxurious 2 Bedroom Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75734,-73.96727,Entire home/apt,150,30,1,2019-05-04,0.45,91,311 +13549750,Luxury One Bedroom Apt near Brooklyn Bridge,32128412,Ondina,Brooklyn,Vinegar Hill,40.69904,-73.98496,Entire home/apt,150,1,6,2017-06-02,0.16,1,0 +13828922,Cozy room in Upper West Side luxury apartment,33588075,Evan,Manhattan,Upper West Side,40.79942,-73.96378,Private room,80,1,0,,,1,0 +31809918,Pirouette (Private Room),51596474,Antony,Brooklyn,Gravesend,40.58421,-73.97104,Private room,35,5,1,2019-02-15,0.21,12,0 +10383291,"Comfortable, cozy, dorm-like room",53450065,Maria,Queens,Flushing,40.72211,-73.80908000000001,Private room,30,1,0,,,1,0 +7112684,Sunny & Clean Apt ideal location E.Williamsburg!,26998839,Shahar,Brooklyn,Williamsburg,40.70684,-73.93854,Entire home/apt,90,7,6,2019-06-07,0.15,2,302 +11120231,Private 1 BR in Brooklyn,15193965,Matt,Brooklyn,Crown Heights,40.66841,-73.93621,Entire home/apt,85,25,1,2016-04-04,0.03,1,0 +34900746,Oriana - Luxury High Rise,253361623,Shradha,Manhattan,Midtown,40.75671,-73.96228,Shared room,150,1,2,2019-05-28,1.25,1,67 +9683486,Mater bedroom in Roosevelt Island,39093118,Song,Manhattan,Roosevelt Island,40.75965,-73.95125,Private room,100,1,0,,,1,0 +22701863,Beautiful sunny studio apartment,5835731,Ramy,Brooklyn,Bedford-Stuyvesant,40.68037,-73.92029000000001,Entire home/apt,79,2,5,2018-04-08,0.28,1,0 +18685854,PEACE AND TRANQUILITY,129890157,Pauline,Bronx,Baychester,40.87192,-73.84676,Private room,60,1,0,,,2,0 +13413386,Bed-Stuy Gem,62409721,Robert,Brooklyn,Bedford-Stuyvesant,40.69002,-73.9518,Private room,75,1,0,,,1,0 +29037043,CB3 BROOKLYN,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94679000000001,Private room,72,6,6,2019-05-23,0.76,3,66 +765315,Bed & Bathroom in Williamsburg Loft,4034995,Susan,Brooklyn,Williamsburg,40.71203,-73.95993,Private room,115,2,91,2017-04-30,1.18,1,258 +33265526,Sunset Park Retreat - 3 blocks from train station!,5325489,Julie,Brooklyn,Sunset Park,40.64997,-74.00626,Entire home/apt,135,2,9,2019-07-08,5.19,1,266 +10270377,Cozy Bedroom in Apartment Uptown,52601644,Shamroz,Manhattan,Harlem,40.80338,-73.95734,Private room,60,1,2,2016-01-08,0.05,1,0 +26235821,Wonderful Location on East 68th st,10371008,Anna,Manhattan,Upper East Side,40.76436,-73.95671999999999,Shared room,75,4,10,2019-06-14,1.15,2,329 +36071215,An inspiring loft in Williamsburg,2206491,Paola,Brooklyn,Williamsburg,40.71483,-73.95243,Entire home/apt,110,5,0,,,1,303 +34686293,"Inviting , Cozy and Clean and room like home.",131234868,Salome,Manhattan,Washington Heights,40.85658,-73.93021,Private room,125,3,1,2019-07-03,1.0,1,81 +792835,Spacious Lower East Side Studio,180416,Martin,Manhattan,Lower East Side,40.71703,-73.98612,Entire home/apt,159,2,260,2019-06-27,3.58,1,141 +26085355,house,37001535,Daitao,Brooklyn,Fort Greene,40.69223,-73.98165,Entire home/apt,130,3,1,2019-01-19,0.18,1,0 +28709382,Huge bedroom with private half bath prime location,22992959,Eric,Brooklyn,Bushwick,40.70012,-73.92777,Private room,80,2,3,2019-01-03,0.33,1,0 +32570179,"Warm, Sunny Bedroom in Harlem Apartment",5409243,Katie Rose,Manhattan,Harlem,40.82931,-73.94183000000001,Private room,65,2,6,2019-07-06,1.59,2,1 +22108130,UWS - Simple & Bright - 1BR,106837455,Lisa,Manhattan,Upper West Side,40.78456,-73.98116999999999,Entire home/apt,140,30,0,,,8,0 +15226875,Versatile private room in Harlem/Hamilton Heights!,31616043,Edward,Manhattan,Harlem,40.82377,-73.94981,Private room,65,4,42,2019-06-18,1.34,1,10 +26281121,Quiet bedroom in walking distance to Central Park,197579052,Vlad,Manhattan,East Harlem,40.79657,-73.93913,Private room,80,1,49,2019-05-20,3.89,2,110 +22119092,HUGE Private 1 Bedroom in Shared Park Slope Apt,150044472,Amar,Brooklyn,Windsor Terrace,40.6597,-73.98318,Private room,75,14,0,,,2,0 +18840735,Light & Cozy SoHo Hacienda,130815919,Frank,Manhattan,SoHo,40.72633,-74.00206999999999,Entire home/apt,205,2,109,2019-07-01,4.29,1,32 +24200751,2BR 3BD 1.5BA | Rooftop & Balcony | Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70653,-73.90876999999999,Entire home/apt,280,2,42,2019-06-23,3.44,2,108 +13911206,Bright apartment across from Riverside Park,359424,Tal,Manhattan,Morningside Heights,40.80734,-73.9673,Entire home/apt,250,3,1,2016-08-15,0.03,1,0 +15310417,Cozy Space in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66596,-73.94936,Private room,75,1,13,2018-12-06,0.39,8,311 +29461552,Chic Upper West Side Suite,210634970,Sheila,Manhattan,Washington Heights,40.83513,-73.94738000000001,Private room,99,2,16,2019-06-18,1.89,1,283 +34138042,"Hip FiDi Studio w/ Resident's Bar, Golf Simulator, Pro Gym by Blueground",107434423,Blueground,Manhattan,Financial District,40.7066,-74.00872,Entire home/apt,229,30,0,,,232,333 +33635511,Hamilton Heights Home Away from Home! (30-Day Min),23777742,Eliot,Manhattan,Harlem,40.82479,-73.94218000000001,Entire home/apt,125,30,0,,,1,242 +33776470,West 57th Club by Hilton Club Studio Available,85385725,Benjamin,Manhattan,Midtown,40.76494,-73.97822,Private room,300,1,1,2019-04-15,0.35,2,364 +23934000,Room 5 - Quiet Retreat in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64293,-73.96863,Private room,50,2,51,2019-06-27,3.29,6,176 +17843168,Columbus Circle Lincoln center Central park,112335936,Ronnie,Manhattan,Upper West Side,40.77048,-73.98252,Private room,250,3,11,2019-04-21,0.42,1,17 +22503340,Cozy room in Bushwick- 15 min to the city,150858055,Scarlett,Brooklyn,Bushwick,40.69735,-73.93276,Private room,42,1,10,2018-10-21,0.54,1,0 +22165957,Sun Drenched 1 Bedroom in Carroll Gardens,160660639,Annette,Brooklyn,Carroll Gardens,40.67666,-74.00055,Entire home/apt,68,1,62,2019-06-23,3.33,2,179 +22409676,Great little spot,164048400,Jarryd,Brooklyn,Bushwick,40.70167,-73.93075,Private room,40,1,1,2017-12-30,0.05,1,0 +13666116,Private Room in Morningside Heights,79459633,Andrew,Manhattan,Morningside Heights,40.80442,-73.96361999999999,Private room,90,2,8,2017-09-11,0.22,1,0 +13130744,Uptown Bronx Apartment,73126926,Real Estate To Go,Bronx,Williamsbridge,40.88493,-73.8618,Entire home/apt,67,3,205,2019-06-12,5.39,1,140 +34969461,Duplex apartment,1849974,Laura,Manhattan,Harlem,40.81981,-73.94523000000001,Entire home/apt,200,7,0,,,2,153 +31968550,Brooklyn Place,196935380,Prosper,Brooklyn,Flatbush,40.63886,-73.95228,Private room,80,2,0,,,1,88 +13356748,"Charming, light-filled room in Williamsburg",31429931,Penny,Brooklyn,Williamsburg,40.71444,-73.94058000000001,Private room,70,1,1,2016-09-05,0.03,1,0 +8286580,Modern Williamsburg Apt w/ Balcony,6112537,David,Brooklyn,Williamsburg,40.71078,-73.94060999999999,Private room,80,5,5,2015-10-12,0.11,2,0 +5040653,"Spacious Room at Broome St, LES",19195540,Dor,Manhattan,Chinatown,40.71723,-73.99164,Private room,150,4,36,2019-06-04,0.71,3,294 +21148021,Cozy East Harlem Apartment,17767705,Shereen,Manhattan,East Harlem,40.79477,-73.93281999999999,Private room,90,2,3,2018-01-04,0.15,1,0 +30818565,NICE 1 BEDROOM CLOSE 3 MALLS AND SHOPPING,190298308,Lucky,Queens,Forest Hills,40.73306,-73.84904,Entire home/apt,94,3,9,2019-06-30,1.32,1,329 +454763,For Cat-Lovers ONLY,2259061,Felo,Manhattan,Inwood,40.86717,-73.9194,Entire home/apt,99,20,11,2018-08-16,0.18,1,249 +10522830,Beautiful garden studio in Bushwick,1855214,Marie-Adele,Brooklyn,Bushwick,40.69366,-73.91608000000001,Entire home/apt,85,2,99,2019-06-17,2.5,1,29 +20007899,"Brooklyn 1 Bedroom w/ AC, laundry and roof!",3554481,Jessica,Brooklyn,Bedford-Stuyvesant,40.69639,-73.9343,Entire home/apt,120,4,0,,,1,0 +7547481,Adorable Brooklyn Apartment,9646150,Lila (Eli),Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96064,Private room,60,1,140,2019-06-24,4.0,2,40 +30708899,☆Cozy bedroom in Midtown | 1min to 4 subway lines☆,164051353,Warren,Manhattan,Chelsea,40.74836,-73.98921,Private room,133,1,17,2019-06-23,4.32,3,87 +21192158,Homey studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75001,-73.97573,Entire home/apt,150,30,2,2019-05-30,0.28,50,364 +30547975,GARDEN APARTMENT IN CLINTON HILL,31792728,Heather,Brooklyn,Clinton Hill,40.68414,-73.95976,Entire home/apt,125,2,30,2019-07-07,4.59,1,243 +21560584,Haute Brand New East Village Manhattan Apartment,3949502,Páidi,Manhattan,East Village,40.72728,-73.98865,Private room,75,14,13,2018-08-07,0.65,1,27 +32847146,Stevie's,37703550,Steve,Manhattan,Washington Heights,40.84751,-73.93864,Private room,45,2,1,2019-04-13,0.34,1,35 +5413565,Artist/Musician Loft (HUGE space!),11968309,Raviv,Brooklyn,Williamsburg,40.70882,-73.93705,Entire home/apt,122,4,21,2019-05-12,0.41,1,306 +31716471,Lovely studio in Astoria/ LIC!,47114213,Leonardo,Queens,Long Island City,40.76117,-73.93127,Entire home/apt,70,2,11,2019-05-28,2.29,1,3 +860827,carriage house apartment,4524130,Claire,Brooklyn,Clinton Hill,40.68707,-73.96571,Entire home/apt,170,1,315,2019-06-22,4.03,1,275 +8532358,Smile APT in BK,44924968,Stephan,Brooklyn,Crown Heights,40.67677,-73.94804,Private room,60,2,42,2019-01-01,0.94,1,354 +30930990,Great location in midtown east!!!!,170223089,Dor,Manhattan,Midtown,40.76011,-73.97051,Entire home/apt,116,2,28,2019-07-01,4.57,1,99 +136493,Stunning arty 3200sf 3FLR+3BR townhome w/terrace,663384,Irena,Brooklyn,Park Slope,40.67632,-73.97616,Entire home/apt,250,7,18,2019-05-27,0.21,1,18 +24896472,Spacious Apt. in Bushwick for summer occupancy,116460196,Anoushka,Brooklyn,Williamsburg,40.70704,-73.92903000000001,Private room,75,7,0,,,1,0 +15635167,Co-op Apartment in The Lombardy Hotel- 250 sq. ft.,100829279,Ian,Manhattan,Midtown,40.76195,-73.97148,Entire home/apt,210,1,202,2019-06-15,6.4,3,211 +19274199,Luxurious Country Beach Surf Loft,62608664,David,Queens,Neponsit,40.56931,-73.86121999999999,Entire home/apt,274,2,34,2019-06-09,1.37,1,315 +30532068,Astorias spacious room in a historical mansion!!,229104353,Abram,Queens,Astoria,40.77606,-73.92804,Private room,91,2,0,,,2,341 +26137379,15 Mins to Rockefeller Center!,196476281,Damien,Bronx,Concourse,40.83193,-73.92223,Private room,40,1,29,2019-07-07,2.47,2,360 +16238779,Spacious Studio Duplex in Heart of Williamsburg!,36382944,Joshua,Brooklyn,Williamsburg,40.7152,-73.9623,Entire home/apt,230,31,2,2018-01-01,0.06,1,0 +21249869,BEAUTIFUL HIP 2BR NEAR SUBWAYS 25min to Manhattan,139490165,Melvin & Maya,Brooklyn,Bushwick,40.6832,-73.90639,Entire home/apt,130,2,7,2018-07-29,0.39,3,0 +28779900,Brooklyn House at 443 linden Bedroom 2,216304678,Bryan,Brooklyn,East Flatbush,40.65267,-73.94293,Private room,46,3,10,2019-06-28,1.05,5,311 +9596708,BEAUTIFUL WHITE BEDROOM/TIMES SQUARE/8 AVE,47705853,Katherine,Manhattan,Hell's Kitchen,40.75452,-73.99266999999999,Private room,199,2,93,2019-06-20,2.14,3,232 +10631201,Luxury apartment 3BDR with balcony,37806185,David,Manhattan,Murray Hill,40.7441,-73.97224,Shared room,200,1,0,,,1,0 +35658004,"CHARM APT IN LOWER EAST SIDE, WALKING EVERYWHERE",7768807,Antina,Manhattan,Lower East Side,40.7195,-73.98558,Entire home/apt,200,1,1,2019-07-01,1.0,1,270 +23001343,Beautiful Private Bedroom Near Prospect Park,170608951,Mariette,Brooklyn,Flatbush,40.653690000000005,-73.95565,Private room,65,3,22,2019-06-10,1.4,1,89 +27491585,Private Room in Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.64003,-74.00315,Private room,45,1,8,2019-04-01,0.76,8,0 +15625492,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,76104209,Rated,Manhattan,Upper East Side,40.761,-73.9615,Entire home/apt,154,30,0,,,33,342 +32364475,TIMES SQUARE!!! COZY PRIVATE ROOM (for up to 3)!,97131241,Marccelo Gabriel,Manhattan,Theater District,40.76282,-73.98236,Private room,115,1,27,2019-06-23,5.79,1,94 +13031826,Modern Brooklyn Lifestyle,18933388,Efrem,Brooklyn,Crown Heights,40.67661,-73.95611,Entire home/apt,225,1,5,2016-07-17,0.13,1,0 +30014439,East Village Gem - The Garden Dream,35422741,Alexia,Manhattan,East Village,40.73015,-73.98447,Entire home/apt,350,3,3,2019-06-16,0.48,1,5 +30291283,"COMPLETELY PRIVATE ""SMART"" APT IN EAST VILLAGE",2334794,Eden,Manhattan,East Village,40.72861,-73.97734,Entire home/apt,160,1,4,2019-06-04,0.55,1,41 +30227667,"Lovely studio next to Penn Station ,",8073725,Ronni,Manhattan,Chelsea,40.74875,-73.99696999999999,Entire home/apt,175,1,24,2019-06-25,3.17,1,365 +26358530,Bushwick Den,9630989,Ernesto,Brooklyn,Bushwick,40.69934,-73.92265,Private room,50,3,20,2019-01-01,1.63,2,0 +14503754,Cozy Brownstone Apartment in Brooklyn,89579683,Tonya,Brooklyn,Crown Heights,40.6707,-73.94793,Entire home/apt,135,3,39,2018-08-16,1.12,1,311 +2028432,Sunny Private Studio With Backyard Close 2 Subway!,10243387,Mirlet,Queens,Long Island City,40.75832,-73.92874,Private room,72,3,26,2019-03-14,0.41,2,307 +4189428,Gorgeous Park Slope Space & Light,21734605,Jenn,Brooklyn,Park Slope,40.67925,-73.97463,Entire home/apt,95,4,0,,,2,0 +35376427,"Close to Jamaica Hosp, Train F,E, Airtrain,JFK",23217966,Sandra,Queens,Briarwood,40.70587,-73.81342,Private room,45,2,4,2019-07-03,4.0,2,76 +4710488,Stunning Pre-war Penthouse Studio ,24344873,Christopher,Manhattan,Kips Bay,40.74512,-73.98040999999999,Entire home/apt,200,10,3,2016-01-01,0.05,1,0 +3858105,Light and Airy top floor apartment ,5174082,Rebecca,Brooklyn,Columbia St,40.68404,-74.00399999999999,Entire home/apt,75,8,1,2014-08-25,0.02,1,0 +4846754,Basement apartment in bedstuy,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68266,-73.95031999999999,Entire home/apt,60,1,23,2019-07-05,1.99,15,83 +193105,Columbus Circle Luxury Bldg - Private Room&Bath,936114,Marcela,Manhattan,Hell's Kitchen,40.7709,-73.99181,Private room,150,28,43,2019-06-29,0.45,2,258 +20305451,Best of Brooklyn & Beside Manhattan!,48704899,Dara,Brooklyn,Park Slope,40.67481,-73.97258000000001,Entire home/apt,200,3,41,2019-06-02,1.84,1,1 +5338293,"Soho loft, Private bed & bath w/ luxury amenities",14794302,Vanessa,Manhattan,SoHo,40.72578,-73.99998000000001,Private room,250,1,10,2019-04-11,0.26,1,364 +10686350,Chic and Cozy Chinatown Loft,10558652,Teddy,Manhattan,Two Bridges,40.71287,-73.99573000000001,Entire home/apt,320,4,6,2019-01-01,0.18,2,142 +8501697,Airy private room near E/F/M/R/7 and LGA,938086,Benjamin,Queens,Elmhurst,40.74537,-73.88337,Private room,51,1,12,2018-01-21,0.26,1,0 +27110090,Cozy room in a quiet and clean apartment,75385686,Anna,Manhattan,Washington Heights,40.83668,-73.94476,Private room,37,13,2,2018-08-11,0.17,1,0 +32240812,Sonder | Stock Exchange | Lovely 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70619,-74.01065,Entire home/apt,214,2,5,2019-05-26,1.43,327,268 +8276961,Cozy 1 BR Apt- Perfect Location NYC,43645608,C,Manhattan,Hell's Kitchen,40.76128,-73.99616999999999,Entire home/apt,189,2,39,2019-05-06,0.86,1,37 +20556622,Private Cozy Space,48573053,Verona,Queens,Queens Village,40.70414,-73.74418,Private room,35,4,0,,,1,363 +27238918,Cozy Private Twin Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77214,-73.89169,Private room,52,1,39,2019-07-04,3.38,4,353 +35097415,2-bedroom Queens apartment with backyard,2883347,Paul,Queens,Glendale,40.70506,-73.87073000000001,Entire home/apt,150,2,2,2019-06-23,2.0,1,45 +21748242,Soho Luxury Apartment,33211768,James,Manhattan,Nolita,40.72364,-73.99577,Entire home/apt,200,1,1,2017-11-17,0.05,1,0 +9772152,Quaint West Chelsea Studio near it all. 3,47577639,Jc,Manhattan,Chelsea,40.74105,-74.00401,Entire home/apt,195,4,48,2019-06-19,1.19,2,280 +6777603,Sunny Bedroom in Bushwick,6378149,Laurel,Brooklyn,Bushwick,40.6987,-73.91578,Private room,50,2,28,2017-12-04,0.56,3,0 +14467580,★STAY IN OUR MIDTOWN LUXURIOUS STUDIO SUITE★,64065593,ResortShare5,Manhattan,Midtown,40.7538,-73.97139,Entire home/apt,252,2,16,2019-03-21,0.49,13,327 +6731830,Williamsburg Apartment on Bedford,30345458,Thomas,Brooklyn,Williamsburg,40.71444,-73.96024,Entire home/apt,98,3,8,2017-06-24,0.21,1,0 +33279235,Chic Room in Midtown Manhattan | Outdoor Restaurant Terrace + Smart TV,239660813,Yotel,Manhattan,Hell's Kitchen,40.75885,-73.99595,Private room,135,1,0,,,10,275 +16107664,Cozy loft in Chelsea,40744019,Alex,Manhattan,Chelsea,40.74694,-73.99728,Entire home/apt,181,1,158,2019-06-23,5.08,1,173 +29801645,"CLOSE TRAIN, 30JFK 40LG, 1or2People. closeManhatt",224048389,David,Brooklyn,Sunset Park,40.64198,-74.01809,Private room,48,3,2,2018-11-15,0.25,1,0 +1646432,Beautiful Home Away From Home!,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68471,-73.95325,Entire home/apt,130,3,229,2019-06-29,3.32,2,259 +18746696,"One Bedroom-One Bathroom in Greenpoint, Brooklyn.",1485117,Matt,Brooklyn,Greenpoint,40.72186,-73.94588,Entire home/apt,125,2,8,2017-12-30,0.31,1,0 +8525477,Room in private Victorian house,22420999,Herman,Queens,Richmond Hill,40.69474,-73.83038,Private room,55,1,7,2019-05-18,0.15,5,344 +872210,Quiet 1BR Heart of the East Village,4600589,Carter,Manhattan,East Village,40.732,-73.98759,Private room,200,1,0,,,1,0 +16779548,Empire Room in Spacious Apartment,24283455,Igam,Brooklyn,Gravesend,40.58906,-73.98245,Private room,35,3,52,2019-06-09,1.78,2,0 +27729476,Spacious bedroom suite in Brooklyn brownstone,209350565,Jeff,Brooklyn,Crown Heights,40.67754,-73.94824,Private room,90,1,52,2019-06-15,4.92,1,0 +20435261,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67133,-73.97859,Private room,94,2,0,,,2,0 +30712961,Sunny and isolated living room on Roosevelt island,229893262,Shenqi,Manhattan,Roosevelt Island,40.765640000000005,-73.94528000000001,Private room,43,2,1,2018-12-30,0.16,1,50 +20804915,Sunny Private Bedroom in a Luxurious Apartment,12972780,Ismail,Queens,Astoria,40.7623,-73.91645,Private room,80,2,26,2019-06-03,1.18,2,364 +14464699,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :D,3441272,Jasmin,Brooklyn,Bushwick,40.69972,-73.93191999999999,Private room,110,1,208,2019-06-24,5.89,5,293 +23918528,Serene Central Park Getaway,20585393,Allison,Manhattan,Upper West Side,40.80091,-73.95912,Private room,64,1,4,2018-05-28,0.26,1,0 +3095348,True Loft in Williamsburg,13125226,Kristen,Brooklyn,Williamsburg,40.7177,-73.94612,Entire home/apt,200,2,2,2014-08-21,0.03,1,157 +12132022,Family Friendly 2.5 Bedroom,34736562,Helena,Brooklyn,Carroll Gardens,40.68124,-73.99601,Entire home/apt,300,7,0,,,1,0 +25356696,Spacious room w/ ensuite in heart of East Village,6101536,Josh,Manhattan,East Village,40.72852,-73.99009000000001,Private room,150,3,34,2019-06-28,2.91,1,3 +10280439,"Comfortable room, lots of sunlight",23156396,Fernando,Manhattan,Harlem,40.82042,-73.95305,Private room,65,1,0,,,1,0 +4003515,Charming New York town house,2787824,Martyn,Queens,Glendale,40.70591,-73.89264,Private room,95,2,46,2017-06-23,1.15,1,0 +19120316,Private Room in Brooklyn - Close to Subway!,132219056,Jason,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93715999999999,Private room,42,1,38,2019-06-02,1.58,2,218 +33010488,Midtown Pied-à-Terre Close to Central Park,4688336,Richard,Manhattan,Midtown,40.76049,-73.97066,Entire home/apt,225,6,1,2019-05-07,0.48,1,0 +11254989,"Sunny, Quiet East Vil/LES APT",58730304,Adrienne,Manhattan,East Village,40.724340000000005,-73.98904,Entire home/apt,140,1,6,2016-12-29,0.18,1,0 +10403070,Brownstone in Brooklyn,52657843,Yuchen,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94723,Private room,130,3,6,2017-09-09,0.23,1,0 +29605631,Cozy & Clean RM in Queens. Near Subway Station.,137358866,Kazuya,Queens,Woodside,40.74361,-73.90758000000001,Private room,38,30,0,,,103,249 +23006296,East Village penthouse with city views.,1339185,Alfred,Manhattan,East Village,40.72196,-73.98083000000001,Entire home/apt,148,4,20,2019-06-18,1.39,1,121 +14205217,"Private Rm/King Size Bed, just you +host in apt",68598597,Jazmin,Manhattan,Harlem,40.82418,-73.94893,Private room,65,1,45,2019-07-01,1.3,2,34 +12006201,High-end bright 1 bedroom apt. in Midtown West,30283594,Kara,Manhattan,Midtown,40.76484,-73.98326,Entire home/apt,239,30,0,,,121,348 +24099108,Brooklyn Stay Inn TH,179436298,Nyota,Brooklyn,Crown Heights,40.66555,-73.95496999999999,Entire home/apt,100,1,4,2019-06-28,2.26,2,365 +35795510,Cozy 2/1 apartment in Heart of Brooklyn,81957771,Gabs,Brooklyn,Bushwick,40.70318,-73.92636,Entire home/apt,120,3,0,,,1,177 +25379780,Heart of Park Slope,187453004,Nancy,Brooklyn,Park Slope,40.673840000000006,-73.97743,Private room,150,2,36,2019-07-01,2.71,1,293 +7326871,Brooklyn Flavor Atelier,38380486,Tiffany,Brooklyn,Williamsburg,40.70521,-73.94258,Entire home/apt,140,2,4,2018-01-01,0.08,1,0 +36270801,One Bedroom Walk to Central Park or Times Square!,159239228,Touie,Manhattan,Hell's Kitchen,40.76595,-73.98661,Entire home/apt,190,4,0,,,1,158 +16085004,"Bright, modern room with panoramic window",11206175,Kris,Queens,Maspeth,40.72254,-73.90561,Private room,37,30,10,2019-05-17,0.33,2,363 +8720655,UES - True 1 BR | Clean & Quiet,729279,Corey,Manhattan,Upper East Side,40.77243,-73.95016,Entire home/apt,96,2,34,2019-06-24,0.75,1,0 +23544438,"Nolita One Bedroom, in heart of town very quiet",175900532,Wyatt,Manhattan,Nolita,40.724340000000005,-73.99531999999999,Entire home/apt,200,3,21,2019-07-02,1.46,1,124 +30231026,"Hell’s kitchen studio, Time Square/Javitz center",86171061,Abraham,Manhattan,Hell's Kitchen,40.75811,-73.99526999999999,Entire home/apt,300,2,5,2019-06-04,0.8,1,0 +16490903,Spacious room within minutes to A express train!,10896884,Gaurav,Manhattan,Washington Heights,40.84798,-73.94091999999999,Private room,99,2,0,,,1,0 +955542,*Sunny Master BD* in Garden Duplex,4932354,Mitty,Brooklyn,Prospect Heights,40.67942,-73.97078,Private room,97,7,13,2018-11-01,0.17,4,204 +13496448,Sunny apartment in Lower East Side (LES),21604714,Roxy,Manhattan,Lower East Side,40.71934,-73.98172,Private room,75,2,3,2018-05-20,0.08,1,0 +10053943,Historic Designer 2 Bed. Apartment,2697686,Glenn H.,Manhattan,Harlem,40.82915,-73.94034,Entire home/apt,99,999,2,2018-01-04,0.07,1,42 +33491297,Entire Apartment in Park Slope Brownstone,3208908,Julie,Brooklyn,Park Slope,40.68068,-73.97938,Entire home/apt,245,3,3,2019-06-12,1.29,1,35 +16414567,Studio near Central Park East!,18483938,Oscar,Manhattan,Upper East Side,40.77149,-73.95121,Entire home/apt,180,8,1,2017-01-03,0.03,1,0 +15569399,LOVELY PRIVATE BED ROOM 12 MINS FROM JFK,96424121,Pamela,Queens,St. Albans,40.7036,-73.76637,Private room,63,1,63,2019-07-05,1.91,3,363 +788005,"Spacious 1 Bedroom Apt, Prospect Hts/Park Slope",4153591,Rita,Brooklyn,Prospect Heights,40.67708,-73.96649000000001,Entire home/apt,195,4,10,2019-03-16,0.13,1,95 +24208760,Gorgeous Upper West Side apt in stellar location!,56905821,Josh & Carin,Manhattan,Upper West Side,40.77959,-73.97827,Private room,180,2,29,2018-11-20,1.96,1,0 +9944860,arty east village,663517,D,Manhattan,Lower East Side,40.71908,-73.98633000000001,Entire home/apt,174,2,142,2019-06-25,3.31,1,198 +27546831,Van Cortlandt Multi-Unit Building,207661442,Marcia,Bronx,Kingsbridge,40.88445,-73.89663,Private room,50,1,1,2019-02-15,0.21,1,61 +19180787,Two Bedroom Apartment in Williamsburg,413447,Noelle,Brooklyn,Williamsburg,40.71866,-73.943,Private room,120,4,3,2017-09-23,0.13,2,0 +16015053,Nice Space in Williamsburg - Near Bedford L,8872284,Nick,Brooklyn,Williamsburg,40.71304,-73.96381,Entire home/apt,149,1,120,2019-06-16,3.75,1,329 +2608217,"Lovely, quiet 1-Bedroom Apt",13322169,Sonja,Manhattan,Morningside Heights,40.81503,-73.96029,Entire home/apt,150,5,9,2018-12-30,0.14,1,0 +4454122,Cozy Harlem Hideaway **,1390414,Loryn,Manhattan,Harlem,40.81071,-73.94433000000001,Entire home/apt,115,2,84,2019-06-18,1.51,1,50 +7858468,The Artist's Experience,8552927,Jeffrey,Manhattan,Hell's Kitchen,40.76425,-73.99162,Private room,99,1,309,2019-07-07,6.61,1,254 +31472775,Private Room in Brooklyn: Near L/A/C/J Trains,20647101,James,Brooklyn,Bushwick,40.68364,-73.90748,Private room,45,1,2,2019-03-01,0.39,1,0 +7615693,Amazing 4 Bdrm Brownstone Apt,39940356,Craig,Brooklyn,Fort Greene,40.6874,-73.97484,Entire home/apt,275,6,8,2019-04-28,0.23,1,9 +32820753,Brooklyn classy suite (7day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94734,Entire home/apt,110,7,8,2019-06-23,2.16,2,243 +123784,NYC Studio for Rent in Townhouse,617990,Christopher,Manhattan,Harlem,40.80481,-73.94794,Entire home/apt,110,2,142,2019-06-16,1.44,2,301 +16323724,"UWS Landmarked Townhouse 1BR, APT 3B",106837455,Lisa,Manhattan,Upper West Side,40.78297,-73.98141,Entire home/apt,160,90,2,2017-11-15,0.07,8,125 +1914759,Urban Oasis in Chelsea,9931428,Joseph,Manhattan,Chelsea,40.74276,-74.00016,Entire home/apt,225,2,0,,,1,17 +6342741,PRIVATE Bedroom & bathroom TRIBECA,29893120,Marco,Manhattan,Tribeca,40.71466,-74.00802,Private room,89,3,9,2016-05-13,0.18,1,0 +29936213,"Spacious, Sunny, and Boutique Condo for Catlovers",1103289,Berk,Brooklyn,Williamsburg,40.71201,-73.94967,Entire home/apt,94,6,4,2019-06-02,0.57,1,11 +24886110,Spacious Apartment Steps Away from Yankee Stadium,6762900,Ashley,Bronx,Highbridge,40.83088,-73.92779,Entire home/apt,103,2,40,2019-06-30,2.84,1,248 +1965103,Quiet and Sunny studio in EV,10150931,Pierre,Manhattan,East Village,40.72811,-73.98663,Entire home/apt,170,2,7,2016-09-25,0.11,1,312 +3567258,Beautiful Loft in Union Square,298914,Fara,Manhattan,Gramercy,40.73711,-73.98985,Entire home/apt,220,4,60,2019-06-24,1.01,1,4 +23860047,Beautiful 4 Bedroom Apartment,27615247,Judy,Brooklyn,Midwood,40.62301,-73.96253,Entire home/apt,150,14,3,2018-07-24,0.24,3,3 +33331584,Our place in Williamsburg,98056984,Adi,Brooklyn,Williamsburg,40.70804,-73.94868000000001,Entire home/apt,150,5,2,2019-06-14,0.67,1,0 +11868050,Amazing spacious 1 BR Park Slope BK,10002513,Ethan,Brooklyn,Park Slope,40.68125,-73.97974,Entire home/apt,159,3,3,2017-04-30,0.08,1,0 +20773223,"Manhattan nyc private room C +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.814040000000006,-73.95233,Private room,69,2,15,2019-06-13,0.7,9,116 +283184,Huge Williamsburg Loft..Perfect for Big Groups!,1427381,Elizabeth,Brooklyn,Williamsburg,40.70766,-73.95191,Entire home/apt,300,7,0,,,2,354 +14592009,1-bed Apartment in the East Village/Union Square,46723457,Elisabeth,Manhattan,East Village,40.73048,-73.98689,Entire home/apt,122,5,13,2017-12-29,0.42,1,0 +29127613,Small & comfy Bedroom near Brooklyn college.,219499104,Monika,Brooklyn,Flatbush,40.6355,-73.95205,Private room,60,1,12,2019-06-10,1.34,1,90 +14341006,"Bedroom in hip, artsy, unique loft apartment",1767228,Josh,Brooklyn,Williamsburg,40.70962,-73.9501,Private room,75,3,3,2018-01-03,0.09,1,0 +13562013,Lincoln Center 1 Bedroom Apartment,26546007,Francis,Manhattan,Upper West Side,40.7719,-73.99046,Entire home/apt,300,1,0,,,1,0 +3626609,Entire Awesome One Bed-Lower East Side Manhattan,3038687,Karen,Manhattan,Lower East Side,40.717490000000005,-73.99016,Entire home/apt,104,30,11,2019-03-16,0.19,8,80 +17682543,Studio Apartment in Flatiron District,97266110,Ashley,Manhattan,Greenwich Village,40.73523,-73.99465,Entire home/apt,180,3,2,2017-04-18,0.07,1,365 +13770587,Carroll Gardens 1 Bedroom Studio Apartment,64116761,Philip,Brooklyn,Carroll Gardens,40.67747,-73.99916999999999,Entire home/apt,100,5,0,,,1,0 +9091710,Sunny East Village Apartment,47403089,Kathleen,Manhattan,East Village,40.72281,-73.97768,Entire home/apt,130,1,6,2015-12-30,0.13,1,0 +6747958,1 cozy & centrally located bedroom,20904647,Christina,Brooklyn,Fort Greene,40.68662,-73.97601999999999,Private room,90,4,32,2019-07-03,0.67,1,295 +30186121,1 Bedroom - Sleeps 3 - Minutes from Subway & CP!,21226117,Robbie,Manhattan,Upper East Side,40.77553,-73.95506999999999,Entire home/apt,345,7,0,,,1,0 +1220548,Cozy 2 BR apartment in Queens,2050338,Verena,Queens,Richmond Hill,40.69414,-73.82538000000001,Entire home/apt,90,30,33,2017-12-08,0.46,3,298 +24043603,Experience Brownstone Living in Brooklyn!,4181378,Lauren,Brooklyn,Bedford-Stuyvesant,40.68967,-73.9366,Entire home/apt,175,2,20,2019-07-01,1.67,2,357 +34000977,Ocean-themed Studio Minutes from the Beach!,8756834,Kristi,Brooklyn,Midwood,40.62635,-73.9725,Entire home/apt,80,2,1,2019-05-08,0.48,1,33 +4308991,Big Room with Private Bathroom,6195809,Dean,Manhattan,East Village,40.72607,-73.98867,Private room,149,364,8,2019-01-07,0.17,1,90 +13667633,"Gorgeous, cozy, serene flat in Brooklyn",461413,Kat,Brooklyn,Greenpoint,40.73516,-73.95532,Entire home/apt,150,2,68,2019-06-29,1.93,1,100 +35471285,gorgeous boho soho apartment!,52137386,Camille,Manhattan,Nolita,40.72087,-73.99647,Entire home/apt,203,2,0,,,1,88 +19923041,ॐ Private Room in Yoga Retreat Center - Brooklyn ॐ,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.67014,-73.99276,Private room,79,1,81,2019-06-23,3.53,3,353 +9713626,Meatpacking - Luxury Brownstone,13148824,Ali,Manhattan,Chelsea,40.74186,-74.00528,Entire home/apt,280,2,6,2017-01-01,0.14,1,0 +31964005,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,15652930,Ferhat,Manhattan,Harlem,40.81252,-73.95096,Entire home/apt,211,3,21,2019-07-04,4.47,1,30 +23811541,"Luxury Apartment close to Time Square, NYC",23255533,Aravind,Manhattan,Theater District,40.76155,-73.98619000000001,Private room,139,3,10,2019-05-27,1.24,1,189 +18442048,Clean-N-Comfy Bronx Pad,25385574,Che,Bronx,Allerton,40.86718,-73.86235,Private room,33,1,0,,,1,179 +11567179,"Bright, sunny quite room Bushwick",10929225,Louise,Queens,Ridgewood,40.71112,-73.91932,Private room,60,2,2,2016-08-24,0.05,1,0 +22448627,LARGE & CONVENIENT Private Room in Brooklyn,164303137,Mamiko,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93288000000001,Private room,39,4,58,2019-07-01,3.16,2,32 +9675609,HUGE sunny room in Williamsburg-2 min from L train,5480274,Mia,Brooklyn,Williamsburg,40.70997,-73.94296999999999,Private room,80,2,9,2017-11-06,0.41,1,0 +34804794,Central park North Two Bedroom,181287271,Nina,Manhattan,Harlem,40.79966,-73.9539,Entire home/apt,325,3,14,2019-07-05,8.24,1,126 +30393322,"Comfy Wall Street 1BR w/ Speakeasy, Gym, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70601,-74.0096,Entire home/apt,316,30,0,,,232,287 +17020317,Brooklyn Brownstone parlor living with full A/C,679157,Jeremy,Brooklyn,Prospect Heights,40.68125,-73.97236,Entire home/apt,199,2,4,2019-05-20,0.15,1,179 +26898028,"ONE Room →→→20mins to TimesSQ ☆彡 COZY, COZY, COZY",19303369,Hiroki,Queens,Woodside,40.74296,-73.90328000000001,Private room,39,30,3,2019-07-01,0.29,37,32 +18010510,"温馨舒适双人房,双床,明亮大窗,电梯公寓(两个房间用一个卫生间)",123646786,Zheng,Queens,Flushing,40.75607,-73.83202,Private room,78,2,41,2019-07-01,1.53,2,82 +16545297,Room close to Manhatan,36232131,Pablo,Queens,Woodside,40.74354,-73.90093,Private room,100,3,0,,,1,90 +31436066,Cozy Apt in Kensington,113393845,Cindy,Brooklyn,Kensington,40.64557,-73.98097,Entire home/apt,100,1,2,2019-05-05,0.43,1,268 +8889664,Cozy East Village Apartment,7006490,Jibran,Manhattan,East Village,40.72797,-73.97787,Private room,77,1,9,2016-09-10,0.21,1,0 +21421657,THE SMALL ENGLISH MANOR NESTLED AMONGST THE TREES,155255550,Emma,Manhattan,East Village,40.72436,-73.984,Entire home/apt,215,1,126,2019-07-01,6.12,1,234 +30570178,CHEERFUL RM IN BROOKLYN! EASY ACCESS TO TRAIN! R3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.95801,Private room,45,15,3,2019-05-12,0.47,11,199 +18794627,1st Floor Williamsburg Brownstone With Yard !,66941336,Stephanie,Brooklyn,Williamsburg,40.71258,-73.96341,Private room,50,2,6,2017-09-14,0.24,1,2 +15655332,Spacious Brooklyn Loft Apartment & Rooftop Deck,36743809,Hilary,Brooklyn,Williamsburg,40.71443,-73.94153,Entire home/apt,300,2,2,2016-11-26,0.06,1,310 +32408700,Astoria 1 Bedroom Apt 10 minutes from LGA Airport,23260853,Rich,Queens,Astoria,40.76889,-73.92957,Entire home/apt,125,2,4,2019-06-17,0.92,1,14 +32739824,Private 1 Bedroom Apartment in the Upper East,94038074,Forum,Manhattan,Upper East Side,40.77313,-73.94824,Entire home/apt,111,2,5,2019-05-08,1.39,1,0 +30293282,It's a Delightful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67627,-73.90795,Private room,48,1,57,2019-07-04,7.57,5,199 +29884872,Cozy Room in Astoria,224735872,Diana,Queens,Long Island City,40.75406,-73.92095,Shared room,40,3,1,2018-11-26,0.13,1,178 +30477526,Cozy Getaway in Harlem,2327106,Jenae,Manhattan,Harlem,40.80242,-73.95371999999999,Entire home/apt,275,2,6,2019-05-18,0.95,1,252 +9879167,Beautiful apartment in Williamsburg,1090021,Ian,Brooklyn,Williamsburg,40.714,-73.94062,Entire home/apt,100,20,0,,,1,51 +11566601,Book filled nook,61099962,Rhianna,Brooklyn,Prospect Heights,40.67525,-73.96418,Private room,50,1,0,,,1,0 +8664615,Stylish Astoria Apartment,45446889,Justin,Queens,Astoria,40.76707,-73.91473,Entire home/apt,75,3,1,2016-08-31,0.03,1,0 +29923660,Luxury waterfront apartment- 1 stop from Manhattan,30909338,Andrew,Brooklyn,Williamsburg,40.71934,-73.96136,Entire home/apt,162,5,3,2019-06-04,0.51,1,5 +21769940,"Light-filled, cozy apartment -convenient location!",13015084,Payal,Queens,Sunnyside,40.74543,-73.92399,Entire home/apt,100,3,35,2019-06-30,1.78,1,2 +13164204,Beautiful Big Bedroom In Shared Apt-Roof/Balcony,55292741,Samantha,Brooklyn,Bushwick,40.70153,-73.92244000000001,Private room,115,2,0,,,1,0 +31235791,"Williamsburg 1 Bedroom, Spacious and Classy",228224011,Weston & Gabby,Brooklyn,Williamsburg,40.71359,-73.95574,Entire home/apt,251,1,17,2019-06-26,2.91,1,340 +29683957,Williamsburg Waterfront Luxury Apartment,18283992,Hannah,Brooklyn,Williamsburg,40.719,-73.96419,Entire home/apt,250,2,2,2019-04-14,0.33,1,0 +8861719,Right in the heart of Brooklyn,46389507,Kenneth,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91141999999999,Private room,54,2,2,2016-01-02,0.05,1,0 +12308695,Room in musicians loft/music venue,33049782,Dustin,Brooklyn,Bushwick,40.69084,-73.90314000000001,Private room,45,3,3,2017-08-22,0.08,1,0 +4690677,Flatiron studio next to Madison Pk,19007585,Darren,Manhattan,Flatiron District,40.744,-73.9907,Entire home/apt,110,7,11,2016-03-25,0.2,1,0 +7692870,Privacy in Unique Shipping Container Home,3587751,Janet-David,Brooklyn,Williamsburg,40.70841,-73.9539,Private room,120,1,205,2019-06-28,4.39,2,349 +17286647,Charming 1 Bedroom in center of East Village,3407346,Anna,Manhattan,East Village,40.72645,-73.98591,Entire home/apt,150,90,28,2019-04-30,1.03,1,0 +19274249,Bed-study Best!,36474715,Hanan,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95458,Private room,65,3,27,2019-05-11,1.09,1,78 +33909411,Stuyvesant Heights quiet private Apt - 2 bedrooms,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68492,-73.9334,Entire home/apt,135,20,2,2019-06-18,1.5,2,285 +34511920,Amazing House in Brooklyn ! Best deal in the area,129468527,Sally,Brooklyn,Gravesend,40.59997,-73.97804000000001,Entire home/apt,90,30,0,,,1,80 +9393005,"Sunny, Near Times Sq & Central Park",14847501,Zachary,Manhattan,Hell's Kitchen,40.76646,-73.9929,Entire home/apt,305,1,0,,,2,0 +18303895,BEAUTIFUL BROWNSTONE STUDIO IN SOUTH HARLEM,126592760,Felicia,Manhattan,Harlem,40.80514,-73.95115,Entire home/apt,125,2,98,2019-07-02,3.67,1,247 +15745269,Cozy and spacious 1 BR near Columbia University,25851147,Victoria,Manhattan,Harlem,40.81736,-73.95294,Private room,65,3,49,2019-05-24,1.5,1,46 +5621141,Large Sunny 1BD in Chelsea!,23747060,Cathy,Manhattan,Chelsea,40.74406,-73.99551,Entire home/apt,230,4,41,2019-06-30,0.8,1,236 +20829055,3 Bedroom in Great Midtown Location,26490904,Deo,Manhattan,Midtown,40.761140000000005,-73.97596,Entire home/apt,350,30,1,2018-12-18,0.15,4,151 +30741199,Bright Beautiful Loft Apt in Heart of Williamsburg,416238,Mark,Brooklyn,Williamsburg,40.71513,-73.94444,Entire home/apt,225,6,1,2019-01-01,0.16,1,88 +15229619,Bluebird Hell's Kitchen Studio Apartment + Spa!!!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76221,-73.99795,Entire home/apt,321,30,0,,,18,365 +29406821,ASTORIA NATURE HOUSE,22050715,Bruno,Queens,Astoria,40.75718,-73.92763000000001,Private room,90,2,5,2019-05-02,0.61,1,354 +7304034,SPACIOUS Lower East Side DUPLEX 3 bed 2 ba COMFY,37623794,Amanda,Manhattan,East Village,40.72545,-73.98801999999999,Entire home/apt,299,1,69,2019-06-16,1.52,1,257 +18496331,Lofty Living: Private Room,21680683,Jenny,Brooklyn,Williamsburg,40.7199,-73.95828,Private room,124,1,5,2019-05-11,0.2,2,111 +19922819,great area in East Williamsburg,10642725,Nate,Brooklyn,Bedford-Stuyvesant,40.69425,-73.93325,Private room,35,2,1,2017-09-28,0.05,1,0 +26566291,"Quiet, Private and Sunny in Greenwich Village",186452920,Rose,Manhattan,Greenwich Village,40.73093,-74.00125,Entire home/apt,200,2,42,2019-06-21,3.62,1,129 +5033691,*GALAXY* Spectacular 2 Bedroom - Spacious & Light!,25237492,Juliana,Manhattan,Upper West Side,40.78147,-73.98315,Entire home/apt,250,30,13,2019-06-15,0.25,34,304 +36207244,Super Cool & Friendly Pad in Prime AreaofBushwick,272314085,Biagio,Brooklyn,Bushwick,40.69718,-73.92328,Private room,44,1,2,2019-07-05,2.0,1,55 +822016,1BR w/private bath in modern Prospect Heights apt,61873,Seema,Brooklyn,Crown Heights,40.67231,-73.96032,Private room,90,2,24,2019-07-03,0.3,1,30 +29738760,Large bedroom in Manhattan. Subway on same block,4317615,Fabio,Manhattan,Harlem,40.82188,-73.95391,Private room,70,30,0,,,2,249 +34475553,"Cozy and Sunny apartment in Bed-Stuy, Brooklyn",6913402,Rana,Brooklyn,Bedford-Stuyvesant,40.68435,-73.92027,Private room,59,1,0,,,1,55 +9747647,Big and sunny room in Greenpoint,8768792,Fernando,Brooklyn,Greenpoint,40.72449,-73.95149,Private room,70,5,1,2015-12-15,0.02,1,0 +3540722,Modern Bohemian Studio,17820464,Allison,Manhattan,East Village,40.724540000000005,-73.97836,Entire home/apt,145,1,358,2018-12-03,5.96,1,3 +22790700,Cozy and Newly Renovated Brooklyn Brownstone,83426350,Chris,Brooklyn,Bedford-Stuyvesant,40.68917,-73.94937,Private room,49,2,0,,,1,0 +1979579,Best Central Park/NYC View Apt,8219931,Jason,Manhattan,Upper West Side,40.78468,-73.97137,Entire home/apt,300,1,0,,,1,0 +19952747,BEAUTIFUL PRIVATE ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77148,-73.90545,Private room,45,1,72,2019-06-15,3.13,8,296 +27546086,"Beautiful, clean bedroom close to Central Park!",22318190,Jane,Manhattan,East Harlem,40.79657,-73.94932,Private room,90,4,9,2019-04-24,0.82,1,13 +2277707,Great UWS Apt Along Central Park,11630571,Ariel,Manhattan,Upper West Side,40.78498,-73.97284,Entire home/apt,350,1,7,2019-01-02,0.14,1,365 +8520836,HUGE 3Bedroom Duplex in Meatpacking,44866282,Michelle,Manhattan,Chelsea,40.74026,-74.00091,Entire home/apt,300,1,2,2015-09-29,0.04,1,0 +29078405,"MODERN 2BD WITH ROOFTOP, DOWNTOWN MANHATTAN",44129118,Anthony,Manhattan,Financial District,40.7105,-74.00845,Entire home/apt,249,20,0,,,2,0 +8419475,Clean and quiet Bushwick Apartment,44344360,Jeremiah,Brooklyn,Bushwick,40.69882,-73.91771,Private room,60,7,0,,,1,0 +21042151,STAY HERE! Nice&Quite 1BD in Financial District!,151563968,Andrey,Manhattan,Financial District,40.70949,-74.00973,Entire home/apt,150,1,103,2019-06-22,4.79,1,7 +10230429,Great room,52539349,Rhonda,Queens,Springfield Gardens,40.67035,-73.7541,Entire home/apt,60,1,212,2019-07-07,4.95,1,297 +12281070,A simple place to make your space,66173032,Andrew,Manhattan,Upper East Side,40.77441,-73.95815,Entire home/apt,160,1,0,,,1,0 +6930780,Beautiful Sunny Top Floor 1BD Flat,36333834,Paul,Brooklyn,Bedford-Stuyvesant,40.68378,-73.93573,Entire home/apt,139,4,152,2019-06-13,3.26,1,281 +7113258,Private sunny room in Bushwick,11725595,Basil,Brooklyn,Bushwick,40.70415,-73.92551,Private room,100,1,0,,,1,0 +29098862,Quite room. 15 mins to JFK & 20 mins to Manhattan,219305025,Michael,Brooklyn,Cypress Hills,40.67855,-73.86961,Private room,80,1,3,2019-01-02,0.42,1,1 +13752815,"Bright, Spacious Home Near Beach & Subway",36234811,Anna,Queens,Arverne,40.59051,-73.79151999999999,Private room,69,1,51,2019-06-11,1.4,4,152 +2127713,GREAT COZY APT,8384058,Hb,Manhattan,Harlem,40.81143,-73.94248,Entire home/apt,98,8,37,2018-12-12,0.59,1,170 +4677469,Cozy 1-BDR apartment on Manhattan,24191104,Timur,Manhattan,Morningside Heights,40.81099,-73.95759,Entire home/apt,125,4,0,,,1,0 +15423388,Designer's Loft in Williamsburg,25549229,Pauline,Brooklyn,Williamsburg,40.70677,-73.96745,Private room,101,1,91,2019-06-19,2.74,2,12 +21169968,"Quiet, private bedroom close to beaches.",24193553,Renee,Brooklyn,Greenpoint,40.72402,-73.95285,Private room,60,10,0,,,1,89 +20207945,Cozy locked Bedroom - 10 minutes from Times Square,52166457,Jacketta,Queens,Long Island City,40.74715,-73.94605,Private room,70,2,6,2018-10-02,0.26,1,0 +18385188,"Brooklyn Modern: Sunny 2BR, Boutique Style",127341412,Melissa,Brooklyn,Gowanus,40.6701,-73.98917,Entire home/apt,173,2,100,2019-07-07,3.88,1,18 +29256787,Academic pad,177110165,Piro,Brooklyn,Gowanus,40.66811,-73.99450999999999,Entire home/apt,121,5,1,2019-04-04,0.31,1,45 +32613752,Sunny and Compfy Loft Bedroom,59089761,Gamze,Brooklyn,Williamsburg,40.71107,-73.96449,Private room,55,30,0,,,1,87 +9697749,Private bedroom in BedStuy!,43380791,Ali,Brooklyn,Bedford-Stuyvesant,40.68762,-73.92318,Private room,28,10,1,2016-01-06,0.02,1,0 +32749511,Cozy furnished 2 Bedroom (30 day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69239,-73.94884,Entire home/apt,120,28,0,,,2,264 +23130144,Private bedroom in Astoria,11696537,Allison,Queens,Astoria,40.7675,-73.90911,Private room,100,1,3,2018-12-30,0.41,1,0 +34869169,1 Super Cozy Bedroom in Downtown Manhattan,25794110,Zeeshan,Manhattan,Civic Center,40.71292,-73.99819000000001,Private room,165,2,0,,,1,89 +16541635,Spacious uws studio overlooking Central Park,77375497,Hannah,Manhattan,Upper West Side,40.79163,-73.96727,Entire home/apt,100,4,2,2017-09-03,0.09,1,0 +5251624,"Sunny, Warm, Comfortable Room",3114551,Jules,Brooklyn,Bushwick,40.69888,-73.92081,Private room,40,14,0,,,1,0 +3842694,Spacious Home by the Bay,1277222,Sanda,Brooklyn,Sheepshead Bay,40.58581,-73.9383,Entire home/apt,189,2,13,2016-10-25,0.27,1,0 +11940117,1BR Bright & Spacious in West Harlem,27488921,Jorge,Manhattan,Harlem,40.80403,-73.95427,Entire home/apt,148,6,44,2019-06-23,1.12,1,280 +23901908,The Madison - A One Bedroom Apartment,179634496,Cristian,Manhattan,East Harlem,40.79983,-73.94481,Entire home/apt,300,2,0,,,1,0 +11710327,Beautiful Ft. Greene Guest Suite w/ Full Kitchen,62249912,Myra,Brooklyn,Fort Greene,40.6876,-73.97083,Private room,115,28,39,2018-01-01,1.05,1,3 +13549713,Luxury 2 Bed/2 Bath Duplex on the Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78435,-73.97579,Entire home/apt,295,30,2,2018-01-06,0.06,6,0 +32964714,Stylish bedroom in new luxurious industrial apt #1,38043348,Moises,Manhattan,Harlem,40.80838,-73.94093000000001,Private room,90,1,23,2019-07-01,6.0,2,254 +13254260,"One room in beautiful 2BR apartment, Crown Heights",50485365,Paloma,Brooklyn,Crown Heights,40.66741,-73.9522,Private room,36,12,2,2017-12-11,0.09,1,0 +7246903,Cozy Townhouse with Private Deck,26411218,Desmond,Queens,Maspeth,40.73456,-73.88891,Entire home/apt,96,3,139,2019-06-30,3.14,2,21 +30820062,"Spacious, sunny apartment by Prospect Park",7798275,Lucia And Rob,Brooklyn,Prospect-Lefferts Gardens,40.66027,-73.95376,Entire home/apt,100,25,1,2019-03-21,0.27,1,5 +22139932,Harlem Oasis,18730893,Seth,Manhattan,Harlem,40.82547,-73.94091999999999,Private room,95,1,0,,,1,0 +25049092,Full apt. by Columbia Univ & Subway in Manhattan,46817579,Mihyun,Manhattan,Harlem,40.82996,-73.9449,Private room,69,7,6,2018-12-10,0.53,1,156 +23468785,Luxe Master Bdrm Chelsea Doorman Gym/RoofDeck/Elev,19043062,Regi,Manhattan,Chelsea,40.74085,-74.00379000000001,Private room,80,4,34,2019-06-28,2.24,2,20 +17664316,Private Room in Brooklyn Communal House,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67964,-73.95629,Private room,45,2,16,2017-10-21,0.57,3,0 +45542,Clean and Cozy Harlem Apartment,202249,Campbell,Manhattan,Harlem,40.82374,-73.9373,Entire home/apt,100,2,18,2018-12-17,1.79,1,0 +16575174,1 Bedroom Escape in Brooklyn Heights,60591318,Michelle,Brooklyn,Brooklyn Heights,40.693000000000005,-73.99374,Entire home/apt,185,4,0,,,1,0 +6026546,Beautiful Studio Steps from the Met,22613302,Brittany,Manhattan,Upper East Side,40.77793,-73.9602,Entire home/apt,170,5,2,2015-10-05,0.04,1,0 +15721685,Perfect location: Central to everything!,39668851,Hyggens,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95075,Entire home/apt,100,5,11,2019-06-14,0.44,1,298 +32695800,Thanksgiving - New York City (A144),244746656,William,Manhattan,Midtown,40.75166,-73.97323,Entire home/apt,315,1,0,,,4,3 +22258159,Shared room in one minute walk to the M train!!,134293540,Valentin,Queens,Ridgewood,40.70117,-73.90666,Shared room,33,30,1,2017-12-22,0.05,4,7 +1399273,NYC - furnished room - Greenpoint ,7130382,Walter,Brooklyn,Greenpoint,40.72991,-73.95208000000001,Private room,45,4,7,2018-10-12,0.21,2,88 +6973463,"Penthouse Apt w/private roofdeck, NO cleaning fee",12374283,Ryan,Manhattan,East Village,40.72403,-73.97783000000001,Entire home/apt,300,2,1,2017-11-26,0.05,4,0 +6737815,Chic Modern Apt w/ View of Hudson,10576227,Alexander,Manhattan,Chelsea,40.7481,-74.00533,Entire home/apt,200,5,1,2015-07-05,0.02,1,0 +6359266,"1 Train, Delis, Duane Read,Eat Outs",33128992,Sundar,Manhattan,Morningside Heights,40.814440000000005,-73.95863,Private room,75,1,1,2015-05-18,0.02,1,0 +35790090,Authentic Chelsea Studio Loft,89629761,Juan,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,89,2,0,,,1,37 +16408202,Spacious room with amazing view,8309054,Kenza,Manhattan,East Village,40.72726,-73.98037,Private room,90,2,3,2017-12-20,0.1,1,0 +7679943,Colorful 2 bedroom in great Brooklyn neighborhood,40332331,Joyce,Brooklyn,Windsor Terrace,40.65758,-73.97801,Entire home/apt,128,3,10,2019-06-25,0.21,2,3 +31303661,New York Safe Haven (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74535,-73.97898,Shared room,39,2,0,,,3,348 +30443032,Modern Williamsburg Beauty,10458297,Michael,Brooklyn,Williamsburg,40.71079,-73.95192,Private room,230,4,0,,,1,35 +25668516,Great cozy room near the center of NYC 12AR,190921808,John,Manhattan,Hell's Kitchen,40.75407,-73.99528000000001,Private room,100,7,8,2019-06-09,0.64,47,271 +530576,"1bedroom, 70s UWS,brownstone charm",263510,Sandy,Manhattan,Upper West Side,40.78111,-73.97739,Private room,93,14,88,2019-06-28,1.03,1,176 +4701749,Brooklyn Oasis,24304871,Heather,Brooklyn,Flatbush,40.6536,-73.95810999999999,Private room,50,2,23,2019-04-01,0.42,1,0 +16382035,"✨Bright, spacious apartment in the West Village❤️",1000278,Michael,Manhattan,West Village,40.73415,-74.00721,Entire home/apt,190,1,86,2019-06-22,2.76,1,236 +286838,Private Room in Brownstone,1492339,Karin,Manhattan,Harlem,40.80748,-73.95589,Private room,75,2,101,2015-10-31,1.1,1,0 +23142952,Beautiful room in renovated Manhattan apartment,6501039,Geraldo,Manhattan,Washington Heights,40.83416,-73.94375,Private room,30,5,2,2018-07-07,0.14,1,0 +35253003,Beautiful sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.748540000000006,-73.94908000000001,Private room,75,20,0,,,2,66 +35837250,Oversize Brooklyn duplex with backyard!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94969,Entire home/apt,195,2,0,,,2,7 +30286646,Uptown Manhattan 2BR Designer Loft w/ River Views,401517,Mc,Manhattan,Washington Heights,40.85079,-73.94108,Entire home/apt,279,5,0,,,1,55 +16185437,Cozy Bedroom in Centrally Located Apartment,22243853,Annie,Brooklyn,Williamsburg,40.7142,-73.96408000000001,Private room,60,3,21,2018-09-11,0.72,1,0 +19197983,Beautiful Apartment with Manhattan view.,14249332,Joseph,Queens,Astoria,40.77705,-73.93443,Private room,69,1,68,2019-06-22,2.72,1,51 +2574386,Luxury Apt - west village/Chelsea,9090698,G,Manhattan,Chelsea,40.74311,-74.00718,Entire home/apt,275,30,2,2014-10-05,0.03,1,365 +13091737,Charming one BR apartment in heart of Nolita/SoHo,72677655,Christina,Manhattan,Nolita,40.72153,-73.99493000000001,Entire home/apt,126,2,11,2016-11-15,0.29,1,0 +2231296,Great Location in the heart of NYC!,8312378,Ever,Manhattan,Greenwich Village,40.72926,-73.9989,Private room,119,2,146,2019-06-24,2.21,2,265 +32922463,HUGE & Sunny Two Bedroom Apartment in Brooklyn,7752638,Colin And Madelaine,Brooklyn,Sunset Park,40.6417,-74.01892,Private room,95,2,0,,,1,137 +30710462,Pop Fashion Studio,6451056,Liz,Brooklyn,Bushwick,40.69793,-73.93141,Entire home/apt,93,3,5,2019-06-02,0.78,1,0 +8887907,Luxurious Manhattan Getaway for 1 adult,36573037,Tracey,Manhattan,Inwood,40.87157,-73.91744,Private room,50,1,38,2019-07-01,0.85,2,344 +28004429,Ideal New York Apartment,57287101,Stephanie,Manhattan,East Village,40.7249,-73.98026,Entire home/apt,250,2,5,2019-06-11,0.48,1,0 +30144719,"Gorgeous, Huge Artist's Loft in Williamsburg",51364990,Jasper,Brooklyn,Williamsburg,40.71361,-73.95703,Entire home/apt,195,2,5,2019-06-30,1.61,1,7 +24580838,Sunlit and Plant filled Williamsburg Railroad Apt,185512151,Pia,Brooklyn,Williamsburg,40.70743,-73.94206,Entire home/apt,128,4,6,2019-05-28,0.42,1,0 +816637,Big apartment with top view! 1 block from subway.,1099716,Alvaro,Queens,Sunnyside,40.74263,-73.92475999999999,Entire home/apt,85,2,108,2019-06-23,1.35,1,0 +23890947,"106th and Amsterdam open, spacious apartment!",24033115,Jessica,Manhattan,Upper West Side,40.802,-73.96605,Private room,72,1,5,2019-06-30,0.41,1,32 +15476794,Charming Private House,99346083,Stella,Queens,Queens Village,40.70811,-73.74103000000001,Entire home/apt,125,30,0,,,1,365 +9778579,LES sweet bedroom (Female only),50411330,Sophia,Manhattan,Lower East Side,40.71504,-73.98879000000001,Private room,45,1,2,2016-06-22,0.05,1,0 +6187204,Chinatown/Lower East Side Room,32092775,Jess,Manhattan,Chinatown,40.71546,-73.99226,Private room,75,4,23,2018-11-18,0.45,1,212 +35456622,4 Bedroom apartment in 2 family house in Brooklyn,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68919,-73.92553000000001,Entire home/apt,190,1,3,2019-07-01,3.0,2,269 +1013648,Gorgeous 2 Fl Apt in1887 Brownstone,5018907,Vera,Brooklyn,Park Slope,40.67541,-73.9784,Entire home/apt,225,7,8,2015-08-29,0.11,1,342 +11791225,"Spacious bedroom in Astoria, NY",23269511,Michael,Queens,Astoria,40.76792,-73.91175,Private room,50,5,1,2016-05-27,0.03,1,0 +5885542,SUNNY ROOM 1 IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69292,-73.96151,Private room,95,30,43,2019-02-23,0.84,11,312 +20163695,"*Spacious* Artist’s Home, mins to NYC, near train",43623968,Lauren,Queens,Rego Park,40.72835,-73.86108,Entire home/apt,115,1,78,2019-06-12,3.51,1,343 +21937306,Spacious Room in 3 bedroom Greenpoint Apartment,1349340,Noah,Brooklyn,Greenpoint,40.72728,-73.95313,Private room,75,7,0,,,2,0 +28341857,"Private Brand New 2 BR, Minutes from JFK & LGA",5669527,Mohd Tahmid,Queens,Jamaica,40.67695,-73.79045,Entire home/apt,99,1,96,2019-07-04,9.63,1,31 +28950019,Bed room close to NYC⬆︎ with lots of sun light☀️,43044876,Haruhisa,Queens,Elmhurst,40.73655,-73.87762,Private room,40,29,2,2019-04-29,0.55,5,32 +9836940,Bright & Sunny 2-Bed - Bushwick/Bed-Stuy Border!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9196,Entire home/apt,165,3,36,2019-07-06,4.37,2,274 +35713310,Premier Two Queens close to Central Park,261761196,Park Central,Manhattan,Midtown,40.76542,-73.98192,Private room,300,1,0,,,8,321 +19245930,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""S”",59156312,Viviana,Queens,Woodhaven,40.68641,-73.86635,Private room,69,3,21,2019-06-21,0.85,9,357 +26640189,Comfy Clinton Hill Master Suite,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69418,-73.96069,Private room,66,1,3,2019-04-07,0.36,3,0 +21370008,Private Comfy Town Home in Heart of Williamsburg,10545382,Chase,Brooklyn,Williamsburg,40.71561,-73.96307,Private room,129,1,66,2019-07-07,3.32,2,84 +4476945,Modern Brownstone in Harlem,23228839,Tiffany,Manhattan,Harlem,40.81056,-73.94627,Entire home/apt,149,3,28,2019-05-19,0.5,1,329 +26895469,Conveniently located room near Times Sq. 43D1,190921808,John,Manhattan,Hell's Kitchen,40.75496,-73.99715,Private room,45,7,4,2019-05-11,0.49,47,336 +18584742,Cozy room across the street from the high bridge,128692351,Nahuel,Bronx,Highbridge,40.84111,-73.92513000000001,Private room,80,2,100,2019-06-23,3.86,5,338 +32978962,"Sunny&Spacious 1BR, Luxury BLDG, GYM,ROOF,LAUNDRY",7365223,Shay,Brooklyn,Greenpoint,40.73281,-73.95208000000001,Entire home/apt,170,3,4,2019-04-27,1.3,1,157 +30111883,Twin Private Room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69356,-73.94537,Private room,80,2,16,2019-06-17,2.17,4,3 +30891733,BEAUTIFUL AND SPACIOUS STUDIO CLOSE TO LGA AND JFK,230584533,Sonia,Queens,Corona,40.745,-73.85927,Entire home/apt,99,1,64,2019-07-04,9.5,1,329 +24147123,"Bright Brooklyn home on the park, private backyard",4857962,Allison,Brooklyn,Bedford-Stuyvesant,40.69017,-73.94825,Entire home/apt,235,3,5,2018-11-25,0.32,1,3 +3663178,"Landmark Cottage, Brownstone block",710916,Adam,Brooklyn,Crown Heights,40.67541,-73.94408,Entire home/apt,216,1,233,2019-07-02,3.89,1,295 +35086252,Modern Spacious Apartment,99642772,Anna,Brooklyn,Downtown Brooklyn,40.69561,-73.9878,Entire home/apt,210,5,0,,,1,0 +20758217,Sunny Bushwick Room w/ Rooftop Manhattan View!,6394738,Lindsay,Brooklyn,Bushwick,40.705740000000006,-73.92289,Private room,85,1,14,2018-05-04,0.62,2,0 +23753607,Bright & spacious room in Brooklyn sanctuary,131829860,Anna,Brooklyn,East Flatbush,40.63621,-73.94968,Private room,55,3,1,2018-03-18,0.06,1,0 +21982177,Gramercy Park Pied à Terre,6587683,Angele,Manhattan,Gramercy,40.73716,-73.98835,Entire home/apt,150,2,21,2019-06-26,1.1,1,1 +25109931,beautiful holidays,61545139,Lyudmila,Brooklyn,Brighton Beach,40.58033,-73.9657,Private room,100,1,3,2018-10-20,0.22,1,250 +482765,Beautiful Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.68834,-73.97875,Private room,100,2,112,2019-06-30,1.3,2,12 +14520743,SPACIOUS room TIME SQUARE,33518883,Melina,Manhattan,Hell's Kitchen,40.76106,-73.99148000000001,Private room,95,1,23,2017-08-31,0.66,2,0 +21592694,"Private Peaceful room in Flushing/Auburndale, NY",157040162,Adriana,Queens,Flushing,40.75456,-73.80417,Private room,48,1,37,2019-06-30,2.19,1,39 +33913702,Artsy apt in the heart of Brooklyn -- Near all!,27936743,Amy,Brooklyn,Bedford-Stuyvesant,40.68466,-73.94349,Entire home/apt,75,2,4,2019-06-19,1.85,1,103 +5991675,Peaceful room in sweet neighborhood,22388424,Leslie,Queens,Ridgewood,40.703990000000005,-73.91195,Private room,46,4,17,2018-09-08,0.39,2,262 +21983105,Cute Loft in the Heart of Greenpoint Brooklyn!,156976885,Carrie,Brooklyn,Greenpoint,40.72549,-73.94453,Entire home/apt,120,3,0,,,1,0 +13182531,"Sunny, spacious 2 bedroom in upper Manhattan",73732590,George,Manhattan,Washington Heights,40.85261,-73.94203,Entire home/apt,150,10,12,2019-04-23,0.33,1,6 +30469315,Jax Shack,6394831,Jax,Manhattan,Washington Heights,40.85245,-73.93273,Private room,100,3,0,,,1,0 +20459741,Brooklyn Gem,135606570,Lorene,Brooklyn,East Flatbush,40.63458,-73.94554000000001,Private room,66,2,6,2019-05-06,0.47,1,88 +20120690,Modern Williamsburg Penthouse,9691202,Julien,Brooklyn,Williamsburg,40.7188,-73.94283,Entire home/apt,250,7,10,2019-05-25,0.45,1,5 +16367184,South Slope Brooklyn Apartment!,7676346,Saquib,Brooklyn,Sunset Park,40.66033,-73.99623000000001,Entire home/apt,80,2,0,,,1,0 +12034085,Private Theatre District Bedroom,7695223,David,Manhattan,Hell's Kitchen,40.75857,-73.98942,Private room,65,2,6,2016-12-17,0.16,1,0 +24334634,River and Park Views from Balcony,3220590,Nova,Manhattan,Morningside Heights,40.80798,-73.96585,Entire home/apt,95,7,0,,,1,0 +15041647,Private Bedroom in NYC w/ SUPERHOST.,69117812,Nixie & Hai,Queens,Corona,40.73702,-73.857,Private room,60,1,105,2019-07-03,3.07,1,347 +6324190,1 Bedroom in Giant Bushwick House,4157362,Casey,Brooklyn,Bedford-Stuyvesant,40.69564,-73.93335,Private room,35,10,0,,,1,0 +27736075,Welcome to the Secret Oasis in Williamsburg,84063956,Astrid,Brooklyn,Williamsburg,40.70908,-73.95006,Private room,78,1,32,2019-06-17,3.19,1,30 +32361532,"Chic Private Bedroom in Ridgewood, NY by 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70892,-73.89502,Private room,42,30,0,,,23,220 +35967094,"Rise & Shine: Treetop Apartment, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.63926,-73.96415999999999,Entire home/apt,100,2,0,,,2,71 +4171406,Private room in artist's loft!,6032480,Anna,Brooklyn,Williamsburg,40.7095,-73.94945,Private room,55,2,86,2019-06-11,1.49,2,38 +16543563,"Beautiful private room in East Village, NYC",5076469,Aaron,Manhattan,East Village,40.72558,-73.99025,Private room,95,7,2,2017-04-16,0.07,1,0 +3987571,Garden Apartment with Private Entry,20670026,Monifa & Saint,Brooklyn,Bedford-Stuyvesant,40.68084,-73.94779,Entire home/apt,115,2,259,2019-06-30,4.43,1,285 +5729530,1Br apt on the UES accomodates two,29707420,Riki,Manhattan,Upper East Side,40.76939,-73.9504,Entire home/apt,150,1,0,,,1,0 +4525475,"Manhattan, UWS, Bright, 1BR, & Loft",12149644,Brandon,Manhattan,Upper West Side,40.78304,-73.98146,Entire home/apt,125,1,0,,,1,0 +1725295,Midtwn E BEST LOCATION Priv Twin Rm 1 Loving Cat,215764,Lynn,Manhattan,Murray Hill,40.7474,-73.97847,Private room,85,1,135,2018-12-12,1.93,1,15 +23901030,Wyndham Midtown 45 (2 Bedroom Presidential) 5A,100238132,Michael,Manhattan,Midtown,40.75316,-73.97163,Entire home/apt,339,3,34,2019-04-19,2.27,12,0 +80700,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73738,-73.95482,Private room,349,3,7,2019-05-24,0.07,28,60 +19154733,2 bedrooms Williamsburg loft - huge and sunny,42405567,Chris,Brooklyn,Williamsburg,40.71356,-73.94372,Entire home/apt,225,4,7,2018-09-02,0.29,2,8 +12148081,"Sexy, Cozy, Work, Play Loft for 4",23913300,Kelly,Brooklyn,Williamsburg,40.71265,-73.96574,Entire home/apt,300,2,33,2019-06-25,0.86,2,76 +30212514,Manhattan West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75506,-73.99803,Private room,199,1,7,2019-02-03,0.95,30,166 +17764129,One Bedroom Apartment in Williamsburg Brooklyn,121244117,Todd,Brooklyn,Williamsburg,40.71869,-73.95158,Entire home/apt,100,2,1,2017-03-24,0.04,1,0 +1065138,Private room in beautiful neighborhood in Brooklyn,5861233,Nevena,Brooklyn,Crown Heights,40.67046,-73.94835,Private room,50,3,2,2017-05-29,0.08,1,0 +18139095,Brand New Historic Harlem Duplex Apartment,3988482,Julien,Manhattan,Harlem,40.82168,-73.95161,Entire home/apt,199,3,45,2018-08-06,1.82,1,0 +25262795,Brooklyn apartment,102888703,Hany,Brooklyn,Gravesend,40.6009,-73.98216,Entire home/apt,100,7,0,,,1,42 +20928856,Charming & Convenient Brooklyn Bedroom,7337775,Lauren,Brooklyn,Crown Heights,40.67394,-73.94991,Private room,60,5,0,,,1,0 +28608084,Sonder | Madison Ave | Simple Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74712,-73.98461,Entire home/apt,254,29,0,,,96,291 +16362226,"浪漫民宿,环境优美,停车方便,独立洗手间和马桶,浴室共用。 (Website hidden by Airbnb)",105074140,Emmy,Queens,Flushing,40.75482,-73.80368,Private room,48,1,52,2019-02-14,2.03,4,0 +25202604,Luxurious Apt2 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Park Slope,40.67638,-73.98278,Entire home/apt,295,4,16,2019-07-04,1.42,3,68 +11166140,Beautiful Studio/Doorman Building/43 St & 2 Ave,1475015,Mike,Manhattan,Murray Hill,40.74544,-73.9748,Entire home/apt,83,30,1,2018-08-11,0.09,52,311 +35606417,Modern 2 Bed! Easy Access to Manhattan!,267875219,Ridge,Queens,Ridgewood,40.70762,-73.89784,Entire home/apt,149,3,0,,,1,169 +9939029,"Bright and Cozy Studio, Park Slope!",5417308,Tamara,Brooklyn,South Slope,40.66557,-73.97896,Entire home/apt,86,30,1,2016-02-21,0.02,1,0 +600775,Sml Rm in pr. Brst in Pk Sl great for Med/students,210746,Kathleen R.,Brooklyn,Prospect Heights,40.68084,-73.97429,Private room,100,2,73,2019-06-27,0.89,3,257 +28408938,Gorgeous loft with stunning view : Williamsburg,17760140,Amo,Brooklyn,Williamsburg,40.71801,-73.95573,Entire home/apt,190,4,2,2019-05-31,0.21,1,4 +33382288,Spacious green#3,208136645,Andre,Brooklyn,East Flatbush,40.65587,-73.94187,Private room,45,3,0,,,4,332 +8234740,Nice Studio in Hell's kitchen,37440412,Rebecca,Manhattan,Hell's Kitchen,40.76016,-73.98929,Entire home/apt,160,4,5,2016-06-12,0.11,1,0 +6742680,Spacious & Charming Duplex in Upper East,6028102,Ana,Manhattan,Upper East Side,40.77259,-73.95647,Entire home/apt,200,3,47,2019-03-24,0.95,1,0 +21982333,Casa de Compri Int'l,160322636,Leland,Brooklyn,East New York,40.663790000000006,-73.89126999999999,Private room,50,2,43,2019-07-01,2.19,1,172 +24915372,A true NYC gem!,188365772,Alan,Manhattan,Harlem,40.82307,-73.95447,Entire home/apt,250,3,0,,,1,0 +1934512,Penthouse studio w/ skylights and skyline views,2317686,Bryan,Brooklyn,Clinton Hill,40.6912,-73.96686,Entire home/apt,150,7,37,2019-06-09,0.6,1,39 +33155086,Large Studio close to everything,190643075,Ally,Brooklyn,Bay Ridge,40.63015,-74.02305,Entire home/apt,90,6,1,2019-06-07,0.94,1,0 +25288989,COZY ROOM IN EAST VILLAGE TO CRASH!,48049796,Chester,Manhattan,East Village,40.72823,-73.98425,Private room,100,1,24,2019-06-30,1.79,2,91 +22879396,"Spacious, Sunny room in Cobble Hill !",12479495,Shalini,Brooklyn,Cobble Hill,40.68712,-73.9914,Private room,75,3,0,,,1,0 +34723111,Modern 3 Bedroom! Easy Access to Manhattan!,261904019,Pete,Queens,Ridgewood,40.70631,-73.89698,Entire home/apt,199,3,5,2019-07-01,3.13,1,145 +36275809,Cozy 1BR Apartment in Upper East Side New York,272829356,David,Manhattan,Upper East Side,40.77469,-73.95181,Entire home/apt,230,3,0,,,1,350 +23360409,Beautiful place in historic Bed Stuy neighborhood,3478341,Mark,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92557,Entire home/apt,99,2,21,2019-06-19,1.31,1,26 +5695523,Stay European in Brooklyn,36841,Irene & Alban,Brooklyn,Bedford-Stuyvesant,40.68421,-73.92608,Entire home/apt,100,2,107,2019-07-03,2.23,1,41 +20935388,Modern Penthouse Apartment with Private Roof Deck,733286,Doug,Manhattan,East Village,40.72232,-73.98055,Entire home/apt,225,14,1,2017-12-17,0.05,1,0 +7894007,MyPlace2Beach,41619645,D.,Queens,Arverne,40.58875,-73.79109,Private room,200,2,70,2019-06-24,1.48,1,90 +13343199,Midwood Street Limestone,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96016999999999,Entire home/apt,329,2,15,2019-01-22,0.98,2,0 +13446124,Cozy front room in a 2 bedroom family apt near CU,18419593,Anna & Keith,Manhattan,Morningside Heights,40.81353,-73.95878,Private room,76,2,126,2019-06-14,3.4,1,12 +24432539,"Front Big Private Room # 2, size 13x17, 3 Windows",43825074,Masud,Brooklyn,Cypress Hills,40.68599,-73.87734,Private room,37,28,6,2019-06-15,0.43,3,356 +6972271,"2BR Cozy, Large & Central Apartment",31213925,Philippe,Manhattan,Midtown,40.74462,-73.98272,Entire home/apt,150,2,0,,,1,0 +29805233,Brand New NYC Apartment: Central Park & Midtown,224238226,Maksum,Manhattan,Upper East Side,40.76263,-73.96880999999999,Entire home/apt,265,6,33,2019-06-16,4.16,1,95 +30057248,Beautiful Private bedroom for rent in Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70094,-73.91991999999999,Private room,59,1,1,2019-05-31,0.75,5,148 +25291991,Cozy Private Room,34954769,Elizabeth,Manhattan,Harlem,40.81626,-73.95862,Private room,100,2,1,2018-12-02,0.14,1,86 +35678273,Fordham University Bronx Get Away #4,35783912,Pi & Leo,Bronx,Fordham,40.86269,-73.89073,Private room,39,3,0,,,8,170 +22588459,Large Private Room in Bright Bushwick Loft,17799362,Ashley,Brooklyn,Williamsburg,40.70635,-73.93658,Private room,60,2,1,2018-01-21,0.06,1,0 +20996372,"Luxury in Brooklyn Brownstone, Close to Metro!!!",151146788,Rohit,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92958,Entire home/apt,170,3,99,2019-06-22,4.79,2,288 +17606753,Mom Room,119155499,Julio,Brooklyn,Bushwick,40.69391,-73.92469,Private room,57,5,23,2019-06-19,0.84,4,337 +9950923,Bright Sunny Soho /W village loft,51137245,Robert,Manhattan,Greenwich Village,40.72778,-73.99899,Private room,85,2,0,,,1,0 +24312275,West Chelsea MINI,20132009,Karen,Manhattan,Chelsea,40.74491,-74.0042,Entire home/apt,150,3,49,2019-07-04,3.53,2,64 +27956689,Spacious private room in the heart of EastVillage,71149842,Yaasha,Manhattan,East Village,40.72882,-73.97807,Private room,80,1,6,2019-01-06,0.58,2,0 +5061309,Sunny room in Bushwick; Minutes from subway!,13501341,Fiorella,Brooklyn,Bushwick,40.70171,-73.91344000000001,Private room,60,1,155,2019-06-20,3.39,2,170 +33279209,Midtown Manhattan Space | Chic Design + Outdoor Terrace + Rain Shower,239660813,Yotel,Manhattan,Hell's Kitchen,40.76019,-73.99524,Private room,146,1,0,,,10,314 +32744084,Sunny Bedroom in Williamsburg,118385679,Nina,Brooklyn,Williamsburg,40.71315,-73.95695,Private room,50,1,12,2019-06-17,3.13,1,13 +32642886,Great View Balcony Room/ 10min to Heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.74165,-73.90603,Private room,50,1,0,,,2,62 +19141833,2BD in the Heart of Fort Greene,4331581,Alyssa,Brooklyn,Fort Greene,40.68876,-73.97746,Entire home/apt,147,1,1,2017-06-11,0.04,1,0 +9750308,Bushwick artist den: 1 min to L train AC +backyard,50291368,Zoey,Brooklyn,Bushwick,40.6882,-73.90598,Private room,46,2,18,2019-04-27,0.42,1,0 +34125094,★INCREDIBLE LOCATION★HELLO TIMES SQ & CENTRAL PARK,257188989,Kledi,Manhattan,Midtown,40.76413,-73.97691,Entire home/apt,189,2,10,2019-06-30,5.56,1,36 +19694308,Bed-Stuy Beauty,12662045,Kamilah,Brooklyn,Bedford-Stuyvesant,40.68347,-73.93321999999999,Private room,50,3,2,2017-08-31,0.09,1,0 +7094976,1 private bedroom in cool BK hood!!,1714147,Nastasha,Brooklyn,Crown Heights,40.67101,-73.9525,Private room,44,4,0,,,1,0 +20231900,Argyle Road Brooklyn,4581681,Sarah,Brooklyn,Flatbush,40.63646,-73.96484,Entire home/apt,250,2,58,2019-06-30,2.7,1,312 +27732746,Entire apartment in the heart of west village,125177157,Josue,Manhattan,West Village,40.73397,-74.00168000000001,Entire home/apt,190,2,0,,,1,0 +20773149,Nice room across the street from the high bridge.,128692351,Nahuel,Bronx,Highbridge,40.84103,-73.92701,Private room,42,2,62,2019-06-24,2.76,5,1 +30393896,"Mod Tribeca Studio w/ Tons of light, Gym, Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71508,-74.00628,Entire home/apt,274,30,0,,,232,194 +4942985,Quirky BrwnStone Studio in Harlem ,25476493,Taylor,Manhattan,Harlem,40.80607,-73.94805,Entire home/apt,115,1,0,,,1,0 +5037892,Stay in Harlem 1 - 3 months!,6228539,Michelle,Manhattan,Harlem,40.80535,-73.95407,Private room,75,30,1,2019-05-03,0.45,2,330 +12871310,Charming and spacious Brooklyn apt,29959914,Peter,Brooklyn,Bushwick,40.68616,-73.91543,Private room,52,1,3,2016-09-26,0.08,1,0 +140425,Holiday Time in NY - Oh My!!,683975,Ivy,Brooklyn,Crown Heights,40.6755,-73.95878,Private room,79,2,115,2017-05-25,1.18,1,0 +24359329,Gorgeous Room in Wburg!,56202220,Guille,Brooklyn,Williamsburg,40.71196,-73.95424,Private room,80,3,1,2019-06-18,1.0,1,20 +17839487,Sunny Top Floor Room with Manhattan skyline view,122012905,Lene,Brooklyn,Bedford-Stuyvesant,40.68144,-73.9426,Private room,55,5,0,,,1,0 +13084004,Spacious Stylish Studio in Prospect Park South,2497082,Sadecia,Brooklyn,Flatbush,40.64523,-73.96213,Entire home/apt,65,5,13,2019-04-30,0.35,1,0 +22408527,"Spacious, convenient, and affordable!",36356065,Mohamad,Brooklyn,Bay Ridge,40.63971,-74.03089,Private room,58,1,1,2017-12-25,0.05,1,0 +10133534,Artsy/Neat 1 Bedroom Apartment in the heart of LES,6606618,Louise,Manhattan,Lower East Side,40.7178,-73.98504,Shared room,110,2,4,2016-12-11,0.11,1,0 +21973767,Spring in NYC! The perfect spot.,13242534,Elizabeth,Manhattan,Chelsea,40.73936,-73.99753,Entire home/apt,250,7,6,2018-06-05,0.33,1,0 +23154138,Cozy and conveniently located,3202437,Rosella,Manhattan,Lower East Side,40.7216,-73.98959,Entire home/apt,130,10,4,2019-06-23,0.38,1,35 +6631351,Beautiful Brooklyn brownstone with lots of light,34712280,Helen,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95832,Entire home/apt,91,2,16,2019-07-07,1.7,1,10 +20665199,Two bedroom basement apartment!,73228035,Maimi,Brooklyn,East Flatbush,40.66047,-73.93743,Private room,150,3,0,,,2,0 +27030076,Cosy bedroom in Williamsburg,54658419,Pierre,Brooklyn,Williamsburg,40.7117,-73.9608,Private room,100,3,8,2019-05-13,0.69,2,0 +13411035,Charming 3 BR in Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76327,-73.98937,Entire home/apt,185,30,4,2018-08-31,0.13,91,0 +30236202,BEST Bushwick Luxury Apt. 15-minutes to Manhattan,8998154,Gordon,Brooklyn,Bushwick,40.69347,-73.92448,Entire home/apt,99,2,12,2019-06-15,1.71,2,46 +30387280,"Stunning Tribeca 2BR w/ Indoor pool, Gym, Rooftop by Blueground",107434423,Blueground,Manhattan,Tribeca,40.716840000000005,-74.00544000000001,Entire home/apt,350,30,0,,,232,342 +9112463,"Cozy 1 bedroom, close to it all in Manhattan !",39916377,Jaclyn,Manhattan,Upper East Side,40.76295,-73.95725,Entire home/apt,145,6,49,2019-06-21,2.38,1,76 +16648338,"Airy, Open South Williamsburg Apartment",110026778,Sanja,Brooklyn,Williamsburg,40.70981,-73.96781,Private room,119,4,18,2018-10-29,0.59,1,0 +24958209,2 Bedroom Garden Getaway,65903420,Brendan,Brooklyn,Crown Heights,40.66673,-73.96158,Entire home/apt,139,3,43,2019-05-26,3.28,1,68 +27661175,Vibrant Neighborhood & Convenient Location 2BR,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69236,-73.93759,Entire home/apt,155,1,17,2019-05-26,1.65,9,118 +35482322,⚡Quiet Home in Center of Village,266797970,Javi,Manhattan,Greenwich Village,40.72938,-73.99955,Entire home/apt,249,2,1,2019-06-24,1.0,1,146 +35005134,Sonder | 116 John | Sleek Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70799,-74.00627,Entire home/apt,100,29,0,,,327,326 +23584507,♥Private Master Bath | Express Train+Free Parking☆,34177401,Nick,Brooklyn,East New York,40.67563,-73.87866,Entire home/apt,86,1,154,2019-07-05,9.53,2,311 +1232433,Manhattan Upper East Side 1bedroom,6721198,Susie,Manhattan,Upper East Side,40.78104,-73.94915999999999,Entire home/apt,135,1,190,2019-06-21,2.57,1,105 +3747567,Sunny Bedroom in El Barrio,522065,Liz And Melissa,Manhattan,East Harlem,40.79416,-73.93984,Private room,80,7,47,2019-05-23,0.8,2,121 +23610064,Private room w/memory foam QUEEN bed SUNNY space,130858402,Sam,Manhattan,East Village,40.72909,-73.98986,Private room,95,1,78,2019-07-02,4.79,1,5 +22290967,(Room 102)法拉盛舒适轻奢套房,75216989,Wenqin,Queens,Flushing,40.76475,-73.83,Private room,79,2,14,2019-06-12,1.71,4,320 +3265409,Charming Chelsea bedroom,5508109,Rivani,Manhattan,Chelsea,40.74956,-73.99671,Private room,90,3,2,2019-06-28,1.58,1,53 +23870093,Private Sunny Apt In Beautiful Brooklyn Brownstone,6570552,Hugo,Brooklyn,Bedford-Stuyvesant,40.68424,-73.93851,Entire home/apt,120,5,2,2018-09-25,0.2,1,301 +25774497,Sanctuary on Court Street (Carroll Gardens),61017447,Catherine,Brooklyn,Carroll Gardens,40.6755,-73.99806,Private room,100,2,35,2019-06-09,2.75,1,0 +2260042,Clean and pleasant Room in NYC,11503864,Omar,Queens,Astoria,40.76427,-73.91561999999999,Shared room,65,1,0,,,1,0 +15181451,Lifestlye Stay In Downtown Brooklyn,2390711,Chen,Brooklyn,Fort Greene,40.69404,-73.98066999999999,Entire home/apt,130,10,1,2016-11-13,0.03,1,0 +564184,CLEAN PRIVATE ROOM IN CHELSEA NYC,2378357,David,Manhattan,Chelsea,40.73971,-74.00220999999999,Private room,125,2,42,2019-05-31,0.5,1,172 +33775328,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,254607256,Heleen,Brooklyn,DUMBO,40.70416,-73.98999,Entire home/apt,250,30,0,,,2,365 +1411811,Charming Parlor Apt off Bleecker,4129805,Evelyn,Manhattan,West Village,40.73078,-74.00282,Entire home/apt,210,2,140,2019-06-10,2.1,5,319 +27010728,3rd Floor Art,183707967,Dionyssios,Manhattan,Washington Heights,40.85419,-73.93013,Entire home/apt,140,2,38,2019-05-28,3.3,4,176 +17866302,Harlem apt,22089863,Ali,Manhattan,Harlem,40.80533,-73.95049,Private room,75,1,2,2019-02-17,0.4,1,280 +16271818,Amazing & Unique Soho/Nolita One Bedroom,10263854,Andrew,Manhattan,Chinatown,40.71833,-73.99443000000001,Entire home/apt,250,1,29,2019-06-21,0.95,1,358 +31894643,Spacious 1BR with terrace in the heart of Brooklyn,27547703,Brent,Brooklyn,Brooklyn Heights,40.69712,-73.99306999999999,Entire home/apt,110,2,2,2019-06-09,0.53,1,0 +20783233,Quirky apt in great area,30536963,Sarah,Brooklyn,Bushwick,40.6958,-73.91362,Private room,49,2,71,2019-06-17,3.22,1,3 +1479731,Master Bedroom in Modern Loft Apt.,7809536,Brian,Brooklyn,Crown Heights,40.68007,-73.96334,Private room,89,3,147,2019-07-01,2.05,1,362 +27542342,2 beautiful & bright bedrooms in a renovated apt.,35660592,Luis,Queens,Elmhurst,40.7335,-73.87571,Private room,149,2,5,2019-06-10,0.46,6,340 +1887489,Gracious Brooklyn Limestone,9818634,Lara,Brooklyn,Prospect-Lefferts Gardens,40.66173,-73.95382,Entire home/apt,175,1,0,,,1,0 +35508218,Garden Flat,155137506,Dandey,Queens,Laurelton,40.68129,-73.74745,Entire home/apt,85,1,8,2019-07-06,8.0,1,166 +31946864,Sweet Private Room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76295,-73.98866,Private room,70,1,30,2019-06-10,6.08,2,193 +9275199,"Sunny, Spacious Apartment",48170780,Christopher,Brooklyn,Bedford-Stuyvesant,40.67936,-73.93388,Private room,46,1,0,,,1,0 +1598033,Staten Island Apartment - 2nd floor,7875272,Mary,Staten Island,Port Richmond,40.62947,-74.13378,Entire home/apt,250,30,1,2015-10-07,0.02,3,0 +23034152,Brand New Amazing 1 Bedroom Best Location,168465501,Ian,Manhattan,Upper West Side,40.7841,-73.97468,Entire home/apt,125,30,5,2019-05-17,0.34,4,220 +5320983,Beautiful bright renovated 2BR w Balcony-sleeps 5!,588270,Dikla,Brooklyn,DUMBO,40.7043,-73.98666999999999,Entire home/apt,189,2,177,2019-06-09,3.33,2,235 +15741448,"Convenient to JFK, La Guardia Airport and Dining",101712494,Alphanso,Queens,Rosedale,40.671040000000005,-73.73006,Private room,55,2,12,2018-09-01,0.37,2,355 +34653695,"Cozy, renovated Upper East Side apartment",5120563,Cristina,Manhattan,Upper East Side,40.76436,-73.95669000000001,Entire home/apt,210,2,2,2019-07-05,1.62,1,138 +32786031,Dream apartment facing Prospect Park,10783378,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65974,-73.96134,Entire home/apt,108,29,0,,,1,0 +29343523,Noho High Rise w/ Private Terrace,221071115,Ty,Manhattan,Greenwich Village,40.72836,-73.99925,Entire home/apt,300,7,0,,,1,80 +22292865,"BEDSTUY BK - PAD +SHORT/ LONG TERM STAYS +NO EVENTS",132130978,Mrs.,Brooklyn,Bedford-Stuyvesant,40.686440000000005,-73.93966999999999,Entire home/apt,150,1,50,2019-06-30,2.96,1,335 +23054077,"Sunny spacious apt in Greenpoint, Brooklyn",1655982,Jessica,Brooklyn,Greenpoint,40.729040000000005,-73.95433,Entire home/apt,180,45,0,,,1,326 +318187,"Huge, Sunny, Open Loft in Brooklyn",1633100,Ana,Brooklyn,Bushwick,40.70462,-73.9228,Entire home/apt,120,2,42,2019-06-20,0.48,1,238 +29281707,Riverside Private Room,220605010,Riverside,Manhattan,Washington Heights,40.83773,-73.94415,Private room,125,3,0,,,1,178 +20874859,Luxury Midtown Manhattan Condo with 24hr Doorman,26390396,Sam,Manhattan,Midtown,40.75288,-73.97703,Entire home/apt,209,2,25,2019-03-03,1.14,1,0 +23271408,Perfect shared male room on Manhattan! II,39528519,Max,Manhattan,Lower East Side,40.70987,-73.98689,Shared room,35,14,0,,,28,322 +19094871,"Bright, spacious, green BedStuy apartment",3457404,Madalina,Brooklyn,Bedford-Stuyvesant,40.68197,-73.94564,Entire home/apt,70,3,29,2019-03-16,1.16,1,0 +24039069,Lovely apartment in affluent area of Manhattan,154860771,Serenity,Manhattan,Upper East Side,40.77989,-73.95159,Entire home/apt,125,1,21,2019-05-20,1.44,1,25 +19218475,Cozy Private Large Bed in Prime Chelsea,134510659,Josif,Manhattan,Chelsea,40.743190000000006,-73.99636,Private room,90,14,0,,,1,0 +32734625,Private Room in a chill home 20 mins to Manhattan,241390361,Melissa,Brooklyn,Bedford-Stuyvesant,40.69424,-73.93415999999999,Private room,55,2,22,2019-07-01,5.2,1,45 +32989829,Entire Large one bedroom close to all areas of NYC,248286585,Maria,Bronx,Kingsbridge,40.88298,-73.8987,Entire home/apt,90,3,5,2019-06-30,1.38,1,321 +18705087,Times Square studio,104691618,Azi,Manhattan,Hell's Kitchen,40.75725,-73.9959,Entire home/apt,180,2,36,2019-06-20,1.4,1,2 +5928949,Convienent Midtown West getwaway!,28362995,Landa,Manhattan,Hell's Kitchen,40.76042,-73.99021,Entire home/apt,300,3,0,,,1,0 +35352171,Gorgeous 3BR townhouse+backyard! Close to subway!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68598,-73.91996999999999,Entire home/apt,200,3,0,,,2,41 +21747137,"Private Room & Bath - Modern Bldg, S. W'Burg, BK",4952512,Betsy And Dan,Brooklyn,Williamsburg,40.70719,-73.95411999999999,Private room,140,1,12,2019-05-11,0.85,1,156 +35155188,My Lovely and Spacious Home in the West Village :),264761028,Melissa,Manhattan,West Village,40.73128,-74.00475,Entire home/apt,179,3,5,2019-06-28,5.0,1,164 +47926,LUX APT IN TIMES SQUARE NEW BUILDING,218404,Claudia,Manhattan,Hell's Kitchen,40.76307,-73.99665,Entire home/apt,275,1,41,2019-06-26,0.38,1,299 +20087455,The Dream Room (Private Room),142812843,Eugene,Manhattan,East Harlem,40.78958,-73.93791999999999,Private room,85,1,10,2017-12-03,0.43,2,0 +35010433,温馨旅店(2),263740985,Yongqiu,Queens,Flushing,40.75291,-73.83135,Private room,80,1,2,2019-06-06,1.76,3,359 +10491207,Priv. Room in Bushwick near L Train,54081802,Urs,Queens,Ridgewood,40.70017,-73.91014,Private room,60,1,0,,,1,0 +16396753,Private room in the heart of East village,5212097,Chris,Manhattan,East Village,40.72258,-73.98148,Private room,100,3,5,2019-03-19,0.19,2,0 +13550120,NYC Welcomes You! Beautiful 2 BR-5 min from JFK.,51688993,Taran & Najla,Queens,Jamaica,40.68993,-73.80334,Entire home/apt,174,1,67,2019-06-23,1.81,2,340 +10072678,OPEN LOFT WITH PRIVATE BACKYARD,50687547,Michael,Brooklyn,Bedford-Stuyvesant,40.68843,-73.94537,Entire home/apt,89,5,10,2017-08-29,0.23,1,64 +8535125,Stay in Astoria's heart,44932338,Maria,Queens,Astoria,40.7657,-73.92469,Private room,100,2,15,2016-10-01,0.33,1,318 +9938066,Madison Avenue Studio Suite (4),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74892,-73.9828,Entire home/apt,110,30,7,2018-12-15,0.17,31,179 +30676471,Sofa-Bed in a modern and cozy apartment in Harlem,229450070,Gianluca,Manhattan,Harlem,40.82398,-73.93815,Shared room,45,2,15,2019-06-05,2.28,1,96 +15983174,Spacious Apartment in Park Slope Brownstone,103848813,David,Brooklyn,Park Slope,40.67595,-73.97635,Entire home/apt,149,11,8,2019-04-27,0.26,1,0 +16565202,The Rainbow Room on Prospect Park.,24690329,Victoria,Brooklyn,South Slope,40.66045,-73.98057,Private room,75,2,25,2018-08-26,1.06,1,0 +28084157,Couple room w/attached bath. In heart of Flushing,205745676,Liqin,Queens,Flushing,40.75746,-73.82013,Private room,89,1,28,2019-07-07,2.78,9,346 +15820512,Apartment with backyard in East Williamsburg,102415020,Guillermo,Brooklyn,Williamsburg,40.70653,-73.93864,Entire home/apt,109,4,91,2019-06-22,3.31,1,212 +32310733,Crash Space in BK for your NYC Adventure!,40146897,Eric,Brooklyn,Crown Heights,40.67302,-73.92134,Shared room,25,2,1,2019-02-20,0.21,5,29 +25465160,Shared Apartment By Times Square Hell’s Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76364,-73.98859,Shared room,65,1,63,2019-07-01,4.68,8,196 +2137714,Casa de La Musica,1193933,Yoruba,Brooklyn,Bushwick,40.68342,-73.91017,Entire home/apt,200,7,0,,,1,0 +9175286,"Quiet studio in the UES, Manhattan",47741973,Agnieszka,Manhattan,Upper East Side,40.76935,-73.95381,Entire home/apt,120,3,1,2015-11-10,0.02,1,0 +749455,Lovely Loft space near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77938,-73.98246999999999,Private room,99,1,353,2019-06-25,4.33,4,73 +21225854,"Bumble of Brooklyn, Large space",153378241,Victoria,Queens,Ridgewood,40.6999,-73.90059000000001,Private room,48,3,2,2018-01-04,0.11,1,0 +13530958,Basically Your Own Apartment: Cobble Hill Gem,3302537,Marielle,Brooklyn,Cobble Hill,40.68796,-73.99229,Entire home/apt,120,1,2,2016-07-29,0.05,1,0 +30230938,Modern looking private room in Brooklyn's heart,48692009,Luc,Brooklyn,Flatbush,40.64627,-73.95396,Private room,50,1,0,,,1,0 +30747562,BedStuy cozy + convenient private room and bath,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68061,-73.91693000000001,Private room,37,1,29,2019-06-19,4.58,2,10 +12774975,Hamiliton Heights Home,33363604,Lauren,Manhattan,Harlem,40.81934,-73.95668,Private room,50,2,0,,,1,0 +30463017,Classy welcoming 3-bedroom - 20 Mins to Manhattan,212456912,Mora,Brooklyn,Bushwick,40.69058,-73.91402,Entire home/apt,125,2,22,2019-07-06,3.22,1,122 +1347175,NYC from River dale's Perspective,7309046,Bojana,Bronx,Kingsbridge,40.88166,-73.91103000000001,Private room,90,3,0,,,1,353 +11687738,1 Bedroom with Outdoor Space,61391963,Corporate Housing,Manhattan,Upper East Side,40.76087,-73.96217,Entire home/apt,117,30,9,2019-05-31,0.27,91,173 +30423106,Lou's Palace-So much for so little,228415932,Louann,Queens,Rosedale,40.65417,-73.74158,Private room,45,1,37,2019-07-08,20.94,1,134 +25002172,Private room in the Bronx for females & couples.,188218993,Suleyma,Bronx,Kingsbridge,40.8801,-73.89709,Private room,46,1,68,2019-06-21,4.89,1,63 +30153527,"Spacious Renovated Bright, by Prospect Park",14987061,Vera,Brooklyn,Flatbush,40.6478,-73.96091,Entire home/apt,125,2,3,2019-06-16,0.4,1,1 +7327782,Light-Drenched Private 1 Bedroom,38388018,Ruth,Brooklyn,Crown Heights,40.66664,-73.92805,Private room,64,2,56,2019-06-27,2.65,1,184 +13186447,The Hudson,73764539,Ed,Manhattan,Washington Heights,40.85241,-73.9368,Entire home/apt,99,2,3,2017-05-10,0.08,1,0 +17824351,"Heart of East Village, Middle of Everything",30381715,Sean,Manhattan,East Village,40.72552,-73.98657,Private room,79,4,1,2017-05-13,0.04,1,0 +16313932,Micro Room A,59529529,Han,Manhattan,Hell's Kitchen,40.76275,-73.99525,Private room,70,1,178,2019-07-03,5.75,6,146 +3908094,Spacious Comfy Bedroom in Bushwick,5879951,Marine,Brooklyn,Williamsburg,40.70617,-73.93674,Private room,68,5,5,2017-09-20,0.11,1,0 +2517989,1BR on Quiet Block in Nolita,9229424,John,Manhattan,Nolita,40.72276,-73.99499,Entire home/apt,145,2,52,2019-06-18,0.86,1,0 +34894968,Cosy two-bedroom Prospect Park Apartment,263013451,Julia,Brooklyn,Flatbush,40.64522,-73.95815999999999,Entire home/apt,160,3,0,,,1,125 +15517104,Top floor of a charming Brooklyn townhouse,1486872,Kelly,Brooklyn,Gowanus,40.66881,-73.99178,Entire home/apt,147,5,85,2019-02-24,2.58,2,0 +9562515,Duplex in Historic Fort Greene,253057,Jim,Brooklyn,Fort Greene,40.68965,-73.97169,Entire home/apt,220,55,10,2018-05-07,0.23,1,0 +22400568,Perfect Beautiful Modern House in NYC Summer,12898987,Johan,Queens,Ditmars Steinway,40.77537,-73.90279,Entire home/apt,150,3,49,2019-06-05,2.74,1,324 +13377893,Spacious Room in Bushwick,74339725,Giselle,Brooklyn,Bushwick,40.69539,-73.9285,Private room,55,7,7,2019-06-18,0.19,1,0 +19640913,Cozy Room In Perfect Location!,129627362,Florangie,Manhattan,Washington Heights,40.85039,-73.93855,Private room,70,2,9,2018-04-06,0.37,1,8 +8532876,中央公园旁的现代公寓,34021565,Yujun,Manhattan,Upper West Side,40.79401,-73.96432,Private room,80,1,0,,,1,0 +31098262,1 Bedroom/1 Bath Apt in Hudson Yards/Midtown West,232364825,Kusum&Kannan,Manhattan,Chelsea,40.75286,-73.99693,Entire home/apt,250,1,1,2019-01-01,0.16,1,0 +9853884,1 Month Huge 1 Bdr UWS Morningside,50727041,Tristan,Manhattan,Morningside Heights,40.81536,-73.96246,Private room,45,15,0,,,1,0 +1264920,BEAUTIFUL UPPER WEST SIDE SANCTUARY,6882340,Patricia,Manhattan,Upper West Side,40.78815,-73.9737,Shared room,165,3,21,2015-10-12,0.29,1,363 +655783,Chic Luxe 1BR 1.5BA 900sf -Midtown ,3301845,Alana,Manhattan,Midtown,40.75663,-73.96681,Entire home/apt,285,7,10,2019-07-06,3.53,1,0 +14805984,"Cozy NY Apt, Central to transport-LIVE as a LOCAL-",92509632,Nelly,Brooklyn,Canarsie,40.63949,-73.90585,Entire home/apt,80,2,83,2018-03-11,2.42,1,0 +27472111,"Private .5 bath/ Queen Room Bushwick Brooklyn, NYC",2885704,Victor,Brooklyn,Bushwick,40.69383,-73.92068,Private room,35,2,43,2019-06-23,4.08,2,15 +13135589,"Clean and Spacious Apt. in Bay Ridge, Brooklyn, NY",73179534,Iman,Brooklyn,Fort Hamilton,40.61778,-74.02736,Private room,70,2,8,2018-11-04,0.59,1,0 +22635959,Private room with visit to queens # 3,158540605,Sonia,Queens,Glendale,40.70116,-73.88935,Private room,45,1,61,2019-07-02,3.52,6,274 +4774924,Sunny and Quiet Williamsburg Room,6465286,Masha,Brooklyn,Williamsburg,40.71217,-73.96367,Private room,100,2,32,2018-10-07,0.55,2,74 +31389838,The Perfect Stay in West Village,15074983,Kav,Manhattan,West Village,40.73169,-74.00214,Private room,110,7,13,2019-06-21,2.23,1,13 +31058866,ENTIRE One Bedroom Apt Available 7/21-8/16,23662073,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.95135,Entire home/apt,70,7,0,,,1,14 +24266273,Cozy Private Room in Downtown Flushing法拉盛中心私人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76525,-73.83055,Private room,45,1,101,2019-07-07,7.03,3,33 +18894445,Practical & Affordable Flat on Subway to Manhattan,2988712,Sasha,Bronx,Mount Hope,40.85152,-73.90374,Entire home/apt,48,90,2,2018-11-30,0.16,7,93 +30527535,Spacious & Cozy Master BR - Nearby Prospect Park,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66147,-73.9415,Private room,55,1,32,2019-06-30,4.66,7,7 +26819776,Greatest room in the city,201696839,Chloe,Brooklyn,Downtown Brooklyn,40.69608,-73.98384,Private room,100,1,26,2019-06-08,2.27,1,131 +13710241,A Cozy Bedroom in 2 Bedroom Apt,6110471,Yarynka,Manhattan,Harlem,40.801,-73.95833,Private room,110,1,23,2019-06-09,1.0,1,146 +20504573,Prime Midtown Location - Near Tourist Locations,121869120,Tabitha,Manhattan,Midtown,40.75257,-73.96853,Entire home/apt,127,1,0,,,1,0 +12472230,Cozy Cat Cave in Bushwick,51520084,Samantha,Brooklyn,Bedford-Stuyvesant,40.69687,-73.93542,Private room,60,1,0,,,1,0 +28560837,Rock Rock Rockaway Beach House,92523072,Bill,Queens,Rockaway Beach,40.58862,-73.81276,Entire home/apt,150,2,14,2019-07-03,7.24,1,97 +20872030,"Prime Location in Manhattan, near Central Park",41499146,Arata,Manhattan,Harlem,40.8062,-73.95528,Entire home/apt,164,2,11,2019-06-30,0.51,1,18 +28369307,Modern & Sunny Room near Museum Mile,4128972,Alina,Manhattan,East Harlem,40.79388,-73.94594000000001,Private room,105,1,33,2019-06-30,3.41,1,26 +13752982,Two Bedroom on the Upper East Side,80593607,Theodore,Manhattan,Upper East Side,40.77788,-73.95615,Entire home/apt,105,1,3,2016-08-23,0.08,1,0 +35970386,Brooklyn 3BD family oasis w/ walk to Prospect Park,4336488,Francesca,Brooklyn,Prospect-Lefferts Gardens,40.66365,-73.94611,Entire home/apt,135,3,0,,,1,9 +17497776,Private apartment in Hamilton Heights,114093125,Eileen,Manhattan,Harlem,40.8269,-73.93634,Entire home/apt,100,4,65,2019-06-20,2.3,1,48 +35898731,#4 Hotel-Like LOFT Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69311,-73.86525999999999,Private room,50,1,4,2019-07-07,4.0,8,283 +32725374,Bay Bungalow Bare-Minimum Occupancy,762610,Christopher,Queens,Arverne,40.599,-73.79603,Private room,35,3,11,2019-06-05,2.73,2,54 +9843277,Columbia apartment - Upper West,4210456,Ignacio,Manhattan,Morningside Heights,40.80638,-73.96245,Entire home/apt,75,15,0,,,1,0 +21253783,Home - away from home [Columbus Crcle/Central Prk],19541889,Eric,Manhattan,Upper West Side,40.76858,-73.9847,Entire home/apt,253,3,1,2017-12-28,0.05,1,0 +24526035,"HOTEL ROOM LIKE!! WITH AFFORDABLE RATE!! ""R""",59156312,Viviana,Queens,Woodhaven,40.68765,-73.865,Private room,99,3,24,2019-06-10,1.64,9,343 +23344293,Cozy 2,156505456,John,Brooklyn,East New York,40.66122,-73.88672,Private room,52,3,23,2019-05-27,1.37,13,90 +21484161,Cozy Brownstone Apartment in South Harlem,156047478,Doron,Manhattan,Harlem,40.80639,-73.94829,Entire home/apt,105,30,5,2019-06-02,0.28,2,195 +23980622,Manhattan private room 2 Columbia university area,180380802,Avner,Manhattan,Harlem,40.81312,-73.95364000000001,Private room,65,1,11,2019-05-07,0.71,4,365 +21846856,Sunny Private Room in a Cozy Shared Apartment,48735753,Amruta,Manhattan,Harlem,40.81589,-73.9446,Private room,36,2,0,,,1,0 +33689653,Brooklyn Bliss 3,44929652,Lawanne,Brooklyn,East Flatbush,40.64423,-73.94683,Private room,50,2,2,2019-06-24,2.0,4,356 +25755215,Art Filled Bohemian Chic,193583966,Jean,Brooklyn,Williamsburg,40.71681,-73.95729,Entire home/apt,135,5,14,2019-06-16,1.12,1,44 +17224372,Friendly Room 20-202,115993835,Shimin,Brooklyn,Sunset Park,40.63992,-74.0076,Private room,28,1,31,2019-03-10,1.08,5,1 +5056421,1 BR Apartment in UES - 5' walk to CentralPark,13220337,Brian,Manhattan,East Harlem,40.79213,-73.94974,Entire home/apt,150,3,27,2019-05-24,0.5,1,0 +26004876,Ivoire Realty,181711840,Christophe,Bronx,University Heights,40.86259,-73.90359000000001,Private room,65,1,2,2018-08-28,0.19,2,0 +30096719,Small studio in historic Clinton Hill,188896,Ellen,Brooklyn,Clinton Hill,40.6887,-73.96668000000001,Entire home/apt,98,1,32,2019-07-02,4.1,2,257 +20308703,Great chance to live in a great new 2br apartment!,144868702,Polina,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92674,Entire home/apt,165,3,1,2017-09-15,0.05,1,0 +23586315,"Comfort, light and calm just 3 minutes from mid-town",76939238,Fiorella,Manhattan,Roosevelt Island,40.75988,-73.95097,Entire home/apt,130,2,3,2018-04-10,0.2,2,300 +34907354,You can find everything in the neighborhood.,246351353,Erica,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.95952,Private room,42,2,12,2019-07-08,9.47,1,53 +8326389,Exquisite Apartment in Hip Hamilton Heights,43893277,Edward,Manhattan,Harlem,40.82523,-73.95383000000001,Private room,85,3,37,2019-06-11,0.81,1,61 +30088327,Lower East Side luxury one bedroom apartment,75404627,Nadia,Manhattan,Lower East Side,40.71022,-73.99163,Entire home/apt,195,3,14,2019-06-10,1.93,1,158 +4707057,"Private, sunny room!",6327629,Bb,Manhattan,Harlem,40.82502,-73.94404,Private room,90,3,1,2014-12-08,0.02,1,0 +10801474,Spacious room in a 3 bedroom Apt,55908144,Setareh,Manhattan,Harlem,40.81389,-73.95205,Private room,45,7,6,2016-08-11,0.15,1,0 +27546295,Large cozy NY room near Times Square 51E4,190921808,John,Manhattan,Hell's Kitchen,40.75412,-73.99651,Private room,55,7,1,2019-05-25,0.65,47,360 +5538353,Home 4 Medical Professionals-KingsC,26377263,Stat,Brooklyn,Prospect-Lefferts Gardens,40.65604,-73.94221,Private room,45,30,0,,,43,361 +31898478,Skylit Bedroom In Brooklyn,3734323,Colin,Brooklyn,Bushwick,40.68629,-73.91245,Private room,49,2,15,2019-06-22,2.8,3,0 +29776064,New York Home with a View,51338091,Vander,Manhattan,Harlem,40.82816,-73.93826999999999,Entire home/apt,130,7,1,2019-01-06,0.16,1,280 +30233548,"Relaxing, Riverbank Park, West Harlem",45835291,Shareef,Manhattan,Harlem,40.82206,-73.95573,Private room,50,7,35,2019-06-27,4.73,6,11 +1132201,Cozy North Park Slope Apartment,712590,Erin,Brooklyn,Prospect Heights,40.68034,-73.97321,Private room,130,2,8,2018-06-24,0.11,1,0 +13497388,Luxury 1 Bedroom in Midtown/Time Square with View,6736799,Sue,Manhattan,Theater District,40.75948,-73.98631,Private room,169,5,19,2018-12-07,0.51,1,88 +1461873,"Cozy, quiet single room in Brooklyn brownstone",279845,Chantille & Linda,Brooklyn,Prospect Heights,40.6762,-73.96670999999999,Private room,68,3,11,2019-01-27,0.33,2,187 +26861684,NYC - Brooklyn Haven,46182994,Dolphy,Brooklyn,Flatlands,40.63183,-73.92229,Entire home/apt,110,2,30,2019-05-26,2.51,1,327 +29653333,Yankee stadium pad,127828600,Brey,Bronx,Concourse,40.82773,-73.92308,Private room,100,1,2,2018-12-27,0.26,1,177 +8889423,Beautiful Upper West Side Large 1BD,10328631,Yulia,Manhattan,Upper West Side,40.78671,-73.97825,Entire home/apt,150,2,11,2016-06-26,0.24,1,0 +16678888,Peaceful Spacious 1 Bdrm Apt in Carroll Gardens,1380312,Shari,Brooklyn,Carroll Gardens,40.67735,-73.99706,Entire home/apt,175,7,17,2019-03-24,0.58,1,0 +35699079,Harlem Retreat,57627694,Olga,Manhattan,Harlem,40.82339,-73.95106,Entire home/apt,91,1,0,,,1,50 +9042254,Beautiful & Spacious EV Bedroom,47187008,Francesca,Manhattan,East Village,40.72737,-73.98605,Private room,90,7,0,,,1,0 +2931595,Light filled SoHo walk-up,846521,James,Manhattan,SoHo,40.7241,-74.0042,Entire home/apt,250,2,18,2019-06-30,1.83,1,9 +24674269,Brooklyn sleepytime art studio,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69403,-73.94487,Private room,48,2,80,2019-06-28,5.93,2,45 +13606337,"Spacious and clean room, near Columbia University",78727422,Xiaoxu,Manhattan,Morningside Heights,40.80325,-73.96433,Private room,50,10,1,2016-07-19,0.03,1,0 +22382300,The heart of West Village - close to everything,10347684,Michael,Manhattan,West Village,40.73061,-74.00325,Entire home/apt,190,6,2,2018-05-06,0.12,1,0 +1971540,Sunny Midtown NYC Room,10179999,Joseph,Manhattan,Upper West Side,40.77021,-73.98721,Private room,150,1,157,2019-06-28,2.49,1,365 +19160912,Spacious Guest room in beautiful Wash. Heights,1728792,Brittany,Manhattan,Washington Heights,40.84437,-73.94328,Private room,70,3,2,2019-06-08,0.53,1,173 +5301003,Newly renovated 1BR+ in Park Slope,1763862,Jing,Brooklyn,South Slope,40.66485,-73.98543000000001,Entire home/apt,160,1,111,2019-06-22,2.23,1,253 +6201914,"Plush King Size Bed, Great Location",9671470,Jacob,Manhattan,Harlem,40.81422,-73.95199000000001,Private room,75,2,129,2019-06-22,3.01,2,6 +35156995,Charming Brooklyn Brownstone,264774047,Traylor,Brooklyn,Fort Greene,40.68495,-73.97039000000001,Private room,125,2,1,2019-06-14,1.0,1,87 +24464665,Spacious private bedroom with high ceilings,28046572,Dier,Brooklyn,Bedford-Stuyvesant,40.68869,-73.93449,Private room,35,20,1,2018-07-16,0.08,1,0 +35189446,Spacious And Sunny Luxurious 1 Bedroom Apartment,132699715,Ed,Manhattan,Hell's Kitchen,40.76645,-73.99101,Entire home/apt,200,1,2,2019-06-23,2.0,1,81 +22789426,"Newly Refurbished MIDTOWN Condo, PRIVATE BATHROOM",38638199,Rolland,Manhattan,Midtown,40.75721,-73.96813,Private room,50,1,18,2018-07-30,1.01,1,0 +12903772,"Luxury Studio + Gym, Rooftop, Elevator!",70646170,Andrew,Manhattan,Upper West Side,40.79167,-73.97273,Entire home/apt,200,2,6,2016-07-30,0.16,1,0 +22204187,"Cozy, clean studio in Nolita",18011536,Buster,Manhattan,Chinatown,40.71799,-73.9964,Entire home/apt,125,2,0,,,1,0 +16212767,Studio with private entrance near Central Park.,6082745,Tracey,Manhattan,Upper West Side,40.78361,-73.9732,Entire home/apt,225,10,14,2019-04-24,0.52,1,11 +5536560,"Classy neighborhood, close to everything.",257479,Colleen,Manhattan,Upper West Side,40.78257,-73.97681,Entire home/apt,150,14,6,2017-03-05,0.12,1,0 +21565383,"Private bedroom 10 min to LGA, 15 min to Manhattan",153410151,Tom,Queens,Astoria,40.7674,-73.92656,Private room,69,1,129,2019-07-07,6.29,1,349 +16100652,CHARMING HOME with TONES OF LIGHT & GREAT DESIGN,88191,Bea,Brooklyn,Carroll Gardens,40.6799,-73.99722,Entire home/apt,290,6,3,2017-08-28,0.1,1,0 +11359026,One bedroom apt near Times Square,59499901,Nate,Manhattan,Hell's Kitchen,40.76189,-73.98961,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +11720001,Private Clean Bright Apt. in Harlem,62320186,Doris,Manhattan,Harlem,40.81327,-73.94628,Entire home/apt,190,2,46,2019-07-01,1.17,1,323 +27220502,Large sunny private room near Times Sq. 43D3,190921808,John,Manhattan,Hell's Kitchen,40.75516,-73.99547,Private room,120,7,1,2019-04-26,0.41,47,338 +29760721,Room M near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.8043,-73.96342,Private room,75,1,37,2019-06-19,4.72,3,10 +321014,Big Bright E Village 2BR (Baby Nursery),1644452,Erin,Manhattan,Gramercy,40.73294,-73.98281999999999,Entire home/apt,245,5,18,2018-01-02,0.21,1,0 +7286166,Private room & bath in modern apt,5369287,Tatiana,Brooklyn,Williamsburg,40.70995,-73.96722,Private room,130,1,13,2017-05-08,0.28,1,188 +2425980,"Cozy BR in Hamilton Heights, Harlem",9915185,Sarah,Manhattan,Harlem,40.82301,-73.94906999999999,Private room,65,2,2,2015-10-12,0.04,1,0 +29967445,Cozy Studio NYC getaway,83650675,Nikki,Manhattan,Harlem,40.81662,-73.93687,Entire home/apt,75,1,10,2019-06-30,1.42,1,361 +30901275,The Den - 3 mins to JFK,223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66284,-73.76961999999999,Private room,45,1,17,2019-06-11,2.6,3,0 +23004845,Oasis bedroom for solo travelers,241559,Demi,Brooklyn,Crown Heights,40.67697,-73.96316999999999,Entire home/apt,115,3,37,2019-06-21,2.29,1,13 +5846745,"Spacious room in fun, quiet house",24561040,Ame,Brooklyn,Park Slope,40.68018,-73.97596,Private room,115,2,153,2019-07-05,3.0,3,0 +9716234,Cozy with Great location !!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59878,-73.95425,Shared room,35,1,104,2019-07-08,2.45,5,352 +21540496,Stylish 1 BD - 10 min to Manhattan & Central Park,156587568,Anna,Queens,Astoria,40.76129,-73.92009,Entire home/apt,123,1,56,2019-06-14,2.73,1,126 +22579760,Bright private bedroom w/queen bed and parking,165985048,Xing,Queens,Forest Hills,40.72616,-73.84328000000001,Private room,78,1,15,2019-06-17,0.96,1,178 +600877,Rare Loft Apt in Heart of Brooklyn,2973437,Kevin + Casey,Brooklyn,Boerum Hill,40.68379,-73.98313,Entire home/apt,180,3,2,2015-12-29,0.05,1,0 +35915753,Sunny huge Apartment,167819022,Nell,Queens,Briarwood,40.71316,-73.81953,Entire home/apt,85,5,1,2019-06-22,1.0,1,54 +33493759,The Yorkville Club House,252386106,Derrick,Manhattan,Upper East Side,40.78045,-73.94688000000001,Private room,105,1,19,2019-07-07,6.71,1,9 +33269114,Wake up to Statue of Liberty view,247815136,Mina,Manhattan,Financial District,40.7071,-74.01556,Entire home/apt,300,2,0,,,1,365 +33907604,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70722,-73.89614,Private room,34,30,1,2019-05-26,0.68,23,281 +31178012,Cozy JFK,146275359,Modupe,Queens,St. Albans,40.68985,-73.75265,Private room,42,4,10,2019-06-24,1.56,3,189 +666315,BEDFORD AVE STUDIO APT WITH GARDEN,1486465,Carlo,Brooklyn,Williamsburg,40.71157,-73.9636,Entire home/apt,100,31,15,2015-10-12,0.18,1,223 +4076084,Alcove Studio & Terrace best part of Williamsburg!,7116594,Russell,Brooklyn,Williamsburg,40.71009,-73.96471,Entire home/apt,132,3,2,2017-12-30,0.05,1,0 +34392437,"Quiet, Convenient 1-Bedroom in Morningside Heights",259447786,Jacob,Manhattan,Morningside Heights,40.80735,-73.95938000000001,Entire home/apt,150,2,4,2019-06-23,2.55,1,101 +15562465,"Spacious Apt on the Park, 1 blk from L Train",7149725,Katie,Brooklyn,Bushwick,40.70236,-73.92232,Entire home/apt,185,5,2,2016-11-26,0.06,1,0 +28668879,Lefferts Garden! Real Brooklyn flavor!,330123,Nicole And Adrian,Brooklyn,Flatbush,40.65458,-73.95676999999999,Entire home/apt,80,5,3,2018-10-25,0.33,1,0 +27733464,Beautiful shared place in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.798840000000006,-73.9424,Shared room,49,2,25,2019-05-09,2.31,9,12 +19902776,Beautiful 2br apt. in heart of historic Harlem,140931908,Daniela,Manhattan,East Harlem,40.81033,-73.93874,Entire home/apt,200,2,9,2019-06-25,0.38,1,27 +182069,Cozy studio Apartment in Upper East,39260,Mat,Manhattan,East Harlem,40.79056,-73.9468,Entire home/apt,120,2,86,2019-06-20,0.91,1,268 +18599156,Great Studio ( Midtown West 48th street),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76435,-73.99337,Entire home/apt,125,30,3,2018-06-02,0.14,31,342 +8651132,Simple clean room,9917136,Rani,Brooklyn,Crown Heights,40.677,-73.92363,Private room,40,1,22,2019-04-20,0.5,3,67 +6106544,Beautiful HUGE Studio.. 52ST 3AVE.,1475015,Mike,Manhattan,Midtown,40.75621,-73.96802,Entire home/apt,85,30,4,2018-12-03,0.12,52,342 +27852878,Lush mid-century haven in Greenpoint,117030530,Laine,Brooklyn,Greenpoint,40.73347,-73.95164,Private room,80,3,2,2018-11-24,0.2,1,0 +18949137,"Clean and Simple 1-Bedroom, Steps from University",33683538,Frank,Manhattan,Morningside Heights,40.81002,-73.95958,Entire home/apt,120,12,11,2019-04-22,0.43,1,0 +29051948,Industrial Loft Living in NYC,63952962,Drew,Bronx,Mott Haven,40.81102,-73.92778,Entire home/apt,81,4,5,2019-05-28,0.62,1,0 +27703016,New York Apartment,157209452,Mansi,Manhattan,Nolita,40.72194,-73.99557,Private room,120,1,9,2018-10-20,0.85,1,179 +3331279,Spacious Brooklyn Townhouse,3840659,Alicia And Jamie,Brooklyn,Bedford-Stuyvesant,40.6851,-73.95655,Entire home/apt,215,4,14,2018-04-05,0.23,1,0 +33216433,The Shambhala House,70393914,Danalee,Brooklyn,East Flatbush,40.64627,-73.92014,Private room,58,2,2,2019-07-07,2.0,1,126 +12426957,Room for 2,20069770,Bryant,Brooklyn,Bushwick,40.69336,-73.9213,Private room,45,2,2,2017-06-16,0.08,1,0 +16458,Light-filled 2B duplex in the heart of Park Slope!,64056,Sara,Brooklyn,Park Slope,40.67343,-73.98338000000001,Entire home/apt,225,3,4,2017-09-24,0.16,1,0 +9864900,SPACIOUS MIDTOWN APT WITH BACKYARD,50770601,Diana,Manhattan,Midtown,40.75622,-73.96467,Entire home/apt,229,1,0,,,5,306 +13407476,Spacious Midtown East 2 Bedroom,61391963,Corporate Housing,Manhattan,Midtown,40.75608,-73.96895,Entire home/apt,200,30,2,2018-03-31,0.12,91,101 +20942199,LUXURY BROADWAY/FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70903,-74.01401,Entire home/apt,235,30,0,,,33,351 +33673071,COUCH SURF in Gorgeous apt. Have own open room!,33151563,Regine,Queens,Flushing,40.76308,-73.82215,Private room,63,2,1,2019-06-13,1.0,2,0 +23986569,Manhattan private room 3 Columbia university,180380802,Avner,Manhattan,Harlem,40.81205,-73.95322,Private room,65,1,4,2019-06-02,0.28,4,365 +12564287,Modern & cosy Bronx apt w/ parking,11761831,Lydie,Bronx,Wakefield,40.89118,-73.84987,Entire home/apt,99,3,68,2019-04-30,1.78,1,2 +29304787,Peaches Paradise 2,101499766,Claudette,Queens,Springfield Gardens,40.6831,-73.75525999999999,Private room,50,1,29,2019-07-06,4.53,2,347 +22266234,Huge 3 bedroom in Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76405,-73.98877,Entire home/apt,329,7,1,2018-03-26,0.06,3,89 +12321473,Chic Greenwich Village One Bedroom,32924486,Alysha,Manhattan,Greenwich Village,40.73064,-73.99937,Entire home/apt,195,7,0,,,1,0 +609213,"Cozy 1BR apart. in Prospect Hts, BK",3019795,Marta,Brooklyn,Prospect Heights,40.67293,-73.96399,Entire home/apt,125,5,7,2015-12-31,0.08,1,0 +13992183,Large Sunny Bedroom in Prospect Heights,20283580,Lucien,Brooklyn,Prospect Heights,40.67921,-73.97241,Private room,55,4,0,,,1,0 +29794702,Spacious 1BR BK Hideaway Steps from Prospect Pk,20241112,Mariela,Brooklyn,Prospect-Lefferts Gardens,40.65581,-73.95732,Entire home/apt,85,3,12,2019-05-31,1.6,1,263 +26606648,"Big, Pretty & Right in the City!",7718759,Kelly,Manhattan,Harlem,40.82763,-73.94404,Private room,63,1,19,2019-07-02,7.92,2,16 +21311288,Central Park Smart Home,5644804,Ben,Manhattan,Upper West Side,40.778690000000005,-73.97658,Entire home/apt,300,2,31,2019-06-14,1.57,1,99 +20956802,Private cozy and large room(103),75216989,Wenqin,Queens,Flushing,40.76376,-73.83094,Private room,55,1,40,2019-05-26,1.83,4,342 +20572801,"Beautiful, sunlit private room in Spanish Harlem",133924344,Michele,Manhattan,East Harlem,40.792,-73.94521999999999,Private room,79,1,68,2019-04-27,3.02,1,0 +20118160,"Big guest room,queen bed,Cozy decoration apartment",142997033,Ozge,Brooklyn,Sheepshead Bay,40.59449,-73.95166,Private room,53,2,9,2019-07-05,2.87,1,357 +28309196,"Live, Work, Play In Williamsburg!",45519906,Aliu,Brooklyn,Williamsburg,40.70904,-73.95198,Private room,200,3,5,2019-01-05,0.53,1,85 +371138,"Comfy Brooklyn 2BD, W/ Backyard",1869567,Max,Brooklyn,Greenpoint,40.72488,-73.94013000000001,Entire home/apt,190,2,5,2015-10-12,0.1,1,0 +18997373,"Brooklyn 3 BDR Townhouse: style, comfort, location",92987625,Jake,Brooklyn,Clinton Hill,40.68277,-73.95886,Entire home/apt,225,3,0,,,1,0 +6362662,Private room 3min from Bedford stop,33149697,Signe,Brooklyn,Williamsburg,40.72026,-73.96110999999999,Private room,65,1,0,,,1,0 +320865,Harlem on the Range,1643782,Katy,Manhattan,Harlem,40.8076,-73.94433000000001,Entire home/apt,135,30,25,2019-03-31,0.28,1,249 +9677744,Affordable Studio next to Subway,50001302,David,Manhattan,Harlem,40.82476,-73.9438,Entire home/apt,77,4,63,2018-04-16,1.56,1,0 +31086356,HOME AWAY,85664849,Ismail,Brooklyn,Crown Heights,40.67637,-73.91351999999999,Private room,60,1,6,2019-06-08,1.5,1,327 +36237507,Amazing private bedroom next to Central Pk & Sub,272557714,Eva,Manhattan,Upper West Side,40.79993,-73.96475,Private room,137,3,0,,,1,44 +34172128,Two bedrooms/ 1.5 restrooms in welcoming home!,238733096,Roy,Queens,Richmond Hill,40.68201,-73.83023,Private room,100,2,0,,,2,160 +27727442,Williamsburg Proper,9761047,Anika,Brooklyn,Williamsburg,40.71532,-73.96209,Private room,60,3,29,2019-06-28,3.19,3,61 +25417007,Big bright room with private entrance,21552055,Shelley,Brooklyn,Greenpoint,40.72678,-73.95087,Private room,156,1,29,2019-06-24,2.33,2,4 +22345676,Bushwick/BedStuy Studio Apartment,2921109,Alice,Brooklyn,Bedford-Stuyvesant,40.69104,-73.92886,Entire home/apt,104,2,31,2019-06-06,1.69,1,166 +25180598,Cozy private room in Williamsburg 2 stops to city,182363374,Jimmy,Brooklyn,Greenpoint,40.727540000000005,-73.95674,Private room,105,1,24,2019-03-27,1.77,7,32 +29282185,2MinToTrainsCozyLivingRoomMaimonideLutheranHospita,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65595,-74.00274,Shared room,45,1,8,2019-05-18,0.93,4,332 +34774436,Beautiful private bedroom in Brooklyn,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68718,-73.94797,Private room,56,1,2,2019-06-17,1.58,3,0 +35463686,"Rento mi sofá cama , en mi apartamento. Vivo solo",57201275,Jesús,Queens,Astoria,40.75942,-73.92600999999999,Shared room,45,2,1,2019-06-22,1.0,1,84 +14570408,Private room in 2 BR on Woodside,70769144,Byungdo,Queens,Woodside,40.75105,-73.90151999999999,Private room,30,7,1,2016-12-01,0.03,1,0 +13254864,2 Bed 1 Bedroom Flex Apartment - Greenwich Village,74573695,Ozge,Manhattan,Greenwich Village,40.72838,-73.99899,Entire home/apt,200,7,38,2019-06-30,1.03,1,205 +34339714,Simply but comfy,246887851,Yuvraj,Queens,Elmhurst,40.74184,-73.88393,Private room,42,2,6,2019-06-29,2.77,1,292 +18024956,Lovely Bedroom Suite with Private Entrance,15185649,Beebe,Brooklyn,Bedford-Stuyvesant,40.68295,-73.92536,Entire home/apt,82,2,134,2019-06-21,4.93,2,238 +24349922,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70324,-73.91353000000001,Private room,47,4,5,2018-10-25,0.36,2,0 +12813050,Family Friendly Gramercy Park Gem,30789837,Shane,Manhattan,Gramercy,40.73682,-73.98336,Entire home/apt,195,5,1,2016-05-13,0.03,1,0 +7601496,Spacious 1BR in Williamsburg,39706334,Erin,Brooklyn,Williamsburg,40.71009,-73.95398,Entire home/apt,140,1,0,,,1,0 +12611122,"Styled, Spacious Ft Greene Studio",6444711,Emily,Brooklyn,Fort Greene,40.68672,-73.97555,Entire home/apt,150,2,7,2017-05-15,0.19,1,0 +9531437,Room in Seaport (Financial District,4455698,Pierre,Manhattan,Two Bridges,40.70889,-73.99964,Private room,100,20,2,2019-05-10,0.25,3,330 +2376206,Hell's Kitchen- Times Square,12140561,Danielle,Manhattan,Hell's Kitchen,40.763940000000005,-73.99448000000001,Entire home/apt,100,1,0,,,1,4 +33347084,Studio in Brooklyn,75760509,Mohamed,Brooklyn,Gravesend,40.60245,-73.9814,Entire home/apt,80,2,3,2019-05-28,1.03,1,16 +9777601,Sunny East Village Apartment,2491622,Katherine,Manhattan,East Village,40.72745,-73.98979,Private room,200,1,0,,,1,0 +14976368,Cozy apt. Heart of Williamsburg NYC,4025366,Dana,Brooklyn,Williamsburg,40.71156,-73.95454000000001,Entire home/apt,150,2,14,2019-06-15,0.41,1,363 +4924590,Beautiful Apartment near subway,25365628,Brian,Queens,Woodside,40.74468,-73.91102,Entire home/apt,90,1,0,,,1,0 +31677547,NEW Williamsburg Gardens Large Room Private Bath,86604612,Janet,Brooklyn,Williamsburg,40.70624,-73.9508,Private room,75,2,3,2019-06-22,0.74,1,0 +21908120,Brooklyn Factory Loft Building Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.67873,-73.98236,Private room,119,1,19,2019-07-08,0.97,17,355 +31313010,Creative artist apartment in Williamsburg,10196479,Vanessa,Brooklyn,Williamsburg,40.71285,-73.95558,Private room,45,3,1,2019-01-22,0.18,1,0 +32812845,Cozy Room in Lovely East Village Apartment!,245637171,Min,Manhattan,East Village,40.72981,-73.98638000000001,Private room,55,30,0,,,8,310 +16039453,The Blue Floaty Studio,86887132,Nepreil,Queens,Jamaica,40.69469,-73.78196,Entire home/apt,99,2,13,2019-06-30,1.71,2,365 +32268791,The Artist Retreat Duplex and Garden 2,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68272,-73.9303,Entire home/apt,170,2,0,,,4,89 +31164039,Amazing BR w/ Private Bath near subway & Manhattan,137358866,Kazuya,Queens,Woodside,40.74524,-73.90637,Private room,70,30,0,,,103,269 +29412276,New york Multi-unit building,221434490,Aracely,Queens,Jackson Heights,40.75473,-73.8715,Private room,45,2,22,2019-06-14,2.58,2,138 +15420038,Wonderful private room in Williamsburg,98816024,Elisa,Brooklyn,Williamsburg,40.7111,-73.94351999999999,Private room,95,3,24,2018-06-25,0.73,1,5 +12379298,New Colorful East Village Modern Apt off Bowery,66904643,Elizabeth,Manhattan,East Village,40.72421,-73.99041,Private room,180,1,14,2018-09-06,0.4,1,90 +29132728,Cozy and spacious 1-bedroom apartment,83907534,Leen,Manhattan,Kips Bay,40.74228,-73.97601,Entire home/apt,175,7,5,2019-06-14,0.66,1,32 +21298453,A) Cozy Private Suite WiFi Laundry JFK Airport,154128335,Joseph,Queens,Jamaica,40.69933,-73.81436,Private room,50,2,49,2019-07-02,2.37,4,108 +16644223,Private Bedroom w/ En Suite in Shared Apartment,7921167,Justin,Brooklyn,Park Slope,40.67937,-73.98125999999999,Private room,40,7,0,,,1,0 +20755500,SUNNY + MODERN NEW 1 BEDROOM APARTMENT IN BEDSTUY,1180050,Shawn,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95151,Entire home/apt,200,4,2,2017-11-15,0.09,1,0 +13000527,Studio47 - bedroom in artists' loft,19866179,Jackson,Manhattan,Two Bridges,40.71098,-73.99296,Private room,100,30,1,2019-02-25,0.22,1,0 +18061481,Sunny room with private terrace in Sunnyside,20691482,M&A New York,Queens,Sunnyside,40.74238,-73.91783000000001,Private room,69,3,21,2019-05-20,0.78,1,177 +6913969,"Home 4 Medical Professionals - The ""Necrosis""",26377263,Stat,Brooklyn,Bushwick,40.70393,-73.91679,Private room,47,30,3,2018-08-18,0.06,43,259 +59709,"Artistic, Cozy, and Spacious w/ Patio! Sleeps 5",186084,Ricardo & Ashlie,Manhattan,Chinatown,40.71756,-73.99503,Entire home/apt,250,4,18,2019-07-01,0.18,2,265 +21428625,Awesome Oasis! 3 stops Away from Manhattan!!!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94368,Private room,50,5,1,2018-01-17,0.06,7,0 +18908212,Beautiful/Cozy 2BR Apartment,131772382,Eileen,Brooklyn,Bushwick,40.69297,-73.91788000000001,Entire home/apt,70,2,93,2019-07-02,3.68,1,142 +34312985,Luxury 2 bdr/2 bath prime Williamburg,544721,Marta,Brooklyn,Williamsburg,40.71312,-73.9453,Entire home/apt,192,1,0,,,1,8 +19907176,"Upper West side,Lincoln center,Luxury 2Bed 2Bath",131647128,Emily,Manhattan,Upper West Side,40.77578,-73.98923,Entire home/apt,255,30,5,2019-02-27,0.26,25,254 +26062892,Brooklyn home away from home,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67771,-73.90969,Private room,55,1,25,2019-06-12,1.97,3,74 +32189288,Gem in the heart of Manhattan,32136241,EStelle,Manhattan,Chelsea,40.75173,-73.99869,Entire home/apt,100,3,11,2019-06-18,2.77,1,24 +22083540,Cozy 2br in the heart of Clinton Hill in Brooklyn,11365202,Carrie,Brooklyn,Clinton Hill,40.68882,-73.96049000000001,Entire home/apt,160,3,38,2019-06-20,1.99,1,2 +25024676,"Cozy, tranquil bedroom steps from Central Park B",152195388,Rachel,Manhattan,Upper West Side,40.78371,-73.97358,Private room,105,20,5,2019-03-25,0.39,2,64 +33880820,"Cute, comfy room in beautiful Brooklyn brownstone",6410618,Marie,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95004,Private room,65,4,1,2019-05-26,0.67,1,17 +33994465,Penthouse with huge deck and city views,106418986,Vicky And Nektarios,Brooklyn,Greenpoint,40.73473,-73.95206999999999,Entire home/apt,250,3,0,,,1,62 +30175190,Hancock-Brooklyn Hospitality,226688121,Makeba,Brooklyn,Bedford-Stuyvesant,40.68504,-73.91699,Entire home/apt,175,1,16,2019-07-05,3.97,1,9 +31909528,The clean separate studio in New York,51186155,Cherry,Queens,Flushing,40.73182,-73.79505,Entire home/apt,45,1,51,2019-07-04,9.39,1,49 +8392929,AFFORDABLE & COZY IN SUNSET PARK,1182180,"Isaac, Linda & Noelia",Brooklyn,Sunset Park,40.64985,-74.00206999999999,Private room,35,6,26,2019-06-30,0.57,1,160 +23755278,SPACIOUS HARLEM APT,105825171,Benjamin,Manhattan,Harlem,40.82383,-73.94037,Private room,93,1,2,2018-04-01,0.13,1,0 +24632516,Quiet Sunlit Bedroom w/ Private Bath in Brooklyn,79322329,Elissa,Brooklyn,Bushwick,40.70133,-73.92074000000001,Private room,115,3,45,2019-07-04,3.14,1,75 +8504666,Brownstone DUPLEX - Near Subway,44782700,Danielle,Brooklyn,Bedford-Stuyvesant,40.68426,-73.91939,Entire home/apt,200,3,63,2019-06-13,1.39,1,354 +9308016,Spacious Greenpoint Duplex w/Yard,1516920,Jonathan,Brooklyn,Greenpoint,40.73077,-73.95851,Entire home/apt,115,1,1,2015-12-27,0.02,2,0 +20933848,Prime Location of Flushing Queens 豪华卧室 旅途中的家 A,63312104,Max,Queens,Flushing,40.74893,-73.82046,Private room,60,1,39,2019-06-23,1.79,6,359 +4998294,"Enjoy Central Park,",25773982,Yas,Manhattan,Upper East Side,40.77595,-73.95573,Private room,100,3,28,2019-05-22,0.55,2,364 +19891485,Cozy and Charming Private Room in Lower East Side,10677720,Deniz,Manhattan,Lower East Side,40.7177,-73.98245,Private room,77,5,20,2018-05-13,0.84,1,0 +29282847,Spacious Central Park Apartment,80026984,Keziah,Manhattan,Harlem,40.80132,-73.95496,Entire home/apt,195,3,3,2019-07-02,0.4,1,239 +23919507,Large Sunny Bedroom in 2 bedroom Apt. near train,39531110,Josseline,Brooklyn,Gravesend,40.60663,-73.9821,Private room,29,2,1,2018-06-11,0.08,1,0 +29652490,♂ ♀ Sunny Bedroom in Popular Brooklyn,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67937,-73.93262,Private room,45,15,0,,,14,0 +35577810,Francesco’s Manhattan Bedroom w/Private Bathroom,50278442,Francesco,Manhattan,Morningside Heights,40.80482,-73.96493000000001,Private room,70,30,0,,,3,339 +1843108,HappyCozy GuestSuite w/ Great Energy close to JFK,2021121,Megan,Brooklyn,Cypress Hills,40.6784,-73.89362,Entire home/apt,125,1,319,2019-07-08,8.52,1,357 +15786428,Entire Floor in Great Location & beautiful Garden,24360599,Iwona,Brooklyn,South Slope,40.66132,-73.98678000000001,Entire home/apt,85,5,5,2019-01-03,0.16,1,0 +452068,"Spacious 4 bedroom house, New York",2246071,Tamara,Brooklyn,Kensington,40.64205,-73.97173000000001,Entire home/apt,200,1,3,2015-08-16,0.06,1,0 +18222359,LIVE BROOKLYN! Private 1 BR APT - 5 min to Subway,120804342,David,Brooklyn,Bedford-Stuyvesant,40.6946,-73.94429000000001,Entire home/apt,109,2,112,2019-07-05,4.22,2,258 +2985678,2BR on Express 2 stops to Manhattan,1720071,Karen And Ben,Brooklyn,Sunset Park,40.65841,-73.99664,Entire home/apt,135,2,133,2019-05-27,2.19,1,296 +35321064,A Peaceful getaway for individuals or couples.,182121197,Katherine,Bronx,Kingsbridge,40.86493,-73.90315,Private room,69,2,2,2019-06-23,2.0,1,86 +29513249,Large 1 bedroom apartment available,222249366,Nikia,Manhattan,Harlem,40.82267,-73.95044,Entire home/apt,80,3,1,2018-10-24,0.12,1,0 +13134161,"Peaceful home, industrial neighborhood",460765,Jack,Brooklyn,Gowanus,40.68164,-73.98631,Private room,63,2,2,2016-06-19,0.05,1,0 +14234046,Premier Suites Downtown,18762580,Joseph,Manhattan,Financial District,40.70885,-74.01074,Entire home/apt,200,30,0,,,1,87 +12492941,Spacious Room with Private a Patio!,67640934,Paulette,Brooklyn,Bedford-Stuyvesant,40.68361,-73.93845,Private room,60,2,34,2017-09-27,0.88,1,0 +14464084,Swimming Pool/Gym/ Doorman 2 bed 2 bath W&D 5192,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.794,-73.96734000000001,Entire home/apt,310,30,1,2017-03-26,0.04,96,294 +8044856,Williamsburg/Billburg/The Burg,42404417,Erin,Brooklyn,Williamsburg,40.71848,-73.95834,Entire home/apt,135,4,54,2019-06-22,1.17,1,158 +36027346,Live in style @ the BEST LOCATION in MANHATTAN,10117927,Noa,Manhattan,Gramercy,40.73708,-73.98826,Entire home/apt,180,3,0,,,1,4 +2601402,Cozy 1BR in Beautiful Brooklyn,13322259,Alex,Brooklyn,Boerum Hill,40.68647,-73.98595,Entire home/apt,115,3,54,2018-07-26,0.94,1,188 +30288537,The most expensive neighborhood.,52424735,Eric,Manhattan,West Village,40.73807,-74.00468000000001,Private room,80,4,10,2019-06-30,1.43,1,26 +1039984,Furnished BrownStone Apartment,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93597,Entire home/apt,130,30,52,2018-01-03,0.72,3,171 +25855178,Modern Style Cozy & Convenient 2 Bedroom Apartment,155911578,Christopher,Manhattan,Harlem,40.81889,-73.94224,Entire home/apt,180,2,20,2019-05-27,1.52,2,89 +4033998,Chic and peaceful,11818785,Fabio,Queens,Jackson Heights,40.7525,-73.88592,Private room,200,30,0,,,1,88 +33908446,"Free Cleaning & WiFi, Quick Walk to Metro-Modern!",133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.69116,-73.92658,Private room,35,30,1,2019-05-13,0.52,3,53 +24289209,Astoria Centrally located!,183211776,Rafael,Queens,Astoria,40.76531,-73.91126,Private room,39,1,11,2018-12-26,0.77,4,62 +13077988,"East 29th Street, Luxury 1bd in NOMAD",22541573,Ken,Manhattan,Midtown,40.74556,-73.98541999999999,Entire home/apt,219,30,0,,,87,343 +26815937,Bear(D)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74544,-73.82244,Private room,48,1,74,2019-07-07,6.2,4,56 +16226427,(Williamsburg) Large bedroom with private balcony,11313668,Adam,Brooklyn,Williamsburg,40.70089,-73.94997,Private room,55,1,8,2019-03-24,0.26,2,0 +35704764,Spacious modern room close to Manhattan!!,268572259,Sergii,Brooklyn,Bushwick,40.70322,-73.92718,Private room,79,30,1,2019-06-26,1.0,3,297 +28313234,"Private bedroom in Harlem, NY ..",15439251,Willy,Manhattan,Harlem,40.8224,-73.94136,Private room,70,3,17,2019-04-18,1.71,4,230 +5882068,Comfortable classy 1br in Ditmas Pk,2533934,Leeore,Brooklyn,Flatbush,40.64802,-73.96063000000001,Entire home/apt,85,2,11,2019-06-20,0.78,1,0 +27703578,"Charming Chelsea Bungalow w/ +Large Outdoor Terrace",1008066,Francesca,Manhattan,Chelsea,40.74557,-73.99871,Entire home/apt,250,2,14,2019-05-26,1.51,1,28 +27989781,Charming room in upper Manhattan,12358203,Rachel Leigh,Manhattan,Harlem,40.82867,-73.94561,Private room,80,1,28,2019-06-27,2.78,2,5 +12092403,Holiday in 2br2ba Williamsburg Apt!,1909320,Peter,Brooklyn,Williamsburg,40.71697,-73.96204,Entire home/apt,200,1,16,2019-06-27,0.41,3,239 +28901091,peaceful third floor Fort Greene treetop retreat,171212377,Lali,Brooklyn,Fort Greene,40.68832,-73.97731,Entire home/apt,175,3,38,2019-07-06,4.15,1,122 +10283008,Large Room in BK Quaint Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67607,-73.95121,Private room,37,21,11,2019-05-23,0.28,2,0 +1913540,Cute Spacious Studio in Fort Greene,325455,Ashley,Brooklyn,Fort Greene,40.68516,-73.97461,Entire home/apt,120,1,2,2015-10-26,0.03,1,0 +7277878,Sunny and Spacious 1 Bedroom!,6862694,Hayley,Brooklyn,Prospect Heights,40.67628,-73.96425,Entire home/apt,90,5,1,2015-09-02,0.02,1,0 +21512337,"Great Studio apt, great location in Hells Kitchen!",150687748,Rodrigue,Manhattan,Hell's Kitchen,40.7661,-73.98843000000001,Entire home/apt,120,2,3,2019-06-30,1.14,1,0 +25572892,Bright 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74472,-73.97205,Entire home/apt,177,29,1,2019-03-31,0.3,96,58 +3780113,Studio apartment,5785240,Laurent,Manhattan,Harlem,40.80919,-73.94815,Entire home/apt,120,3,80,2019-06-29,1.37,1,245 +35740716,"Home Away, JFK Apartment",145406361,Ken & Janelle,Queens,Jamaica,40.684740000000005,-73.79196999999999,Entire home/apt,79,1,0,,,1,167 +27779367,Unique Apartment in Park Slope,5744362,Boer,Brooklyn,Park Slope,40.6779,-73.97991,Private room,150,1,1,2018-09-09,0.1,1,276 +1095106,Greenpoint - with your own space!,6016424,Susan,Brooklyn,Greenpoint,40.73026,-73.95596,Private room,72,4,54,2019-06-02,0.72,1,71 +5382755,Home 4 Medical Professionals-Kngbr6,26377263,Stat,Brooklyn,East Flatbush,40.6593,-73.93512,Private room,44,30,1,2016-09-30,0.03,43,273 +22387499,Peaceful Garden Apartment in Architect's Townhouse,68554866,Andrea & James,Brooklyn,Bushwick,40.68481,-73.90713000000001,Entire home/apt,125,3,27,2019-07-03,2.77,1,41 +28054965,Crown Heights Gem Easy Access to ALL,52675311,Deloris,Brooklyn,Crown Heights,40.66818,-73.95529,Entire home/apt,200,2,13,2019-06-23,1.26,1,89 +4129212,Large 1 Bedroom apartment with office room.,11555258,Patrick,Brooklyn,Kensington,40.644490000000005,-73.97238,Private room,50,3,8,2016-07-25,0.14,2,14 +20498407,Your Cozy Home in Astoria,19901294,Paco,Queens,Astoria,40.76255,-73.92347,Entire home/apt,106,4,1,2017-09-10,0.04,1,0 +29967770,"Cottage in the City - 2 bedroom, 2 bath DUMBO",1126015,Patricia,Brooklyn,DUMBO,40.70321,-73.98488,Entire home/apt,150,3,3,2019-03-21,0.4,1,7 +19317831,Room for the mighties !! Air conditioner /CPark,100835599,Dalina,Manhattan,East Harlem,40.79031,-73.94688000000001,Private room,113,1,12,2017-09-13,0.48,2,90 +18734225,1BR in lovely Williamsburg apartment,40238772,Daniël,Brooklyn,Williamsburg,40.70884,-73.95425,Private room,60,20,2,2017-06-19,0.08,1,0 +34518082,980 sqft Royalton Suite with Large Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.743120000000005,-73.98589,Private room,350,1,0,,,10,345 +21818641,Modern 1 BR Hell's Kitchen condo with courtyard,159042433,Alexander,Manhattan,Hell's Kitchen,40.76172,-73.99428,Entire home/apt,195,3,3,2018-12-01,0.16,1,0 +33666175,English style home in Brooklyn New York,69977115,Jacob,Brooklyn,Bensonhurst,40.61472,-73.99143000000001,Private room,79,2,1,2019-06-24,1.0,4,364 +26425032,Private Room in apartment (1),198478845,Jelani,Brooklyn,Clinton Hill,40.6867,-73.9612,Private room,59,4,6,2019-06-20,0.87,2,156 +18706845,Private Budget Room For Awesome Guests. #1,97018938,Ude,Brooklyn,Canarsie,40.64005,-73.90916,Private room,42,1,29,2018-02-02,1.13,2,35 +22241666,Stylish Williamsburg waterfront apartment,31629237,Melissa,Brooklyn,Williamsburg,40.71783,-73.96141,Entire home/apt,150,3,0,,,1,0 +22778341,"Bedroom 14x16ft, shared bathroom, 5 mins to subway",168279437,Lucky,Queens,Woodside,40.74211,-73.89067,Private room,40,1,7,2018-09-21,0.41,1,0 +15758640,Large unit in Prospect Park area townhouse,5435740,Kim & Rupert,Brooklyn,Prospect-Lefferts Gardens,40.65989,-73.95385999999999,Entire home/apt,99,2,96,2019-05-29,2.98,1,0 +3200198,Hell's Kitchen One Bedroom (near Times Square),16217769,Karlan,Manhattan,Hell's Kitchen,40.763090000000005,-73.99155,Entire home/apt,175,4,1,2017-01-02,0.03,1,0 +11145050,Doorman Studio Gym Rooftop 5170,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79191,-73.97322,Entire home/apt,117,30,4,2018-12-16,0.13,96,327 +35283631,"1 room available in Manhattan 3, A, B, C, D trains",24047681,Kevin,Manhattan,Harlem,40.82512,-73.93817,Private room,80,1,2,2019-06-23,2.0,1,356 +22079387,Boutique Luxury in the Heart of Chelsea,148107543,Mario,Manhattan,Chelsea,40.74494,-73.99762,Entire home/apt,299,2,30,2019-05-25,1.57,1,274 +15062944,"Private full bed, prime location",10737943,David,Manhattan,Upper West Side,40.78017,-73.97574,Private room,47,30,10,2019-05-28,0.31,10,342 +36183003,Private bedroom withWiFi minutes from Central Park,82406306,Marc,Manhattan,East Harlem,40.80128,-73.93991,Private room,78,1,0,,,2,13 +2238300,"Peaceful home, friendly area!",249753,Penny,Brooklyn,Bushwick,40.70422,-73.91405,Entire home/apt,95,5,1,2018-01-06,0.05,1,0 +30710325,Huge Room in Trendy East Williamsburg,49800768,Grant,Brooklyn,Williamsburg,40.705090000000006,-73.92988000000001,Private room,80,7,1,2019-01-01,0.16,1,219 +34321465,Two bed apartment in the heart of Williamsburg,3270796,Jess,Brooklyn,Williamsburg,40.71108,-73.95988,Entire home/apt,180,2,0,,,2,10 +10244876,Huge room w/ Private outdoor space,52656488,Adeola,Manhattan,Harlem,40.81052,-73.94008000000001,Private room,200,2,0,,,1,0 +13092522,"Sunny, charming 1 bedroom in Crown Heights",27714436,Rebecca,Brooklyn,Crown Heights,40.67372,-73.95334,Private room,51,1,1,2016-05-21,0.03,1,0 +9550620,❤️❤️Relaxing Guestroom by a Lovely Park ❤️❤️,48983104,Lily,Queens,Middle Village,40.72058,-73.87493,Private room,60,2,72,2019-04-20,1.68,3,81 +31815470,Crown heights apt,44801404,Idris,Brooklyn,Crown Heights,40.66897,-73.92848000000001,Private room,130,14,0,,,1,365 +25515856,1 Bed 1 Bath on Upper West Side Manhattan,8304377,Beata,Manhattan,Upper West Side,40.78239,-73.98156,Entire home/apt,155,7,0,,,1,0 +32723619,Apt in heart of Williamsburg,111466,Joanna,Brooklyn,Williamsburg,40.71797,-73.95738,Entire home/apt,250,4,1,2019-06-27,1.0,1,122 +6227027,Bright and Beautiful UWS Treasure!!,6089159,Samantha,Manhattan,Upper West Side,40.78302,-73.98057,Entire home/apt,100,14,3,2019-05-20,0.13,1,205 +33399665,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.70569,-74.00403,Private room,169,7,1,2019-05-14,0.53,13,365 +34213836,Delightful 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74421,-73.97221,Entire home/apt,190,29,0,,,327,345 +16413797,"Private room in Bushwick, Brooklyn",106756395,Monica,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92139,Private room,50,1,0,,,2,0 +20982002,Bright Spacious Room in BedStuy - 20min from City,12528835,Paula,Brooklyn,Bedford-Stuyvesant,40.68909,-73.95281999999999,Private room,90,2,29,2019-06-30,1.36,2,167 +21254023,Chelsea Newly Renovated Private Bedroom,22004774,Taylor,Manhattan,Chelsea,40.74772,-74.002,Private room,110,2,2,2017-12-05,0.1,1,0 +15087746,Big Suite in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66684,-73.94753,Private room,120,30,8,2019-01-01,0.23,8,340 +397420,New York Host who knows The Most,1985717,Darktalia,Manhattan,Harlem,40.82703,-73.94311,Private room,85,3,6,2017-09-05,0.07,1,363 +3907413,Great cozy for summer in Brooklyn,20169857,Fabeye & Nabou,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94314,Private room,40,1,73,2019-06-08,1.23,2,190 +32991956,Charming cozy 1 bedroom in the heart of Greenpoint,4158712,Marina,Brooklyn,Greenpoint,40.73282,-73.95208000000001,Entire home/apt,117,2,3,2019-06-23,1.29,1,15 +2722391,Beautiful Room In Williamsburg ,13931194,Daniel,Brooklyn,Williamsburg,40.70024,-73.95047,Private room,70,7,0,,,1,0 +19577620,"2 Story Penthouse | Private Floor, Bed, & Bath",16652171,Erik,Manhattan,Upper West Side,40.78413,-73.97779,Private room,94,2,65,2019-07-04,2.69,1,54 +21754369,HUGE room in a BUSHWICK BROWNSTONE,49736414,David,Brooklyn,Bushwick,40.69044,-73.90836999999999,Private room,60,1,0,,,1,0 +22245314,Sunny Park Slope Studio,29001464,Grey,Brooklyn,Park Slope,40.67245,-73.97341,Entire home/apt,92,60,1,2018-10-17,0.11,1,0 +19100971,Spacious Bedroom with lots of Natural Light,81745867,Jacqueline,Manhattan,Washington Heights,40.84917,-73.94048000000001,Private room,70,2,2,2018-06-25,0.16,1,0 +25783309,1 Bdrm in Beautiful Brownstone filled with light,7185380,Lucia,Brooklyn,Bedford-Stuyvesant,40.68332,-73.93627,Private room,60,3,7,2018-12-16,0.54,1,0 +6594861,Park Slope Brownstone Duplex (unfurnished),34501360,Eric,Brooklyn,Park Slope,40.6746,-73.97901,Entire home/apt,275,30,12,2017-09-03,0.25,1,70 +3827442,"Large, Luxurious 1 bdrm W. Village",1484799,Matthew,Manhattan,West Village,40.73016,-74.00259,Entire home/apt,349,4,10,2016-09-05,0.17,1,0 +19542512,Bohemian Room in NYC at Great Location,137264725,Gulcin,Manhattan,Lower East Side,40.71206,-73.99055,Private room,70,1,117,2019-06-25,4.74,4,249 +26603929,UWS Cozy room near Columbia UNIVERSITY***,199946021,Joe,Manhattan,Upper West Side,40.79978,-73.96295,Private room,52,1,64,2019-06-23,5.42,3,11 +33776553,Spanish Harlem! Next to the 6 train in Manhattan!,251508221,Dee,Manhattan,East Harlem,40.79834,-73.94337,Entire home/apt,300,2,1,2019-05-15,0.55,1,180 +23809758,Modern Home with Exposed Brick on a Quiet Street,21012470,David,Brooklyn,Bushwick,40.70329,-73.92213000000001,Private room,75,1,20,2019-06-27,1.27,1,89 +3177630,Large Studio w/ NEW MATTRESS in UES,16114134,Jeff,Manhattan,Upper East Side,40.77737,-73.95031999999999,Entire home/apt,175,3,6,2016-06-13,0.1,1,0 +7415905,Luxury Modern Brownstone Full Apt,38850307,Elwanda,Brooklyn,Bedford-Stuyvesant,40.6846,-73.94478000000001,Entire home/apt,125,3,130,2019-07-06,2.72,1,217 +22650253,Cozy & Sunlit Studio in LES,110345854,Laura,Manhattan,Lower East Side,40.72149,-73.98573,Entire home/apt,110,4,1,2018-11-18,0.13,1,0 +19428575,Alcove studio - Resort style,134871099,Anthony,Manhattan,Roosevelt Island,40.77009,-73.9427,Entire home/apt,250,2,52,2019-06-23,2.1,1,0 +31823258,Serenity in the Gardens,3443943,Nicole And Joe,Brooklyn,Carroll Gardens,40.6766,-73.99855,Private room,225,3,1,2019-05-09,0.48,1,178 +26253826,Historical Central Park stay,187872824,Erik,Manhattan,Upper West Side,40.7989,-73.96042,Private room,150,1,0,,,2,365 +20031965,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,142268790,David,Queens,Forest Hills,40.73386,-73.85202,Entire home/apt,268,3,4,2019-06-16,0.19,2,154 +33151516,Best Hood in NYC. Private Bedroom in ASTORIA!!,1852219,Douglas And Juthamas,Queens,Astoria,40.7718,-73.91942,Private room,62,2,16,2019-06-23,4.53,1,313 +23804783,"Zen Private Bedroom ~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83093,-73.94724000000001,Private room,99,1,10,2019-01-04,0.96,6,31 +16310046,Unique Bushwick one bedroom with private garden,1451269,Angelo,Brooklyn,Bushwick,40.70234,-73.92439,Entire home/apt,140,5,3,2018-11-24,0.1,1,7 +23852303,A house in Flatbush.,5091423,Jamie,Brooklyn,East Flatbush,40.64747,-73.95189,Entire home/apt,225,3,1,2018-04-04,0.06,1,26 +4775278,Private Apartment In Heart Of Brooklyn,6948005,Matt,Brooklyn,Bedford-Stuyvesant,40.69294,-73.96001,Private room,75,1,1,2016-01-01,0.02,1,0 +1903198,Time Square in 30 minutes. Front room.,3158364,Devika,Queens,Sunnyside,40.73673,-73.92526,Private room,45,5,70,2019-06-30,2.23,4,250 +10576172,LRG PRVT ROOM IN NYC NEAR METRO & ACTIVITIES,5479882,Nata,Manhattan,Harlem,40.80512,-73.953,Private room,100,2,72,2019-07-02,2.08,1,19 +17961885,Downtown: Two Bridges -Private room&bathroom!,123307264,Ei,Manhattan,Chinatown,40.71456,-73.99077,Private room,95,14,3,2018-10-30,0.11,1,28 +6823578,Beautiful home in the Heights,35350208,Zachary,Manhattan,Washington Heights,40.84872,-73.93633,Private room,69,1,1,2015-07-18,0.02,1,0 +5279925,Apt available - Best NYC Location,153675,Matteo,Manhattan,East Village,40.73279,-73.98746,Entire home/apt,140,12,1,2015-09-01,0.02,2,164 +11407817,Wonderful apartment with view & Rooftop!!!!,9290968,Marco,Queens,Astoria,40.77349,-73.92648,Entire home/apt,112,1,2,2017-05-28,0.07,1,0 +21109037,Prime Upper West Side Bedroom,51339741,Liz,Manhattan,Upper West Side,40.77895,-73.98331999999999,Private room,145,1,43,2019-07-02,2.01,1,197 +20213659,"MASTER, NEW, PRIVATE BEDROOM, 10 MINS from JFK",107915864,Mina,Queens,Howard Beach,40.66778,-73.85345,Private room,89,1,5,2019-06-19,5.0,4,317 +7002269,15 min walk to Prospect Park!,10945786,Keith,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94882,Private room,30,6,1,2015-09-17,0.02,1,0 +1057022,Spacious 1br East Village Apartment,5822377,Shunan,Manhattan,East Village,40.7265,-73.99,Entire home/apt,159,5,16,2018-09-27,0.25,2,0 +27195039,BIG FACTORY LOFT - HIP BUSHWICK NEAR 2 METROS!!,35606248,Blake And Madia,Brooklyn,Bushwick,40.70265,-73.92605999999999,Private room,70,2,28,2019-06-09,2.43,5,359 +30388225,"Tranquil East Village 1BR Gym, Garden + Doorman by Blueground",107434423,Blueground,Manhattan,East Village,40.72232,-73.98543000000001,Entire home/apt,312,30,0,,,232,219 +24510046,NYC with a view,5485647,Chris,Manhattan,Hell's Kitchen,40.76206,-73.99775,Entire home/apt,300,3,2,2019-05-19,0.14,1,0 +2332284,La ponderosa,8873749,Fany,Manhattan,Washington Heights,40.84966,-73.93945,Private room,40,2,76,2019-04-07,1.29,1,291 +12601401,"Astoria living, like a true NY'er",5059784,Seth,Queens,Astoria,40.76465,-73.92625,Entire home/apt,125,1,10,2016-07-11,0.26,1,0 +30262760,Close to transportation sleep share,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67797,-73.90924,Shared room,35,1,11,2019-06-10,1.51,17,89 +11036071,Fully Private Suite in Home,57265004,Patricia,Brooklyn,Prospect-Lefferts Gardens,40.65993,-73.95725,Entire home/apt,125,1,151,2019-06-09,3.86,1,37 +30554810,Railroad 2 bdr apartment,70065270,Iryna,Manhattan,East Harlem,40.789,-73.94798,Entire home/apt,90,3,1,2019-01-01,0.16,1,0 +18867401,Studio apartment close to Central Park,128579948,Giampiero,Manhattan,Upper East Side,40.76439,-73.96569000000001,Entire home/apt,250,2,85,2019-06-27,3.28,2,306 +21164579,Yi He hotel,152760575,Bifan,Queens,Flushing,40.76047,-73.83193,Private room,100,2,1,2017-11-18,0.05,1,0 +16290974,Private Room in Uptown Manhattan,67469354,Britt,Manhattan,Harlem,40.828140000000005,-73.9378,Private room,66,3,78,2019-07-04,2.49,1,55 +16394488,Hip Luxury Stay w Private Bath 5 min to Manhattan,94027304,Roberson,Brooklyn,Williamsburg,40.71499,-73.95561,Private room,90,3,5,2017-07-13,0.16,1,0 +31927597,Large Room in Prime Bushwick Neighborhood,239375612,Rebekah,Brooklyn,Bushwick,40.70455,-73.92565,Private room,30,1,3,2019-03-31,0.62,1,0 +13387572,RENOVATED STUDIO FOR 2~EAST 60TH STREET,76104209,Rated,Manhattan,Upper East Side,40.76113,-73.96092,Entire home/apt,139,30,0,,,33,362 +34780437,Great Private Room with 2 Beds Near Metro,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69418,-73.94409,Private room,68,2,2,2019-06-23,1.28,3,0 +8281889,"Williamsburg, Brooklyn space",43669213,Jasmine,Brooklyn,Williamsburg,40.70309,-73.94788,Private room,150,1,4,2017-03-19,0.09,1,363 +26227629,Spacious and Sunny Studio,26596078,Natalya,Brooklyn,Bay Ridge,40.628040000000006,-74.02603,Entire home/apt,75,7,11,2019-05-19,0.91,1,3 +4825359,Bright & Spacious GP/N Williamsburg,3800548,Phoebe,Brooklyn,Greenpoint,40.73176,-73.95371,Private room,70,4,6,2017-01-01,0.11,1,0 +6987811,Cozy Brooklyn Room W/ Skylight,23582893,Laramie,Brooklyn,Bushwick,40.690540000000006,-73.91445999999999,Private room,51,13,20,2019-06-26,0.41,8,14 +7050316,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.8046,-73.96545,Private room,50,1,1,2015-07-06,0.02,2,0 +6182580,Private Room In a Goodhome,10576263,Odalys & Maya,Brooklyn,Crown Heights,40.67603,-73.95302,Private room,58,4,1,2016-01-02,0.02,1,332 +2613864,Sunny Studio NYC West 50's,6222620,Joe,Manhattan,Hell's Kitchen,40.76608,-73.99203,Entire home/apt,90,2,1,2014-04-24,0.02,1,0 +31569502,Entire 1 BR Apartment in Perfect Astoria Location,39192815,Agnes,Queens,Astoria,40.76533,-73.92171,Entire home/apt,95,2,0,,,1,0 +31972030,SMALL ROOM 15 MINUTES AWAY FROM MANHATTAN,157310194,Asia,Brooklyn,Williamsburg,40.70597,-73.94245,Private room,60,2,16,2019-07-04,3.78,1,116 +21736598,Three Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71581,-73.95543,Entire home/apt,275,4,0,,,4,5 +10527274,"Luxury Apt, Near Subway, Perfect for Work or Play!",54283244,Kara,Brooklyn,Bedford-Stuyvesant,40.67895,-73.92851,Entire home/apt,125,3,75,2019-07-02,3.27,1,316 +786685,Big Brnstn Grdn Apt 2 stops to Midtown,4147380,Lauren,Manhattan,Harlem,40.82294,-73.94999,Entire home/apt,225,1,50,2019-06-14,0.72,1,265 +35683776,"Cozy 1 BR by St. George Ferry., 2nd Floor apt.",268430876,Edilma,Staten Island,St. George,40.63772,-74.08315,Private room,42,1,0,,,1,87 +1830244,Cool and spacious room-Approx 150 yard from LTrain,5309364,Michael,Brooklyn,Bushwick,40.68135,-73.9046,Private room,41,3,7,2017-09-04,0.11,1,0 +5231817,UES LRG 1BR SLEEPS 4~61ST~Gr8 value,2119276,Host,Manhattan,Upper East Side,40.76201,-73.96084,Entire home/apt,150,30,5,2018-03-28,0.11,39,228 +20547687,Newly listed stylish 2BR duplex in East Village,54501105,Sophie,Manhattan,East Village,40.73055,-73.98928000000001,Entire home/apt,260,3,24,2019-07-01,3.35,2,26 +9369514,STARTUP CHEAP PLACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64603,-73.94869,Shared room,25,30,5,2018-05-08,0.12,7,365 +34036011,Charming East Village Penthouse Studio Apartment,43885531,Lee,Manhattan,East Village,40.72935,-73.9826,Entire home/apt,130,30,1,2019-06-14,1.0,1,115 +12363920,Rent a room in modern Bushwick apt,66787512,Henrik,Brooklyn,Bushwick,40.69969,-73.91896,Private room,45,1,7,2016-06-19,0.18,1,0 +9459232,Bedroom in spacious apt w/ backyard,4052055,Lorien,Manhattan,East Village,40.724,-73.98376,Private room,45,1,1,2015-12-21,0.02,1,0 +35796952,Ginger Home,2113042,Ly,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94073,Private room,70,3,1,2019-07-01,1.0,1,65 +8652729,Beautiful room in a great location NYC!,4154037,Rajiv,Manhattan,Harlem,40.82305,-73.94555,Private room,49,14,25,2019-06-15,0.55,2,276 +18255124,Beautiful modern apartment located in Gramercy,64351850,Mckenzie,Manhattan,Kips Bay,40.73957,-73.98233,Entire home/apt,168,7,10,2018-12-11,0.37,1,0 +12847902,Beautiful modern home!,46938101,Mario,Bronx,Concourse,40.83211,-73.92052,Private room,49,1,33,2019-06-21,0.87,1,348 +17591010,Entire Hipster Flat in the Heart of Bushwick!,4844209,Leyla,Brooklyn,Bushwick,40.70146,-73.92886999999999,Entire home/apt,90,5,0,,,1,0 +33578743,PRIME WEST VILLAGE STUDIO APARTMENT,132644544,Sacha,Manhattan,West Village,40.73532,-73.99874,Entire home/apt,150,2,0,,,1,2 +12864095,Cute Room in Downtown BK,7953376,Mary,Brooklyn,Boerum Hill,40.68558,-73.98065,Private room,65,1,0,,,1,0 +20537153,West Village-charming studio/amazing location!,30805991,Daniel,Manhattan,West Village,40.73514,-74.00647,Entire home/apt,190,3,2,2017-09-26,0.09,1,0 +29754946,Large studio in midtown east,76327788,Lola,Manhattan,Murray Hill,40.74633,-73.97586,Entire home/apt,155,5,14,2019-06-25,1.74,1,29 +19659617,Huge Central Wiliamsburg 2 bedroom clean w/rooftop,125090618,Avi,Brooklyn,Williamsburg,40.7132,-73.96042,Entire home/apt,145,10,0,,,1,0 +29794270,Barrett’s Family Home,120245209,Heidi,Brooklyn,Canarsie,40.63535,-73.89493,Private room,55,1,7,2019-06-22,1.08,2,126 +15888448,"BKlyn:Artsy, old fashioned at affordable price !",5151544,Ale,Brooklyn,Cypress Hills,40.68148,-73.8904,Entire home/apt,63,4,54,2019-07-07,1.71,1,344 +5334478,One Bedroom Apartment in Chelsea,5074654,Seth,Manhattan,Chelsea,40.74326,-74.00004,Entire home/apt,199,2,98,2019-06-26,1.88,2,33 +22008794,Beautiful Bright Room in Bushwick,1230739,Dylan,Brooklyn,Bushwick,40.691590000000005,-73.91235,Private room,35,14,0,,,1,0 +14445481,Times Square Studio Suite,88904682,Joshua,Manhattan,Hell's Kitchen,40.76549,-73.98581999999999,Entire home/apt,180,2,2,2016-09-19,0.06,1,2 +35379899,The Emerald Suite (A Gem In A Historic Mansion),7728754,Malika,Brooklyn,Crown Heights,40.67575,-73.94299000000001,Entire home/apt,100,3,0,,,4,278 +24121842,Woody's Smaller Bedroom,24591977,Woody,Brooklyn,Bedford-Stuyvesant,40.67749,-73.91084000000001,Private room,49,7,41,2019-01-09,2.67,2,0 +12813206,Sunny Apartment Across from Sunset Park,7609268,Zoey,Brooklyn,Sunset Park,40.65038,-74.00551,Entire home/apt,99,3,25,2019-06-30,0.73,1,12 +32226740,Midtown 2BR w/ Patio! Central Park & Times Sq!,232475160,Jhonnil,Manhattan,Hell's Kitchen,40.76242,-73.9925,Entire home/apt,149,2,7,2019-06-21,1.47,1,155 +14126610,"Comfy bedroom, central in Manhattan",85196753,Grégoire,Manhattan,Kips Bay,40.74488,-73.98079,Private room,56,14,0,,,1,0 +10848827,Prospect Park Adventures HQ,34698196,Nic,Brooklyn,Flatbush,40.65123,-73.96436,Private room,36,1,1,2016-08-18,0.03,1,0 +7757549,Spacious Chelsea Penthouse w/roof!,8314981,Kevin,Manhattan,Chelsea,40.74212,-73.99828000000001,Private room,210,2,20,2016-09-01,0.42,2,0 +27372891,Beautiful Chelsea Home Near The High Line & More!,17506009,Jeff,Manhattan,Chelsea,40.74564,-74.0006,Entire home/apt,200,1,12,2019-05-26,1.09,1,6 +4386718,One bedroom near Central Park West,22502212,Kristen,Manhattan,Upper West Side,40.787490000000005,-73.97086999999999,Entire home/apt,175,21,1,2014-11-15,0.02,1,0 +13360068,"Awesome one-bedroom in the UES, Manhattan",26928086,Alice,Manhattan,Upper East Side,40.77928,-73.94861999999999,Entire home/apt,140,2,6,2017-06-30,0.17,1,0 +26417856,Magic Waters - Brooklyn Refuge,6722833,Paul,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92295,Entire home/apt,345,2,25,2019-06-22,2.17,1,321 +33645723,Cute private room in Washington Heights!,112531390,Rachel,Manhattan,Washington Heights,40.84427,-73.93741999999999,Private room,52,1,1,2019-04-25,0.4,1,0 +2243548,Lux 1600sf 1BR w. Private Terrace,9644281,Michelle,Manhattan,Lower East Side,40.72082,-73.99028,Entire home/apt,300,1,2,2016-03-13,0.05,1,0 +27297152,LUXURY 1 BR IN CHELSEA-24 HR GYM & SKYLINE VIEWS,200380610,Pranjal,Manhattan,Chelsea,40.74631,-73.99121,Entire home/apt,320,30,0,,,65,364 +4726749,Harlem,11686822,Douglas,Manhattan,Harlem,40.811690000000006,-73.94301,Private room,75,1,0,,,1,0 +35188790,Spacious & Sunny Decatur 2F Room#3,262033253,Jenny,Brooklyn,Bushwick,40.68675,-73.90899999999999,Private room,60,1,3,2019-07-05,3.0,2,178 +22471587,Semi-Private Studio in Quiet Brooklyn Neighborhood,35920741,Matthew,Brooklyn,Flatlands,40.61637,-73.92206,Private room,100,1,18,2019-04-22,0.98,1,364 +11837681,"Private bedroom rental, spacious",44071830,Sharon,Manhattan,East Harlem,40.78583,-73.94315999999999,Private room,60,1,0,,,1,0 +35988369,"Spacious, light studio in heart of Alphabet City",6230673,Malin,Manhattan,East Village,40.723040000000005,-73.9791,Entire home/apt,119,12,0,,,1,247 +34970848,Spectacular 2 bed 2 bath with W/D in the APT #6116,35098529,David,Manhattan,Murray Hill,40.74577,-73.97587,Entire home/apt,310,30,0,,,5,311 +3696043,Weeklong Discounted Bklyn Apt by Train & Near Dwtn,807340,Kevin,Brooklyn,Brownsville,40.66827,-73.92509,Entire home/apt,75,1,135,2019-07-01,2.27,1,174 +27507663,Exótico,207396117,Carlos,Queens,Sunnyside,40.74233,-73.9125,Shared room,30,1,30,2019-03-04,2.78,1,157 +26153609,A Historic District Gem in Jackson Heights,196580929,Vivian,Queens,Jackson Heights,40.75228,-73.88699,Private room,42,1,3,2018-07-22,0.25,1,0 +14744735,Artist Loft w/ AMAZING views of Manhattan,943367,Tracie,Brooklyn,Greenpoint,40.7272,-73.94374,Private room,55,14,4,2018-08-15,0.12,1,17 +19364229,Heart of Chelsea Private room in a serviced 2BD,4048704,Tala,Manhattan,Chelsea,40.7417,-74.00229,Private room,100,3,1,2017-07-15,0.04,1,0 +35160399,2 bedroom house 15 min from Jfk,157011614,Gulshan,Brooklyn,Cypress Hills,40.68254,-73.88724,Entire home/apt,99,1,2,2019-06-03,1.58,1,145 +30111496,Brooklyn Newly Renovated 1-bedroom Apartment,101215475,Julia,Brooklyn,Williamsburg,40.70762,-73.96503,Private room,90,3,10,2019-07-06,4.55,1,77 +13398348,Your Own Apartment corner of Bedford and Grand!,1570170,Kristina,Brooklyn,Williamsburg,40.7157,-73.95983000000001,Entire home/apt,125,3,97,2019-06-24,2.65,2,216 +1382607,Family-Friendly 3 BR in Cobble Hill,6245535,Jennifer,Brooklyn,Carroll Gardens,40.68298,-73.99171,Entire home/apt,259,1,2,2016-08-22,0.04,1,0 +22370132,Shared HARLEM Loft w/ Private Bedroom/Bath Suite,163574555,Jeffrey,Manhattan,Harlem,40.81245,-73.95130999999999,Private room,120,1,69,2019-07-05,3.73,1,277 +35677001,Large Times Sq/Midtown/Broadway Luxury High-rise,11908795,Ryan,Manhattan,Hell's Kitchen,40.7615,-73.99546,Entire home/apt,350,5,0,,,1,87 +24226175,Bright apt w Balcony in the heart of williamsburg,12002279,Ayelet,Brooklyn,Williamsburg,40.71417,-73.9591,Entire home/apt,160,5,20,2019-01-01,1.43,1,0 +25108878,Bushwick Garden Apartment,32361189,Raymond And Kymme,Brooklyn,Bushwick,40.68242,-73.90941,Entire home/apt,130,2,53,2019-07-05,3.99,1,122 +33937844,"Spacious, Light-Filled, Private Bklyn 2-Bedroom",255990804,Joel,Brooklyn,Crown Heights,40.665490000000005,-73.94615999999999,Entire home/apt,220,2,4,2019-06-05,2.03,1,251 +32234241,Sunny and Charming Studio - Beautiful West Village,34468788,Heather,Manhattan,West Village,40.73847,-74.0062,Entire home/apt,175,2,7,2019-07-01,2.92,1,3 +35736648,Cozy private Apartment in great area 30min to NYC,110644265,Ahmad,Queens,Rego Park,40.72733,-73.86046999999999,Entire home/apt,75,1,2,2019-06-23,2.0,1,1 +21899939,Alluring Two- Bedroom in Highland Park,4089207,Mondell,Brooklyn,Cypress Hills,40.67842,-73.88768,Entire home/apt,155,3,64,2019-06-29,3.41,2,287 +18793901,Quiet & sunny bedroom in central Williamsburg,12345174,Oday,Brooklyn,Williamsburg,40.71816,-73.95799,Private room,146,2,14,2018-10-28,0.62,1,0 +6361102,Cozy Artist Bedroom — Only a 3 Min Walk to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67682,-73.91597,Private room,50,3,102,2019-06-23,2.02,6,364 +28933107,new ARTIST ROOM IN EAST VILLAGE NYC .,1810885,Alex,Manhattan,East Village,40.72522,-73.97785999999999,Private room,85,4,7,2019-04-08,0.79,3,54 +12085680,Delightful 1BR close to upscale shopping in NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76666,-73.98306,Entire home/apt,239,30,1,2018-03-31,0.06,121,352 +31295111,Sunny Spacious 2BR Apt in Heart of Bushwick,234214434,Mike,Brooklyn,Bushwick,40.70146,-73.92841,Entire home/apt,145,30,7,2019-06-25,1.46,4,218 +21397638,Large 1 Bedroom in LES,50086945,Pascal,Manhattan,Lower East Side,40.71954,-73.98914,Entire home/apt,250,7,7,2019-03-14,0.37,1,0 +1614964,Charming Room in Astoria!!,8783166,Marinez,Queens,Astoria,40.767520000000005,-73.9273,Private room,120,3,12,2019-05-21,0.17,2,365 +18458323,Sun Drenched Gramercy/East Village!,68274298,Chelsea,Manhattan,Gramercy,40.73401,-73.9814,Entire home/apt,226,2,15,2017-12-18,0.58,1,0 +3556577,Landmark Brownstone Sunny 3 Rooms,7245581,Michael,Manhattan,Washington Heights,40.83365,-73.94059,Entire home/apt,70,180,7,2018-07-06,0.12,19,308 +34675072,Bright and beautiful One bedroom apt in Soho.,261559275,Deb,Manhattan,SoHo,40.72646,-74.00213000000001,Entire home/apt,250,2,1,2019-05-14,0.54,1,173 +32208121,Ayos Abode,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.68683,-73.93825,Entire home/apt,140,1,1,2019-05-06,0.47,2,68 +20682663,Contemporary style 1 bedroom Apt in Manhattan.,10933267,Jade,Manhattan,Inwood,40.86306,-73.92896,Entire home/apt,175,2,38,2019-06-23,1.69,1,244 +36427094,Beautiful Sunny Space in Crown Heights Brooklyn.,82576590,Raheem,Brooklyn,Crown Heights,40.67285,-73.95133,Private room,41,1,0,,,1,66 +17554981,Adorable one bedroom next to Central Park,5162192,Amy,Manhattan,Upper West Side,40.7979,-73.96024,Entire home/apt,130,30,2,2017-08-17,0.08,12,216 +24114571,Studio for the Summer,6568865,Adam,Queens,Forest Hills,40.72385,-73.85124,Entire home/apt,69,30,0,,,1,99 +31043855,Nice apartment with great view on the Hudson River,81534306,Nourdine,Manhattan,Washington Heights,40.85257,-73.94161,Entire home/apt,160,2,1,2019-01-07,0.16,2,0 +18054268,Gorgeous 4 bedroom Duplex 15 min from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69424,-73.9385,Entire home/apt,300,2,95,2019-06-17,3.51,2,229 +19409299,NIce one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74843,-73.97715,Entire home/apt,175,30,1,2018-01-31,0.06,50,365 +20675077,Sunny Room in Williamsburg- One Block from L Train,118251350,Jake,Brooklyn,Williamsburg,40.71122,-73.94346999999999,Private room,53,3,4,2017-09-01,0.18,1,0 +20902644,Cosy & quiet room in Brooklyn steps to the subway,110348515,Pauline,Brooklyn,Greenpoint,40.72965,-73.95707,Private room,98,2,7,2018-04-01,0.34,1,0 +34370061,Your New York Retreat next to Times Square,259087876,Dennis,Manhattan,Theater District,40.75861,-73.98231,Private room,200,1,5,2019-06-06,2.42,7,51 +14369923,"Bright, Welcoming 2 Bedroom Apt in Clinton Hill",24897395,Laura,Brooklyn,Bedford-Stuyvesant,40.68844,-73.95442,Entire home/apt,111,2,2,2017-07-05,0.08,1,0 +12969014,Unique Artist's Apartment,9991075,Erika,Manhattan,Upper West Side,40.78116,-73.98104000000001,Entire home/apt,175,1,11,2018-07-07,0.33,2,0 +28386112,Spacious 2 BR. Ridgewood Apt.,214304954,Milly & George,Queens,Glendale,40.6934,-73.8951,Entire home/apt,160,2,12,2019-06-30,1.31,1,361 +16258784,One Room in Large Sunny 2 Bedroom In Brooklyn,19000672,Cindy,Brooklyn,Crown Heights,40.67503,-73.95770999999999,Private room,150,2,2,2017-01-03,0.07,1,0 +7621629,Your cozy spot in Upper West Manhat,39977656,Hongqing,Manhattan,Upper West Side,40.80299,-73.96465,Private room,40,9,0,,,1,0 +27006,Comfortable UWS 2-BD Family-Friendly Brownstone,115560,Stacy,Manhattan,Upper West Side,40.77823,-73.97636999999999,Entire home/apt,235,6,27,2019-04-27,0.27,1,199 +6262339,Cozy room with a view of the Hudson,4153233,Ted,Manhattan,Washington Heights,40.85457,-73.94062,Private room,90,2,2,2017-10-15,0.08,2,0 +5904490,Spacious & Sunny Near McCarren Park,30667498,Cristina,Brooklyn,Greenpoint,40.72492,-73.95097,Entire home/apt,175,1,1,2015-07-16,0.02,1,0 +31647516,Elegant & bright 1 bedroom in West Village,237204047,Ryan,Manhattan,West Village,40.72963,-74.0033,Entire home/apt,250,2,11,2019-05-31,2.34,1,0 +9392042,Sunny 2 full bedroom apartment :),9703540,Lucy,Brooklyn,Williamsburg,40.70973,-73.94289,Entire home/apt,160,14,1,2016-08-28,0.03,1,0 +12984848,"Private Room in Greenpoint, Brooklyn",183504,Chris,Brooklyn,Greenpoint,40.73547,-73.9545,Private room,45,28,9,2019-06-01,0.37,1,332 +22081741,Large Sun-filled room in beautiful brownstone home,2738676,Sarah,Brooklyn,Bedford-Stuyvesant,40.68748,-73.93048,Private room,65,5,2,2018-09-01,0.1,1,0 +23650568,2 Bedroom by Bayside Train 21 mins from Manhattan,24771677,Noelle,Queens,Bayside,40.76324,-73.77111,Entire home/apt,200,2,45,2019-06-30,2.84,1,42 +14633324,Modern Luxury Apartment in Heart of Williamsburg,90848714,Amir,Brooklyn,Williamsburg,40.71336,-73.96172,Entire home/apt,172,2,20,2019-06-27,0.58,1,7 +25765042,Awesome Private Bushwick studio!,1290870,Gus,Brooklyn,Bushwick,40.69848,-73.91179,Entire home/apt,100,2,60,2019-07-08,4.74,1,39 +11564373,2 Bedroom 10 Minutes from JFK Airport 2nd Floor,52997121,Iwona,Queens,Jamaica,40.6756,-73.78244000000001,Entire home/apt,150,1,257,2019-06-30,7.38,4,80 +24562197,Cozy room in 2bd apartment in UES,167025338,Ameer,Manhattan,Upper East Side,40.77163,-73.94896999999999,Private room,75,14,6,2019-06-22,0.41,2,14 +6072842,Convenient and cozy space!,31522185,Dimitri,Queens,Astoria,40.766020000000005,-73.91741999999999,Shared room,75,5,4,2016-08-28,0.08,1,0 +6798811,"Spacious, quiet and comfortable 1BR",33279657,Mariya,Brooklyn,Midwood,40.61291,-73.94972,Entire home/apt,85,2,20,2017-04-26,0.41,1,0 +8648134,5star review Beautiful&Spacious Apt,15954226,Jen,Brooklyn,Bedford-Stuyvesant,40.68222,-73.95284000000001,Entire home/apt,130,7,2,2015-11-02,0.04,1,0 +19634067,"Gigantic, convenient loft in S Williamsburg!",13785996,David,Brooklyn,Williamsburg,40.70857,-73.96618000000001,Private room,42,3,1,2018-02-14,0.06,1,0 +7359313,Luxury Doorman Apt in Midtown East!,38445572,Jennifer,Manhattan,Murray Hill,40.74823,-73.97447,Private room,130,1,2,2015-09-21,0.04,1,0 +35383920,Sunny Room in Heart Of Bushwick Jefferson L train,266371525,Ignacio,Brooklyn,Bushwick,40.70695,-73.92295,Private room,67,15,0,,,1,176 +4901269,Brooklyn Heights ,6285979,Alexandra,Brooklyn,Brooklyn Heights,40.6945,-73.99543,Entire home/apt,200,3,6,2016-11-10,0.11,1,0 +31142743,Purple Palace,36425865,Emily,Brooklyn,Bushwick,40.69388,-73.92974,Private room,39,1,13,2019-05-04,2.15,1,89 +28359529,"Characteristic ""New Yorker"" 2 bedroom apartment",214121850,Giorgio,Manhattan,Upper East Side,40.76615,-73.95662,Entire home/apt,300,5,8,2019-06-02,0.94,1,82 +28367520,Peaches Cozy Corner,214171931,Camorine,Queens,St. Albans,40.695440000000005,-73.77663000000001,Private room,50,1,81,2019-06-16,8.02,1,232 +10334395,Private Room in Brooklyn Artist Apt,10197136,Kait,Brooklyn,Bedford-Stuyvesant,40.68086,-73.92746,Private room,45,1,0,,,1,0 +16830241,"Sunny, Modern East Village 1BR w/ 24-hr doorman",7837004,Hilary,Manhattan,East Village,40.72979,-73.98917,Entire home/apt,170,5,29,2019-06-04,0.98,1,0 +26662711,Cozy Studio near Hudson River & Central Park,104117770,Dara,Manhattan,Hell's Kitchen,40.7686,-73.98951,Entire home/apt,130,4,7,2019-03-24,0.59,1,0 +6006711,Awesome Place in the Heart of EV,28429835,Arpan,Manhattan,East Village,40.72753,-73.98749000000001,Private room,250,1,1,2015-05-22,0.02,1,0 +13233856,"Cozy room, great location",22682349,Marwa,Manhattan,Upper West Side,40.79643,-73.97188,Private room,110,7,2,2017-01-01,0.06,1,0 +23290041,Live Like a Local in East Williamsburg Studio Apt,32226468,Melissa,Brooklyn,Williamsburg,40.705290000000005,-73.93883000000001,Entire home/apt,37,4,2,2018-04-25,0.13,1,0 +32575528,"Woodside RM close to 7 express , airport & Midtown",137358866,Kazuya,Queens,Woodside,40.74228,-73.90049,Private room,43,30,0,,,103,215 +9364626,"Your sunny, large room in Brooklyn!",22141007,Sarine,Brooklyn,Prospect Heights,40.68048,-73.97463,Private room,75,2,0,,,1,0 +34491885,Family Room to fit all of YOU!,261750091,The Michelangelo,Manhattan,Theater District,40.76203,-73.98191,Private room,100,1,0,,,7,230 +8192768,Pleasant room on garden floor,2808153,Basil And Jacqueline,Manhattan,Harlem,40.80577,-73.94708,Private room,120,2,11,2017-06-22,0.25,2,263 +5010729,Quaint One Bed Apartment on UES,7847292,Tom,Manhattan,Upper East Side,40.77537,-73.95029,Entire home/apt,169,4,147,2019-06-23,2.76,1,310 +32219678,Sonder | Wall Street | Quaint Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70564,-74.01162,Private room,204,2,4,2019-04-29,0.96,327,327 +29833375,Brooklyn Loft Bedroom II,30346705,Soeun & Rolando,Brooklyn,Bedford-Stuyvesant,40.69086,-73.95955,Private room,50,1,42,2019-07-01,5.38,2,57 +26390806,Cosy and Spacious New York Apartment,75479380,Maria Ivy,Queens,Long Island City,40.75192,-73.94074,Entire home/apt,125,2,6,2019-01-03,0.7,1,0 +26190785,Minimalistic private room w twin bed in the Bronx,144119993,Charles,Bronx,Belmont,40.85609,-73.88391,Private room,30,1,9,2018-08-02,0.71,2,0 +19317002,Quiet Sunny Studio in Roosevelt Island,21383358,Zheliang,Manhattan,Roosevelt Island,40.76119,-73.94914,Entire home/apt,70,5,3,2018-07-01,0.12,1,0 +9765944,SUNNY BEDROOM IN BROOKLYN BROWNSTON,10366292,Lea,Brooklyn,Clinton Hill,40.68522,-73.96325999999999,Private room,75,1,0,,,3,0 +35941038,Times Square modern and contemporary studio,269837702,Андрей,Manhattan,Theater District,40.761,-73.98217,Entire home/apt,249,5,0,,,1,117 +21972697,Newly private room in best Co-Living,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94076,Private room,50,30,4,2018-03-08,0.21,10,364 +18025228,"Huge room 25 min to manhattan. L,M,J,Z train.",101736132,Alex,Brooklyn,Bushwick,40.69045,-73.91507,Private room,40,2,12,2017-10-07,0.44,2,281 +5783925,"Shared room, full size bed & Skyline view!",23977712,Sarah,Manhattan,East Harlem,40.79082,-73.94615,Shared room,50,1,181,2019-06-30,3.49,2,46 +35945256,Penn House~~~~5 mins from JFK,269113892,Penn,Queens,Jamaica,40.68248,-73.79417,Entire home/apt,128,1,5,2019-07-01,5.0,1,176 +18249844,Central Park One Bedroom Apartment in Harlem,126110994,Andrew,Manhattan,Harlem,40.8043,-73.95106,Entire home/apt,85,1,25,2017-07-20,0.93,1,0 +29956272,"Charming and quiet bedroom in Greenpoint, Brooklyn",46393811,Ondine,Brooklyn,Greenpoint,40.73123,-73.95664000000001,Private room,80,5,1,2018-12-29,0.16,1,22 +27394468,Bright Light High-rise Spacious Room with Balcony,206451695,Vanessa,Manhattan,Hell's Kitchen,40.7594,-73.99748000000001,Private room,180,4,10,2019-06-15,0.91,3,365 +1203812,Quiet minimal clean,6575712,Emma,Manhattan,East Village,40.73138,-73.98807,Entire home/apt,125,2,28,2019-05-20,0.45,1,179 +4650123,"Stunning Lower East 2 Bed, Live New York Style!",6230230,John,Manhattan,Lower East Side,40.71927,-73.98510999999999,Entire home/apt,109,3,42,2019-06-13,1.13,3,7 +19587940,Sweet Space in Bed Stuy: July,137685990,Helen,Brooklyn,Bedford-Stuyvesant,40.68387,-73.9262,Private room,32,2,3,2017-07-17,0.12,1,0 +32992183,Large 2 bedroom Williamsburg loft apartment,72660976,Joseph,Brooklyn,Williamsburg,40.71177,-73.95629,Entire home/apt,180,3,6,2019-06-23,1.51,1,38 +3041785,Luxury Space East Village 3 Bedrm sleeps 7,15430260,Michelle,Manhattan,East Village,40.72889,-73.98853000000001,Entire home/apt,249,1,150,2019-06-24,2.52,1,278 +8761451,Chic Bachelorette Pad,45944532,Deborah,Manhattan,Greenwich Village,40.73076,-73.99566999999999,Entire home/apt,300,1,0,,,1,0 +26075796,Spacious Studio Near Columbia University,155807678,Gloria,Manhattan,Morningside Heights,40.80395,-73.96311,Entire home/apt,113,45,0,,,1,87 +16373331,Holidays in NYC,107240480,Julia,Brooklyn,South Slope,40.66383,-73.983,Entire home/apt,50,4,0,,,1,0 +33874579,Middle town luxury studio close to penn station,210193549,Jiangbin,Manhattan,Chelsea,40.75114,-73.99843,Entire home/apt,150,8,3,2019-06-12,1.05,1,39 +36140620,Cozy room in Nyc,271393608,Michael,Manhattan,Hell's Kitchen,40.768240000000006,-73.98538,Shared room,69,1,0,,,6,19 +6902147,Studio Apartment in Crown Heights,88032,Timothy,Brooklyn,Crown Heights,40.67659,-73.95416999999999,Entire home/apt,65,7,0,,,1,0 +14570492,6 Guests LUXURY MANHATTAN Condo With ROOFTOP!!!,90258665,Jason,Manhattan,Harlem,40.80742,-73.95205,Entire home/apt,289,3,5,2019-03-28,0.53,1,365 +6512429,Charming Park Slope 1BR w/ Patio,34049419,Becky And John,Brooklyn,South Slope,40.6675,-73.98898,Entire home/apt,140,3,14,2016-08-18,0.28,1,0 +19758402,CITY ISLAND VACATION HOME NEAR THE BEACH,139415761,Deb,Bronx,City Island,40.85306,-73.78948000000001,Entire home/apt,85,2,42,2019-07-06,1.76,1,168 +28640338,Luxury Apartment/ Wall Street,56656728,Bret,Manhattan,Financial District,40.7112,-74.0094,Entire home/apt,209,1,51,2019-07-06,5.82,5,1 +20014072,Room for one at Stella's place,15617507,Stella,Bronx,Morris Park,40.85145,-73.86129,Private room,29,1,53,2019-01-19,2.65,3,137 +34948941,Huge window bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63721,-74.01229000000001,Private room,60,1,0,,,4,353 +32069538,Harlem Residence 2,10257350,Mauricio,Manhattan,Washington Heights,40.83325,-73.94444,Private room,50,2,8,2019-07-02,2.76,2,52 +3624653,S 2/Bedford Well-Lit Private Room,6472334,Matthew,Brooklyn,Williamsburg,40.71286,-73.96244,Private room,69,2,11,2016-04-29,0.18,2,0 +34956747,"Beautiful studio 96 +Walk to Central Park/Manhattan",49292376,Melissa,Manhattan,East Harlem,40.78707,-73.95121,Entire home/apt,145,2,1,2019-06-09,1.0,1,94 +2196271,Bright Dble Bedroom. Private Bath. Close to Subway,396599,Thomas,Brooklyn,Bushwick,40.69972,-73.92244000000001,Private room,55,2,1,2018-12-28,0.16,2,157 +15535079,"Cozy room in Williamsburg,only 1 stop to Manhattan",6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70908,-73.96146,Private room,90,2,2,2018-05-11,0.09,2,0 +15156627,Best part of Brooklyn! Large room in Bushwick.,39575635,Julian,Brooklyn,Bushwick,40.70342,-73.92829,Private room,70,1,15,2017-01-02,0.45,1,0 +35384172,Extremely Large 2 Bedroom Midtown Apartment,266157648,Kraja,Manhattan,Kips Bay,40.74363,-73.9773,Entire home/apt,299,1,4,2019-07-06,4.0,1,348 +26895277,Spacious Apt. + Waterfront Terrace in Manhattan,202319331,Rodrigo,Manhattan,Lower East Side,40.711940000000006,-73.97792,Private room,80,4,6,2019-05-20,1.7,1,0 +12558102,Studio Apt with Private Backyard,68070597,Joe,Brooklyn,Bedford-Stuyvesant,40.69756,-73.93893,Entire home/apt,80,21,0,,,1,0 +36472171,1 bedroom in sunlit apartment,99144947,Brenda,Manhattan,Inwood,40.86845,-73.92449,Private room,80,1,0,,,1,79 +19983575,Private long room in Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80257,-73.93987,Private room,46,30,5,2019-06-30,0.26,4,220 +21561964,Bright and cozy 2bs 2bths near JFK and the city,15145474,Denisse,Queens,Ozone Park,40.68146,-73.84725999999999,Entire home/apt,150,4,38,2019-06-19,2.66,4,51 +11639297,Modern New Condo 20 minutes to upper west side,61699814,Shanthi,Bronx,Kingsbridge,40.8787,-73.90098,Private room,35,30,7,2019-06-08,0.49,2,155 +19408844,Cozy studio in the heart of Chelsea!,2102686,Eric,Manhattan,Chelsea,40.7483,-74.00031,Entire home/apt,135,2,10,2018-09-03,0.41,1,5 +1950311,"Bright, cozy East Williamsburg home",8551260,Hannah,Brooklyn,Williamsburg,40.70604,-73.94457,Entire home/apt,151,5,39,2019-06-18,0.58,2,0 +20231480,"Cosy 25minutes manhatan,15 min Barclays Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65593,-73.91798,Private room,80,7,5,2018-05-07,0.26,9,206 +873701,"Chic, quiet 1BR with patio (steps from the subway)",699759,Becky,Brooklyn,Crown Heights,40.67121,-73.95534,Entire home/apt,140,4,125,2019-06-11,1.6,1,239 +4603954,BRIGHT MODERN BEDROOM,23718461,Ingrid,Brooklyn,Flatlands,40.62949,-73.92703,Private room,85,2,0,,,1,365 +29515558,"A Comfortable Place, 15 min to JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.6854,-73.8623,Private room,50,3,10,2019-06-24,1.36,2,44 +26788754,Bright clean serene room Bushwick blocks 4rm train,201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93292,Private room,60,20,9,2019-03-29,0.75,4,318 +5697556,Magical rowhouse and garden in Williamsburg,946943,Annie,Brooklyn,Williamsburg,40.71212,-73.94965,Entire home/apt,155,4,58,2019-06-28,1.21,3,3 +9590866,Amazing 1bd in the heart of NYC!!!,49641082,Gary,Manhattan,Harlem,40.81872,-73.94491,Private room,39,1,0,,,1,0 +26488707,Harlem Peace Quarters,65093286,Angel,Manhattan,Harlem,40.81488,-73.94415,Private room,49,1,12,2018-07-28,0.97,1,0 +34890712,Bushwick Enclave with Backyard - ByCrochet,192890383,Evan,Brooklyn,Bushwick,40.6909,-73.91198,Private room,110,1,0,,,1,0 +18852200,Comfy Single Bedroom-Large East Village Apartment,42422050,Paula,Manhattan,East Village,40.72696,-73.97433000000001,Private room,75,2,19,2019-04-29,0.99,2,303 +33611988,"Spacious,Quite,beautiful room in Astoria-Ditmars",64453547,Onur,Queens,Ditmars Steinway,40.77832,-73.90604,Private room,53,20,0,,,3,0 +27314038,Nice 20 minute Manhattan 15 to Barclays Center,94214493,Dadrine,Brooklyn,East Flatbush,40.65473,-73.91846,Private room,80,7,1,2019-01-01,0.16,9,365 +36268615,"Small Bedroom, simple & clean. Nice apt. Yard.",19797950,Shepherd,Brooklyn,Gowanus,40.66684,-73.99333,Private room,51,1,0,,,3,333 +20755255,Private 1-bedroom Modern Apt in Upper Manhattan,28337487,Sebastian,Manhattan,Washington Heights,40.84962,-73.94011,Private room,60,1,11,2017-11-02,0.49,1,0 +16542661,Parisian Apt in PRIME Carroll Gardens Brooklyn,72568223,Jane Jo,Brooklyn,Gowanus,40.68066,-73.99096999999999,Entire home/apt,159,5,12,2017-09-10,0.41,1,0 +14692426,Big & Bright Hamilton Heights Manhattan Bedroom,91364768,Richard,Manhattan,Harlem,40.82722,-73.9431,Private room,100,4,42,2019-06-29,1.37,1,62 +10491594,one bedroom apt in a new house,16782573,Dorina,Queens,Middle Village,40.71632,-73.88297,Entire home/apt,115,4,6,2018-11-13,0.14,4,314 +8809578,Beautiful Quiet Chelsea Apartment,14914020,Cihan,Manhattan,Chelsea,40.7442,-74.00123,Entire home/apt,250,1,1,2015-12-16,0.02,1,0 +23235139,"Sunny, spacious and quiet room in artist residency",56793,Gisella,Brooklyn,East Flatbush,40.64745,-73.94413,Private room,50,6,0,,,1,100 +5451108,Beautiful room with large windows,7159349,Marian,Brooklyn,Greenpoint,40.73556,-73.9557,Private room,75,6,0,,,1,0 +36346454,Queen Bed in Queens **Amazing Astoria Location**,27589350,Adam,Queens,Astoria,40.76575,-73.92307,Private room,55,1,0,,,1,13 +27140780,Bright cozy private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.64228,-73.95204,Private room,40,2,4,2018-09-28,0.37,6,260 +24945323,Cozy 1 Bedroom on Upper West Side,164724867,Kevin,Manhattan,Upper West Side,40.78922,-73.97398000000001,Entire home/apt,175,2,8,2019-06-02,0.59,1,1 +26803556,Sunny Top Floor Victorian,801975,Elizabeth And Timothee,Brooklyn,Crown Heights,40.67726,-73.94618,Entire home/apt,142,7,11,2019-07-06,1.04,2,219 +11528951,Spacious duplex in townhouse.,1141610,Maria,Brooklyn,Crown Heights,40.67578,-73.92730999999999,Entire home/apt,250,7,0,,,1,0 +29513629,Gorgeous 1 bedroom in Brooklyn Heights!,781180,Maria,Brooklyn,Brooklyn Heights,40.69033,-73.9931,Entire home/apt,150,5,1,2019-01-04,0.16,1,35 +23715974,Spacious & Sunny Central Park West Apartment,3635762,Daphne,Manhattan,Harlem,40.80389,-73.95711999999999,Entire home/apt,190,5,0,,,1,0 +32329737,One stop away manhattan #2,91605357,Tina,Brooklyn,Williamsburg,40.70738,-73.95569,Private room,60,2,26,2019-06-29,6.5,2,21 +22265765,2Br~Prime Upper east~Central park~10 Min,162280872,Izi,Manhattan,Upper East Side,40.77466,-73.94748,Entire home/apt,150,30,5,2019-06-01,0.29,13,140 +19850113,Cozy Bright in Kensington by trains,14898658,Chadanut,Brooklyn,Kensington,40.64242,-73.98138,Private room,45,1,22,2019-05-21,0.96,11,7 +15819665,Charming 2BR--20 min to Manhattan,30593595,Dorion,Brooklyn,Bushwick,40.68442,-73.9083,Entire home/apt,99,3,126,2019-07-03,3.93,1,46 +19458290,Private & Cozy Apartment - 5 Minutes from JFK !!,121978270,Victoria & Lovely,Queens,South Ozone Park,40.67,-73.79231999999999,Entire home/apt,85,4,55,2019-06-09,2.48,1,69 +30418905,Private Room In Brooklyn Community House,35746135,Lionel,Brooklyn,Borough Park,40.6289,-73.97683,Private room,35,1,9,2019-03-30,1.23,2,0 +32365636,Water Front Duplex with Amazing Views and Parking.,132163538,Alex,Brooklyn,Bay Ridge,40.6348,-74.03788,Entire home/apt,155,28,0,,,1,339 +671496,Great private room in awesome area!,3403890,Cory,Brooklyn,Crown Heights,40.67138,-73.95577,Private room,70,3,0,,,1,0 +33908256,Bright & designed apartment in Brooklyn,254795926,David,Brooklyn,Crown Heights,40.67144,-73.94613000000001,Entire home/apt,120,2,14,2019-06-29,5.6,1,298 +29885663,Powell Victorian,42210223,Mimi,Brooklyn,Flatbush,40.63616,-73.95594,Private room,120,2,0,,,1,83 +23433585,"Nice room near SI Ferry +15 minutes by car.",174786681,Sara I,Staten Island,Randall Manor,40.63779,-74.12274000000001,Private room,31,7,3,2018-10-31,0.19,1,357 +23652689,Harlem Hideaway,157845873,Rainier,Manhattan,Harlem,40.81798,-73.93956,Private room,115,1,53,2019-04-25,3.33,1,0 +26954,NYC fabulous views Manhattan's eye,115157,Nimo,Manhattan,Kips Bay,40.74294,-73.98009,Entire home/apt,199,5,38,2015-12-02,0.38,1,260 +6323975,Luxury Apartment in Midtown West,32904968,Yulia,Manhattan,Hell's Kitchen,40.75815,-73.99374,Shared room,130,1,0,,,1,0 +35619694,Lovely New Private Room in Brooklyn!,92936093,Kenny,Brooklyn,Flatbush,40.64898,-73.95501999999999,Private room,65,1,4,2019-07-01,4.0,1,109 +23729711,Quiet and Secluded Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79068,-73.94461,Private room,30,1,15,2018-04-30,0.94,3,0 +17364659,Large Cozy 1 bedroom Apt in South Williamsburg,1789596,Cris,Brooklyn,Williamsburg,40.707440000000005,-73.95416999999999,Entire home/apt,125,6,10,2019-01-03,0.36,1,239 +6134906,"Clean, comfy & casual private room - 1min to train",6541721,Erika,Brooklyn,Sunset Park,40.64027,-74.01774,Private room,49,1,67,2019-06-23,1.56,1,8 +26490844,Twin suites of Prospect Lefferts Garden- Brooklyn,76225580,Gary,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95231,Entire home/apt,200,2,6,2019-06-30,2.28,2,267 +9215307,Beautiful Room: Charming Apt Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71292,-73.96215,Private room,90,1,46,2019-06-09,1.04,3,16 +4727912,"Cosy 2 bed, Gramercy, NYC Apartment",24415699,Charlie,Manhattan,Civic Center,40.71395,-74.00545,Entire home/apt,199,6,0,,,1,0 +64000,Williamsburg near soho. / loftbed,312722,Kristian & Di,Brooklyn,Williamsburg,40.7069,-73.95467,Private room,60,17,14,2019-01-07,0.14,4,362 +2046273,Private room in Park Slope,3126588,Laszlo,Brooklyn,Sunset Park,40.66118,-73.98901,Private room,40,25,0,,,1,0 +18306713,Sunny Spacious King Size Bed,67986867,Tiago,Brooklyn,Bushwick,40.69449,-73.92629000000001,Entire home/apt,235,3,4,2017-10-23,0.18,1,0 +10382430,Private bedroom located in Bushwick,53445174,Robert,Brooklyn,Bushwick,40.685970000000005,-73.91417,Private room,35,1,1,2016-01-31,0.02,1,0 +34384745,*20%OFF-Amazing Heart of NYC! Steps to subway!,104084124,Jeanne,Manhattan,Upper East Side,40.76154,-73.95796999999999,Entire home/apt,161,2,9,2019-06-28,4.15,1,317 +6522849,Home Sweet Home :),26439972,Leonit,Brooklyn,Sheepshead Bay,40.60078,-73.96526999999999,Private room,59,1,5,2019-01-03,0.13,1,319 +18432636,Great Apartment in the Heart of East Williamsburg,107778395,Alexander,Brooklyn,Williamsburg,40.71188,-73.94386999999999,Private room,55,5,9,2018-12-04,0.34,1,20 +4069681,"""DECO CASA"" 2 Bedroom Greenpoint Brooklyn",20741012,Devin,Brooklyn,Greenpoint,40.73357,-73.95439,Entire home/apt,75,2,102,2019-06-30,4.27,1,30 +33366167,Room in Wonderful and Secure Private House,43330303,Cristian,Bronx,Fordham,40.85394,-73.89641,Private room,35,5,3,2019-07-02,1.2,2,62 +2519112,in the heart of manhattan,9372538,Fabiola,Manhattan,Hell's Kitchen,40.76152,-73.98793,Private room,149,1,158,2019-06-13,3.11,2,78 +17385892,Light-Filled Flatiron: Double Bed 'n Private Bath,117521391,Cassia,Manhattan,Gramercy,40.73828,-73.98954,Private room,250,3,33,2019-05-06,1.18,1,167 +4744276,Huge Room in First Floor Brownstone,24487418,Daniel,Brooklyn,Crown Heights,40.67318,-73.94842,Private room,75,2,19,2016-08-26,0.39,1,0 +2193649,CLEAN ROOM on Lower East Side,11136429,Yanina,Manhattan,Lower East Side,40.71735,-73.99095,Private room,79,1,259,2017-12-20,3.93,1,2 +27432653,Sleep Under the Stars!,105699183,Crystal,Manhattan,Harlem,40.82771,-73.9499,Private room,65,4,2,2019-05-28,0.25,2,0 +18550366,Midtown East Apt,4075128,Chang,Manhattan,Murray Hill,40.74822,-73.97966,Private room,65,2,2,2017-05-20,0.08,1,0 +26884455,Beautiful Room with Laundry in Prime Williamsburg,141204841,Ivy And Andrew,Brooklyn,Williamsburg,40.70915,-73.96479000000001,Private room,95,30,35,2019-06-23,2.97,2,365 +18374250,"Cozy, private bdrm",66961768,Duanne,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93746999999999,Private room,30,1,9,2017-09-19,0.34,1,0 +30908886,Chic and Lofty Studio Apartment in heart of SoHo,24755227,Mic,Manhattan,SoHo,40.7271,-74.00286,Entire home/apt,109,6,5,2019-07-01,0.84,1,9 +4509560,Reno Studio Gramercy~Sleeps3!,2119276,Host,Manhattan,Gramercy,40.73505,-73.98212,Entire home/apt,140,30,9,2018-08-11,0.17,39,344 +9505449,"Private room in heart of Boerum Hill, Brooklyn",338562,Shanika,Brooklyn,Boerum Hill,40.6836,-73.98285,Private room,62,2,4,2017-05-08,0.11,1,0 +29302018,1 Bedroom Apartment 1 minute walk to subway,93732420,Tim,Queens,Astoria,40.76363,-73.92178,Entire home/apt,90,5,0,,,2,0 +30324225,"Cozy, two-bedroom East Harlem apartment",28613272,Roosbelinda,Manhattan,East Harlem,40.799490000000006,-73.93531,Entire home/apt,149,7,1,2018-12-30,0.16,1,3 +24204269,Big Sunny Room 1 Block from Central Park,7360975,Calvin,Manhattan,East Harlem,40.79635,-73.94815,Private room,80,3,15,2019-06-01,1.25,1,88 +36227884,New York Guest House Private Shared Room,272477673,Jin,Manhattan,Chelsea,40.74714,-73.99117,Shared room,67,1,0,,,3,323 +19769680,Huge 1 bedroom apartment on Broadway!,15468652,Igor,Manhattan,Washington Heights,40.834990000000005,-73.94528000000001,Private room,59,6,1,2017-08-04,0.04,1,0 +22904609,"Stunning 1BR In Flatiron, Subway steps away!",169534923,Carnitas,Manhattan,Kips Bay,40.74148,-73.98125999999999,Entire home/apt,188,30,40,2019-06-23,2.35,1,146 +2078687,Lower East Side Haven on Ludlow St,10621196,Kate,Manhattan,Lower East Side,40.71715,-73.98935999999999,Entire home/apt,110,8,5,2016-01-06,0.07,1,333 +4947515,Your Home with View in Greenpoint!,1556712,Margrethe,Brooklyn,Greenpoint,40.73208,-73.95653,Entire home/apt,190,3,32,2019-06-04,0.6,1,265 +36142537,2 Bedroom Home away from home,62154352,Emily,Manhattan,Harlem,40.81427,-73.95141,Entire home/apt,150,2,0,,,1,40 +24428060,Sweet Home Away From Home,120371644,Natasha,Brooklyn,Sheepshead Bay,40.59143,-73.95548000000001,Private room,65,2,52,2019-06-24,3.57,2,340 +8281340,"Spacious, Townhouse Garden Apt",21628945,Keith,Brooklyn,Bedford-Stuyvesant,40.68223,-73.9269,Entire home/apt,121,2,16,2019-01-28,0.42,2,0 +17495862,Homey funky eclectic rich of arts,90215210,Lou,Brooklyn,Crown Heights,40.67167,-73.93088,Private room,45,4,37,2019-06-24,1.29,1,84 +14332083,Large furnished room with 2 beds,87723508,Edyta,Queens,Glendale,40.69848,-73.89569,Private room,34,30,14,2019-07-02,0.41,2,365 +28938342,"❤️ 2 Beds Option@Bushwick, 15 mins to Manhattan",217844544,Mia,Brooklyn,Bushwick,40.69404,-73.92432,Private room,70,3,45,2019-06-30,4.93,2,146 +17943817,"Private home in the heart of Ridgewood, Queens.",123102489,Mariann,Queens,Glendale,40.69775,-73.89474,Private room,69,2,2,2017-05-08,0.07,1,0 +13000257,"Charming, bright Williamsburg apt",71665510,Aurora,Brooklyn,Williamsburg,40.71685,-73.9615,Entire home/apt,200,2,4,2019-05-07,0.15,1,318 +9603611,Light-filled Artist Loft in the heart of Bushwick,47710992,Emilie,Brooklyn,Bushwick,40.70831,-73.92095,Entire home/apt,115,2,9,2017-12-10,0.27,1,1 +35876561,Modern house (2 BR Apt) • 30Mins from Time Square1,76360760,Christopher,Queens,Woodside,40.744,-73.90185,Entire home/apt,169,1,0,,,1,60 +26387674,Cozy Entire Floor Private 2 Bedroom & Bath,37274021,Nuno,Brooklyn,Bedford-Stuyvesant,40.68497,-73.9543,Private room,110,3,38,2019-06-23,3.25,1,101 +29133389,Awesome Budget Private Room with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69232,-73.94966,Private room,70,2,14,2019-06-23,1.65,3,365 +54626,Cozy bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83075,-73.93058,Private room,45,1,138,2019-06-30,1.45,3,323 +28219460,Convenient Apartment in Brooklyn Townhouse,6928558,Amy,Brooklyn,Bedford-Stuyvesant,40.69084,-73.95368,Entire home/apt,140,2,51,2019-07-06,5.02,1,125 +28661704,Gorgeous Bedroom in the heart of Bushwick Him-3R-2,216235179,Nina,Brooklyn,Bushwick,40.70082,-73.91859000000001,Private room,50,30,2,2019-06-30,0.47,17,319 +1828063,••BEST Manhattan Downtown Location!!••,9339714,Jessica,Manhattan,East Village,40.72982,-73.98532,Entire home/apt,175,2,53,2018-01-01,0.79,2,0 +34204602,Sonder | 11th Ave | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76166,-73.99691,Entire home/apt,182,29,0,,,327,302 +30795961,Quiet 1 bedroom near Midtown Manhattan,72082556,Nicole,Queens,Long Island City,40.73637,-73.9371,Entire home/apt,75,1,0,,,1,42 +7870442,Spacious Upper West Side Studio,25613217,Maya,Manhattan,Upper West Side,40.80049,-73.96064,Entire home/apt,96,1,2,2016-07-04,0.05,1,0 +5569302,"Sunny Apt, park view - Jeffreson L",5074343,Josh,Brooklyn,Bushwick,40.70336,-73.92416,Entire home/apt,65,5,0,,,1,0 +35005197,Sonder | 180 Water | Pleasant 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70575,-74.00621,Entire home/apt,302,29,0,,,327,190 +9887763,Spacious and comfortable rm in LIC,31534322,Nia,Queens,Long Island City,40.7484,-73.94604,Private room,90,2,59,2019-01-02,1.37,4,33 +1881801,Gorgeous 1.5 Br - 1 block to Subway-9 min to NYC!,8292927,Christian,Brooklyn,Williamsburg,40.71394,-73.94193,Entire home/apt,175,2,111,2019-06-23,2.4,2,108 +12523287,"Clean Cozy Room, close to Subway Shops Restaurants",5069809,Hua,Queens,Forest Hills,40.71915,-73.84397,Private room,65,2,29,2019-06-10,0.77,1,333 +22267036,Bright beautiful modern large and secure.,138607228,Edward,Brooklyn,Bushwick,40.69367,-73.90756,Entire home/apt,150,2,41,2019-04-14,2.78,3,0 +17482187,Minimalist Room with a Spectacular view,7275333,Maria,Manhattan,Kips Bay,40.73695,-73.97336,Private room,133,2,37,2019-06-02,1.39,1,33 +18826370,Heights III,9130040,Candace,Brooklyn,East Flatbush,40.663140000000006,-73.93299,Private room,89,1,8,2019-06-30,0.61,6,365 +25493246,Cozy Studio Apt-One block away from Prospect Park!,192406990,Tricia,Brooklyn,Flatbush,40.65385,-73.96202,Entire home/apt,90,1,48,2019-07-06,4.19,1,21 +31801375,East Flatbush,238321827,Denise,Brooklyn,East Flatbush,40.65057,-73.92383000000001,Private room,37,1,51,2019-06-28,9.56,1,341 +24556756,Anita’s Funky Master Bedroom on Ocean Parkway,185524223,Anita,Brooklyn,Kensington,40.64196,-73.97466999999999,Private room,62,1,95,2019-07-05,6.97,2,261 +15114181,Spacious Room In Luxury NYC Apartment,39300337,Maya,Manhattan,Murray Hill,40.74968,-73.97665,Private room,132,4,10,2019-07-05,0.57,2,364 +2254851,Sunny and Bright 1BR Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72599,-73.94171999999999,Entire home/apt,149,30,4,2019-04-20,0.09,52,330 +20185035,Cozy Bright Room in Greenpoint,133773191,Nikita,Brooklyn,Greenpoint,40.72677,-73.94578,Private room,43,2,153,2019-06-22,6.59,1,14 +19787770,"Pleasant Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.6542,-74.00159000000001,Private room,75,3,7,2018-04-20,0.29,2,0 +13761654,Great room in a spacious apartment DT Manhattan,327900,T,Manhattan,Lower East Side,40.72144,-73.98655,Private room,69,1,10,2016-12-18,0.27,2,187 +17763622,JUNIOR SUITE IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.79142,-73.94664,Private room,90,2,110,2019-06-29,4.04,4,237 +13822852,Beautiful two bedroom apartment in Astoria queens!,23436785,Cristy,Queens,Ditmars Steinway,40.77407,-73.90037,Entire home/apt,200,2,11,2019-05-19,0.52,1,363 +21151399,Quiet apartment next to subway. 15 min to midtown,35413624,Alexis,Manhattan,Harlem,40.82154,-73.94554000000001,Entire home/apt,110,15,1,2017-10-12,0.05,1,0 +2984662,Brooklyn Heights - 1 Bedroom,15179425,Chris,Brooklyn,Brooklyn Heights,40.69443,-73.99068,Entire home/apt,150,2,10,2018-09-14,0.16,1,0 +6693403,PERFECT FOR A SMALL GET AWAY.,10717539,Eddie,Brooklyn,Flatbush,40.63485,-73.96208,Entire home/apt,175,1,0,,,1,0 +17684067,Travelers Private Room,119737270,Fattie,Brooklyn,Flatbush,40.64041,-73.95674,Private room,60,2,0,,,2,175 +23092889,Cute private bedroom and bathroom - Bushwick,2213846,Marti,Brooklyn,Bushwick,40.70114,-73.91705,Private room,70,2,29,2019-06-25,1.71,1,16 +7239527,CLEAN AND COZY UES,37903935,Gabriel,Manhattan,East Harlem,40.79831,-73.93961,Private room,70,1,1,2015-07-20,0.02,1,0 +6748952,Private Room w/Bathroom / W'Berg BK,34950721,Samuel,Brooklyn,Williamsburg,40.70799,-73.94888,Private room,100,1,1,2015-06-15,0.02,2,0 +22878070,"Large 3 Bedroom Loft in Fort Greene, Brooklyn",26500272,Sam,Brooklyn,Fort Greene,40.6932,-73.97348000000001,Entire home/apt,350,3,0,,,1,0 +19532907,"Bright, Sunny, Clean Bedroom w/Private Bath 3MB",17555570,Yan,Brooklyn,Crown Heights,40.6695,-73.92226,Private room,63,1,66,2019-06-22,2.68,12,39 +32670621,Heavens' Home,245655016,Cleo & Job,Brooklyn,Canarsie,40.63355,-73.90465999999999,Entire home/apt,168,1,10,2019-06-28,2.46,1,83 +170761,"Fort Greene, Brooklyn: Front Bedroom",67778,Doug,Brooklyn,Fort Greene,40.68768,-73.97610999999999,Private room,85,2,35,2019-07-02,0.55,2,161 +4469679,Sunny Lower East Side Penthouse,19336493,Ryan,Manhattan,Lower East Side,40.71777,-73.99011,Entire home/apt,325,4,0,,,1,0 +36032098,2 Bedroom Fits 4 In Downtown NYC,267458545,Robin,Manhattan,Nolita,40.7223,-73.99508,Entire home/apt,225,7,1,2019-07-03,1.0,1,76 +2238389,Huge Duplex in South Slope,11430355,Monika,Brooklyn,Sunset Park,40.66296,-73.98955,Entire home/apt,290,2,25,2019-04-27,0.39,1,195 +4485286,Luxury Apartment on Wall Street,14138135,Sabir,Manhattan,Financial District,40.70388,-74.00633,Entire home/apt,170,1,2,2015-08-03,0.04,1,0 +21958076,Old World Charm in the Heart of Brooklyn R2,160300400,Tina,Brooklyn,Bay Ridge,40.62848,-74.03076999999999,Private room,79,4,12,2019-06-30,0.62,2,175 +7032930,BROWNSTONE DUPLEX HUGE 1 BEDROOM,14104350,Irving,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94232,Entire home/apt,90,5,25,2019-06-03,0.53,2,347 +34865230,Cool studio in Brooklyn Heights,3415882,Matthew,Brooklyn,Brooklyn Heights,40.69015,-73.99271,Entire home/apt,150,5,2,2019-07-03,2.0,1,10 +26450833,Sonder | 21 Chelsea | Grand 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74154,-73.99526999999999,Entire home/apt,250,29,0,,,96,311 +25547839,"Bright Modern LUX 1BR with pool, gym and sauna",69578078,Olivia,Manhattan,Hell's Kitchen,40.76243,-73.99805,Entire home/apt,299,1,31,2019-06-30,2.74,1,84 +32986796,Furnished private room 5 minutes from Subway,141547523,Mathew,Manhattan,Harlem,40.82943,-73.9469,Private room,50,2,13,2019-06-15,3.42,1,65 +23651443,Matilda's House,32772480,Lorna,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.96030999999999,Entire home/apt,150,3,10,2019-07-02,0.64,2,187 +18745314,Cozy Studio Apartment in Harlem/ Manhattan area,37078449,Kim,Manhattan,Harlem,40.80722,-73.95614,Entire home/apt,130,1,2,2017-05-23,0.08,1,0 +11651929,"Large Sunny 1BR, 1 Block to Subway",3927655,Alexander,Manhattan,Washington Heights,40.83441,-73.93706,Entire home/apt,95,7,1,2016-03-18,0.02,1,0 +12940,Charming Brownstone 3 - Near PRATT,50148,Adreinne,Brooklyn,Bedford-Stuyvesant,40.68111,-73.95591,Entire home/apt,110,7,61,2019-05-25,0.52,1,265 +29264544,Spacious room in downtown 1st Ave 14th St.,36693787,Ma,Manhattan,Stuyvesant Town,40.73341,-73.98,Entire home/apt,188,10,1,2019-05-26,0.68,1,21 +22697211,Sweet studio in Cobble Hill Brooklyn,41550565,Jeannette,Brooklyn,Cobble Hill,40.68864,-73.99896,Entire home/apt,100,30,5,2019-06-15,0.33,1,117 +17728927,"Eclectic, Comfortable, Quiet & Convenient on UWS",62641345,Bob,Manhattan,Upper West Side,40.7975,-73.97161,Entire home/apt,199,2,83,2019-06-30,3.01,1,37 +22226334,Spacious private bedroom in Brooklyn New York,4143813,Yu,Brooklyn,Bushwick,40.70162,-73.91297,Private room,53,5,1,2018-01-02,0.05,1,0 +4285876,LES/Chinatown One Bedroom apt (all to yourself),22248783,Xiao,Manhattan,Lower East Side,40.71281,-73.99174000000001,Entire home/apt,140,1,16,2019-04-06,0.28,1,0 +1878965,Gorgeous 2BR Flex Loft w/NYC views,7503643,Vida,Brooklyn,Greenpoint,40.72589,-73.94055,Entire home/apt,159,30,5,2019-01-01,0.07,52,346 +352651,COMFORTABLE LARGE ROOM,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.95057,Private room,77,5,11,2019-06-23,0.13,3,365 +4492821,"Great location, spacious apt.",743716,Santiago,Brooklyn,Boerum Hill,40.68348,-73.98087,Entire home/apt,120,3,3,2016-01-05,0.05,1,0 +19720877,"Bright 2BR, terrace, best Bklyn Heights location!",7627586,Sarah,Brooklyn,Brooklyn Heights,40.69387,-73.99412,Entire home/apt,299,4,6,2018-12-31,0.27,1,27 +13414523,Beautiful Bldg near Columbia Uni,76415404,Omar,Manhattan,Upper West Side,40.8021,-73.96629,Private room,64,4,1,2016-06-16,0.03,1,0 +35841083,*Nice and Cozy private Bedroom*,13059803,Marie,Queens,Jackson Heights,40.7574,-73.85825,Private room,60,2,2,2019-07-01,2.0,1,326 +19368455,Chelsea Gem,70154608,Donna,Manhattan,Chelsea,40.74625,-73.99911,Entire home/apt,185,5,17,2019-07-01,0.88,1,15 +1110484,"Forget NYC, Stay in Williamsburg! Best 1 BR Apt",1690569,Greg,Brooklyn,Williamsburg,40.71852,-73.95616,Entire home/apt,175,6,32,2019-05-10,0.43,1,291 +22177035,"Quiet, Comfy Bedroom in Prime Williamsburg",8750186,Peter,Brooklyn,Williamsburg,40.7207,-73.96087,Private room,69,7,0,,,1,0 +21978366,Modern Bedstuy private bedroom,6441887,Su,Brooklyn,Bedford-Stuyvesant,40.69131,-73.93387,Private room,60,1,9,2018-06-01,0.46,2,0 +21762160,Big Clean well-lit 2br by the subway in WaHi NYC!,3329425,Brad,Manhattan,Washington Heights,40.837340000000005,-73.94506,Entire home/apt,120,2,1,2018-05-13,0.07,1,210 +33526710,"1 Bedroom studio 15Mins from JFK,30 mins by carLGA",252628456,Lisa,Brooklyn,East New York,40.66155,-73.88916,Entire home/apt,100,2,4,2019-07-05,4.0,1,96 +19455656,NYC adventurous getaway!,28626337,Jess,Manhattan,Chelsea,40.73958,-74.00171,Private room,65,3,2,2018-01-01,0.08,1,0 +36154148,"Private and cozy bedroom, for rent.",214483712,Christina,Staten Island,Bull's Head,40.59436,-74.16345,Private room,50,30,0,,,3,179 +2899082,"Large, Bright Williamsburg Loft",7321253,Kathryn,Brooklyn,Williamsburg,40.71853,-73.96287,Entire home/apt,150,3,0,,,1,0 +21673998,"Dean Street, BROOKLYN!!",151777787,Kristina,Brooklyn,Brownsville,40.67375,-73.90813,Private room,40,1,6,2017-12-29,0.3,2,0 +10207451,Private BR & Bath - Victorian Home,50549394,Susan,Brooklyn,Flatbush,40.632670000000005,-73.96199,Private room,175,2,6,2019-05-12,0.22,1,178 +7574515,Furnished Columbia Apartment,38699335,Tom,Manhattan,Morningside Heights,40.806740000000005,-73.96141,Private room,65,1,0,,,1,0 +25399452,Luxury Mid-Century Modern in West Village,48097665,Matthew,Manhattan,West Village,40.73735,-74.0004,Entire home/apt,160,30,8,2019-05-25,0.71,1,156 +9299515,Luxury Studio in Chelsea/Flat Iron,48277456,Mariya,Manhattan,Chelsea,40.73936,-73.99351999999999,Entire home/apt,200,7,0,,,1,0 +36113697,Elegant private bedroom in sunny modern home #3,101771985,Yudis,Manhattan,Harlem,40.80624,-73.9502,Private room,90,1,1,2019-06-30,1.0,3,179 +22280002,Stuyvesant Heights Loft like Apartment.,67373899,Will,Brooklyn,Bedford-Stuyvesant,40.68206,-73.94417,Entire home/apt,100,1,25,2019-06-24,1.35,1,108 +31130,Most Central Location!,117287,Lara,Manhattan,Hell's Kitchen,40.76754,-73.98399,Private room,130,2,50,2019-05-26,0.45,3,234 +34177609,MODERN APT WITH AN AMAZING CITY VIEW IN MIDTOWN,82537581,Gabriel,Manhattan,Hell's Kitchen,40.76802,-73.99298,Entire home/apt,249,5,2,2019-07-01,2.0,1,364 +23855079,1 Bdrm 1.5 Bath Midtown Condo,29100568,Deborah,Manhattan,Theater District,40.76185,-73.9816,Entire home/apt,171,20,1,2018-06-07,0.08,4,0 +34466803,Sunny spacious room full of good energy,1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94386999999999,Private room,45,1,3,2019-07-02,1.58,2,0 +33746153,The Stop at Fordham Manor,51614766,Jonathan,Bronx,Fordham,40.8667,-73.89115,Private room,70,1,5,2019-05-27,1.76,1,364 +18729447,Cosy bedroom in prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71365,-73.94821999999999,Private room,80,4,9,2018-12-21,0.36,2,36 +20678169,2 beautiful rooms in sunlit Bushwick loft,2793254,Johnny,Brooklyn,Bushwick,40.70408,-73.92045,Private room,150,3,2,2019-05-27,0.8,3,169 +30172902,"Cozy 2 Beds in Private Bedroom: NYC ""LES"" Manhattn",226503876,Chi,Manhattan,Lower East Side,40.71284,-73.98861,Private room,75,5,14,2019-06-28,2.09,2,217 +21638538,Spacious Private bedroom & private bathroom,130201799,Karma,Manhattan,SoHo,40.7244,-73.99884,Private room,169,3,31,2019-06-30,1.54,1,69 +28044146,J- **LUXURY SHARED ROOM 2PPL FREE WIFI+CABLE+AC,8814258,Nikole,Queens,South Ozone Park,40.67286,-73.79666,Shared room,29,5,1,2018-09-14,0.1,7,365 +21289522,Cozy and Quiet.,154037433,Roland,Queens,Jamaica,40.67048,-73.77259000000001,Private room,35,1,65,2019-06-21,3.2,3,52 +30501806,Bright UWS apartment a block from Riverside Park,11710440,Meredith,Manhattan,Upper West Side,40.79283,-73.975,Entire home/apt,180,3,6,2019-05-04,1.28,1,0 +7561314,Private room in modern Bushwick Apt,39636434,Peter,Brooklyn,Bushwick,40.69095,-73.92385999999999,Private room,48,4,8,2017-08-30,0.17,1,0 +21586883,Cute Astoria bedroom - close to midtown Manhattan,156994927,Billy,Queens,Astoria,40.76219,-73.9237,Private room,60,1,2,2018-04-06,0.12,1,0 +20505271,RESIDENCE NEAR JFK (TB1),145727343,Janelle,Queens,Jamaica,40.68379,-73.79186,Private room,39,1,15,2018-11-04,0.66,3,164 +5758234,Soaring Bushwick 3 Bedroom,21823,Greg,Brooklyn,Bushwick,40.6878,-73.91452,Entire home/apt,225,3,82,2019-06-18,1.58,3,255 +22306969,Cozy 1BR Woodside (20min - midtown&Bus from LGA),3161518,Brian & Akiko,Queens,East Elmhurst,40.756890000000006,-73.89763,Entire home/apt,110,1,3,2018-01-05,0.16,1,0 +7478570,Chic pad steps from Prospect Park,10183117,Cam,Brooklyn,Prospect-Lefferts Gardens,40.66037,-73.95900999999999,Entire home/apt,68,2,7,2016-07-25,0.15,1,0 +8866669,Gorgeous Loft in Greenpoint!,2452616,Arielle,Brooklyn,Greenpoint,40.73072,-73.95416,Entire home/apt,175,2,12,2019-01-13,0.77,1,0 +34753379,Stylish Room in Swanky Bushwick Apartment,60235514,James,Brooklyn,Bushwick,40.7036,-73.92496,Private room,51,1,4,2019-06-02,2.31,1,71 +36040561,Nice room to rent 1,230720704,Pp,Bronx,North Riverdale,40.91306,-73.89389,Private room,40,1,1,2019-07-06,1.0,3,175 +30667058,Art Deco Soho Loft,22916874,Brian,Manhattan,Nolita,40.72182,-73.99566999999999,Entire home/apt,250,2,28,2019-06-22,3.98,1,0 +33362477,Comfy 2 bedroom apartment in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85482,-73.93137,Entire home/apt,174,1,6,2019-06-09,1.88,5,324 +14141622,Private cozy suite,85375269,Gladys,Queens,Woodhaven,40.689040000000006,-73.85051999999999,Entire home/apt,71,1,155,2019-07-01,4.34,1,173 +1899076,"14 min to Union Square, Manhattan-Sunny Modern Rm",9820942,Erica And Jorel,Brooklyn,Bushwick,40.70505,-73.92281,Private room,59,1,238,2019-05-12,3.46,3,320 +25289848,Nice 2 bedrooms apartment in Bed-Stuy,785940,Adriana,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95659,Entire home/apt,150,1,4,2019-02-17,0.3,1,0 +20071095,Residential Area in the heart of Queens,62258958,Kusang,Queens,East Elmhurst,40.75704,-73.89005999999999,Private room,80,1,27,2018-12-18,1.19,1,95 +30466737,Art Life in the City – from Brooklyn to Manhattan,1936796,JenJoy,Brooklyn,Williamsburg,40.71228,-73.93782,Private room,72,2,3,2019-06-30,3.0,2,0 +35510673,Clean Cozy Home,256502464,Paul,Manhattan,Harlem,40.82817,-73.94598,Private room,55,1,1,2019-06-23,1.0,3,35 +34420574,Cozy home away from home,259838485,Jenn And Mike,Bronx,Parkchester,40.83792,-73.85526,Entire home/apt,100,1,8,2019-06-23,4.71,1,51 +24777535,Sunny Space in Sunnyside - 15 min to Times Square.,170085232,Shaina,Queens,Sunnyside,40.74425,-73.91768,Private room,50,1,74,2019-01-04,5.15,1,0 +9492069,Fabulous FiDi home away from home,171213,Jamie,Manhattan,Financial District,40.70864,-74.00675,Entire home/apt,250,1,0,,,1,0 +20306746,The Grace palace,133810925,Andrew,Queens,Rosedale,40.664,-73.733,Private room,62,1,129,2019-06-28,5.74,3,354 +30440903,Amazing Bedroom in Bushwick Madison 3L-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93285999999999,Private room,42,30,1,2019-05-21,0.6,27,282 +29155175,Private Sun-Drenched 1BR Brownstone Apt,11823440,Kisha,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92305999999999,Entire home/apt,129,3,42,2019-07-07,4.81,1,233 +11822434,Cozy & Colorful 1 Bedroom Apt in BK,62974212,Elvin,Brooklyn,Bushwick,40.69931,-73.92067,Entire home/apt,135,2,10,2018-10-21,0.26,1,88 +8505781,Immaculate Bedroom,43220439,Annesha,Queens,Jamaica,40.67068,-73.76711,Private room,55,5,29,2019-07-07,0.64,1,314 +1337148,Sunny Top Floor Uptown Apartment,7251483,Marc,Manhattan,Inwood,40.86446,-73.92694,Entire home/apt,125,6,0,,,1,0 +20385039,Air mattress boudoir [BEST RATES],142590597,Joica,Brooklyn,East New York,40.67425,-73.87279000000001,Shared room,79,1,9,2019-06-04,0.4,6,180 +14203322,NYC apartment in the East Village,35605738,Rhonycs,Manhattan,East Village,40.72796,-73.98178,Entire home/apt,221,2,78,2019-06-16,2.24,1,270 +9726043,Family apt w/ junglegym-bed for kids,292084,Liliana,Brooklyn,Kensington,40.64463,-73.97057,Entire home/apt,95,7,5,2019-07-05,0.12,1,59 +24339196,••Cozy Em’s place••,174492861,Siri,Queens,Jackson Heights,40.749390000000005,-73.88155,Private room,42,2,43,2019-06-23,2.87,2,33 +3840000,4 ROOM RAILROAD - WILLIAMSBURG,19783353,Ryan,Brooklyn,Williamsburg,40.70955,-73.95085,Entire home/apt,90,4,17,2019-01-24,0.29,1,4 +3711039,Summer Porch: Taking Manhattan? Sleep in Astoria!,3007815,Alia,Queens,Astoria,40.76977,-73.91596,Shared room,45,2,38,2019-07-04,1.6,2,38 +581180,Beautiful Fresh Studio for Sublet,2775107,Dana,Brooklyn,Clinton Hill,40.68232,-73.96500999999999,Entire home/apt,155,30,63,2019-05-26,0.75,1,249 +15726990,Two-bedroom in the heart of Chelsea,15600805,Nissim,Manhattan,Chelsea,40.73975,-73.99848,Entire home/apt,265,3,2,2016-11-27,0.06,1,0 +2118102,Charming West Village One Bedroom,7579627,Maria,Manhattan,West Village,40.73236,-74.00353,Entire home/apt,200,1,4,2016-12-22,0.06,1,0 +36109691,Modern and Beautiful Riverdale Apartment,118853924,Sayar,Bronx,North Riverdale,40.90527,-73.89707,Entire home/apt,150,30,0,,,1,89 +21877231,Cruelty-free in Bushwick w/ backyard.,22095324,Chad Michael,Brooklyn,Bushwick,40.69566,-73.91611,Entire home/apt,65,5,42,2019-06-23,2.16,1,1 +8390906,"Big living room, w/ 3 big bedrooms",10953390,Sam,Manhattan,East Village,40.723690000000005,-73.98998,Entire home/apt,300,2,1,2015-09-21,0.02,1,0 +32661706,"Spacious, modern and sunny 1-BD in Forest Hills",139306955,Bianca,Queens,Forest Hills,40.7164,-73.83501,Entire home/apt,150,5,3,2019-06-03,0.99,1,75 +17568638,Lower East Side Studio,3095778,Henrik,Manhattan,East Village,40.72208,-73.98473,Entire home/apt,110,12,11,2019-01-17,0.39,1,0 +19409883,Spacious 2BR APT in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79749,-73.93336,Private room,140,1,1,2017-12-10,0.05,2,177 +26947508,CLASSIC 1BR IN WEST 15TH STREET-CHELSEA,200380610,Pranjal,Manhattan,Chelsea,40.74037,-74.00015,Entire home/apt,210,30,0,,,65,364 +9110077,Room in East Williamsburg,19885346,Mireia,Brooklyn,Williamsburg,40.70448,-73.94208,Private room,75,3,6,2016-08-16,0.16,1,0 +30041537,"""Home sweet Home"" Welcome friends",224315550,Leonardo,Brooklyn,Williamsburg,40.70956,-73.96552,Private room,90,2,39,2019-06-26,5.37,2,78 +13094329,Designers Lovely UWS Full Floor Townhouse Apt!,372206,Liz,Manhattan,Upper West Side,40.7869,-73.97254000000001,Entire home/apt,150,3,4,2016-10-02,0.11,1,0 +8153005,Sunny 2 BR apartment in E Village,19966390,John,Manhattan,East Village,40.72845,-73.97989,Entire home/apt,200,2,3,2015-10-12,0.06,1,0 +16274854,"Comfy Home, Convenient Location near Central Park",106407359,Sean,Manhattan,Harlem,40.80255,-73.95434,Private room,75,2,121,2019-06-12,3.89,1,3 +18102867,1 bedroom apt in the heart of williamsburg,3632170,Thulinh,Brooklyn,Williamsburg,40.7124,-73.96263,Entire home/apt,200,5,0,,,1,0 +4295108,Large Sunny Master Private bedroom,19841476,Rasheeda,Manhattan,East Harlem,40.80161,-73.94277,Private room,75,1,7,2016-12-08,0.2,1,0 +3139918,Bright Quiet 1BD in the Heart of BK,469098,Sara,Brooklyn,Boerum Hill,40.684740000000005,-73.97959,Entire home/apt,150,3,55,2019-06-17,0.94,1,7 +1227258,Amazing Duplex in Williamsburg,5309521,Reut,Brooklyn,Williamsburg,40.71333,-73.96605,Entire home/apt,220,5,0,,,1,234 +600286,"lovely, spacious wmsbrg apt w deck",1036617,George,Brooklyn,Williamsburg,40.70397,-73.95536,Entire home/apt,180,14,27,2019-05-13,0.36,1,312 +9106907,"2 Private Rooms for price of 1, Downtown NYC",23338493,Ryan,Manhattan,Chinatown,40.71665,-73.99633,Private room,104,3,65,2017-05-26,1.46,1,0 +209310,Sunnyside NYC/ AC room/ city views/ near Midtown,1031148,Iulia,Queens,Sunnyside,40.73826,-73.92458,Private room,50,28,258,2019-05-28,2.9,1,287 +32783365,Peaceful Sanctuary in the heart of the action,25312503,Gerrod & Rebecca,Manhattan,East Village,40.72412,-73.98283,Entire home/apt,158,1,16,2019-07-05,5.05,1,70 +31575274,Spacious 2BR Apt Heart of Bushwick + Backyard,234214434,Mike,Brooklyn,Bushwick,40.70016,-73.93042,Entire home/apt,145,30,6,2019-07-03,1.64,4,224 +7092505,Beautiful duplex studio with 2 queen beds,7503643,Vida,Brooklyn,Greenpoint,40.72568,-73.94142,Entire home/apt,129,30,4,2019-06-15,0.08,52,357 +18411925,Comfy Private Room Near Central Park in UWS,38886949,Nishant,Manhattan,Upper West Side,40.79872,-73.96173,Private room,70,1,1,2017-05-04,0.04,2,0 +13772589,Beachside Antique Themed Room,36380968,Alex,Brooklyn,Brighton Beach,40.57577,-73.96115,Private room,60,1,18,2019-07-05,2.78,2,343 +21631407,Heart of Bedstuy,35083858,Garren,Brooklyn,Bedford-Stuyvesant,40.69283,-73.94573000000001,Entire home/apt,100,1,0,,,1,0 +12464635,Sunny & Stylish 2BR in Williamsburg,639785,Aunim,Brooklyn,Williamsburg,40.71774,-73.95466,Entire home/apt,285,2,17,2017-09-03,0.44,1,0 +10666314,2 bedroom apartment in Bushwick,9466826,Marion,Brooklyn,Williamsburg,40.70788,-73.93889,Entire home/apt,117,10,3,2019-06-03,0.43,1,1 +10210556,Venerable Chelsea Loft (Small Br),52342677,Austin,Manhattan,Chelsea,40.74729,-73.99107,Private room,175,1,0,,,1,0 +22472801,Swim in Garden Pond near City & JFK,164750816,Mayo,Queens,Howard Beach,40.66201,-73.84084,Entire home/apt,80,2,83,2019-06-29,4.47,1,288 +19069900,"Zen, Sunny 1 BR Apt in East Village",1424716,Helene,Manhattan,East Village,40.7242,-73.98209,Entire home/apt,175,3,7,2017-12-05,0.3,1,0 +32742915,SPECIAL! NYC Summer - Reserve LOW Prices,246194760,Noel,Queens,East Elmhurst,40.75984,-73.88228000000001,Private room,33,1,17,2019-06-16,6.46,4,208 +28337493,Look down on Bedford Ave! Private room.,10810969,Drew,Brooklyn,Williamsburg,40.71551,-73.96056999999999,Private room,95,1,9,2019-01-16,0.91,1,0 +30540323,NYC East Village Doorman Unit with Private Rooftop,55403309,Justin,Manhattan,East Village,40.7249,-73.98174,Entire home/apt,240,3,1,2019-01-03,0.16,2,0 +2120619,Beautiful Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78881,-73.98116,Entire home/apt,200,6,4,2015-09-21,0.06,2,364 +24514490,"Newly renovated 1 bedroom, steps to Prospect Park",258674,Melissa,Brooklyn,Windsor Terrace,40.65871,-73.9789,Entire home/apt,125,3,15,2018-12-21,1.15,1,65 +14869440,Crown Heights 1 BR w/ Style,7128634,Landon,Brooklyn,Crown Heights,40.67541,-73.95221,Entire home/apt,148,2,16,2018-09-30,0.49,1,0 +7670562,JFK 10 & LGA 15 MINUTES A/C PRIVATE BEDROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69604,-73.82449,Private room,50,1,424,2018-11-25,8.86,5,0 +32495009,Spacious 3 bedroom apartment in WILLIAMSBURG,235115405,New York Italians,Brooklyn,Williamsburg,40.7077,-73.95331999999999,Private room,65,2,13,2019-07-05,3.33,2,9 +32241163,Sonder | Stock Exchange | Dreamy Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01208000000001,Entire home/apt,201,2,9,2019-06-14,2.62,327,271 +30036315,Room in Williamburg BK,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71837,-73.95881999999999,Private room,99,2,9,2019-06-17,1.16,2,46 +28937536,Modern Luxury Condo with a Sunny Patio,70636634,Allia,Brooklyn,Sunset Park,40.66461,-73.99506,Entire home/apt,220,15,1,2018-10-08,0.11,1,0 +10539779,"Our home away from home +“Cosy studio”",54351163,Sonia,Manhattan,East Village,40.72834,-73.98048,Entire home/apt,140,7,65,2019-06-25,1.65,1,242 +31513692,Need temp room mate/ Private room in Manhattan(個室),117675375,Ky-Tsuyo,Manhattan,East Harlem,40.79876,-73.93763,Private room,40,7,9,2019-06-25,1.97,2,8 +11526684,Cozy Loft in Flushing,21960625,Erjon,Queens,Flushing,40.75485,-73.82138,Entire home/apt,90,3,1,2016-03-25,0.02,1,0 +22803859,Modern 1-Bedroom in Heart of Brooklyn,7431741,Chelsea Holland,Brooklyn,Crown Heights,40.67336,-73.95383000000001,Entire home/apt,110,2,2,2018-03-18,0.12,1,0 +33956049,Comfortable Private Room with everything you need!,256403429,Brenda,Brooklyn,East Flatbush,40.65438,-73.95181,Private room,54,1,14,2019-07-01,5.32,5,81 +3929669,Sunny 1 br in Greenpoint,622694,Shawn,Brooklyn,Greenpoint,40.729420000000005,-73.95291,Entire home/apt,120,28,12,2016-12-22,0.22,1,0 +34449879,Large Room Summer Sublease - Astoria NYC,20810804,Ahmed,Queens,Ditmars Steinway,40.77922,-73.90751999999999,Private room,35,85,0,,,1,228 +29982192,Boho chic brooklyn escape,8246221,Rana,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.94959,Entire home/apt,105,4,1,2019-01-03,0.16,1,0 +2253500,Fantastic Soho/Tribeca Loft,11473727,Sal,Manhattan,Tribeca,40.7196,-74.00571,Entire home/apt,250,30,4,2018-11-11,0.06,1,310 +13083988,Private Bedroom/Bath in Luxury Greenpoint Condo,154956,Katie,Brooklyn,Greenpoint,40.73443,-73.95678000000001,Private room,90,7,2,2016-08-14,0.05,1,47 +30965275,Basement in a Gorgeous Brooklyn Brownstone,231370569,Sharyn,Brooklyn,Bedford-Stuyvesant,40.69007,-73.94326,Private room,40,7,13,2019-06-26,2.39,1,93 +22303888,"Convenient to the east and west, private basement.",310296,Jaqui And Mark,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94676,Entire home/apt,65,1,57,2019-06-29,3.07,2,53 +16392514,"Great deal, full equiped room in Times Square",107382521,Adam,Manhattan,Theater District,40.75725,-73.98796,Private room,100,1,36,2017-11-26,1.18,1,0 +9609049,Modern Apt in Williamsburg-roofdeck,2816129,Anne-Laure,Brooklyn,Greenpoint,40.719840000000005,-73.95385999999999,Entire home/apt,200,4,25,2019-05-26,0.58,1,6 +14028280,NEW! BEST LOCATION !!! 3min to Rockefeller Plaza,60688035,Marta,Manhattan,Midtown,40.75938,-73.97235,Private room,250,3,152,2019-06-22,4.25,2,229 +35691215,Spacious ROOM in Luxury Condo with Gym & BBQ,5028297,Charles,Brooklyn,Fort Greene,40.69416,-73.9809,Private room,159,2,1,2019-07-01,1.0,1,327 +5866656,Home 4 Medical Professionals-MAIM0,26377263,Stat,Brooklyn,Borough Park,40.64032,-73.99728,Private room,50,30,0,,,43,361 +30065172,"Bedroom in cosy apt in Williamsburg, Brooklyn",49546136,Victoire,Brooklyn,Williamsburg,40.71235,-73.95764,Private room,79,4,0,,,1,0 +9574953,Beautiful 2BR Apt in Williamsburg,4025647,Eduardo,Brooklyn,Williamsburg,40.712590000000006,-73.96037,Entire home/apt,200,7,3,2019-01-02,0.08,1,216 +31075172,Brooklyn's Finest - LL,50364039,Cathy,Brooklyn,Williamsburg,40.71477,-73.96122,Entire home/apt,130,2,25,2019-07-02,3.99,3,261 +13126582,STUNNING ONE BEDROOM IN THE HEART OF NEW YORK CITY,73069526,Tony,Manhattan,Hell's Kitchen,40.7655,-73.98682,Entire home/apt,250,7,52,2018-09-04,1.4,1,0 +34207537,Contemporary 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7618,-73.9979,Entire home/apt,185,29,0,,,327,332 +3270009,Private oasis-charming gingerbread home!❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.93444000000001,Entire home/apt,68,30,14,2019-04-19,0.41,5,334 +21218250,Cozy and Modern Brooklyn Loft with amazing view!,953913,Kyle,Brooklyn,Bushwick,40.69952,-73.92616,Entire home/apt,250,6,1,2017-10-18,0.05,1,0 +34208055,Private room in queens,1346437,Cristina,Queens,Sunnyside,40.74628,-73.9243,Private room,50,7,0,,,2,35 +34741362,M's Place,260639656,Medina,Queens,Long Island City,40.74775,-73.94747,Entire home/apt,320,2,5,2019-07-05,5.0,1,54 +20660511,The plaza suite in brooklyn. Bedstuy style,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93975,Private room,250,2,0,,,2,173 +34245778,Mi Rincón acogedor!,258551028,Alcira,Brooklyn,Bensonhurst,40.61985,-74.00205,Private room,40,5,4,2019-05-24,1.74,1,0 +24826789,Sonder | 21 Chelsea | Artsy 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7429,-73.9956,Entire home/apt,239,29,0,,,96,335 +34314231,Perfect West Village apt - best location in NYC!,70155821,Matt,Manhattan,West Village,40.73551,-74.00166999999999,Entire home/apt,350,3,1,2019-06-02,0.81,1,12 +30043809,Comfy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59836,-73.75555,Private room,50,1,12,2019-04-28,1.55,4,363 +27527478,Great two Bedroom Apartment - 20 mins from NYC.,55184486,Amado,Brooklyn,Bushwick,40.68842,-73.91465,Entire home/apt,175,1,54,2019-07-02,5.26,2,137 +25873511,Cozy & Beautiful Room in Astoria for all seasons,160248396,Mars,Queens,Ditmars Steinway,40.77816,-73.91001999999999,Private room,70,2,41,2019-05-27,3.18,1,15 +7480729,BRIGHT & PRIVATE EAST VILLAGE STUDIO APARTMENT,12161280,Taylor,Manhattan,East Village,40.72528,-73.97882,Entire home/apt,165,4,38,2019-06-16,0.8,1,0 +11282499,Hells Kitchen private room 3BR/2BA,5408649,Steven,Manhattan,Hell's Kitchen,40.76508,-73.99087,Private room,55,10,0,,,1,0 +25234477,The Guesthouse Loft,39575865,Alexandra,Manhattan,Upper East Side,40.77288,-73.94745,Entire home/apt,175,7,0,,,1,5 +825545,Clean cozy room central historic gay best area,872805,Mike,Manhattan,Greenwich Village,40.73336,-73.99835999999999,Private room,120,21,79,2019-07-07,1.04,2,34 +9978664,"Clean, private bedroom in Bushwick",34010790,Saif,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9206,Private room,50,1,0,,,1,0 +2203926,"Bright, Modern Two Bedroom With Stunning Rooftop",1451417,H,Brooklyn,Williamsburg,40.71292,-73.95876,Entire home/apt,325,3,169,2019-07-01,3.33,1,277 +35876147,A wonderfull suite in Brooklyn,269342470,Bracha,Brooklyn,Borough Park,40.64116,-73.98589,Entire home/apt,67,1,1,2019-06-27,1.0,2,48 +31194144,Brooklyn apt 10 mins to Manhattan by subway,129022496,Alan,Brooklyn,Bedford-Stuyvesant,40.67872,-73.94805,Private room,20,10,8,2019-07-01,1.4,2,38 +6554833,Fun & Trendy Kid Friendly Family Home,33125778,Kt,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95466,Entire home/apt,215,3,5,2017-07-23,0.1,1,0 +33400552,feel home,251625546,Eden,Brooklyn,Brownsville,40.66815,-73.92169,Private room,65,1,9,2019-06-16,2.93,2,320 +26514725,Private Room_Brooklyn Townhouse,8456000,Brian,Brooklyn,Navy Yard,40.69793,-73.96989,Private room,175,1,11,2019-06-06,1.1,2,90 +2015168,Cozy 2BD APT close to subway,10365281,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95575,Entire home/apt,190,2,237,2019-07-06,3.7,1,266 +35132345,Beautiful Apartment close to Time Square,264458360,Luis,Manhattan,Hell's Kitchen,40.76127,-73.99234,Entire home/apt,171,3,6,2019-06-30,5.29,1,0 +9217837,Quaint South Slope Retreat,8838044,Aaron,Brooklyn,South Slope,40.662490000000005,-73.98704000000001,Entire home/apt,150,3,34,2019-05-01,0.77,1,0 +16974,SpaHa Loft: Enormous and Bright,65837,Robin,Manhattan,East Harlem,40.80164,-73.93921999999999,Entire home/apt,225,4,190,2019-06-23,1.64,1,215 +18577989,Air Mattress in a Private Room in Bed-Stuy,38236150,Julio,Brooklyn,Bedford-Stuyvesant,40.69608,-73.9432,Private room,45,1,4,2017-05-29,0.15,1,0 +24889660,Entire Cozy Apartment in Center of East Village,187094395,Miche,Manhattan,East Village,40.72532,-73.98023,Entire home/apt,164,3,0,,,1,0 +36153727,Ridgewood Deal,271925782,Stephane,Queens,Ridgewood,40.70062,-73.90796,Shared room,35,1,0,,,1,72 +12936207,Newly Renovated Duplex Apartment,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93536,Entire home/apt,200,2,80,2019-06-15,2.09,3,286 +34569801,Sonder | The Nash | Sleek 2BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97413,Entire home/apt,302,29,0,,,327,325 +34656363,Loft-style Designer Studio,9914596,Oren,Manhattan,Upper West Side,40.78673,-73.97304,Entire home/apt,130,30,0,,,1,280 +874683,Spacious Bushwick Duplex Apartment,4617159,Alvin,Brooklyn,Bushwick,40.68777,-73.91601,Private room,62,2,22,2019-06-30,0.37,1,87 +36172164,Sleeping Easy on the East Side! 1 Bed/1 Bath,270629822,Jasson,Manhattan,East Harlem,40.78586,-73.94475,Entire home/apt,199,3,3,2019-07-02,3.0,1,349 +20964409,Little Slice of Brooklyn!,105828086,Nikki,Brooklyn,Flatbush,40.64104,-73.96337,Private room,45,2,45,2019-06-30,2.06,4,17 +7244171,Cozy Studio Duplex,37915862,Greg,Brooklyn,East New York,40.6752,-73.89218000000001,Entire home/apt,80,5,49,2019-06-07,1.01,2,217 +36391474,Wonderful apartment close to Metro,273025497,Richard,Brooklyn,Fort Greene,40.68868,-73.97671,Entire home/apt,107,1,0,,,1,49 +36002044,Comfortable luxury apartment with Manhattan views,24266846,Jurgen,Brooklyn,Williamsburg,40.71329,-73.9653,Entire home/apt,345,6,0,,,1,22 +12602212,Violet Sunset Room,67208195,Clarissa,Brooklyn,Bedford-Stuyvesant,40.68601,-73.91771999999999,Private room,60,2,71,2019-06-30,1.84,2,363 +22556901,Beautiful & spacious East Village Studio,17150107,Francisco,Manhattan,East Village,40.7277,-73.99006999999999,Entire home/apt,161,5,0,,,1,0 +10680745,Private huge BDR in East Village!,29882817,Nick,Manhattan,East Village,40.72553,-73.9777,Private room,70,4,0,,,1,0 +13394558,MY ADORABLE BOWERY PLACE,76192815,Sam,Manhattan,Little Italy,40.71938,-73.9952,Entire home/apt,90,31,9,2019-02-20,0.24,5,221 +26560159,A sweet cozy one bedroom in Crown Heights Brooklyn,16782911,Dena,Brooklyn,Prospect-Lefferts Gardens,40.66352,-73.94157,Entire home/apt,100,5,8,2019-06-03,0.69,1,57 +3737847,Sanctuary Close To Manhattan ,19107278,Jaime,Brooklyn,Bushwick,40.7001,-73.91204,Private room,50,5,2,2016-06-01,0.03,2,0 +30939599,Small room in NOLITA Artist Tenement APT,866089,Launa,Manhattan,Little Italy,40.71943,-73.99712,Private room,150,5,1,2019-01-02,0.16,3,0 +23024065,Brooklyn Artists Loft - 1 Bedroom,105758386,Julia,Brooklyn,Williamsburg,40.70581,-73.93454,Entire home/apt,100,2,2,2018-03-21,0.12,1,0 +16651879,Minimalist Vegan Room in Columbus Circle,31892037,Harrison,Manhattan,Hell's Kitchen,40.76636,-73.98574,Private room,100,1,1,2019-05-05,0.46,1,156 +13651173,Spacious and cozy Lower East Side bedroom,79268929,Paulina,Manhattan,East Village,40.72383,-73.9839,Private room,130,1,4,2016-07-05,0.11,1,0 +550777,"Lrg1Bdrm, Terrace w/ Cent.Park View",2707053,Kathleen,Manhattan,Upper West Side,40.7964,-73.9675,Entire home/apt,210,3,25,2019-06-10,0.3,1,347 +34489715,Room with Two Beds in Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76251,-73.98455,Private room,300,1,5,2019-07-03,5.0,15,304 +33314007,"Room with own living room, 1 stop from Manhattan",25476420,Laura,Brooklyn,Fort Greene,40.69438,-73.9712,Private room,51,12,0,,,1,44 +1178389,"Beautiful, clean 1-bdrm private apt",6447462,Adam,Manhattan,Washington Heights,40.8506,-73.94023,Entire home/apt,70,6,19,2017-07-24,0.26,1,188 +808705,ONE BED/ LUXURY @ COLUMBUS CIRCLE!,3038687,Karen,Manhattan,Hell's Kitchen,40.76704,-73.98345,Entire home/apt,139,45,16,2017-11-20,0.21,8,0 +491529,3 bdrm family friendly home in central Park Slope,2429432,Julie,Brooklyn,Park Slope,40.67211,-73.976,Entire home/apt,220,3,27,2019-05-17,0.45,1,68 +17239321,Awesome Apartment in the E Village!,6489574,Wilson,Manhattan,East Village,40.72759,-73.98619000000001,Entire home/apt,140,1,31,2019-06-30,1.14,1,1 +33988643,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66981,-73.95734,Private room,68,30,2,2019-05-20,0.92,7,226 +24555212,NEW Perfect shared male room for a long term I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.9884,Shared room,33,100,0,,,28,320 +14505483,Beautiful King Bedroom in the heart of Ditmas Park,14942902,Bibi,Brooklyn,Flatbush,40.63135,-73.9651,Private room,150,5,0,,,1,358 +18049856,Luxury Studio Williamsburg,51926018,Minchul,Brooklyn,Williamsburg,40.71815,-73.95519,Entire home/apt,250,14,0,,,1,83 +33909151,"Mi casa es tu casa, habitación 2",241565326,Valentina,Queens,Woodside,40.74351,-73.90405,Private room,44,1,11,2019-07-01,7.67,2,331 +6795252,Private Room in Large 2BR Apartment,12541502,Ryan,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94438000000001,Private room,85,3,0,,,1,0 +28507308,Luxury Apt with perfect location and views,1604815,Meng,Manhattan,Upper West Side,40.77902,-73.98709000000001,Entire home/apt,135,10,13,2019-06-01,1.38,1,7 +8367125,Nice & clean studio for a couple,44099001,Agnieszka,Queens,Elmhurst,40.7452,-73.89086,Entire home/apt,78,2,1,2016-09-18,0.03,1,0 +7234538,Lovely sun-filled Brownstone!,1793569,Frances,Brooklyn,Park Slope,40.68073,-73.97515,Entire home/apt,170,1,0,,,1,0 +35615652,Room in a cozy Brooklyn apartment,19017210,Karl,Brooklyn,Bedford-Stuyvesant,40.67897,-73.94192,Private room,41,3,1,2019-07-02,1.0,1,57 +8106902,Cosy clean modern apartment,202211,Pon,Manhattan,Gramercy,40.73284,-73.98510999999999,Entire home/apt,160,2,1,2015-09-13,0.02,1,0 +15634892,"Adorable, NYC studio for the holiday!",15353668,Bria,Manhattan,Midtown,40.75228,-73.97185999999999,Entire home/apt,144,28,0,,,1,90 +4813781,"Private room in cozy, large UWS apt",24792241,Stephanie,Manhattan,Upper West Side,40.7915,-73.96696999999999,Private room,85,3,6,2019-05-31,0.15,1,193 +33851889,Spacious Room in great location,37917699,Moises,Manhattan,Inwood,40.86202,-73.92771,Private room,45,2,2,2019-06-19,2.0,1,180 +23456621,JFK/Queens House of Suedajoy#1(Disc by flexibility,175019394,Suzan,Queens,Jamaica,40.67183,-73.78025,Private room,60,1,83,2019-06-11,5.11,6,171 +28642786,Excellent Loc best value Midtown studio/nearMacy’s,9698896,Sanyam,Manhattan,Midtown,40.74971,-73.98682,Entire home/apt,108,2,6,2019-05-29,0.62,1,0 +5567278,Spacious Bright West Village Apt!,2306485,Sam,Manhattan,West Village,40.73296,-74.00235,Entire home/apt,220,3,118,2019-05-20,2.26,1,180 +22704461,Amazing Central Park One Bedroom,2681756,Imri,Manhattan,Upper West Side,40.7861,-73.97097,Entire home/apt,170,3,0,,,1,0 +32519790,The Fun Home,26178450,Cory,Manhattan,Hell's Kitchen,40.7548,-73.99818,Private room,90,2,10,2019-06-30,2.34,1,14 +7319791,Cozy room at trendy Lower east side,19195540,Dor,Manhattan,Lower East Side,40.71894,-73.99205,Private room,120,3,86,2019-06-06,1.82,3,99 +25071113,"Airy, art-filled home in bohemian East Village",104921994,Sunhwa,Manhattan,East Village,40.72718,-73.9843,Entire home/apt,128,30,7,2019-05-16,0.5,1,142 +10835801,Spacious Luxury 1bdrm on Bklyn Waterfront,12353168,Ali,Brooklyn,Williamsburg,40.71716,-73.96455999999999,Entire home/apt,149,5,20,2019-06-22,1.08,1,0 +25341465,Private Bright Bedroom near 7 Train LGA & JFK,190096034,Janet,Queens,Corona,40.74464,-73.86012,Private room,60,1,63,2019-07-07,5.12,3,155 +27760799,Christina’s home,209372017,Christina,Bronx,Bronxdale,40.8546,-73.86785,Private room,50,1,24,2019-06-27,2.24,1,163 +16226031,Spacious One Bedroom Apartment,106030531,Pablo,Manhattan,Morningside Heights,40.81456,-73.95953,Entire home/apt,110,7,1,2018-01-06,0.05,1,0 +9826081,"Bright apartment, Crown Heights",5385509,Ingrid Harvold,Brooklyn,Crown Heights,40.675340000000006,-73.94958000000001,Private room,28,14,3,2017-01-25,0.07,1,0 +34256485,Chilling in Brooklyn in a cool culture vibe,258647286,Irma,Brooklyn,Brownsville,40.66242,-73.90128,Private room,38,2,0,,,1,176 +13150529,Private Loft Bedroom in Bushwick,5561136,Yazmiyn,Brooklyn,Bushwick,40.6861,-73.90977,Private room,60,5,0,,,1,0 +16791809,Small Brooklyn Gem 25 Minutes Away from the City,1938828,Shay,Brooklyn,East Flatbush,40.65071,-73.94508,Private room,34,30,6,2017-08-15,0.2,3,280 +27964166,Comfortable 2 bedroom apt in Times Square 5ppl,211220478,Georgian,Manhattan,Hell's Kitchen,40.75885,-73.98996,Entire home/apt,269,1,63,2019-06-27,6.18,1,216 +5241757,Eclectic Loft 20 min-> Union Sq! ,1884659,Brett,Brooklyn,Bushwick,40.70827,-73.92264,Entire home/apt,97,2,47,2019-06-09,0.88,2,345 +4429337,"Large, stylish & sun-filled 1BDRM loft",1728899,Tanya,Brooklyn,Williamsburg,40.70789,-73.94811,Entire home/apt,120,2,19,2019-07-06,1.82,1,11 +19529637,Great East Village 1BR In Prime Location,3412684,Andrew,Manhattan,East Village,40.72723,-73.98465999999999,Entire home/apt,145,2,9,2019-06-08,0.37,1,0 +17560543,"Private room. 1 bed, 2 guests, 3333 Broadway",117851567,Yuedi,Manhattan,Harlem,40.81955,-73.95586999999999,Private room,51,1,0,,,1,0 +12558307,Luxury 2BR Midtown East-Near UN!,26521212,Laura,Manhattan,Midtown,40.75207,-73.97351,Entire home/apt,299,2,5,2019-05-05,0.15,3,0 +22124086,Airy Brooklyn Pad,47423579,Analise,Brooklyn,Flatbush,40.64366,-73.95794000000001,Shared room,45,2,1,2017-12-07,0.05,1,0 +13410813,1 br apartment(3’ to train)+access to coworking,43375242,Gabriela,Queens,Long Island City,40.7537,-73.93186,Entire home/apt,120,3,40,2019-06-30,1.45,2,365 +26063230,Gorgeous 4 BR apt w. King bed 30 min to Manhattan,1409262,Sarah,Brooklyn,Flatbush,40.6424,-73.95365,Entire home/apt,165,2,49,2019-07-02,4.04,6,191 +32426943,Convenience Cozy Apartment- Hells kitchen,10120673,Alexo & JC,Manhattan,Hell's Kitchen,40.76121,-73.98813,Entire home/apt,220,5,5,2019-06-07,1.95,2,1 +14819796,"Charming 2BR Prime Carroll Gardens/ F,G Train",40611169,Sol,Brooklyn,Carroll Gardens,40.67718,-73.99493000000001,Entire home/apt,250,1,62,2019-06-28,1.79,5,178 +4611203,Large 1 bedroom apt - can sleep 4,11702175,Meghan,Manhattan,East Harlem,40.79038,-73.94412,Entire home/apt,170,3,6,2017-01-01,0.11,1,0 +23926896,Bright & airy uptown sanctuary,5371388,Ashley,Manhattan,Inwood,40.86816,-73.93131,Entire home/apt,100,1,3,2019-06-16,0.22,1,5 +262478,Chic + Stylish room in heart of LowerEastSide NYC!,535128,Juliana,Manhattan,Lower East Side,40.7193,-73.98966,Private room,80,5,10,2018-12-31,0.46,1,348 +21501507,.,156216145,Lisa,Manhattan,Financial District,40.71018,-74.01325,Entire home/apt,215,2,0,,,1,0 +36178893,♥~Cutest apartment in the East Village~♥,222487531,Andi,Manhattan,East Village,40.73061,-73.98409000000001,Entire home/apt,215,2,0,,,1,109 +25679063,Luxury private house in Queens,16507770,Jinfei,Queens,Briarwood,40.71052,-73.80906,Private room,60,1,46,2019-07-05,3.68,3,108 +24285110,Large 4 bedrooms close to train. 15 m.to Manhattan,183178516,Lucky Day Realty Corp.,Queens,Rego Park,40.72643,-73.86083,Entire home/apt,288,3,16,2019-06-12,1.17,1,136 +34998614,Luxury 3 Bed 2 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.7444,-73.97296999999999,Entire home/apt,300,30,0,,,23,319 +22278896,Affordable pied-a-Terre near south brooklyn ferry.,31069102,Cj,Brooklyn,Red Hook,40.67989,-74.00818000000001,Entire home/apt,110,5,28,2019-04-09,1.53,1,0 +11037105,Sunny in heart of Williamsburg,57275881,Allegra,Brooklyn,Williamsburg,40.711870000000005,-73.95566,Entire home/apt,250,1,0,,,1,0 +8251228,Private Bedroom Near Manhattan NYC,22384027,Shahana,Brooklyn,Crown Heights,40.67115,-73.91620999999999,Private room,39,1,70,2019-06-21,1.51,10,33 +1604489,Spacious and modern Chelsea loft,8548453,Jon,Manhattan,Chelsea,40.74611,-73.99209,Entire home/apt,295,30,3,2016-09-19,0.04,1,235 +32385720,Elevated Living in the East Village,141508996,Britt,Manhattan,East Village,40.72498,-73.97604,Private room,95,1,6,2019-06-17,1.49,1,160 +4350464,"LargeApt 1 BLOCK frm A,C,B,D,2,3",6697886,Mandy,Manhattan,Harlem,40.81588,-73.94591,Private room,65,3,1,2015-10-21,0.02,2,0 +753991,Elegant Stuyvesant Heights Retreat,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93557,Entire home/apt,105,5,227,2019-07-03,2.79,2,234 +6733512,A Serine Stay in Bedstuy,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68814,-73.93089,Private room,55,10,14,2019-05-06,0.31,3,301 +13549494,"Cozy Studio, close to everything!",4454121,Gayle,Manhattan,Upper East Side,40.76172,-73.96538000000001,Entire home/apt,179,3,24,2019-06-16,0.65,1,3 +28545860,Affordable private queen room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73819,-73.81007,Private room,65,1,2,2018-10-14,0.22,5,90 +19159,Spacious luminous apt Upper West NYC,73051,Sybilla,Manhattan,Harlem,40.82915,-73.95136,Entire home/apt,110,31,54,2019-03-23,0.49,1,209 +9107626,Luxurious studio apt. across from Battery Park!,30283594,Kara,Manhattan,Financial District,40.70415,-74.00688000000001,Entire home/apt,189,30,0,,,121,365 +16002841,Cozy studio in Chelsea,104025635,Majeed,Manhattan,Chelsea,40.74786,-73.99526999999999,Entire home/apt,125,1,0,,,1,0 +26440960,Large beautiful home in the center of Manhattan!,53046634,Joey,Manhattan,Hell's Kitchen,40.76322,-73.99253,Entire home/apt,285,3,6,2018-12-10,0.51,2,76 +29688392,Serenity In Queens,223431967,Stacy,Queens,Flushing,40.72915,-73.79448000000001,Private room,70,2,0,,,1,95 +236788,"HUGE, modern 2-LEVEL Brooklyn apt",4166168,Nick And Noémie,Brooklyn,DUMBO,40.70257,-73.9847,Entire home/apt,350,5,40,2019-04-14,0.5,1,67 +22356093,Great location and amazing place to stay,39150374,Melissa,Manhattan,West Village,40.73638,-73.99763,Private room,100,1,0,,,1,0 +21885522,Family Friendly Vibrant duplex in Windsor Terrace,17525654,Susan & Aarti,Brooklyn,Windsor Terrace,40.65537,-73.9819,Entire home/apt,160,5,0,,,1,0 +29684231,Private Room in Relaxing Townhouse,861848,Nicholas,Brooklyn,Bedford-Stuyvesant,40.69093,-73.92754000000001,Private room,68,2,0,,,2,0 +35000294,2 Bed 1 Bath Cozy Apartment,221200420,Adam,Manhattan,Murray Hill,40.74425,-73.97137,Entire home/apt,220,30,0,,,23,325 +18108590,Private Garden Room in Commune,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67992,-73.95695,Private room,65,2,3,2017-04-27,0.11,3,0 +36351543,2-MONTH SUBLEASE (WITH EARLY MOVE-IN),52984497,Friday,Brooklyn,Bedford-Stuyvesant,40.68914,-73.92408,Private room,33,30,2,2019-07-06,2.0,1,87 +16413638,Cute Nolita 1 Bedroom,12349009,Kaj,Manhattan,Nolita,40.72253,-73.99459,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +10068693,Cozy Mozy apt in Cobble Hill,16591072,Marianna,Brooklyn,Boerum Hill,40.68869,-73.98899,Entire home/apt,168,1,1,2016-01-05,0.02,1,0 +17874595,Private room in a peaceful home ❤,122372251,Christopher,Manhattan,East Harlem,40.79274,-73.94286,Private room,65,1,81,2018-04-21,2.93,1,0 +33343579,Gorgeous modern style room near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77886,-73.95139,Private room,90,7,1,2019-05-25,0.67,6,0 +4963237,"DOMINIQUE'S NYC cosy,2 bedrm crashPad*Stay here*",310670,Vie,Bronx,Eastchester,40.87829,-73.83471,Entire home/apt,155,2,11,2019-05-19,0.29,13,348 +4777745,"600 SF appartment in NYC, Manhattan",24639120,Alexander,Manhattan,Midtown,40.76022,-73.9744,Entire home/apt,235,6,13,2017-01-10,0.25,1,0 +29221565,Modern art-filled bedroom with vintage touch.,68284975,Dio,Brooklyn,Bushwick,40.69375,-73.92496,Private room,66,2,8,2019-06-06,0.97,2,90 +9736123,Spacious 1BR with river view in the heart of NYC,19135883,Thales,Manhattan,Kips Bay,40.74178,-73.97313,Entire home/apt,260,4,15,2018-10-15,0.35,1,34 +24431407,Beautiful large room in quiet in Astoria,184496160,Edwin,Queens,Astoria,40.76031,-73.91702,Private room,80,7,0,,,1,0 +30255002,Large 1 BR apt in the heart of Flatiron (NYC),177058197,Joe,Manhattan,Flatiron District,40.73949,-73.98552,Entire home/apt,210,2,6,2019-07-07,1.58,1,9 +34086188,Cozy room in Harlem next to 2/3 train,44919396,Forest,Manhattan,Harlem,40.81808,-73.93670999999999,Private room,45,1,5,2019-06-06,2.38,1,0 +14028018,Gorgeous studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.763000000000005,-73.99452,Entire home/apt,120,30,6,2019-03-29,0.19,31,322 +18505594,"Cozy, Light-Filled Room in Brooklyn",31658624,Megan E,Brooklyn,Crown Heights,40.66998,-73.9396,Private room,44,3,104,2019-03-29,4.0,2,0 +24918349,Private Studio Apartment in Lively Crown Heights,188390380,Nicole,Brooklyn,Crown Heights,40.67575,-73.95074,Entire home/apt,100,1,26,2018-08-30,1.91,1,0 +5055033,"Railroad Apt in Greenpoint, BKLYN",26100862,Ira,Brooklyn,Greenpoint,40.72474,-73.94733000000001,Entire home/apt,90,1,0,,,1,0 +25716221,Spacious & minimal pre-war apartment,2736762,Emelie,Manhattan,Chelsea,40.7406,-74.00433000000001,Entire home/apt,225,3,3,2018-10-08,0.24,1,0 +11639940,Peaceful + Sunny Greenpoint Room,2375701,Paul,Brooklyn,Greenpoint,40.7307,-73.95568,Private room,66,1,1,2016-03-12,0.02,1,0 +25097211,Private Bedroom in a safe neighborhood in NYC,28229044,Bruno,Queens,Astoria,40.76723,-73.92317,Private room,80,3,0,,,1,0 +18221864,Lovely 1 BD on the Upper West Side,70601471,Andreas,Manhattan,Upper West Side,40.78906,-73.97731999999999,Entire home/apt,148,1,131,2019-06-24,4.9,1,277 +1061337,Sunny Private BR Crown Hts Brooklyn,1557383,Candace,Brooklyn,Crown Heights,40.67418,-73.94660999999999,Private room,70,1,4,2017-08-01,0.06,1,0 +10073940,Welcome to NYC! Modern Luxury 2 BR-5 min from JFK,51688993,Taran & Najla,Queens,Jamaica,40.6896,-73.80445999999999,Entire home/apt,179,1,103,2019-07-02,2.67,2,324 +36035471,Breezy Plant Filled Oasis w/ Warm Miminalism,23436595,Greem,Brooklyn,Greenpoint,40.72803,-73.95557,Entire home/apt,180,3,0,,,2,262 +6169335,Contemporary Modern Studio,32007353,Vanesa,Queens,Ridgewood,40.70801,-73.9011,Entire home/apt,150,2,65,2019-07-03,1.32,1,171 +35090364,Bay Ridge comfortabel house,78109201,Yong,Brooklyn,Fort Hamilton,40.61735,-74.03,Entire home/apt,150,5,0,,,1,162 +30293266,It's a Fine Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67727,-73.90663,Private room,48,1,63,2019-07-03,8.51,5,231 +25909160,Simple Private Rm w/ Futon in the Bronx/ Storage,144119993,Charles,Bronx,Fordham,40.85801,-73.88247,Private room,21,1,9,2018-08-05,0.7,2,0 +17729625,Lovely Brown Stone Casa Curran,120890372,Michelle Curran,Brooklyn,Bushwick,40.695,-73.90755,Entire home/apt,145,7,25,2019-06-16,0.95,1,271 +29761241,Midtown room in the center of the NYC universe.,215229943,Mark,Manhattan,Hell's Kitchen,40.76458,-73.98686,Private room,98,5,8,2019-05-26,0.98,1,179 +22343961,✪Modern house @ Williamsburg | 15min to Manhattan✪,122177964,Henry,Brooklyn,Williamsburg,40.70192,-73.94169000000001,Entire home/apt,250,1,95,2019-06-20,5.04,1,79 +11339109,Sunny Artist PH - Williamsburg w/PrivateTerrace,58179165,Meg,Brooklyn,Williamsburg,40.71175,-73.96728,Entire home/apt,225,1,6,2018-10-07,0.28,1,89 +489365,PRIME LOCATION STYLISH COMFORT,2420670,Carter,Brooklyn,Williamsburg,40.71689,-73.95706,Entire home/apt,226,3,203,2019-06-27,2.85,1,38 +12048,LowerEastSide apt share shortterm 1,7549,Ben,Manhattan,Lower East Side,40.71401,-73.98917,Shared room,40,1,214,2019-07-05,1.81,4,188 +36478343,Welcome all as family,274273284,Anastasia,Manhattan,East Harlem,40.787490000000005,-73.94749,Private room,140,1,0,,,1,180 +26366437,LIVING ROOM COUCH amazing Williamsburg location,91498269,Jonny,Brooklyn,Williamsburg,40.7155,-73.95724,Shared room,100,1,31,2019-06-30,2.81,1,82 +9825939,"Room in Luxury Apt, Williamsburg",9055412,Alexandra,Brooklyn,Williamsburg,40.70663,-73.94700999999999,Private room,100,1,0,,,1,0 +1273533,1 Bedroom avail in BK 3BD w/ porch,2246253,Nerenda,Brooklyn,Bedford-Stuyvesant,40.69585,-73.9446,Private room,75,1,2,2014-08-13,0.03,1,0 +10525616,Prime Park Slope Apartment,14076423,J,Brooklyn,Park Slope,40.67626,-73.98210999999999,Entire home/apt,175,7,43,2018-08-01,1.07,1,0 +7456166,Large 1 Bdrm for 5; close to Roberta's / Morgan L,36849759,Peter,Brooklyn,Bushwick,40.70222,-73.93294,Entire home/apt,147,3,109,2019-07-01,2.5,2,191 +3173412,Big room & private bathroom!,16092773,Erin & Becky,Brooklyn,Crown Heights,40.66638,-73.95229,Private room,125,2,36,2018-12-01,0.6,1,7 +18792703,Gorgeous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75023,-73.97664,Entire home/apt,195,30,1,2017-12-10,0.05,50,365 +27528026,"The GEORGE at Lincoln Center: Duplex, UWS/Times Sq",200829464,Chrisann,Manhattan,Upper West Side,40.77425,-73.98122,Entire home/apt,299,3,33,2019-07-05,2.97,1,96 +5364814,Artist Loft in Bushwick,9881214,Darcy,Brooklyn,Bushwick,40.70018,-73.92586,Entire home/apt,125,1,1,2015-04-01,0.02,1,0 +34960545,Cozy 2 bedroom in the heart of Astoria,3954840,Laura,Queens,Ditmars Steinway,40.77558,-73.90505999999999,Entire home/apt,174,2,1,2019-07-01,1.0,1,5 +34040771,Luxurious life in Manhattan,154895657,Shihu,Manhattan,Hell's Kitchen,40.76245,-73.99831,Entire home/apt,198,30,0,,,1,28 +2471815,"Sunny Master Suite: large bdrm, priv bth, priv liv",12641005,Omar,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95279000000001,Private room,95,4,171,2019-06-30,2.72,1,137 +3315933,Upper East Side 2 Bedroom Apartment,12774721,Morgan,Manhattan,Upper East Side,40.76884,-73.95826,Entire home/apt,250,1,4,2016-01-03,0.07,1,0 +1449546,Cozy Studio in Flatbush,7779204,,Brooklyn,Flatbush,40.64965,-73.96154,Entire home/apt,100,30,49,2017-01-02,0.69,1,342 +34645029,Fabolous 1bd Apartment in Upper East Side New York,259728610,Victor,Manhattan,Upper East Side,40.76762,-73.95693,Entire home/apt,210,3,3,2019-06-13,1.7,1,52 +7603075,Adorable room in heart of Brooklyn,17163531,Beck,Brooklyn,Flatbush,40.65353,-73.95611,Private room,65,1,0,,,1,0 +22213508,Quintessential East Village Apt,6707833,Courtney,Manhattan,East Village,40.72711,-73.97726999999999,Entire home/apt,300,5,1,2018-03-18,0.06,1,0 +22250584,Brooklyn Chateau,53693534,Guy,Brooklyn,Crown Heights,40.6756,-73.91465,Entire home/apt,100,5,0,,,1,0 +22884749,Apt 6,159435936,Jonathan,Manhattan,Upper West Side,40.78694,-73.97218000000001,Entire home/apt,100,31,1,2018-07-22,0.09,3,161 +21261549,"Private room in Bed-Stuy, Brooklyn",45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68642,-73.95608,Private room,70,2,10,2018-02-24,0.48,2,0 +3963635,"A 2-story, 2-bedroom house - 20min to Downtown",20543178,Pervaiz,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93705,Entire home/apt,210,2,10,2019-05-18,0.21,2,180 +820710,1 large bedroom w/private bath,4310378,Autumn,Brooklyn,Clinton Hill,40.69413,-73.96389,Private room,89,2,89,2019-01-01,1.12,3,318 +30497529,1 Bedroom in east village,1286331,Nadjah,Manhattan,East Village,40.72579,-73.98344,Entire home/apt,100,3,12,2019-07-02,1.9,1,80 +35610591,Private Queen Bedroom with WiFi near Central Park!,82406306,Marc,Manhattan,East Harlem,40.79879,-73.94202,Private room,85,2,1,2019-07-02,1.0,2,36 +25739275,Real Brownstone Brooklyn Living On Subway Line,18139709,Cal,Brooklyn,East Flatbush,40.65239,-73.94824,Entire home/apt,190,3,1,2018-06-24,0.08,1,0 +7245876,Beautiful Studio in Bed Stuy,9539044,Nicholas,Brooklyn,Williamsburg,40.71292,-73.94873,Entire home/apt,66,6,3,2017-03-02,0.06,1,0 +6525622,Garden Apt. East Village NY,33733944,John,Manhattan,East Village,40.72152,-73.97761,Entire home/apt,125,1,4,2017-09-04,0.09,1,0 +32617897,Big private room with backyard in hip Bushwick,215891351,Pablo,Brooklyn,Bushwick,40.69935,-73.92407,Private room,43,2,17,2019-06-24,4.05,2,68 +10186787,Cozy Room In Williamsburg Apartment,10855721,Anthony,Brooklyn,Williamsburg,40.703520000000005,-73.93798000000001,Private room,38,7,1,2016-01-21,0.02,1,0 +35732847,A lovely room in a great house close to RUMC.,102263916,John,Staten Island,Tompkinsville,40.63281,-74.09132,Private room,50,1,4,2019-07-07,4.0,2,84 +7806322,Beautiful Zen 3BR Apartment,37915862,Greg,Brooklyn,East New York,40.67351,-73.89267,Entire home/apt,155,5,80,2019-07-03,1.73,2,256 +24853936,JFK Queens/House of Suedajoy#5(dis by flexibility,175019394,Suzan,Queens,Jamaica,40.67121,-73.77859000000001,Private room,80,1,68,2019-06-22,4.81,6,153 +29570523,MyLittlePlace,222626145,Niko,Queens,Kew Gardens Hills,40.72292,-73.81635,Entire home/apt,90,1,19,2019-06-17,2.42,1,26 +504437,The biggest small apt in Manhattan,2356449,Mariana,Manhattan,Lower East Side,40.72232,-73.98686,Entire home/apt,104,3,57,2019-06-30,0.7,1,6 +35876030,Cozy 3bdr Brooklyn Home in East Flatbush,269840768,Dionne,Brooklyn,Flatlands,40.62585,-73.9392,Entire home/apt,300,4,0,,,1,163 +1166616,Gorgeous Large Sunny Room - Upper Manhattan,6388666,Celine,Manhattan,Washington Heights,40.84002,-73.9385,Private room,80,2,56,2019-06-22,0.76,1,249 +30295927,Bedroom in Massive Loft Apartment,51340124,Nikki,Manhattan,Chelsea,40.73785,-73.99214,Private room,350,2,0,,,2,0 +741354,Simple and cozy place on the beach,2577615,Ella,Brooklyn,Brighton Beach,40.57728,-73.95362,Entire home/apt,73,30,21,2017-04-18,0.26,1,251 +4744592,Quiet & Peaceful Upper West Escape,6648212,Mike,Manhattan,Morningside Heights,40.815090000000005,-73.96019,Entire home/apt,120,4,4,2015-05-30,0.07,1,0 +34258598,Single Bedroom around Columbia University,195863013,Yiwei,Manhattan,Upper West Side,40.80249,-73.96729,Private room,45,3,3,2019-06-08,2.05,1,2 +20044802,AG's Palace 3,121612198,Maura,Brooklyn,Canarsie,40.64138,-73.91488000000001,Private room,75,1,11,2019-06-13,0.48,4,347 +4325284,"Lovely, Clean, Comfy w/River Views!",22459182,Sean,Manhattan,Upper East Side,40.78535,-73.94997,Entire home/apt,210,1,0,,,1,0 +35275920,Cozy summer relaxation,265576141,Luke,Queens,Rockaway Beach,40.58825,-73.81208000000001,Private room,75,1,2,2019-06-30,2.0,1,5 +6300424,Sunny Room! Block From park! SwEeT!,19575935,Dov,Brooklyn,Greenpoint,40.72469,-73.95099,Private room,80,1,2,2016-04-03,0.05,1,0 +721719,Heart of Harlem 1 BR Garden apt,3726131,John,Manhattan,Harlem,40.80745,-73.94353000000001,Entire home/apt,150,5,17,2018-06-25,0.26,2,36 +18424903,Luxury Townhouse,2948325,Ray,Manhattan,East Harlem,40.79737,-73.93185,Entire home/apt,300,3,53,2019-06-30,2.03,1,104 +26751201,Cozy apartment in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76538,-73.92726,Entire home/apt,150,2,46,2019-06-21,3.84,2,121 +25403075,Your special place in Manhattan FRONT room,191765199,Elena,Manhattan,Washington Heights,40.833870000000005,-73.94163,Private room,81,1,18,2019-06-04,1.34,6,38 +4097284,"Bklyn, private Three Bedroom.",11948817,Leslie,Brooklyn,Canarsie,40.63056,-73.89043000000001,Entire home/apt,75,2,91,2019-06-09,1.56,2,289 +10881719,charming Soho/Little Italy nest,30410829,Michelange,Manhattan,Chinatown,40.71786,-74.00009,Entire home/apt,105,1,16,2016-08-25,0.4,1,0 +13714218,Sunny apartment in Brooklyn brownstone,4230541,Aaron,Brooklyn,Clinton Hill,40.68446,-73.96528,Private room,200,2,0,,,1,0 +15177635,2MinTrainBigBeautyRMaimoLutherandIndustryCitty,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65657,-74.00358,Private room,70,1,23,2019-05-31,0.73,4,325 +28367352,Hip Bushwick Area Private Room!,212071658,Brian,Brooklyn,Bushwick,40.69098,-73.90509,Private room,65,2,22,2019-06-24,2.46,5,348 +20616239,Beautiful Nolita Apartment,7941058,Levi,Manhattan,Lower East Side,40.721,-73.99146999999999,Entire home/apt,200,2,3,2017-12-22,0.15,1,38 +23480048,Open studio in Bushwick,64076428,John,Brooklyn,Bushwick,40.69749,-73.93153000000001,Entire home/apt,110,3,7,2018-08-05,0.42,1,38 +26036850,Guest room,195678889,Susan,Manhattan,Harlem,40.82461,-73.95269,Private room,60,2,0,,,1,363 +31126424,A Girls Only Charming living room!!,176899233,Vicky,Brooklyn,Kensington,40.63981,-73.97165,Shared room,45,1,2,2019-05-31,0.6,2,22 +32844588,Stylish Room w/ 2 Twin Beds in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.76035,-73.98586999999999,Private room,324,1,13,2019-06-18,5.42,7,331 +20583124,Gorgeous space in brownstone on cobblestone st,123805373,Elizabeth,Brooklyn,Brooklyn Heights,40.693000000000005,-73.99774000000001,Entire home/apt,118,1,2,2018-02-25,0.09,1,0 +16337106,Charming attic Room in Home + Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.87093,-73.8934,Private room,58,3,84,2019-06-23,2.74,4,75 +21959796,Gorgeous Apt In Central Manhattan,90956690,Dean,Manhattan,Murray Hill,40.74661,-73.97698000000001,Entire home/apt,200,4,2,2018-01-01,0.1,1,0 +30403504,"Chic PENT HOUSE near LaGuardia airport, 30 to nyc.",95570854,Fatema,Queens,Ditmars Steinway,40.76711,-73.89367,Entire home/apt,250,7,0,,,2,365 +28131994,Cozy Convenient Brooklyn One Bedroom,80788474,Ambre,Brooklyn,Bedford-Stuyvesant,40.68195,-73.95328,Entire home/apt,165,3,0,,,2,83 +1305346,Studio in the Heart of Soho,7096964,Chris,Manhattan,SoHo,40.72098,-73.99869,Entire home/apt,145,30,12,2018-11-30,0.17,1,342 +16071397,Small Private Room in Gramercy/East Village,7555939,Chelsea,Manhattan,Gramercy,40.73257,-73.98234000000001,Private room,65,5,7,2018-09-15,0.26,1,0 +23483525,5mins to train; New York Modern Home- (5),175311339,Eduardo,Queens,Jackson Heights,40.75287,-73.86435,Private room,37,2,34,2019-06-08,2.07,5,126 +1583653,Private room and bathroom,8434244,William,Manhattan,East Harlem,40.79255,-73.93842,Private room,125,2,59,2019-06-16,0.84,1,360 +17078010,Bushwick apartment (bedroom) right off L train!,1286399,Lauren,Brooklyn,Bushwick,40.70072,-73.91594,Private room,150,1,3,2018-10-09,0.1,1,359 +2485482,Boutique Apt. NYC by 24 HR Metro,12718658,Ray,Queens,Jackson Heights,40.75484,-73.8764,Shared room,75,2,0,,,1,0 +30934838,Prospect Park Family Townhouse,231157284,Cecilia,Brooklyn,Windsor Terrace,40.65463,-73.97536,Entire home/apt,300,2,0,,,1,35 +30927,Unique & Charming small 1br Apt. LES,120335,Cs,Manhattan,Lower East Side,40.71341,-73.98855999999999,Entire home/apt,105,3,32,2019-06-14,0.29,1,16 +16798351,Beautiful East Village Studio,94669886,Nadine,Manhattan,East Village,40.72885,-73.98103,Entire home/apt,115,7,11,2018-08-21,0.39,1,0 +9860571,The RoyaltySpace @Williamsburg BK3,24120303,Charles Jnr,Brooklyn,Williamsburg,40.70848,-73.94945,Private room,79,1,13,2016-08-21,0.3,1,0 +7524934,Large light-filled master bedroom.,39298265,Julia,Manhattan,Harlem,40.80313,-73.95742,Private room,60,2,1,2015-07-25,0.02,1,0 +30394105,Expansive West Village Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.7296,-74.00246,Entire home/apt,341,30,0,,,232,285 +26256921,Cozy Bushwick Apartment in Great Neighborhood,124693842,Lauren,Brooklyn,Bushwick,40.69788,-73.922,Entire home/apt,140,5,3,2018-08-19,0.25,1,0 +14330688,Beautiful Crown Heights Pre-War 1 Bedroom,5158569,Genevieve,Brooklyn,Crown Heights,40.6686,-73.93517,Entire home/apt,115,2,7,2019-01-01,0.21,1,0 +2079686,Sunny apt with Backyard,7624316,Rebecca,Brooklyn,Bushwick,40.7018,-73.91823000000001,Entire home/apt,60,3,14,2017-02-20,0.21,1,0 +22352793,"Cozy, impeccable, sunlit West Village studio",108275491,Juan,Manhattan,Chelsea,40.74093,-74.00285,Entire home/apt,110,2,1,2017-12-28,0.05,1,0 +12679291,Nice and quiet apt Bdway/Times Sq.,44530717,Vincent,Manhattan,Hell's Kitchen,40.75965,-73.99035,Entire home/apt,224,6,1,2016-05-30,0.03,1,0 +36075020,Apartment In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.8233,-73.95121999999999,Entire home/apt,125,3,0,,,2,326 +4603012,Spacious 1BR Apt in Greenpoint,45609,Sean,Brooklyn,Greenpoint,40.73132,-73.95831,Entire home/apt,149,15,22,2019-04-30,0.39,1,0 +3601324,7even Days Sleep Near Prospect Park,16834792,Louis,Brooklyn,Crown Heights,40.66529,-73.9557,Entire home/apt,130,5,150,2019-07-03,2.48,2,309 +24105640,"Tranquil private bedroom, Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.8301,-73.94757,Private room,99,1,22,2019-06-30,1.88,6,45 +35352621,washer/dryer private room 20 min from time square,256321373,JessDoinMe,Manhattan,Harlem,40.82168,-73.93855,Private room,50,1,1,2019-06-09,1.0,1,116 +9152795,Studio Bedroom Apt in Williamsburg,1443812,Luciana,Brooklyn,Williamsburg,40.71083,-73.96401,Entire home/apt,120,3,184,2019-06-27,4.1,2,262 +28604793,6MinTrainMasterRoom/MaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65012,-74.00603000000001,Private room,60,1,20,2019-06-28,2.07,4,162 +35233704,Roberta's New York Paradise,265277264,Roberta,Queens,Astoria,40.75813,-73.92152,Private room,50,1,2,2019-07-06,2.0,1,341 +11967737,Beautiful Bedroom on Hudson River/Riverside Park,63928471,David,Manhattan,Harlem,40.83342,-73.94949,Private room,40,1,6,2019-03-22,0.16,1,0 +6647114,COZY CORNER GREENWICH VILLAGE,3579116,Kristin,Manhattan,West Village,40.73267,-74.00379000000001,Private room,140,3,64,2019-06-20,1.29,2,5 +7561847,Large and sunny 1br in Harlem!,10095503,Sophia,Manhattan,Harlem,40.82112,-73.94962,Entire home/apt,150,1,7,2016-10-30,0.15,1,10 +12135856,Master Bedroom w/ King Bed,15025923,Stephen,Brooklyn,Fort Hamilton,40.61645,-74.03108,Private room,43,23,0,,,1,0 +5020842,Private BR in amazing neighborhood,17770322,Nicole,Brooklyn,Carroll Gardens,40.68138,-73.9926,Private room,125,1,8,2019-07-07,0.16,1,191 +20469195,"Secluded Room in EV, Private Patio, Open Kitchen!",34706197,Imri,Manhattan,East Village,40.725640000000006,-73.98682,Private room,144,4,20,2019-01-01,1.08,2,94 +29559298,Manhattan Club-A Lux Suite in Heart of Manhattan,93031650,Kay,Manhattan,Midtown,40.76434,-73.98199,Entire home/apt,300,4,0,,,1,0 +21367929,★ 4BRs Family Groups★ Duplex ★Backyard ★ NYC 35min,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67752,-73.91489,Entire home/apt,190,5,59,2019-07-07,2.86,5,24 +9614552,Huge brownstone apt. on cute block!,766920,Archie,Brooklyn,Carroll Gardens,40.68316,-73.99775,Entire home/apt,100,2,4,2016-04-18,0.09,1,0 +11775601,"Spacious bedroom, in Crown heights",15495404,Melanie,Brooklyn,Crown Heights,40.67091,-73.93247,Private room,65,5,0,,,1,0 +19455149,Manhattan Phenomenal Deal! BEST Chelsea Room,136431007,Louie,Manhattan,Chelsea,40.74944,-73.99774000000001,Private room,49,1,40,2019-06-09,1.63,1,43 +23702442,Sonder | 180 Water | Delightful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70753,-74.00514,Entire home/apt,205,29,1,2018-05-04,0.07,96,338 +33650779,Central Manhattan Ladies Only (Shared),247453895,Kamila,Manhattan,Kips Bay,40.7432,-73.97605,Shared room,39,2,0,,,3,324 +24826817,Fun tourist family friendly Flatiron Loft,187684303,Alexis,Manhattan,Kips Bay,40.73992,-73.98272,Entire home/apt,200,2,16,2019-05-09,1.57,1,6 +205043,Modern Condo in Midtown,1007558,Welcome To My Place,Manhattan,Theater District,40.75895,-73.9883,Private room,150,1,330,2019-06-20,7.14,1,111 +1492856,small room in bedstuy P,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68411,-73.95169,Private room,55,1,162,2019-06-19,2.26,15,334 +24494062,Modern LOFT in Fort Greene,6257521,V And J,Brooklyn,Clinton Hill,40.69325,-73.96863,Entire home/apt,160,3,3,2018-10-29,0.24,1,8 +13950233,Updated East Side 2 Bedroom,61391963,Corporate Housing,Manhattan,Kips Bay,40.74096,-73.98055,Entire home/apt,159,30,4,2018-09-14,0.12,91,364 +16603017,Sophisticated Retreat in Spacious Manhattan Apt,23957491,Elka,Manhattan,Washington Heights,40.8568,-73.93162,Private room,96,1,87,2019-06-12,2.97,1,83 +230877,Monthly Apartment Rental,292204,Blanca,Manhattan,East Harlem,40.792390000000005,-73.94535,Entire home/apt,135,28,115,2019-06-30,1.21,2,341 +31099515,Super Deluxe Private Room near LGA (Room #02),155691570,Mili,Queens,East Elmhurst,40.76577,-73.87131,Private room,35,1,56,2019-07-03,9.08,5,89 +13770780,Super sunny and spacious! Privacy!,38404959,Maria,Queens,Ditmars Steinway,40.77697,-73.9082,Private room,60,2,10,2018-09-27,0.38,2,364 +7515694,A charming Parisian style apartment,1825554,Chris,Manhattan,Chelsea,40.7394,-73.99838000000001,Entire home/apt,210,1,10,2019-01-01,0.22,1,6 +21227092,Light-filled Brooklyn Bedroom and Art Space,15170042,Meaghan,Brooklyn,Crown Heights,40.67261,-73.9578,Private room,90,1,0,,,1,0 +35153758,温馨旅店(1),263740985,Yongqiu,Queens,Flushing,40.75419,-73.83081999999999,Private room,80,1,0,,,3,363 +27580312,The Pit of Despair,208099979,Yianni,Manhattan,Upper East Side,40.78117,-73.95688,Private room,105,1,3,2019-03-15,0.28,1,90 +21754827,oasis 3,156505456,John,Brooklyn,East New York,40.66098,-73.88828000000001,Private room,45,3,29,2019-06-23,1.57,13,90 +341525,TIMES SQUARE MASTER BEDROOM!,1732559,J,Manhattan,Hell's Kitchen,40.75763,-73.99481999999999,Private room,95,6,62,2019-06-01,0.76,2,80 +3262855,BEAUTIFUL ROOM NEAR PROSPECT PARK!!,16499705,John,Brooklyn,Flatbush,40.65148,-73.95846999999999,Entire home/apt,70,1,5,2015-12-01,0.08,1,0 +25005877,"Designer Studio / 1BR in Williamsburg, Nice Views",108160091,Dasha,Brooklyn,Williamsburg,40.70996,-73.96129,Entire home/apt,168,10,3,2018-10-31,0.22,3,284 +27547687,Queens Apartment Private Room,177825782,Ada,Queens,Jackson Heights,40.75047,-73.88216,Private room,89,4,2,2019-05-26,0.33,2,175 +18896540,PRIVATE BATHROOM AND KITCHEN AREA,131684478,Mervin (Michael),Staten Island,West Brighton,40.63452,-74.11707,Private room,45,2,47,2019-02-01,1.89,3,207 +23003201,South slope Brooklyn 1private bedroom!,170629692,Chris,Brooklyn,Sunset Park,40.66182,-73.99387,Private room,65,1,0,,,1,0 +13249407,LARGE SUNNY 2 BEDROOM APARTMENT IN BROOKLYN!,9123131,Sean,Brooklyn,Crown Heights,40.67206,-73.9429,Entire home/apt,105,4,13,2017-08-14,0.36,2,0 +13895437,Bushwick Basement Large Room with Half Bath,2776152,Jessica,Brooklyn,Bushwick,40.69904,-73.91792,Private room,38,1,3,2016-09-19,0.08,1,0 +34151215,Bright and Artsy 2 Bedroom Apartment,257810280,Leslie,Brooklyn,Bedford-Stuyvesant,40.67935,-73.93715,Entire home/apt,100,1,5,2019-07-08,5.0,1,0 +18239623,One Bedroom with King in the Manhattan Club!!,22307295,Anthony,Manhattan,Midtown,40.76392,-73.98187,Entire home/apt,186,1,0,,,1,0 +675793,AMAZING LOCATION YOU WILL LOVE IT,3432742,Callie,Manhattan,West Village,40.73456,-74.00347,Private room,88,2,2,2019-07-04,0.05,1,348 +33187617,Midtown East Gem with PRIVATE Terrace,165776960,Raanan,Manhattan,Midtown,40.76054,-73.96449,Entire home/apt,130,30,1,2019-06-09,1.0,2,148 +19544766,Large+Amazing 2BR ( Flex)-Upper East Side-E89th,2856748,Ruchi,Manhattan,Upper East Side,40.77608,-73.94364,Entire home/apt,220,30,0,,,49,325 +13685871,Modern & Spacious Luxury 1-Bedroom in Williamsburg,2438907,Amjad,Brooklyn,Williamsburg,40.71894,-73.96403000000001,Entire home/apt,199,3,23,2018-06-26,0.63,1,0 +872035,furnished bedroom 1150$ a month ,4599027,Amal,Manhattan,East Harlem,40.8032,-73.94004,Private room,100,30,0,,,2,365 +15182188,Amazing Location! NYC Midtown Nice Private Bedroom,96368935,Frank,Manhattan,Kips Bay,40.74385,-73.97827,Private room,89,3,3,2016-10-19,0.09,1,0 +20849726,East Village Penthouse Terrace,34692684,Spiritt,Manhattan,East Village,40.72737,-73.98815,Private room,140,2,0,,,1,0 +14427313,PRIVATE ROOOM IN GREENPOINT,26714887,Anthony,Brooklyn,Greenpoint,40.72988,-73.95494000000001,Private room,75,3,0,,,2,0 +30046174,Spacious Loft steps from Central Park by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.79052,-73.94838,Entire home/apt,120,29,1,2019-05-31,0.77,2,0 +20051059,East Village Gem,16547637,Sarah,Manhattan,East Village,40.72775,-73.98253000000001,Private room,65,2,1,2017-08-15,0.04,1,0 +2185668,Clean Private Room in Chelsea apt,3579337,Nina,Manhattan,Chelsea,40.74106,-74.00262,Private room,80,30,8,2017-01-31,0.12,3,301 +14240343,Artists townhouse next to Central Park! WOW!,38315339,Viktoria,Manhattan,Upper East Side,40.76282,-73.96734000000001,Entire home/apt,195,1,109,2019-07-02,3.21,1,190 +13136376,Spacious 2 Bedroom with Balcony,16110448,Gingie,Manhattan,East Harlem,40.79658,-73.93287,Entire home/apt,199,2,30,2019-06-03,0.8,1,30 +22530764,House of Love,165448425,Shana,Brooklyn,East Flatbush,40.65129,-73.94058000000001,Private room,90,1,10,2019-06-24,0.72,1,365 +22814859,Cozy Private 1 Bedroom in a Shared Area,168619140,Terry,Brooklyn,Canarsie,40.63773,-73.91729000000001,Private room,80,1,5,2019-02-16,0.53,2,0 +34976973,JFK park view,245457246,Nurul,Queens,South Ozone Park,40.67101,-73.78943000000001,Entire home/apt,248,2,2,2019-06-23,1.3,1,354 +8847268,Apartment with terrasse greenpoint brooklyn,1818225,Amael,Brooklyn,Greenpoint,40.72212,-73.9378,Entire home/apt,80,3,0,,,1,0 +27284500,"Private bedroom in Ridgewood, Queens 3R-2",205530337,Nina,Queens,Ridgewood,40.70296,-73.9056,Private room,45,30,1,2018-12-14,0.14,8,314 +20137770,Private room in doorman building in Downtown BK,34365131,Sarah,Brooklyn,Downtown Brooklyn,40.69591,-73.98335,Private room,58,5,1,2017-08-13,0.04,1,0 +11146432,Cozy top floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67963,-73.97054,Private room,50,1,257,2019-07-01,6.23,13,286 +21136837,Cozy bedroom in Bed-stuy town house,10823443,Margaux,Brooklyn,Bedford-Stuyvesant,40.684540000000005,-73.94829,Private room,45,4,0,,,1,0 +8409459,Greenpoint Brooklyn Modern Charm II,43108922,Robbin,Brooklyn,Greenpoint,40.72321,-73.9433,Entire home/apt,150,3,107,2019-06-18,2.38,2,277 +5309343,Serene West Village Sun-flooded apt,27502743,John,Manhattan,West Village,40.73183,-74.00649,Entire home/apt,175,90,0,,,1,89 +28517276,Luxury Studio & Private Patio - NYC in 20 minutes!,71219887,Christina,Brooklyn,Bushwick,40.69062,-73.92265,Entire home/apt,120,2,10,2019-06-23,1.18,1,4 +12360322,Cozy Bdr 15 min from Manhattan!,11626567,Francisco,Brooklyn,Williamsburg,40.70661,-73.93642,Private room,60,1,2,2016-04-17,0.05,1,0 +19380620,Washington Heights room,132826462,Erin,Manhattan,Washington Heights,40.84118,-73.93697,Private room,70,2,1,2018-01-04,0.05,1,0 +22373272,Historic Crown Heights Townhouse w. Private Yard,156935,Sneha,Brooklyn,Crown Heights,40.66602,-73.94612,Entire home/apt,300,4,28,2019-06-25,1.52,1,179 +3642278,Brooklyn Carroll Gardens Charmer!,18388112,Brett,Brooklyn,Carroll Gardens,40.68235,-73.99806,Entire home/apt,175,3,4,2016-10-03,0.07,1,0 +23120142,Deluxe Bedroom - 30 minutes from Midtown!,133602911,Sanyika,Bronx,Mount Hope,40.84882,-73.90263,Private room,80,3,20,2019-06-14,1.18,2,36 +29126779,One Bdrm Apt w/ Extraordinary Views of Downtown,218936218,Solina,Manhattan,Financial District,40.71148,-74.01283000000001,Entire home/apt,230,3,8,2019-05-26,0.95,1,23 +26558970,"Fifth Element: 7bd, private home.FREE CANCELLATION",143979755,Edwin,Bronx,Pelham Gardens,40.862390000000005,-73.84362,Entire home/apt,99,1,67,2019-07-06,6.07,1,337 +20973084,Private room in Upper Manhattan near City College.,148394958,Cleber,Manhattan,Harlem,40.82876,-73.94538,Private room,38,8,20,2019-05-26,0.97,1,26 +16206077,Two bedroom apartment in Williamsburg,1865198,Evelyne,Brooklyn,Williamsburg,40.71157,-73.95846,Entire home/apt,185,8,2,2017-05-22,0.07,1,59 +22187068,Luxury Condo - Heart of Williamsburg,14338184,Eli,Brooklyn,Williamsburg,40.71311,-73.95742,Entire home/apt,175,2,2,2018-06-16,0.11,1,0 +18682735,Penthouse studio @ Manhathan,10477693,Crystal,Manhattan,Financial District,40.70738,-74.01281,Entire home/apt,160,2,0,,,1,0 +28801976,Modern renovated Loft in the Heart of Williamsburg,1171704,Vanessa,Brooklyn,Williamsburg,40.70475,-73.93522,Entire home/apt,200,2,16,2019-06-23,1.99,1,136 +13927922,Gorgeous and Cosy Studio in Astoria!,82740389,Vanessa,Queens,Ditmars Steinway,40.78028,-73.91476999999999,Entire home/apt,90,3,5,2016-09-18,0.14,1,0 +13750770,Two Bed Apt w/ Private Patio in Prime EastVillage,58208399,Brett,Manhattan,East Village,40.72576,-73.98691,Entire home/apt,200,2,11,2018-08-12,0.3,1,0 +22338452,Comfortable East Village 1 Bedroom,4122771,Kara,Manhattan,East Village,40.72813,-73.98132,Entire home/apt,175,2,0,,,1,0 +9755785,"540 Main Street, Apt 428",47512544,Yingyuan,Manhattan,Roosevelt Island,40.76206,-73.94904,Private room,45,3,1,2016-01-05,0.02,1,0 +5502282,Great Room in Williamsburg (uriel),3398752,Alessandra,Brooklyn,Williamsburg,40.71074,-73.95429,Private room,95,2,186,2019-06-22,3.75,2,62 +34792347,Cozy Private Room in Prime Location,233755743,Jany,Queens,Elmhurst,40.73291,-73.87561,Private room,40,2,2,2019-06-08,1.82,2,346 +32661869,Bushwick room above punk bar,52835849,Heather,Brooklyn,Bushwick,40.70153,-73.92996,Private room,60,7,0,,,2,332 +24993686,"""Cozy Retreat"" in North Crown Heights",188947623,Priscilla,Brooklyn,Crown Heights,40.66998,-73.94702,Entire home/apt,112,2,50,2019-07-05,3.93,1,0 +3677769,Beautiful Large Sunny Bedroom,18681479,Pamela,Queens,Sunnyside,40.741890000000005,-73.92375,Private room,75,2,111,2019-06-24,1.89,1,348 +753622,1 Private Bedroom / East Village,869880,Karen,Manhattan,East Village,40.73233,-73.98695,Private room,95,5,64,2019-06-29,0.88,1,316 +19650084,Simple private bedroom in house apartment,61308650,Elan,Brooklyn,Cypress Hills,40.68244,-73.89489,Private room,29,1,51,2019-06-01,2.1,1,16 +1555919,East Village New Luxury Bldg - 1BR,8282962,Anna,Manhattan,East Village,40.7282,-73.98066999999999,Entire home/apt,156,2,31,2019-05-16,0.44,1,3 +5251673,Quiet Space Directly Off L Train,27181264,Jaclyn,Brooklyn,Williamsburg,40.71843,-73.95725,Private room,115,1,0,,,1,0 +1481907,Charming BK Townhouse Home by Highland Park!,7938019,Megan,Brooklyn,Cypress Hills,40.68505,-73.8718,Entire home/apt,345,2,78,2019-06-30,2.49,1,185 +6239508,Brooklyn New York City - JFK/LGA,32384960,Saf,Brooklyn,Cypress Hills,40.68465,-73.8684,Entire home/apt,130,1,94,2019-06-23,1.92,1,0 +34091327,Beautiful 1 bedroom near to Time’s Square,34689714,Maria,Manhattan,Hell's Kitchen,40.76512,-73.98674,Entire home/apt,240,1,0,,,5,365 +11801942,"Cozy, Clean and Minimal Design in Park Slope",62852022,Stine And Andrew,Brooklyn,South Slope,40.66485,-73.98822,Entire home/apt,200,2,9,2019-05-31,0.24,1,0 +31144865,Cozy private bedroom close to train and Manhattan,224204301,Tylor,Bronx,Mott Haven,40.81331,-73.92765,Private room,60,1,30,2019-07-02,6.38,2,333 +20047896,Clinton Hill Apartment With Large Private Balcony,27559992,Sarah,Brooklyn,Clinton Hill,40.693940000000005,-73.96918000000001,Entire home/apt,158,2,97,2019-06-19,4.19,1,28 +9714880,Brooklyn Artist Loft-Style,50152355,Kevin,Brooklyn,Bushwick,40.69715,-73.92243,Entire home/apt,60,14,0,,,1,0 +20734,Spacious Prospect Heights Apartment,78460,Sean & Lynette,Brooklyn,Prospect Heights,40.68233,-73.97261,Entire home/apt,131,4,166,2019-06-27,3.4,1,207 +32618476,Quiet space close to the city,72234136,Eliza Alex,Queens,Astoria,40.77655,-73.93587,Private room,100,1,11,2019-06-04,2.89,1,124 +1467238,Charming Prime Williamsburg 2 bedroom Entire home,7859118,Kristen & Corey,Brooklyn,Williamsburg,40.71915,-73.94060999999999,Entire home/apt,165,2,80,2017-07-19,1.28,1,188 +10083580,Cozy apartment in Brooklyn,22068394,Julian,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94765,Private room,58,2,2,2016-06-13,0.05,1,0 +12404998,Cosy 1 bedroom apartment in Astoria,47380199,Kim,Queens,Astoria,40.76869,-73.91966,Entire home/apt,120,7,1,2016-06-05,0.03,1,0 +21473096,FourTwin bunkbeds- 5 minutes from JFK,114975592,John And Colleen,Queens,Springfield Gardens,40.66668,-73.76417,Private room,90,1,2,2019-03-05,0.14,4,84 +30388587,"Homey UWS 1BR w/ Gym, walk to Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77779,-73.98459,Entire home/apt,306,30,0,,,232,336 +23131033,"Full 1-BR Apartment - Sunny, Cozy, and Eclectic!",137292249,Sara And Greg,Brooklyn,Flatbush,40.64086,-73.9547,Entire home/apt,55,4,8,2018-11-08,0.53,1,0 +30942778,Share a Lg Studio room* 2 blocks subway* Bronx Zoo,1532337,Monica,Bronx,Van Nest,40.84047,-73.87127,Shared room,20,14,1,2019-05-08,0.48,4,139 +33778352,PRIME COZY HUGE Bedroom in Heart of NYC (RARE!!),28580275,Sommy,Manhattan,Midtown,40.75625,-73.96415999999999,Private room,119,2,6,2019-06-30,2.69,4,297 +1987584,Home Sweet Room-HOMEY-Queens NYC!!,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73943,-73.87475,Private room,45,3,49,2019-04-25,0.77,3,307 +34805487,Hostal Home - Welcome Home,261854722,Jasmina,Queens,Jamaica,40.70091,-73.81359,Private room,80,1,5,2019-06-23,3.0,1,54 +270231,Cozy New York City private room,1366310,Janina,Queens,Woodside,40.74409,-73.91122,Private room,85,2,270,2019-07-07,2.95,2,306 +32792151,Cozy Clean Two Bedroom Very near Fort Greene Park,246681878,Erica,Brooklyn,Fort Greene,40.69431,-73.97289,Entire home/apt,145,1,19,2019-06-28,5.18,1,30 +27500496,"Room by Central Park,Harlem, NY",89842859,Charlène,Manhattan,Harlem,40.80138,-73.95107,Private room,68,10,1,2018-09-08,0.1,1,0 +29631729,Modern Williambsurg Studio in Prime Location,9358058,Alex,Brooklyn,Williamsburg,40.71131,-73.95669000000001,Entire home/apt,200,3,3,2019-06-30,0.38,1,35 +33497909,"Beautiful, Comfortable Studio",252432969,Jaime,Manhattan,Midtown,40.7545,-73.97067,Entire home/apt,260,1,14,2019-06-23,4.47,1,139 +23764303,Charming Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78315,-73.94768,Entire home/apt,100,30,0,,,8,320 +20030871,Williamsburg Bedroom w/Private Terrace!,1822729,Derek,Brooklyn,Williamsburg,40.71078,-73.96161,Private room,70,4,33,2019-03-05,1.49,2,0 +16427854,Trendy 1 bedroom apartment in cool LES hood.,83185960,Dr. Amy,Manhattan,Lower East Side,40.7151,-73.98661,Entire home/apt,180,3,49,2019-05-28,1.58,1,1 +12947454,"Awesome, Clean & Cozy UWS Apartment",33419138,George,Manhattan,Upper West Side,40.78175,-73.97576,Entire home/apt,180,1,1,2016-05-19,0.03,1,0 +27172827,"Cozy Upper East - 1 Bed +Park | Museums | Subway",25700836,Brenton,Manhattan,Upper East Side,40.779790000000006,-73.95297,Entire home/apt,128,1,11,2018-11-26,0.96,1,30 +33900721,NEW COZY STUDIO WITH LARGE PRIVATE OUTDOOR SPACE,81712936,Allie,Manhattan,Upper East Side,40.78202,-73.94826,Entire home/apt,200,3,3,2019-06-14,1.76,2,0 +21104475,Near LGA cozy room.,152177080,James &,Queens,East Elmhurst,40.77063,-73.87543000000001,Private room,45,1,222,2019-06-20,10.39,1,164 +13044519,"Quiet, relaxing room in Greenpoint",2349563,Johann,Brooklyn,Greenpoint,40.73356,-73.95808000000001,Private room,80,1,2,2016-07-26,0.05,1,0 +666613,Amazing Williamsburg entire Loft. Floor 2B,3370705,Valentin,Brooklyn,Williamsburg,40.71112,-73.96338,Entire home/apt,199,4,78,2019-06-07,1.26,1,65 +31341476,"Tight budget tours NYC? Cheap, Clean and close all",137501374,LKL Rental,Queens,Elmhurst,40.74038,-73.86964,Shared room,19,1,15,2019-06-22,2.78,3,236 +2254388,"Spacious apt, 5 min to Central Park",11512483,Danielle,Manhattan,Upper East Side,40.78021,-73.95044,Entire home/apt,175,2,5,2016-12-30,0.08,1,0 +20887992,Homey & Cozy Near Pratt! (Cat Lovers Only),8207362,Karina,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.93746999999999,Private room,60,1,21,2019-06-26,0.95,2,82 +35343102,Loft in the Village,42063010,Christy,Manhattan,East Village,40.72832,-73.98984,Private room,180,1,0,,,1,177 +9208886,Cozy SpaHa Apartment,47893591,Stephen,Manhattan,East Harlem,40.79804,-73.93127,Private room,50,13,0,,,1,0 +31832966,Garden apartment in the heart of Gramercy,236148005,Linus,Manhattan,Flatiron District,40.74158,-73.98593000000001,Entire home/apt,200,2,8,2019-07-01,1.95,1,34 +29127425,Modern huge room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.69167,-73.94800000000001,Private room,60,1,7,2019-01-01,0.78,2,28 +30539307,Cozy 1Bedroom Loft Style living (The entire Floor),229149668,Paul,Brooklyn,Bedford-Stuyvesant,40.68294,-73.95451,Entire home/apt,150,3,26,2019-07-07,3.79,1,93 +15827538,Williamsburg 2 BR Apartment! 1 stop to Manhattan,6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70944,-73.96161,Entire home/apt,209,2,23,2019-06-08,0.72,2,11 +27387238,FLEX. 2BR IN PRIME LOCATION-MIDTOWN EAST,200380610,Pranjal,Manhattan,Midtown,40.7525,-73.96683,Entire home/apt,200,30,0,,,65,339 +29513616,Enjoy a Private Room with 2 Beds in Bed Stuy,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69416,-73.94528000000001,Private room,68,3,13,2019-05-20,1.54,3,365 +34160917,The Perfect Chic 2BR/1BA Designer Flat in L.E.S.,20377891,B.,Manhattan,Lower East Side,40.71456,-73.98986,Entire home/apt,250,1,1,2019-07-01,1.0,2,58 +33850661,Amazing private room 5 min time square,45578040,Ryan,Manhattan,Hell's Kitchen,40.76921,-73.99239,Private room,105,1,1,2019-04-18,0.37,2,0 +9106756,Santuary from the City - Sunny Greenpoint Apt,1692708,Rebecca,Brooklyn,Greenpoint,40.72782,-73.95459,Entire home/apt,150,14,0,,,1,42 +15149187,Master bedroom in the heart of Greenpoint!,6314010,Kevin,Brooklyn,Greenpoint,40.72679,-73.94838,Private room,55,2,51,2017-09-26,1.52,1,0 +35510968,Cute & Cozy studio in Prospect Park,54332560,Jacqueline,Brooklyn,Park Slope,40.66993,-73.97709,Entire home/apt,97,11,0,,,1,25 +4205816,Spacious South Slope apartment,20312973,Diana,Brooklyn,Sunset Park,40.66423,-73.99565,Entire home/apt,119,5,6,2015-12-27,0.11,1,0 +23946797,Entire apt in Manhattan. 15 mins to Times Square!,65059624,Peiyi,Manhattan,East Harlem,40.80942,-73.93701,Entire home/apt,50,3,118,2019-06-23,8.06,1,4 +11086888,"Spacious, Private, Comfortable N. HARLEM Apartment",118126,Pat,Manhattan,Harlem,40.83135,-73.94442,Entire home/apt,200,3,114,2019-07-02,3.19,1,165 +8952816,CHARMING ROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76786,-73.92433,Private room,45,1,137,2019-06-16,3.06,9,283 +31269651,Brooklyn Bliss A,219104513,Kendra,Brooklyn,East Flatbush,40.65854,-73.93913,Private room,53,2,5,2019-05-07,0.91,2,191 +20092176,Large suite with private bathroom (15 min to city),85330,Jean,Queens,Forest Hills,40.7118,-73.85285,Private room,50,3,30,2019-07-01,1.28,3,220 +33715848,Massive Private rm Private Entrance HEART of Wb,171008642,Mona,Brooklyn,Williamsburg,40.72005,-73.95704,Private room,120,2,14,2019-06-18,4.83,1,18 +34687393,Cozy bedroom in the hearth of NYC!,43359332,Veronica,Manhattan,Midtown,40.74493,-73.98484,Private room,130,5,2,2019-07-05,2.0,1,74 +21010586,Cozy Junior One Bedroom apt in Greenwich Village,151284868,Nicola,Manhattan,West Village,40.73076,-74.00161999999999,Entire home/apt,245,5,13,2019-03-31,0.61,1,50 +12656785,Loft @ Williamsburg Bedford,19912320,Charles,Brooklyn,Williamsburg,40.715720000000005,-73.95376,Private room,99,5,6,2017-09-09,0.17,2,0 +22675757,"Central Brooklyn +Beautiful Rooms +Room Vista",167098774,Keisha,Brooklyn,Canarsie,40.63761,-73.89339,Private room,55,2,32,2019-05-27,1.84,3,76 +34150332,Adorable room 2,34689714,Maria,Manhattan,Hell's Kitchen,40.7667,-73.98829,Private room,99,1,0,,,5,365 +34062194,East Village Dream Apartment - Best Rooftop View,75267282,Yoz,Manhattan,East Village,40.72067,-73.97999,Entire home/apt,210,7,1,2019-05-09,0.49,1,284 +796370,Monthly discount - 2 bedroom - upper east side,61491,D,Manhattan,Upper East Side,40.77043,-73.9515,Entire home/apt,150,25,1,2017-09-30,0.05,2,207 +34868859,Spectacular 2 bed 2 bath with W/D in the APT #6117,35098529,David,Manhattan,Kips Bay,40.74409,-73.97605,Entire home/apt,310,30,0,,,5,214 +35597348,MODERN APARTMENT MINUTES AWAY FROM MANHATTAN,196255493,Elizabeth,Bronx,Kingsbridge,40.87277,-73.90268,Entire home/apt,95,2,0,,,1,47 +35973248,★Large Full Floor Apartment in Heart of Times Sqr★,269854098,Bledar,Manhattan,Hell's Kitchen,40.76246,-73.99193000000001,Entire home/apt,250,2,0,,,1,32 +10367884,Cozy studio in Park Slope,724870,Lindy,Brooklyn,Park Slope,40.6732,-73.97282,Entire home/apt,130,2,16,2017-07-28,0.4,1,0 +11421994,Spacious Flat in HeArt of Bushwick!,51276298,Kayan,Queens,Ridgewood,40.706790000000005,-73.91691999999999,Entire home/apt,118,2,153,2019-06-16,3.77,1,337 +32251219,Urban Casita,5167068,Heather & Alex,Brooklyn,Bedford-Stuyvesant,40.6923,-73.9328,Entire home/apt,215,3,12,2019-06-17,2.88,1,6 +36236013,READY BED GO the goal is to make u feel at home,256197494,Emanuel,Brooklyn,Cypress Hills,40.68042,-73.88978,Private room,75,1,1,2019-07-05,1.0,1,82 +26837823,Private Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.69319,-73.90692,Private room,40,1,35,2019-05-29,2.92,3,0 +34206373,Sonder | The Nash | Classic 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7484,-73.97544,Entire home/apt,200,29,0,,,327,342 +3003228,Prime Tribeca! Breathtaking View,1475015,Mike,Manhattan,Civic Center,40.71662,-74.00352,Entire home/apt,130,30,2,2015-02-21,0.03,52,365 +33315073,Brand new 2 bedroom apartment near yankee stadium,24979023,Nanyuma,Bronx,Concourse Village,40.83251,-73.91216999999999,Private room,85,1,0,,,1,365 +19316517,Large 1 BR / Creative Space - Marble Hill,135294307,Chad,Manhattan,Marble Hill,40.8753,-73.9116,Entire home/apt,90,5,0,,,1,0 +25719044,COZY Room for Female Guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66242,-73.94417,Private room,48,1,131,2019-05-31,9.97,2,0 +3223080,Modern Renovated Luxury 1BR - Soho,16319729,Tim,Manhattan,SoHo,40.72652,-74.00265999999999,Entire home/apt,149,1,0,,,1,0 +20194913,Sweet room with private bathroom.,76359133,FuKang,Queens,Fresh Meadows,40.7385,-73.79241,Private room,60,1,100,2019-06-22,4.27,3,311 +374548,Sunny Retreat with Roof Garden,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68534,-73.93433,Entire home/apt,85,5,268,2019-07-02,3.04,2,202 +34935124,Meyers inn,263245967,Chris,Manhattan,Hell's Kitchen,40.76106,-73.99733,Entire home/apt,250,1,5,2019-07-05,3.49,1,311 +23668732,Family Studio beside Empire State #3,177174475,Alberto,Manhattan,Midtown,40.74677,-73.98698,Entire home/apt,120,1,6,2019-03-30,0.4,17,246 +30885287,2Beds Studio apartment in Prime Location,211549023,Studioplus,Manhattan,Midtown,40.74657,-73.98685,Entire home/apt,240,2,12,2019-06-03,2.0,13,304 +24798903,Greenhouse APT,21764391,Jery & Dave,Brooklyn,Williamsburg,40.71166,-73.95739,Entire home/apt,200,3,7,2019-01-15,0.62,1,67 +22452728,"Astoria close to JFK, Laguardia Airport, Manhattan",117195769,Simone,Queens,Astoria,40.76401,-73.90921,Private room,70,1,92,2019-06-30,4.96,3,357 +271954,Beautiful brownstone apartment,1423798,Aj,Manhattan,Greenwich Village,40.73388,-73.99452,Entire home/apt,150,2,203,2019-06-20,2.22,1,300 +6403795,Twin Loft Nook in Brooklyn,21090508,Jarad,Brooklyn,Bushwick,40.69914,-73.93590999999999,Shared room,44,5,27,2018-08-14,0.54,2,0 +14802377,Beautiful Home Away From Home,11272233,Kat,Brooklyn,Crown Heights,40.67532,-73.93986,Private room,59,1,7,2019-06-21,0.2,2,189 +6781648,2BR Creative Oasis,3403868,Cusi,Manhattan,West Village,40.73643,-74.00350999999999,Entire home/apt,140,4,0,,,1,0 +14987516,Musa Property,94467583,Clif,Queens,Rosedale,40.65378,-73.72582,Entire home/apt,85,2,31,2019-01-07,0.92,1,142 +19363671,The Sterling Flat,46454894,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.9543,Entire home/apt,105,1,2,2017-07-03,0.08,1,0 +22308824,Clean and Comfy Home,56704653,Jesus,Manhattan,East Harlem,40.7976,-73.93388,Entire home/apt,170,2,0,,,1,0 +23744762,Large Yankee stadium Bronx bedroom in spacious apt,8159536,Genae,Bronx,Concourse Village,40.83086,-73.92025,Private room,57,1,6,2019-03-11,0.42,3,220 +235951,Stylish Studio with exclusive Terrace,1236070,Dan,Manhattan,Midtown,40.75348,-73.97065,Entire home/apt,190,30,136,2019-06-19,1.45,1,120 +12853281,Brand New Luxurious Studio Midtown,61391963,Corporate Housing,Manhattan,Midtown,40.75572,-73.96936,Entire home/apt,125,30,7,2019-05-12,0.23,91,149 +15422083,Comfy Room n Activist & Artist Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.95878,Private room,45,7,14,2018-09-30,0.42,3,364 +13063023,Cozy room in Astoria,1924750,Jasmina,Queens,Astoria,40.76437,-73.91304000000001,Private room,36,2,37,2019-06-24,1.03,2,228 +8801963,Sunny Room With Charming Slate Fireplace,23582893,Laramie,Brooklyn,Bushwick,40.69036,-73.91608000000001,Private room,54,9,23,2019-05-21,0.53,8,135 +18103710,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.7631,-73.96281,Entire home/apt,179,30,0,,,87,365 +9819018,A cozy room in Lower East Manhattan,49861582,Emily,Manhattan,Lower East Side,40.71209,-73.98794000000001,Private room,62,28,2,2016-01-14,0.05,1,0 +27063173,East village private bedroom - walk anywhere!,7615002,Paloma,Manhattan,East Village,40.72527,-73.98338000000001,Private room,100,1,33,2019-05-26,2.8,2,1 +6649555,Amazing 1BR - heart of West Village,20700509,Gunnar,Manhattan,West Village,40.73592,-74.00492,Entire home/apt,169,4,11,2016-03-19,0.22,1,0 +30958558,Sunny & Clean- Soho/west village loft,231327254,Candy,Manhattan,Greenwich Village,40.72699,-73.99933,Entire home/apt,250,3,22,2019-06-24,3.53,1,244 +17776554,ARTIST LOFT IN CONVERTED FACTORY - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70276,-73.9271,Private room,70,1,59,2018-04-15,2.11,3,362 +24065408,Private Room in Spacious Apartment with Patio!,1583742,Travis,Brooklyn,Boerum Hill,40.68503,-73.98232,Private room,50,2,31,2019-07-07,2.04,1,0 +30178785,Beautiful cozy studio,186701037,Gabriela,Brooklyn,Dyker Heights,40.62877,-74.00918,Entire home/apt,75,1,0,,,2,0 +19841837,Elegant Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.75832,-73.99179000000001,Private room,129,1,108,2019-06-29,4.49,3,116 +814327,room in uper east side manhattan,4279005,Jefry,Manhattan,Upper East Side,40.77171,-73.95042,Private room,81,10,64,2019-05-04,0.93,1,311 +11339154,Renovated Large Studio Apartment,10990986,Daniel,Manhattan,Upper West Side,40.79153,-73.97174,Entire home/apt,175,3,3,2016-04-07,0.08,1,0 +4482158,Lovely and Spacious Park Slope Home,23256032,Katharine,Brooklyn,Park Slope,40.66767,-73.9828,Entire home/apt,160,14,1,2015-01-04,0.02,1,36 +24357562,Cozy Apartment- Lower East Side near F/M/J/Z :),19940836,Justin,Manhattan,Lower East Side,40.71848,-73.98439,Private room,89,1,21,2019-01-29,1.41,1,2 +26884369,Dazzling Room with 2 Beds+ Laundry in Williamsburg,141204556,Aaron & Ivy,Brooklyn,Williamsburg,40.71013,-73.9637,Private room,109,30,37,2019-06-21,3.14,2,361 +19853343,1 bedroom in 3 bedroom apartment,18990231,Kwam,Queens,Ridgewood,40.70373,-73.90873,Private room,45,1,3,2017-10-04,0.13,1,0 +29096295,Clinton Hill loft for your creative side.,5953382,Matthew,Brooklyn,Bedford-Stuyvesant,40.69196,-73.95969000000001,Entire home/apt,100,3,5,2019-01-09,0.57,1,0 +1297171,Artists' Haven in Williamsburg,4855335,Laura,Brooklyn,Williamsburg,40.708940000000005,-73.94135,Private room,125,2,4,2018-08-23,0.08,1,364 +13417723,"Big 4 Bedroom Apartment near Subway, All Renovated",2988712,Sasha,Bronx,Claremont Village,40.8357,-73.91023,Entire home/apt,110,90,11,2018-08-23,0.3,7,77 +7023437,Loft rental off of Graham!,1298759,Frances,Brooklyn,Williamsburg,40.71303,-73.94063,Entire home/apt,220,7,2,2016-08-23,0.04,1,0 +8257903,"Sanctuary Oasis, Midtown Manhattan",43549138,Romona,Manhattan,Kips Bay,40.74123,-73.97731,Entire home/apt,135,7,2,2015-10-30,0.04,1,0 +34858865,"Private home next to beach,transport,parking",32162495,Mostafa,Staten Island,Eltingville,40.53939,-74.15389,Entire home/apt,299,10,0,,,3,30 +8613175,Time SQ Dream Suite in Midtown w/ Projector,27018630,Richard,Manhattan,Hell's Kitchen,40.76069,-73.99068,Entire home/apt,239,2,163,2019-07-05,4.18,1,118 +21700909,Charming Apt in the heart of Manhattan,209073,Cristina,Manhattan,Hell's Kitchen,40.76226,-73.99519000000001,Entire home/apt,175,7,1,2018-09-10,0.1,1,147 +29904741,Interfaith Retreats (St. Francis),16677326,Alex And Zeena,Manhattan,Chelsea,40.74942,-73.99593,Private room,85,1,23,2019-06-05,3.18,12,362 +33471805,Comfortable Room with Private Bath - 15 min to JFK,252191305,Marion,Queens,Cambria Heights,40.6909,-73.73193,Private room,50,1,34,2019-06-30,11.21,1,61 +727547,Duplex w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73844,-73.95456,Entire home/apt,199,3,116,2019-06-28,1.56,28,36 +34156292,Charming and Elegant Apartment by Central Park,257888723,Francesco,Manhattan,Upper East Side,40.78563,-73.95396,Entire home/apt,250,4,2,2019-07-01,2.0,1,297 +3624387,"Beautiful Apt x Rent in Astoria, NY",4666670,Jeanny,Queens,Long Island City,40.76481,-73.93163,Entire home/apt,120,6,25,2019-05-21,0.42,4,346 +31370305,ROOM 1,226036723,Ravita,Brooklyn,Cypress Hills,40.68522,-73.873,Private room,125,3,2,2019-03-17,0.42,3,180 +36389944,Family Friendly Apt in Midtown East,224309949,Efrat,Manhattan,Midtown,40.75988,-73.96591,Entire home/apt,325,5,0,,,1,298 +7919372,Cozy & Clean #6,23533897,Fatou,Brooklyn,Crown Heights,40.67568,-73.95124,Private room,75,1,38,2019-06-16,1.12,7,322 +29922910,Private Bedroom in stylish Artists Loft,39243102,Daniela,Brooklyn,Columbia St,40.68784,-74.00242,Private room,200,1,0,,,1,89 +34061159,Luxury pad by the beach,255219640,Anna,Brooklyn,Brighton Beach,40.57865,-73.96983,Private room,75,2,1,2019-07-05,1.0,1,100 +17955761,HOME AWAY FROM HOME 4 Guest private,4204783,Kevin,Staten Island,West Brighton,40.63168,-74.12316,Private room,89,2,12,2019-06-26,0.43,3,279 +27356337,Bright & Bohemian UES 1 BR - Whole Apt!,61100797,Haley,Manhattan,Upper East Side,40.76841,-73.95402,Entire home/apt,180,2,23,2019-06-16,2.04,1,2 +31652565,Green moon#2,208136645,Andre,Brooklyn,Flatlands,40.62655,-73.9407,Private room,49,2,1,2019-04-03,0.31,4,96 +4484620,Large Sunny Private Room in 2BR steps from subway,2589436,Sarah,Brooklyn,Williamsburg,40.71594,-73.95649,Private room,70,2,15,2018-03-23,0.29,2,0 +22852435,SUITE BKLYN - Private 1 Bedroom Apartment,169012324,Salisha,Brooklyn,East Flatbush,40.63767,-73.94011,Entire home/apt,80,90,23,2018-09-15,1.38,1,156 +27110361,Artist's home in Williamsburg,8731758,Jeanne,Brooklyn,Williamsburg,40.71326,-73.9644,Entire home/apt,175,5,5,2019-05-23,0.46,1,198 +19968388,Beautiful Bedroom in Washington Heights,38592785,Caitlyn,Manhattan,Washington Heights,40.84218,-73.93675999999999,Private room,55,2,15,2019-07-06,0.76,1,0 +14389886,Beautiful 1 bedroom in the heart of Manhattan!,88399191,Biljana,Manhattan,Flatiron District,40.74041,-73.98933000000001,Entire home/apt,180,3,16,2018-05-09,0.47,1,0 +7711899,FEMALE ONLY 'Heaven'PrivateBed/SharedSpace w/Wifi,40509550,Denise,Manhattan,Washington Heights,40.84805,-73.94209000000001,Shared room,42,1,14,2018-11-01,0.3,1,363 +4488882,Lovely Garden Apartment in Bklyn,23287601,Petal,Brooklyn,Flatlands,40.62598,-73.92509,Entire home/apt,125,3,2,2016-09-21,0.05,1,161 +1763333,"Cozy 1 BR Apt - Sunnyside, Queens",9268805,David,Queens,Sunnyside,40.74244,-73.91676,Entire home/apt,95,1,41,2016-06-13,0.59,2,177 +17923165,☆THE village experience!!,47056437,Ann,Manhattan,West Village,40.72999,-74.0034,Private room,99,1,0,,,1,0 +13698623,Melrose Place...,33862021,Victor,Bronx,Melrose,40.82296,-73.91429000000001,Private room,42,2,2,2016-10-24,0.06,1,0 +18908490,Spacious Studio steps from Central Park,7093861,Jeffrey,Manhattan,Upper West Side,40.77356,-73.98007,Entire home/apt,200,3,22,2019-07-07,0.9,1,28 +12017066,Vibrant Crown Heights,51159504,Mariana,Brooklyn,Crown Heights,40.66676,-73.92957,Private room,49,3,3,2018-10-07,0.08,1,365 +6967305,Prospect Heights garden apartment,36531150,Stephanie,Brooklyn,Prospect Heights,40.67886,-73.96802,Entire home/apt,164,1,2,2015-08-16,0.04,1,0 +16620235,"Full floor, Newly renovated, Brooklyn brownstone",109734523,Todd & Ashta,Brooklyn,Bedford-Stuyvesant,40.685190000000006,-73.94176,Entire home/apt,125,2,111,2019-06-24,3.67,1,255 +3731965,Williamsburg Brooklyn quiet abode,7598755,Elliot,Brooklyn,Williamsburg,40.71985,-73.94422,Entire home/apt,120,2,1,2016-03-13,0.02,1,0 +32310645,Brooklyn Two Bedroom APT near the TRAIN,242491187,Vlad,Brooklyn,Kensington,40.64265,-73.98355,Entire home/apt,160,3,2,2019-05-30,0.79,1,177 +14869271,"1 bdrm in Park Slope , Bklyn.",83611652,Phyllis,Brooklyn,Park Slope,40.67915,-73.98156999999999,Entire home/apt,200,1,4,2018-08-20,0.15,1,20 +22767598,Newly Renovated Studio Apartment,50605766,Paul,Manhattan,Tribeca,40.7118,-74.0083,Entire home/apt,150,30,1,2018-08-11,0.09,1,328 +30043083,Home away from home lodging #1 (1 Bed- 1 guest),225790094,Vena,Brooklyn,East Flatbush,40.65129,-73.92696,Private room,35,1,10,2019-07-02,1.32,3,83 +34082053,Large basement-level studio,141146473,Rosa,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95407,Entire home/apt,90,2,4,2019-06-16,2.11,1,27 +20819116,My Little Cottage,149292557,Kimberly,Queens,Corona,40.75015,-73.85961,Entire home/apt,69,2,166,2019-07-07,7.5,2,140 +3206379,Luxury apartment in Manhattan.,16245979,Karima,Manhattan,Upper East Side,40.770590000000006,-73.94991,Entire home/apt,280,2,17,2018-03-23,0.28,1,0 +15783766,Cozy easy village apartment in central location,1546439,Isabel,Manhattan,East Village,40.72868,-73.99036,Private room,50,4,1,2016-11-28,0.03,1,0 +36368048,"Luxury appartment, special edition for musicians.",253681134,Azamat,Manhattan,Washington Heights,40.83423,-73.94723,Private room,74,3,0,,,1,3 +13136536,SuiteBeach house near JFK & A Train to Manhattan,73190364,Reed,Queens,Edgemere,40.59534,-73.77209,Private room,195,4,0,,,1,0 +17759478,(4) Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.6899,-73.95498,Private room,89,1,76,2019-06-30,2.77,4,358 +6991910,"Discount! Mins to SOHO -Cozy, Good Sized Bedroom",36656552,Kandee,Manhattan,Lower East Side,40.71947,-73.99327,Private room,150,1,2,2016-09-23,0.04,3,0 +628078,NYC Whole Apt. Dec 26th- Feb 3rd,3119145,Dennis,Manhattan,Harlem,40.80338,-73.95594,Entire home/apt,105,14,6,2018-08-16,0.07,1,0 +30634438,Charming entire house,225454310,Tosin,Queens,Far Rockaway,40.5998,-73.75586,Entire home/apt,145,1,3,2019-06-23,0.45,4,311 +33798189,Charming RM w/ own bath. Easy Midtown & LGA access,137358866,Kazuya,Queens,Woodside,40.74496,-73.90779,Private room,59,30,0,,,103,252 +27966667,Comfortable Carroll Gardens 2 BR Amazing Location,211022699,David,Brooklyn,Carroll Gardens,40.6798,-73.99271999999999,Entire home/apt,200,2,7,2019-07-06,0.9,1,45 +23488488,Bright cozy home close to Penn Station NYC❤️,166262295,Barbara,Queens,Long Island City,40.75325,-73.93538000000001,Entire home/apt,135,30,0,,,2,159 +33898321,Room in heart of NoHo/East Village,8518291,Carolina,Manhattan,East Village,40.7284,-73.99053,Private room,61,30,3,2019-06-01,1.76,1,84 +297611,Inexpensive apartment in exchange for cat-care,997124,Alison,Brooklyn,Fort Greene,40.693090000000005,-73.97074,Private room,35,3,1,2018-05-13,0.07,1,0 +3412633,Sunny top floor loft with skylight in downtown NY,1964249,Stina,Manhattan,Lower East Side,40.72012,-73.99091999999999,Entire home/apt,146,11,50,2019-06-04,0.82,1,0 +2088389,Entire Sun Drenched Apartment in Clinton Hill,234918,Mariya,Brooklyn,Clinton Hill,40.68476,-73.96672,Entire home/apt,100,30,17,2017-08-30,0.25,1,0 +36176125,2 Bedroom 10 Minutes from JFK on the 1st floor,52997121,Iwona,Queens,Jamaica,40.67606,-73.78288,Entire home/apt,250,1,0,,,4,90 +14655004,Inwood heights,91020843,Orquid,Manhattan,Inwood,40.86316,-73.92627,Shared room,300,1,0,,,2,363 +28477383,Spacious RM in Quiet Area near LGA & MNHTN express,137358866,Kazuya,Queens,Woodside,40.74301,-73.89458,Private room,50,30,2,2019-05-11,0.5,103,269 +13026702,"Modern, Spacious 1-bedroom Apt in Lower East Side",9455699,Shylie,Manhattan,Lower East Side,40.72033,-73.98767,Entire home/apt,195,1,9,2017-09-26,0.24,1,0 +13623700,Spacious and Quiet Gramercy 1 Bedroom,21656569,Alana,Manhattan,Gramercy,40.73577,-73.98057,Entire home/apt,275,5,0,,,1,0 +6853661,"Clean, Spacious LES 1 Bdrm",35914632,Pete,Manhattan,Lower East Side,40.71905,-73.98487,Entire home/apt,250,2,2,2015-09-28,0.04,1,0 +14784793,Ditmas Park Beautiful Spacious Apartment,11427836,Tiffany,Brooklyn,Flatbush,40.63825,-73.95654,Entire home/apt,160,2,18,2019-04-22,0.52,1,0 +34200086,Cozy Studio with Patio Close to the Subway,258202599,Elijah,Manhattan,East Harlem,40.78967,-73.94199,Entire home/apt,145,2,7,2019-06-24,3.62,1,0 +1896296,Modern Industrial 1br Loft w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.94201,Entire home/apt,149,30,7,2019-05-31,0.11,52,340 +29885929,Private room 3 - mins from Central Park / CU,17822256,Anna & Frank,Manhattan,Harlem,40.80114,-73.95696,Private room,90,2,32,2019-06-20,4.02,4,147 +19375739,PRIVATE BACK PATIO - light-filled luxury apartment,119108169,Molly,Brooklyn,Bedford-Stuyvesant,40.692240000000005,-73.95819,Private room,60,4,1,2017-07-01,0.04,1,0 +3283409,Beautiful Brooklyn Brownstone,16593547,Mary & Josh,Brooklyn,Bedford-Stuyvesant,40.68562,-73.92375,Entire home/apt,139,2,124,2019-06-25,2.09,1,231 +34690202,Simple,231858639,Sterling,Brooklyn,Prospect-Lefferts Gardens,40.65973,-73.96101999999999,Entire home/apt,120,5,0,,,1,325 +22454537,Pelham Parkways,164549734,Niara,Bronx,Pelham Gardens,40.85702,-73.83697,Private room,300,1,0,,,1,0 +16141887,Chateau Retreat in Artsy Bushwick Brooklyn,33651056,Danielle,Brooklyn,Bushwick,40.68778,-73.91381,Private room,120,3,1,2017-01-04,0.03,1,0 +3136535,"Peaceful, Upper East Side Studio",15414317,Madeleine,Manhattan,Upper East Side,40.76299,-73.96166,Entire home/apt,150,5,10,2017-09-23,0.16,1,0 +29629465,Williamsburg own,37040186,William,Brooklyn,Williamsburg,40.70308,-73.94893,Entire home/apt,250,1,1,2018-12-30,0.16,1,178 +17811033,LARGE LUXURY DESIGNER WALL ST APARTMENT,96735804,E,Manhattan,Financial District,40.70552,-74.00941,Entire home/apt,110,7,32,2019-06-13,1.17,1,272 +24992835,"**FULL FLOOR - 3 BEDRMS, Times Sq/Restaurant Row**",157402346,Victor,Manhattan,Hell's Kitchen,40.76201,-73.99099,Entire home/apt,350,2,60,2019-06-17,4.28,1,224 +36036692,"Views, modern layout, elevator, sweet LES.",1316936,Carlo,Manhattan,Chinatown,40.71688,-73.9904,Private room,125,31,0,,,1,179 +11714752,Safe+Artsy+Clean Haven Near Manhattan/LGA!,17156658,Native,Queens,Astoria,40.76207,-73.90852,Private room,45,5,50,2019-06-28,1.27,1,145 +9525335,"Single Bedroom in West Harlem, NYC",49347979,Matthew,Manhattan,Harlem,40.81376,-73.95321,Private room,55,1,2,2015-12-25,0.05,1,0 +33311237,Large Parlor Apt Williamsburg Brooklyn NY House,193954973,Sean,Brooklyn,Williamsburg,40.71547,-73.95147,Entire home/apt,165,3,5,2019-07-03,1.97,3,272 +36372104,Exposed Brick,32303395,Roderick,Brooklyn,Bedford-Stuyvesant,40.6858,-73.92899,Private room,120,2,0,,,1,6 +23922930,温馨小屋,179825270,Vicky,Queens,Flushing,40.74309,-73.82472,Private room,49,1,53,2019-06-23,3.47,1,341 +21943938,Brooklyn Studio Tower!,18061262,Gilana,Brooklyn,Clinton Hill,40.68173,-73.96703000000001,Entire home/apt,115,15,7,2018-10-01,0.38,1,5 +23160162,Large bright loft in Williamsburg,71840935,Cara,Brooklyn,Williamsburg,40.70569,-73.95300999999999,Private room,55,2,5,2018-09-07,0.3,1,0 +5487204,Spacious Room in Brooklyn,6834165,Amanda,Brooklyn,Crown Heights,40.67044,-73.94292,Shared room,70,2,2,2015-08-25,0.04,1,0 +28695405,Luxury apartment. ONE STOP from midtown MANHATTAN!,215535399,Smith,Queens,Long Island City,40.75188,-73.94548,Private room,95,3,1,2018-10-08,0.11,1,24 +22338613,"Quiet, comfortable true one bedroom near Columbia",52593822,Hannah,Manhattan,Harlem,40.83034,-73.94787,Entire home/apt,115,1,0,,,1,0 +35487783,Lovely Private 1 bed + 1 bath in my shared duplex,15163034,Gonzalo,Manhattan,Upper East Side,40.77005,-73.95926,Entire home/apt,119,3,3,2019-07-02,3.0,1,174 +22907187,Charming apartment nestled in NYC's West Village,20268978,Daniel,Manhattan,West Village,40.73254,-74.00285,Entire home/apt,220,1,0,,,1,0 +29905956,Full Comfortable Queens Apartment,4283610,Rachel,Queens,Glendale,40.702020000000005,-73.89044,Entire home/apt,114,3,9,2019-06-04,1.53,1,3 +4866875,2BD loft with 180 Manhattan view,87473,Sibin,Brooklyn,Greenpoint,40.72996,-73.95302,Entire home/apt,150,6,1,2019-01-03,0.16,1,0 +33708769,Sonder | The Biltmore | Stylish 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.76072,-73.98581999999999,Entire home/apt,244,29,1,2019-06-06,0.88,327,363 +19856802,Beautiful sunny room in Central Brooklyn/Bed-Stuy,25789741,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94909,Private room,40,5,0,,,1,0 +5432178,Great Space in Williamsburg's Heart,28000421,Luca,Brooklyn,Williamsburg,40.71551,-73.9436,Private room,100,1,0,,,2,0 +15970947,Private room for 2 Guests • Female Only • 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68398,-73.87039,Private room,39,4,2,2017-06-19,0.07,6,0 +34040940,"Bright, Light & Airy 1 Bedroom in Kips Bay",7218138,Roger,Manhattan,Kips Bay,40.741,-73.98056,Entire home/apt,149,5,1,2019-05-19,0.59,1,0 +20216511,Beautiful NYC Apartment in Popular Brooklyn spot!!,132735454,John,Brooklyn,Bushwick,40.69549,-73.91838,Private room,30,1,4,2017-08-19,0.17,1,0 +12679172,Massive 2 Bed near Columbia Univ.,43733051,Hannah,Manhattan,Harlem,40.81171,-73.95491,Entire home/apt,100,2,27,2018-01-20,0.76,1,0 +1922863,Bi-level Loft with a Private Garden,915973,Donald P.,Brooklyn,Williamsburg,40.71715,-73.95527,Entire home/apt,248,3,57,2019-06-06,0.9,1,344 +24378358,NYC Time's Square Luxury Pent House Apartment,183989835,Marcus,Manhattan,Midtown,40.76419,-73.97455,Entire home/apt,299,3,22,2019-05-28,1.62,1,278 +7967503,Perfect midtown west studio,2781031,Paolo,Manhattan,Hell's Kitchen,40.76885,-73.98631,Entire home/apt,165,3,68,2019-06-19,1.46,1,195 +29120854,"Large apt in trendy, hipster Ridgewood/Bushwick BK",2604247,Jason,Brooklyn,Bushwick,40.70426,-73.91308000000001,Entire home/apt,150,5,1,2018-11-12,0.13,1,0 +33268045,Brooklyn 1 Bedroom Apartment,250514925,Andrew,Brooklyn,Red Hook,40.67635,-74.01133,Entire home/apt,100,1,2,2019-06-09,1.67,1,13 +34819514,Comfortable double room with balcony(舒适双人房带阳台),257683179,H Ai,Queens,Flushing,40.76153,-73.80726,Private room,55,1,0,,,6,62 +19912535,Charming 1br on historic East Village block,19863077,Michael,Manhattan,East Village,40.72574,-73.98498000000001,Entire home/apt,192,1,0,,,1,0 +7093920,Roosevelt Island Charm,37181980,Svetlana,Manhattan,Roosevelt Island,40.76193,-73.94933,Private room,83,2,178,2019-07-05,3.72,1,255 +26914676,Bright Brooklyn (Boerum Hill) Condo w Roof Deck,62792657,Adam,Brooklyn,Boerum Hill,40.68647,-73.98196999999999,Entire home/apt,350,2,6,2018-11-25,0.53,1,0 +19069649,Big Bedroom in the heart of Manhattan 6r,133130315,Artem,Manhattan,Hell's Kitchen,40.76398,-73.986,Private room,99,3,12,2019-04-28,0.57,6,179 +31319316,Newly decorated room close to Elmhurst Ave (M.R),137358866,Kazuya,Queens,Elmhurst,40.74325,-73.87832,Private room,35,30,1,2019-05-18,0.58,103,252 +23251417,Cozy Astoria bedroom 20 min from midtown,173047765,Alegria,Queens,Ditmars Steinway,40.77202,-73.91292,Private room,60,2,26,2019-07-01,2.49,1,112 +32114499,2 Story Private Duplex + Backyard | BBQ |Sleeps 10,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68429,-73.93623000000001,Entire home/apt,250,5,7,2019-06-03,1.84,3,215 +28587227,Private Studio near LaGuardia Airport and Mahattan,80933709,Jacqueline,Queens,East Elmhurst,40.76533,-73.87873,Private room,54,3,27,2019-06-10,2.83,2,35 +7725075,Come Be A Part of NYC,40591396,Eric,Queens,Long Island City,40.74229,-73.95427,Private room,70,1,5,2015-10-11,0.1,1,0 +16011441,15 minute train ride to Times Square,101602599,M,Queens,Woodside,40.74327,-73.90626999999999,Private room,75,3,9,2018-08-26,0.28,2,7 +27156174,Beautiful & Big Room with Balcony in Astoria,64453547,Onur,Queens,Ditmars Steinway,40.77377,-73.9048,Private room,50,15,0,,,3,0 +1588221,Large 2 BR Loft Downtown NY,1400369,Ernesto,Manhattan,Chinatown,40.71702,-73.99566,Entire home/apt,300,5,31,2019-06-23,0.45,1,278 +21250629,Spacious 1 bed railroad apartment!!,153635280,Lucy,Manhattan,Upper East Side,40.77398,-73.9498,Entire home/apt,200,4,1,2017-11-11,0.05,1,0 +22445969,crème de la crème - Luxurious 1 BR Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74934,-73.9781,Entire home/apt,150,30,2,2019-06-01,0.87,91,251 +24846816,"Cozy Near LGA, Center of Queens RM2",187822288,Zahir,Queens,East Elmhurst,40.76921,-73.87132,Private room,49,1,128,2019-06-22,8.95,5,278 +19622976,Scenic Brooklyn townhouse.,39277795,Javier,Brooklyn,Sunset Park,40.645,-74.00378,Private room,90,1,50,2019-06-26,2.07,1,43 +7010681,Gorgeous Garden Apt Steps To Park,36754170,Steve,Brooklyn,Prospect-Lefferts Gardens,40.65703,-73.95964000000001,Entire home/apt,110,1,2,2015-08-10,0.04,1,0 +21309659,Sunny Queen Size 1 Bedroom in Bedstuy.,154201505,Marcia,Brooklyn,Bedford-Stuyvesant,40.68368,-73.93796,Entire home/apt,92,30,21,2018-06-27,1.01,2,35 +20363207,Sophisticated & Modern NYC Urban Jewel Box,46677826,Nakia,Manhattan,Hell's Kitchen,40.76044,-73.99882,Entire home/apt,273,3,13,2019-07-05,0.6,1,116 +23111561,CHIC STUDIO 4 the MINIMALISTIC SOUL,30486909,Alanna,Manhattan,Chinatown,40.71608,-73.99081,Entire home/apt,160,4,32,2019-01-02,1.96,1,0 +34683256,Sunny bedroom in Chinatown !,33758870,Janko,Manhattan,Two Bridges,40.71098,-73.99426,Private room,80,1,9,2019-07-08,5.51,1,42 +35486841,Amazing private room!!! near subway & Broadway2,248161322,Sergii,Brooklyn,Bushwick,40.70024,-73.9392,Private room,64,30,0,,,14,343 +1664209,2000 SQ FT Spacious Artist Loft in SOHO,1253125,Tanya,Manhattan,SoHo,40.72047,-74.00049,Entire home/apt,275,2,6,2019-04-28,0.51,1,5 +30120067,Home Sweet Riverdale,163737392,K,Bronx,Fieldston,40.89466,-73.89735,Shared room,50,1,8,2019-07-06,1.26,2,241 +15843671,FLUSHING APT!! BEST DEAL IN NYC!!!,102624893,Kevin,Queens,Flushing,40.75957,-73.82206,Entire home/apt,85,1,68,2017-12-24,2.13,1,0 +35774669,Serene modern space in the heart of greenpoint!,25490213,Tony,Brooklyn,Greenpoint,40.72549,-73.94912,Private room,95,2,1,2019-06-24,1.0,1,67 +36429652,Cute double room for the perfect Yankee fan,58222366,Dominique,Bronx,Claremont Village,40.83502,-73.91058000000001,Private room,125,2,0,,,1,364 +2013807,Magic Manhattan with Rooftop,1364042,Jake,Manhattan,Lower East Side,40.71914,-73.99174000000001,Entire home/apt,189,5,220,2019-06-23,3.25,2,271 +21254856,Lily Pad,143168243,Nicole,Queens,Ditmars Steinway,40.77823,-73.91247,Private room,80,1,0,,,1,0 +11826892,Private Room in Gorgeous Loft,50556869,Kristen,Brooklyn,Bedford-Stuyvesant,40.68738,-73.91906,Private room,70,2,2,2017-10-09,0.05,1,0 +32676186,Large One Bedroom Double With Kitchen in Manhattan,244559229,Stewart Hotel,Manhattan,Chelsea,40.74963,-73.99141,Private room,100,1,3,2019-06-11,1.8,9,269 +2104588,Time Square doorman building 1 bdrm,6757150,Olena,Manhattan,Theater District,40.76263,-73.98271,Entire home/apt,240,4,0,,,1,0 +20826953,Sublet for Oct (Phone number hidden by Airbnb) utilities included,149394434,Jeanette,Queens,Ridgewood,40.7025,-73.90985,Private room,23,1,0,,,1,0 +13207548,"Spacious, sunny bedroom in Hudson Heights",24843404,Laura,Manhattan,Washington Heights,40.84996,-73.93937,Private room,50,5,1,2016-05-28,0.03,1,0 +24122599,Cozy room in a Victorian house in Central Brooklyn,14905006,Myriam,Brooklyn,Kensington,40.63966,-73.9716,Private room,52,1,11,2019-05-27,0.81,1,0 +21312283,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.7045,-73.81447,Private room,135,1,0,,,18,355 +22153412,Modern Chic Private Room in Gramercy,14613015,Ava,Manhattan,Gramercy,40.73442,-73.98383000000001,Private room,69,4,4,2018-12-17,0.21,1,0 +11971174,Huge room in central Bushwick flat,4411040,Maya,Brooklyn,Bushwick,40.69669,-73.92785,Private room,45,1,3,2016-06-25,0.08,1,0 +21799470,"Beautiful, quiet room with ensuite bathroom",10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93565,Private room,60,1,1,2018-01-01,0.05,2,0 +24313537,Cozy & quiet 2 bedroom apt in a great location!,9973967,Gahee,Manhattan,East Village,40.72626,-73.98784,Entire home/apt,310,2,78,2019-06-23,5.49,1,169 +31510414,Sun-lit room in spacious Clinton Hill loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69046,-73.9586,Private room,60,30,1,2019-05-05,0.45,4,153 +1138052,Private room in Brooklyn,6131397,Dan,Brooklyn,Sunset Park,40.66582,-73.99349000000001,Private room,65,1,4,2016-08-17,0.11,1,0 +10409669,Cool Large Room In 3 Min From Manhattan,35421139,Shaun,Queens,Long Island City,40.7457,-73.94497,Private room,65,4,38,2019-06-30,0.93,1,12 +22971252,Art Deco Studio,52225868,Deroll,Brooklyn,Crown Heights,40.66987,-73.93433,Private room,32,3,0,,,1,0 +32160052,Full Floor Of A Luxe Brooklyn Townhouse W. Garden!,124506693,Beautiful Brooklyn,Brooklyn,Crown Heights,40.6751,-73.953,Private room,71,2,9,2019-07-01,3.38,1,223 +23372015,"Enjoy this vast, chic apt, 15-to-Midtown w/Kingbed",17314413,Jason,Manhattan,Washington Heights,40.83921,-73.93535,Entire home/apt,120,4,10,2019-04-21,0.6,1,4 +27010922,Brooklyn Apartment,2954574,Ricardo,Brooklyn,Bedford-Stuyvesant,40.69183,-73.94185,Private room,65,7,0,,,1,105 +17899990,Spacious quiet garden 1 Br + Sunny Back Yard,92963740,Remy,Brooklyn,Sunset Park,40.66194,-73.99138,Entire home/apt,139,3,32,2019-07-01,1.25,2,20 +32170868,Cozy Brooklyn Home close to the train! Non smoking,48675725,Rosemary,Brooklyn,East New York,40.67212,-73.86991,Entire home/apt,125,2,18,2019-07-01,4.43,1,28 +20814067,Queens 20 mins to subway- 15 mins JFK- walk to bus,149265574,Beverley,Queens,St. Albans,40.69514,-73.74902,Private room,55,1,97,2019-07-06,5.23,1,354 +21215073,Roomy bedroom in Spacious Chelsea Loft!,9522664,Kevin,Manhattan,Chelsea,40.74337,-73.99361999999999,Private room,149,2,19,2019-05-11,0.89,1,274 +33547205,Sunny Astoria One-Bedroom With Stunning NYC Views,252782565,Bharat,Queens,Astoria,40.76625,-73.91946,Entire home/apt,160,2,1,2019-04-22,0.38,1,7 +20075554,CROWN HEIGHTS GUEST HOUSE 2L2R,74541079,Abraham,Brooklyn,Crown Heights,40.66888,-73.93638,Entire home/apt,199,3,5,2019-06-09,0.42,9,72 +9682862,Large Apartment in Manhattan!,50016613,Becky,Manhattan,Harlem,40.8241,-73.95259,Private room,100,3,1,2016-03-28,0.03,1,0 +16155648,Unique Retreat in the Heart of Bushwick!,21877498,Andy,Brooklyn,Bushwick,40.70272,-73.93005,Entire home/apt,140,3,0,,,2,0 +30125569,Quiet room in the quiet place for 1 person only,114673570,Mark,Manhattan,East Harlem,40.809090000000005,-73.93726,Private room,200,30,0,,,1,358 +27610995,PRIVATE BEDROOM in spacious apartment in the UWS!,17278356,Nico,Manhattan,Upper West Side,40.79099,-73.97293,Private room,230,3,14,2019-05-29,1.28,1,0 +18645286,Sunny & cozzy room in beautiful apartment,48157058,Michèle,Brooklyn,Crown Heights,40.67541,-73.93253,Private room,26,7,0,,,1,59 +1876811,Sweet Union Square/ Gramercy Studio,9774018,Dan,Manhattan,Gramercy,40.7366,-73.98703,Entire home/apt,199,2,240,2019-07-02,3.49,1,152 +9901423,Sunny Room in Brooklyn,34991003,Karen,Brooklyn,East Flatbush,40.64604,-73.92511,Private room,35,3,19,2018-09-22,0.47,3,272 +1113125,Huge 1br - tons of light - williamsburg,2733465,David,Manhattan,Nolita,40.72068,-73.99576,Entire home/apt,209,1,23,2018-07-23,0.46,1,365 +33038481,Airy Sunlit BedStuy BnB,40069144,J.L.,Brooklyn,Bedford-Stuyvesant,40.68831,-73.94066,Private room,46,14,0,,,1,37 +21646320,PRIVATE ROOM with OWN BATHROOM in Astoria Apt,68267774,Jeannie,Queens,Astoria,40.75819,-73.92687,Private room,47,30,1,2017-12-31,0.05,1,90 +7740527,Sunny Air Conditioned Bedroom,40684968,Matt,Manhattan,Harlem,40.8127,-73.95004,Private room,60,1,1,2015-08-09,0.02,1,0 +28958489,Cosy room on the ocean beach.,93315723,Анита,Brooklyn,Brighton Beach,40.57795,-73.9616,Private room,50,2,27,2019-06-26,3.18,1,71 +18875426,Uber Zen Clean Modern Apartment in E-Williamsburg,33003994,Lima,Brooklyn,Williamsburg,40.70741,-73.94285,Private room,77,6,30,2019-04-02,1.19,1,71 +18161036,Large private room on the Upper East Side,4240419,Haldun,Manhattan,Upper East Side,40.77681,-73.95123000000001,Private room,120,2,4,2018-01-01,0.15,1,0 +34085929,211 East 34 St Room 8 (10 by 12),255431206,Mohammed,Brooklyn,East Flatbush,40.65279,-73.946,Private room,35,7,4,2019-06-28,2.11,9,152 +4410626,Spacious neo-country seaside loft,22893493,Nick,Brooklyn,Red Hook,40.68039,-74.01729,Entire home/apt,245,1,50,2019-06-02,0.92,1,19 +19691986,Beautiful Comfortable Historic Brownstone,138713312,M,Manhattan,Harlem,40.80832,-73.95275,Private room,115,2,93,2019-06-23,3.92,1,129 +30323677,Spacious Studio in the Heart of West Village,50014274,Luke,Manhattan,West Village,40.73598,-73.99903,Entire home/apt,200,2,2,2019-06-01,0.27,1,0 +13324758,Sunny & Comfy room in Crown Heights,34547856,Angelica,Brooklyn,Crown Heights,40.67437,-73.95711,Private room,65,2,0,,,1,0 +29851985,Comfy King Bedroom Skyline View Close to Subway,20491372,Di,Queens,Forest Hills,40.72784,-73.85109,Private room,69,2,1,2018-11-18,0.13,1,35 +1743116,Cozy Room in Astoria,8783166,Marinez,Queens,Astoria,40.76549,-73.92934,Private room,100,3,4,2019-06-02,0.07,2,364 +29304329,Williamsburg Charming 2 Bedrooms/2 full Baths,10951481,Ann,Brooklyn,Williamsburg,40.71416,-73.96191,Entire home/apt,249,2,38,2019-06-17,4.38,5,46 +30133610,Cozy Mid-Town East Penthouse With Terrace,3202935,Cricket,Manhattan,Midtown,40.75199,-73.9725,Entire home/apt,350,3,17,2019-05-30,2.49,1,33 +2752977,Carroll Gardens townhouse,14081811,Linda,Brooklyn,Carroll Gardens,40.68009,-74.00009,Entire home/apt,325,4,12,2018-08-10,0.2,1,0 +4804228,Kosher Upper West Side Studio Apt,24750076,Chaz,Manhattan,Upper West Side,40.79331,-73.97537,Entire home/apt,149,4,15,2019-04-27,0.3,1,0 +29798872,Comfortable private room near Columbia University,224190427,Miller,Manhattan,Upper West Side,40.80183,-73.96542,Private room,68,1,14,2019-06-21,2.02,1,12 +30128559,"Brooklyn place with pool, gym and comfort",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69412,-73.9062,Private room,70,3,8,2019-07-04,1.06,3,67 +18735563,Furnished room available until June 4th,130319645,Anton,Brooklyn,Sheepshead Bay,40.60924,-73.95555999999999,Private room,30,1,0,,,1,0 +22562364,Room in LIC/Astoria close to the city & LGA/JFK,30812164,Yumi,Queens,Long Island City,40.75501,-73.93455,Private room,38,1,19,2018-10-31,1.73,1,0 +21692066,South Brooklyn Artist / Student Studio Retreat,66386802,Andrew,Brooklyn,Bensonhurst,40.61097,-73.9983,Private room,78,1,21,2019-04-14,1.52,1,30 +26867485,New 2 Bedroom Totally Private Brooklyn Apartment,201884425,Hoover,Brooklyn,Cypress Hills,40.68237,-73.87291,Entire home/apt,80,5,22,2019-06-10,1.93,3,60 +4155099,Large Group Friendly Rental,11948817,Leslie,Brooklyn,Canarsie,40.62864,-73.89265,Entire home/apt,225,2,11,2019-06-02,0.22,2,305 +35352188,10 minutes from JFK airport & Belmont Stakes,69700229,Shatese,Queens,Jamaica,40.68158,-73.7755,Private room,75,1,0,,,3,364 +4007277,Convenient and Affordable in the Heart of Astoria,3120671,Benham,Queens,Astoria,40.76294,-73.91545,Private room,65,2,5,2019-07-07,5.0,1,2 +13329860,Sunny & spacious in NYC,8273903,Rohit,Queens,Astoria,40.76417,-73.92815999999999,Entire home/apt,99,31,4,2018-10-31,0.11,1,5 +32554699,1718双个房,119692067,Qiulan,Brooklyn,Sunset Park,40.64333,-74.00227,Private room,50,1,10,2019-06-20,3.16,3,71 +16975918,"Large 1-bedroom, great neighborhood 20min/Midtown",4942156,Paul,Queens,Sunnyside,40.74511,-73.91816,Entire home/apt,80,50,2,2018-08-19,0.09,1,8 +34120696,Fully renovated 1 bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70737,-73.91138000000001,Entire home/apt,74,1,16,2019-06-30,7.16,3,351 +25843611,"Family-friendly 2BR, Prime Upper West Side",194180091,Liz,Manhattan,Upper West Side,40.791140000000006,-73.97787,Entire home/apt,175,6,3,2018-12-30,0.23,1,0 +35713295,Apartment Walking Distance to Central Park,75285802,Lauren,Manhattan,East Harlem,40.78861,-73.94523000000001,Entire home/apt,150,4,0,,,2,35 +14124987,Bushwick plays,2974873,Jourdain,Brooklyn,Bushwick,40.69271,-73.91360999999999,Private room,45,30,5,2018-07-31,0.15,2,339 +10886532,2000sf Williamsburg Apt. w/ Theater,17646340,Donald,Brooklyn,Williamsburg,40.70094,-73.9435,Entire home/apt,120,7,0,,,2,0 +20707451,"Modern Home, Amazing Location Master Suite",148237535,Jermaine,Brooklyn,Canarsie,40.64162,-73.90890999999999,Private room,100,3,2,2018-01-02,0.1,4,364 +31076156,长岛豪华公寓单间卧室低价短租交通无敌便利,232169947,辣辣,Queens,Long Island City,40.74779,-73.9382,Private room,60,2,0,,,1,0 +14912574,Spacious Living in Ditmas Park,107675,Lio & Kim And Yotam,Brooklyn,Flatbush,40.64189,-73.96066,Entire home/apt,100,3,4,2019-03-22,0.12,1,69 +35840369,"Layton Apt. Is Only 20 Min Ride into Manhattan, NY",269592097,Selma,Staten Island,St. George,40.64244,-74.08494,Entire home/apt,78,2,0,,,1,342 +22717838,Sunny apartment with easy connections to anywhere.,120847,Sam,Brooklyn,Bedford-Stuyvesant,40.68959,-73.95616,Private room,85,3,11,2019-06-30,0.82,1,13 +7170149,Hipster Apt in The Middle of it All,32212535,Bronson & Sam,Manhattan,Hell's Kitchen,40.76546,-73.98782,Entire home/apt,349,3,31,2019-06-13,0.65,2,157 +32984993,Gorgeous and Sunny Studio on The Upper West Side,239707721,Emily,Manhattan,Upper West Side,40.77872,-73.98435,Entire home/apt,112,30,0,,,1,52 +11434848,Private room in Manhattan,12925391,Claire,Manhattan,Harlem,40.8006,-73.95314,Private room,55,1,0,,,1,0 +33450079,Quiet Apartment with Private Backyard,68296703,Chris,Brooklyn,Crown Heights,40.67257,-73.94011,Entire home/apt,78,3,3,2019-06-21,1.18,1,17 +6956731,New! Beautifully Designed & Modern,13347167,AFI Apartments,Manhattan,Upper East Side,40.77566,-73.95335,Entire home/apt,118,30,4,2019-03-31,0.09,29,258 +346248,Cosy apartment in West Village,1755339,Julie,Manhattan,Greenwich Village,40.72886,-74.00013,Private room,100,3,7,2015-05-31,0.09,1,0 +28291780,Home away from home,213660495,Jamie,Queens,Long Island City,40.75472,-73.91891,Entire home/apt,125,2,27,2019-06-09,2.74,1,0 +29517769,Cozy private room!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69651,-73.94763,Private room,62,2,18,2019-06-24,2.7,3,338 +34830893,Sun-drenched 1 bedroom in Clinton Hill/Bed-Stuy,10273046,Irene,Brooklyn,Bedford-Stuyvesant,40.69021,-73.95058,Entire home/apt,120,14,0,,,1,53 +34867106,Light filled room in Bushwick for the summer!,10430261,Britta,Brooklyn,Bushwick,40.6999,-73.92416999999999,Private room,52,14,0,,,1,31 +4341158,"Large, Cozy & Comfortable Apartment",22448247,Leatha,Brooklyn,East Flatbush,40.65337,-73.91229,Entire home/apt,100,3,62,2019-06-24,1.19,1,343 +16493084,Bedroom (KING) & private bath - Brand New & Modern,7427325,Jenia,Manhattan,Hell's Kitchen,40.76548,-73.99374,Private room,200,1,20,2017-06-29,0.69,2,0 +9616729,cute and cozy room in brooklyn,49754509,Ornella,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95057,Private room,31,2,1,2015-12-30,0.02,1,0 +31881336,New large beautiful room with private bathroom,5704932,Victor,Bronx,Fordham,40.86566,-73.88748000000001,Private room,65,2,6,2019-06-25,1.18,3,77 +1970697,Lovely & Large Private Queen Bedroom,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69484,-73.9342,Private room,72,5,62,2019-07-01,1.05,6,140 +8266969,Cozy and Comfortable,43590457,Michael,Queens,Astoria,40.76599,-73.91776999999999,Private room,75,3,0,,,1,0 +18911633,Quiet 1-Bedroom in Greenwich Village,22781364,Dan,Manhattan,Greenwich Village,40.73002,-73.99804,Entire home/apt,175,3,3,2017-09-04,0.12,1,0 +28068963,❤️❤️NEW 2 level home 15min to the Beach ⚓ BOOK NOW,129222253,Andy,Bronx,Williamsbridge,40.87675,-73.86372,Entire home/apt,280,2,32,2019-07-03,3.09,3,344 +20464496,LaRoom,49519069,Kosta,Queens,Briarwood,40.7105,-73.81589,Private room,85,5,0,,,1,177 +838974,comfy artsy cottage garden studio,4255319,Laura,Brooklyn,Prospect Heights,40.67922,-73.96907,Entire home/apt,90,7,6,2018-01-03,0.08,1,0 +29359338,Cosy bedroom in prime Soho,9319215,Julia,Manhattan,SoHo,40.72751,-74.0018,Private room,250,7,3,2019-01-18,0.44,1,0 +9173061,Walk to Times Square and More!,8167329,Katie,Manhattan,Hell's Kitchen,40.76236,-73.99261,Entire home/apt,95,1,6,2016-05-16,0.14,1,0 +24387380,Spacious private room close to lots of cool spots,30523475,Michael Daae,Brooklyn,Williamsburg,40.71008,-73.96175,Private room,70,5,3,2018-05-07,0.2,1,0 +32898133,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room1,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67721,-73.91404,Private room,47,30,0,,,5,317 +17830470,Spacious 3BR Brownstone with HUGE backyard,22659263,Kate,Brooklyn,Crown Heights,40.67091,-73.94888,Entire home/apt,275,4,6,2019-07-06,0.26,1,96 +15832811,Financial District(FIDI) Studio,102518726,Nina,Manhattan,Financial District,40.709590000000006,-74.00646,Entire home/apt,145,3,2,2017-01-03,0.06,1,0 +16805103,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.76347,-73.9631,Entire home/apt,179,30,0,,,87,287 +27168097,Prime Williamsburg location! High ceilings!,54541149,J,Brooklyn,Williamsburg,40.7159,-73.95905,Private room,75,2,1,2018-07-29,0.09,1,0 +28864751,Beautiful bright room in Soho,40394752,Vanya,Manhattan,SoHo,40.72396,-74.00393000000001,Private room,175,5,1,2018-10-12,0.11,2,0 +235960,"LES private apt, 1 bedroom & more",1236817,Blue,Manhattan,Lower East Side,40.72066,-73.98506,Entire home/apt,200,3,100,2018-05-28,1.06,1,191 +747538,"HUGE mid-century modern, sunny flat w/ amazing cat",2293050,Nick,Brooklyn,Crown Heights,40.67652,-73.9614,Private room,61,2,167,2019-07-03,4.16,1,320 +32219550,Sonder | Stock Exchange | Peaceful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70623,-74.01198000000001,Entire home/apt,229,2,6,2019-06-21,3.0,327,355 +12005318,Large Private Room in Kips Bay/Murray Hill,5707158,Yuan,Manhattan,Kips Bay,40.74418,-73.97565,Private room,70,3,2,2016-09-29,0.05,2,0 +19861088,Cozy & Quiet Harlem Studio,2462300,Jasmine,Manhattan,Harlem,40.81707,-73.9349,Entire home/apt,120,3,20,2019-01-01,0.94,1,0 +23613174,Quiet Oasis. A nice break from city chaos.,3741154,Esther,Brooklyn,Bushwick,40.68892,-73.90495,Private room,55,2,1,2018-03-06,0.06,1,0 +10939255,Master Bedroom - Bathroom en Suite,7501803,Hannah,Brooklyn,Flatbush,40.65188,-73.96410999999999,Private room,55,4,3,2017-10-09,0.07,1,0 +3208904,Chic Designer’s Room & 2 Beds in Manhattan LES,16257970,Jackie,Manhattan,Lower East Side,40.71254,-73.98535,Private room,89,3,231,2019-07-07,3.72,2,177 +20847505,Charming Apartment on Central Park West!,84932767,Abigail,Manhattan,Upper West Side,40.78717,-73.96806,Entire home/apt,150,1,24,2019-05-02,1.08,1,27 +5224210,Feel at home,1220404,Tom,Brooklyn,East New York,40.66811,-73.89394,Entire home/apt,100,2,1,2016-05-03,0.03,2,292 +34490356,Corner Junior Suite Room with One King Bed,260618374,The Knickerbocker,Manhattan,Theater District,40.75615,-73.98803000000001,Private room,100,1,0,,,13,353 +30206080,NEW Bright upper east side 1 bedroom!,219718268,David,Manhattan,Upper East Side,40.76917,-73.95366999999999,Entire home/apt,230,2,13,2019-03-11,1.78,1,0 +34206762,Time Square Modern Cozy Queen,252604696,Erin,Manhattan,Chelsea,40.75059,-73.9967,Private room,199,1,2,2019-06-19,0.81,20,365 +36413779,Sunny & spacious room in a 3 Br - Williamsburg,2449230,Itamar,Brooklyn,Williamsburg,40.71812,-73.95495,Private room,80,5,0,,,1,38 +33877942,Crown Heights Amazing,57403189,Joslin,Brooklyn,Crown Heights,40.67637,-73.94309,Entire home/apt,105,2,6,2019-07-01,2.25,2,286 +33660716,Cozy Bright Prospect Park Studio,73785055,Alycen,Brooklyn,Prospect Heights,40.67382,-73.96642,Entire home/apt,150,4,0,,,1,28 +32673942,Sunny and Very Spacious 1 bedroom Apartment,139591030,Robert,Manhattan,Morningside Heights,40.80714,-73.96515,Entire home/apt,150,5,1,2019-03-22,0.28,1,0 +22389035,Spacious Bright Top Floor Apt w/ Balcony in LIC 1,25944182,Yves,Queens,Sunnyside,40.73874,-73.92961,Private room,68,2,50,2019-07-05,2.84,2,51 +34803200,"Home away from home, cozy and amenable.",23819362,Rene,Brooklyn,Canarsie,40.63993,-73.902,Entire home/apt,114,4,4,2019-06-23,2.79,1,284 +10755415,Harlem Bed and BYOBreakfast,35301269,Maria,Manhattan,Harlem,40.80526,-73.95509,Private room,80,2,69,2019-06-15,1.72,1,140 +29232662,Charming Apartment with TERRACE!!,7556128,N.L.,Manhattan,East Village,40.72789,-73.98236,Entire home/apt,240,2,12,2019-06-04,1.51,2,0 +28857304,Chic Brooklyn Artist Loft w/ Stunning Views,140173,Tucker,Brooklyn,Greenpoint,40.73498,-73.95805,Entire home/apt,150,3,7,2019-03-16,0.8,1,0 +26938086,2 BEDS -YOUR ROOM IN CONVERTED FACTORY -NEAR METRO,35606248,Blake And Madia,Brooklyn,Bushwick,40.702740000000006,-73.9263,Private room,82,2,24,2019-05-23,2.14,5,365 +13676601,Here's a great offer on a spacious furnished room!,79598330,Nesha,Brooklyn,East Flatbush,40.66337,-73.92576,Private room,30,3,20,2018-03-31,0.54,1,27 +16507002,LIC Room w/ Clean & Comfy Amenities + 6 Trains,100112994,Felix,Queens,Long Island City,40.7495,-73.93675999999999,Private room,100,3,56,2019-07-01,4.48,2,42 +10136508,Charming private room in Astoria-20 min to Midtown,17653796,Diana,Queens,Ditmars Steinway,40.77575,-73.91419,Private room,45,1,27,2019-06-24,0.75,1,16 +33995646,Walk to Columbia University,67651553,Yunqiu,Manhattan,Upper West Side,40.80237,-73.96695,Entire home/apt,120,20,0,,,2,95 +16499824,"Upper West 2BR, Met, Lincoln Center, Central Park",108367656,Lesya,Manhattan,Upper West Side,40.77547,-73.98154,Entire home/apt,225,4,10,2018-11-25,0.42,1,0 +553565,Feels like home with park view,567226,Yah,Manhattan,Inwood,40.86821,-73.92251999999999,Entire home/apt,120,10,25,2019-06-01,0.3,1,129 +33654480,Amazing 1 Bedroom Apt! Near the SI Ferry!!,190246158,Pavel-Alexey,Staten Island,St. George,40.64448,-74.08485,Entire home/apt,68,2,4,2019-06-26,1.97,1,65 +30393377,Clever 1BR near Broadway w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76178,-73.98546999999999,Entire home/apt,330,30,0,,,232,306 +21000540,Creative Artist Apartment in SoBro,128490590,Jermaine,Bronx,Mott Haven,40.81553,-73.92453,Entire home/apt,120,2,0,,,1,0 +6829746,Bright Williamsburg/Shwick Art Loft,28509737,Michael,Brooklyn,Williamsburg,40.70412,-73.93555,Private room,69,14,1,2015-06-23,0.02,2,0 +29415474,Bed-Stuy/Clinton Hill Sunny Brooklyn Apartment,3585637,Lucienne,Brooklyn,Bedford-Stuyvesant,40.68071,-73.95761,Entire home/apt,160,30,0,,,1,281 +13491503,"Airy, Private, Spacious + Accessible",77317167,Stacey Rae,Brooklyn,Flatbush,40.65253,-73.96404,Entire home/apt,125,2,52,2019-03-06,1.41,2,20 +6940108,Classic Upper East Side 1 Bed (king bed) Apt,13031379,Esther,Manhattan,Upper East Side,40.77252,-73.9556,Entire home/apt,140,2,57,2019-06-16,1.18,1,0 +8276819,International Meeting Place_Room 3•,43371802,Sinaly,Brooklyn,Flatlands,40.62841,-73.92591,Private room,130,4,3,2019-05-19,0.07,5,364 +16256074,Sweet cozy room in Brooklyn - East Williamsburg,44707475,Rachel,Brooklyn,Williamsburg,40.71396,-73.93952,Private room,35,7,5,2019-02-10,0.16,1,0 +25453535,Contemporary 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74386,-73.97327,Entire home/apt,180,29,1,2018-08-15,0.09,96,342 +34708657,Duplex 4 bed apt fantastic place for 10,261779847,Ben,Manhattan,East Harlem,40.79803,-73.94185,Entire home/apt,350,3,8,2019-06-30,5.11,1,231 +28313356,Private Room in Williamsburg Apartment,66711185,Oliver,Brooklyn,Williamsburg,40.71151,-73.94396,Private room,63,3,1,2018-12-04,0.14,1,0 +31497697,"Cozy Manhattan 1-Bedrm, Ground floor, 24hr checkin",218352095,Emma,Manhattan,Upper East Side,40.78132,-73.94723,Private room,75,4,15,2019-07-06,2.66,1,21 +17522686,Prospect Heights Studio Apartment,25227079,Daniel,Brooklyn,Prospect Heights,40.67435,-73.96691,Entire home/apt,130,3,2,2017-04-11,0.07,1,0 +36341843,"It's up to you, New York, NEW YORK!",17682620,Michel,Manhattan,Hell's Kitchen,40.75896,-73.99153000000001,Entire home/apt,300,5,0,,,1,34 +34358402,A little Gem in the heart of Boerum Hill Brooklyn.,259393574,Sandee,Brooklyn,Boerum Hill,40.68656,-73.98841999999999,Entire home/apt,182,4,0,,,1,70 +23568057,Monkey Jackson height cozy,65171233,Cha,Queens,Elmhurst,40.74253,-73.88962,Private room,65,3,31,2019-07-05,2.21,2,41 +1997957,Winter Fun in Brooklyn!!!,10294443,Shari,Brooklyn,Crown Heights,40.67497,-73.95879000000001,Entire home/apt,105,4,2,2014-12-31,0.03,1,0 +4089102,Serenity Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68407,-73.95487,Entire home/apt,152,3,146,2019-05-24,2.51,2,287 +35791289,Renta de Habitación a una cuadra de Central Park,29340158,Enrique,Manhattan,Upper West Side,40.79618,-73.96311999999999,Private room,43,10,0,,,1,128 +644575,Enjoy and discover New York Citi,15523,Vadim,Staten Island,Tompkinsville,40.63358,-74.0833,Private room,71,2,23,2018-10-07,0.33,2,352 +910976,Gorgeous PermaGO HOMES™ - FiDi - Room 2/2,4887492,Gershwyn,Manhattan,Financial District,40.71078,-74.00995,Private room,160,3,24,2018-02-12,0.31,2,352 +29157211,Angeles aparment,95921282,Walter,Queens,Richmond Hill,40.68308,-73.81649,Entire home/apt,165,2,29,2019-06-24,3.23,1,362 +25781295,Big private room in Sunnyside NYC 7 min Subway,58234433,Martin,Queens,Sunnyside,40.73575,-73.9206,Private room,89,1,12,2019-06-16,0.93,8,282 +5557135,Beautiful Chic Studio,28809821,Michelle,Manhattan,Murray Hill,40.74444,-73.97174,Shared room,115,1,7,2016-11-06,0.15,1,0 +24039582,BedSTUY SupperCLUB,14795719,Shirley,Brooklyn,Bedford-Stuyvesant,40.68491,-73.93399000000001,Private room,45,6,30,2019-06-20,2.06,1,21 +34321146,Gorgeous Duplex LOFT 1.5BATH 4BEDs - East Village,257876445,Clemiro,Manhattan,East Village,40.73077,-73.98321999999999,Entire home/apt,299,6,0,,,1,140 +27922598,Spacious Apartment in Ditmas Park,5182228,Amal,Brooklyn,Flatbush,40.64063,-73.95666999999999,Entire home/apt,300,2,6,2018-11-25,0.58,1,0 +11844776,Vintage NYC apt - Monthly Rates!,3864301,Sen,Queens,Sunnyside,40.74356,-73.91685,Entire home/apt,95,30,3,2018-06-08,0.09,2,357 +21700378,Warm and cozy room in Williamsburg,18743582,Kai,Brooklyn,Williamsburg,40.71665,-73.94169000000001,Private room,60,2,21,2018-11-11,1.06,1,0 +13729876,Bright Williamsburg Oversized Loft-like Space!,23424348,N-And-A,Brooklyn,Williamsburg,40.71301,-73.9495,Entire home/apt,200,30,47,2019-05-25,1.41,1,298 +6511675,Sunny room 30 min from Manhattan,10077626,Nelesi,Brooklyn,Flatbush,40.65208,-73.95340999999999,Private room,50,10,0,,,1,0 +14131597,1920s Room 1 block from Prospect Park and Q Access,3620205,Nick,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.95989,Private room,43,1,6,2017-03-01,0.19,1,0 +33689398,comfortable & cozy qns size bed Feel it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.5788,-74.09155,Private room,37,1,7,2019-07-04,2.66,3,310 +21088326,Private Bedroom with Exposed Brick in Chinatown!,2749543,Philip,Manhattan,Chinatown,40.71587,-73.9989,Private room,100,2,1,2017-10-11,0.05,1,0 +34592997,Close to the city and Bronx Lebanon hospital,13664245,Denise,Bronx,Claremont Village,40.84353,-73.91108,Private room,43,3,0,,,2,341 +7091660,1BR in large apt on Lower East Side,37170055,Sara,Manhattan,Lower East Side,40.72348,-73.99095,Private room,250,1,0,,,1,1 +13585905,"LOCATION,LOCATION! 51st/7 AV,2 bedroom luxury bldg",26386038,Alex,Manhattan,Theater District,40.76122,-73.98292,Entire home/apt,185,30,4,2018-11-30,0.21,1,292 +6947477,Private room. Amazing location!,35968845,Andre,Manhattan,Upper West Side,40.79265,-73.97108,Private room,89,1,1,2015-07-19,0.02,2,0 +14453434,Greenpoint Williamsburg Gold in the Heart of BK,89031106,Edyta,Brooklyn,Greenpoint,40.72173,-73.94768,Entire home/apt,110,30,4,2017-08-07,0.12,4,301 +22028307,Gorgeous Bright Parlor Floor Thru,46719,Holly,Brooklyn,Park Slope,40.671490000000006,-73.97957,Entire home/apt,300,4,3,2019-04-22,0.47,1,350 +538590,cozy 2bedroomAPART 10min to MIDTOWN,2645592,De & Claudia,Queens,Astoria,40.75919,-73.91835999999999,Entire home/apt,150,3,74,2019-05-15,0.87,2,365 +20548717,A private bedroom in the heart of Manhattan,100836839,Elizabeth,Manhattan,Midtown,40.74983,-73.98646,Private room,70,5,1,2017-09-27,0.05,1,0 +26031698,Bright room and private terrace with a view,24402648,Fabie,Brooklyn,Bushwick,40.693740000000005,-73.92645,Private room,149,2,8,2019-06-30,0.65,1,83 +20832768,Astoria apartment near Manhattan/LaGuardia,42419832,Zachary,Queens,Astoria,40.76271,-73.92213000000001,Entire home/apt,179,3,5,2019-04-22,0.23,1,0 +6698963,Artist's Apt in Downtown Manhattan,12432650,Yazmany,Manhattan,Chinatown,40.7142,-73.99119,Entire home/apt,250,5,14,2018-12-29,0.45,1,5 +17819994,"Bedroom in Park Slope, 20 min to city",20846509,Ludvig,Brooklyn,Park Slope,40.67148,-73.97766,Private room,95,9,4,2017-11-11,0.18,1,0 +21392524,Elegant Private Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80989,-73.9549,Private room,174,1,111,2019-06-13,5.37,5,244 +23978509,"2 Bedroom. Cozy, inexpensive",178303634,Gustavo,Brooklyn,South Slope,40.66429,-73.9906,Entire home/apt,120,5,2,2018-04-15,0.13,2,0 +20076056,Cozy Room in Upper-East Side Tower,67127998,Mark,Manhattan,Upper East Side,40.7811,-73.95003,Private room,69,20,3,2018-06-23,0.13,1,0 +13631232,Spacious One-Bedroom in an ideal location,64182621,David,Manhattan,East Harlem,40.78584,-73.94899000000001,Entire home/apt,99,5,0,,,1,0 +24573069,Quiet apt in the middle of St Marks (East Village),65804,Ahmad,Manhattan,East Village,40.72957,-73.9882,Entire home/apt,129,7,12,2019-06-16,0.88,2,9 +20743703,Home away from home in Brooklyn,20866359,Sarah,Brooklyn,Crown Heights,40.67542,-73.95107,Private room,50,2,82,2019-06-21,3.7,1,30 +13914735,Beautiful bedroom / in Beach home,82562435,Josephine,Queens,Arverne,40.59005,-73.79449,Private room,37,1,114,2019-06-04,3.18,2,305 +856440,YOUR OWN PLACE WITH VIEWS OF CENTRAL PARK,627898,Peter,Manhattan,Hell's Kitchen,40.76616,-73.98411,Entire home/apt,176,7,33,2019-05-02,0.42,1,0 +33274701,PARADISE HOME,227195925,Magda,Queens,Howard Beach,40.65278,-73.84289,Entire home/apt,165,1,0,,,1,323 +7807146,UWS Private Bedroom with patio,37353953,Sabrina,Manhattan,Upper West Side,40.78101,-73.98533,Private room,70,3,4,2016-09-07,0.11,1,0 +8362098,Lovely 1.5 bed in South Park Slope,2128335,Julian,Brooklyn,Sunset Park,40.66198,-73.99785,Entire home/apt,69,5,9,2016-12-30,0.2,1,0 +20013291,Cozy studio in the heart of Manhattan,88022215,Daria,Manhattan,Murray Hill,40.74564,-73.97593,Entire home/apt,120,5,0,,,1,0 +32223114,Private 2BR near the beach and subway/has yard!!!,73670512,Monika,Brooklyn,Gravesend,40.59284,-73.97681999999999,Entire home/apt,130,3,15,2019-07-05,3.31,2,119 +5390483,Snowfort penthouse with lots of natural light,4589525,Michael,Manhattan,Upper West Side,40.77461,-73.98899,Private room,250,7,3,2015-11-07,0.06,1,0 +23842204,Cozy Brooklyn Oasis 20min to Manhattan(for 1 or 2),38615080,Beth,Brooklyn,Crown Heights,40.672270000000005,-73.95246,Private room,65,3,24,2019-07-06,4.59,1,9 +33760723,Spacious Studio with easy access to NYC,211400652,Viktor,Staten Island,Arden Heights,40.55762,-74.19626,Entire home/apt,70,5,1,2019-07-03,1.0,1,55 +6384383,Penthouse Triplex/ Union Sq / Roof,1245695,Chris,Manhattan,East Village,40.732490000000006,-73.9887,Private room,200,30,8,2016-10-22,0.16,1,365 +2794762,Beautiful Sunny fully Furnished Studio,251842,Virginie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.93876,Entire home/apt,76,31,1,2017-04-28,0.04,1,333 +34812124,Sunny New York Apartment w/ 2 Spacious Bedrooms!,131103134,Daniel,Manhattan,Upper East Side,40.77388,-73.9568,Entire home/apt,217,3,2,2019-06-19,1.67,1,235 +21398486,"Enjoy Fireplace, Deck, King Bed in Park Slope!",4058709,Elise And Dave,Brooklyn,Park Slope,40.67587,-73.9793,Entire home/apt,165,6,5,2018-12-18,0.25,2,73 +33531011,Sunny Private bedroom in convenient location,41859649,Melissa,Brooklyn,Bushwick,40.700390000000006,-73.92352,Private room,72,2,2,2019-05-06,0.7,1,364 +9477988,Sunny and Close to Everything!,7530710,Lili And Antoine,Brooklyn,Prospect Heights,40.67768,-73.97114,Entire home/apt,175,10,11,2016-10-10,0.25,1,0 +19969013,Downtown Brooklyn Condo,71841088,Pristine Posh,Brooklyn,Bedford-Stuyvesant,40.69235,-73.94888,Entire home/apt,145,2,0,,,1,0 +688652,Huge Sunny Modern Apt. (1k+sqft),62855,Andrew,Brooklyn,Clinton Hill,40.69445,-73.96401,Entire home/apt,249,4,19,2019-06-07,0.23,1,362 +30355532,1BR in Manhattan. Central Park at your doorstep!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94383,Entire home/apt,70,30,2,2019-04-29,0.36,103,219 +11511466,Manhattan: 80's upper east side - entire apartment,1827164,Diana,Manhattan,Upper East Side,40.772870000000005,-73.95291999999999,Entire home/apt,300,31,1,2016-10-18,0.03,1,201 +29917467,The Castelo,38092082,Barry,Brooklyn,Bushwick,40.68844,-73.91486,Private room,60,1,0,,,1,71 +27598172,Studio-like space & Kitchen all for you,19000768,Karina,Queens,Sunnyside,40.74194,-73.92353,Entire home/apt,79,2,6,2019-01-10,0.54,2,0 +34741981,Ins Style Duplex Apt bedroom w/ private bathroom,20474743,Yahan,Queens,Flushing,40.76274,-73.82089,Private room,55,1,9,2019-07-06,6.43,1,59 +9028589,Gramercy & Madison Park CONDO 3 BED 2BATH,47129484,Michelle,Manhattan,Gramercy,40.73744,-73.98413000000001,Entire home/apt,305,3,175,2019-06-21,3.89,1,132 +14284714,Mid-town Manhattan (East Side near UN),38179715,Megan,Manhattan,Midtown,40.752590000000005,-73.96797,Entire home/apt,150,2,13,2019-05-11,0.36,1,69 +9586258,PRIVATE COSY ROOM IN BROOKLYN,27065592,Shane,Brooklyn,Clinton Hill,40.68402,-73.96094000000001,Private room,60,1,2,2016-01-02,0.05,1,0 +7717598,Cozy Brooklyn Private Home,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.67982,-73.91346999999999,Entire home/apt,35,3,63,2019-01-21,1.33,4,0 +34898663,Summer stay in Brooklyn,7028001,Pat,Brooklyn,Bedford-Stuyvesant,40.69474,-73.94963,Private room,50,4,0,,,1,9 +11043651,Private room in two fl apartment,31879354,Zach,Brooklyn,Bushwick,40.70131,-73.93032,Private room,50,2,0,,,1,0 +7685764,Sunny Modern Gem Overlooking UWS,268419,Kevin,Manhattan,Upper West Side,40.79387,-73.97136,Entire home/apt,300,5,0,,,1,0 +15073369,Lovely West Village Apt. Avail: May 25 - June 26,1678050,Liam,Manhattan,West Village,40.729890000000005,-74.00541,Entire home/apt,215,30,16,2017-05-16,0.48,2,0 +35311495,Manhattan Best Location Comfortable Space -1~2p,179336958,Ruby,Manhattan,Midtown,40.74667,-73.98513,Private room,120,3,1,2019-06-22,1.0,6,364 +6892731,"Clean Safe Apartment Kitchen, Wifi Parking +more",36119026,Mila,Brooklyn,Sheepshead Bay,40.58804,-73.95674,Entire home/apt,120,2,15,2019-06-23,0.4,1,334 +1382158,1 double room in modern apt in heart of soho,7458733,Alexandra,Manhattan,SoHo,40.72466,-74.0042,Private room,90,1,77,2019-07-05,2.0,1,269 +8687096,Full Floor in Sunny Brooklyn Duplex,45613202,Miles,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95548000000001,Private room,60,2,10,2018-07-28,0.22,1,0 +25378040,Little Italian Manor 2,139871943,Patrick,Manhattan,Little Italy,40.7197,-73.99746999999999,Private room,70,28,26,2018-12-06,1.99,3,147 +4879530,LUXURY PRIVATE MANHATTAN APARTMENT,25102191,Andy,Manhattan,East Harlem,40.80732,-73.93972,Entire home/apt,125,7,0,,,1,0 +30379843,"Your NY home for Quality time , Fully Equipped !",148725429,Javier,Brooklyn,Bushwick,40.69231,-73.92567,Entire home/apt,90,3,58,2019-07-07,7.91,2,2 +16224523,1 Bedroom w/ common space in 4br Loft in Bushwick,386795,Reuben,Brooklyn,Bedford-Stuyvesant,40.68712,-73.91847,Private room,30,7,0,,,1,0 +34096002,LIC luxury building with indoor pool and lounge,179875332,Tracy,Queens,Long Island City,40.74745,-73.93656,Private room,135,3,1,2019-05-22,0.63,1,0 +4033444,Big New York City Suite Near Subway,20912185,Saya & Diego,Brooklyn,Crown Heights,40.66649,-73.92855,Entire home/apt,125,2,130,2019-06-23,2.23,1,293 +32714098,Gorgeous 1 BR apt in NYC with breathtaking views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-74.0002,Entire home/apt,302,30,0,,,121,364 +16361014,Room in The Heights!,17171419,Mordechai,Manhattan,Washington Heights,40.85204,-73.92886,Private room,39,4,0,,,2,0 +14556236,Riverdale - 2 Pvt rooms for Ladies Only,17365319,Fahmida,Bronx,Kingsbridge,40.884440000000005,-73.90583000000001,Private room,80,2,2,2017-01-01,0.06,2,220 +20587057,"Quiet 1BR in Williamsburg BK, 11 min to Manhattan",15723130,Carly,Brooklyn,Williamsburg,40.7138,-73.94001,Entire home/apt,150,3,8,2019-06-02,0.35,1,9 +36037692,Charming and Spacious 2 Bedroom Midtown Apt,270309706,Axay,Manhattan,Hell's Kitchen,40.76496,-73.98928000000001,Entire home/apt,244,3,0,,,1,167 +377217,Great apt on the UWS - A RARE FIND!,1895957,Ido,Manhattan,Upper West Side,40.78161,-73.97898,Entire home/apt,145,3,22,2017-04-14,0.25,1,0 +3593491,Cozy room in NYC,5164854,Lilia,Manhattan,Harlem,40.82071,-73.93813,Private room,45,6,13,2018-07-14,0.23,8,346 +6571039,WoodyAllen FilmSet-Like Digs (Apt),1808103,Maria,Brooklyn,Williamsburg,40.70723,-73.95515,Entire home/apt,90,2,85,2019-06-09,1.99,2,4 +7659042,Cozy Room 25 Minutes from Manhattan,23187157,Andrew,Brooklyn,Bushwick,40.70036,-73.91723,Private room,80,1,0,,,1,0 +35411781,Prime Bed-Stuy Brownstone with Private Backyard,1922762,Caitlin,Brooklyn,Bedford-Stuyvesant,40.68197,-73.93618000000001,Private room,45,2,1,2019-06-28,1.0,1,154 +23036845,Renovated with view 3 bed 2 bath big Balcony,113805886,Yaacov,Manhattan,Upper East Side,40.77742,-73.95149,Entire home/apt,300,31,1,2019-01-03,0.16,33,248 +25054951,NO LONGER AVAILABLE SORY,70120241,Darren,Manhattan,Upper West Side,40.79629,-73.96523,Entire home/apt,225,59,0,,,1,358 +21767943,Cozy Hideaway in Artist’s Industrial Loft,158599708,Richard,Brooklyn,Prospect Heights,40.681090000000005,-73.96904,Entire home/apt,195,3,47,2019-03-09,2.44,1,0 +30064378,Entire 1- Bedroom Apt. in the Heart of Astoria.,148298029,Jennifer,Queens,Astoria,40.76529,-73.91136999999999,Entire home/apt,103,5,1,2019-01-01,0.16,1,0 +27090376,Cozy Master bedroom/private bath.,154037433,Roland,Queens,Jamaica,40.67022,-73.77296,Private room,90,1,12,2019-07-01,1.11,3,86 +1001147,Big Room with Bath in Bushwick! ,3363720,Kate,Brooklyn,Bushwick,40.68923,-73.91946,Private room,50,3,92,2019-06-19,1.22,3,171 +540489,Large + Bright private bedroom in NoLiTa,2656413,Anton,Manhattan,Little Italy,40.72006,-73.99579,Private room,58,6,18,2019-01-20,0.21,1,0 +29849903,Luxury studio suite in heart of Financial district,187360554,Ricardo,Manhattan,Financial District,40.70731,-74.00871,Entire home/apt,155,3,0,,,1,107 +19387536,Loft in The Heart of Bushwick,17026738,Camila,Brooklyn,Williamsburg,40.70642,-73.92739,Entire home/apt,95,8,6,2018-07-23,0.25,1,0 +14653831,Private room. Full size bed. 3rd floor. Cooper Sq,29824461,Labib,Manhattan,NoHo,40.726290000000006,-73.99237,Private room,75,2,1,2016-11-27,0.03,1,0 +4930683,This cozy space is a newly renovate,25399747,Ron,Brooklyn,Bedford-Stuyvesant,40.68168,-73.9368,Entire home/apt,100,3,91,2019-01-01,2.0,1,160 +1399352,A Nest in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69243,-73.94547,Private room,70,3,54,2019-06-17,0.77,5,316 +12955346,Suite with Private Gated Entrance,12160792,Sarah,Brooklyn,Brooklyn Heights,40.69183,-73.99592,Entire home/apt,150,1,107,2019-07-05,2.84,1,75 +29909672,"Beautiful, comfy full 1BR in the heart of Chelsea",851736,Mj,Manhattan,Chelsea,40.74741,-74.00213000000001,Entire home/apt,250,7,4,2019-06-23,0.62,1,8 +21589646,Amazing Room in East Village Apartment!,104775467,Micaela,Manhattan,East Village,40.72549,-73.99198,Shared room,120,2,0,,,1,0 +2908211,"Lovely Park Slope Apt, Brooklyn",14019963,Kieran,Brooklyn,Park Slope,40.68006,-73.97759,Private room,105,2,88,2019-07-05,1.4,1,93 +34909594,Spacious Brooklyn Apt with Garden Oasis - Gowanus,8092286,Sharmila,Brooklyn,Gowanus,40.66916,-73.9914,Entire home/apt,135,2,3,2019-07-01,2.09,1,37 +10540383,Stylish Bedroom (16 min from TIMES SQUARE),40221604,John,Manhattan,Harlem,40.82385,-73.94686999999999,Private room,80,2,86,2019-06-22,2.43,3,63 +200645,Best Manhattan Studio Deal! ,933378,Edo,Manhattan,Upper East Side,40.76739,-73.9557,Shared room,90,1,0,,,1,0 +27526910,"Spacious apartment, 20 mins to Manhattan",148705627,Jonathan,Queens,Ridgewood,40.70147,-73.9047,Entire home/apt,170,14,1,2019-06-09,1.0,2,106 +31115149,Yellow submarine,165827975,Galina,Brooklyn,Bedford-Stuyvesant,40.69032,-73.92437,Private room,59,2,0,,,1,10 +754353,Location Moreno,3250450,Petya,Queens,Long Island City,40.757540000000006,-73.93004,Private room,39,30,13,2015-12-13,0.16,18,360 +27673543,PLUSH APARTMENT WITH HIGH CEILINGS!,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69155,-73.95714,Entire home/apt,250,4,36,2019-07-02,3.34,3,202 +8688783,Fun Unique Spacious Midtown Getaway,45620787,William,Manhattan,Upper East Side,40.7644,-73.9693,Entire home/apt,275,2,148,2019-06-23,3.26,1,216 +21884557,Brooklyn Home in the Heart of it All,23005139,Samantha,Brooklyn,Crown Heights,40.67512,-73.96185,Private room,55,3,0,,,1,0 +20287051,Clean Room in Artist Loft in the South St. Seaport,13872573,Allison,Manhattan,Financial District,40.70781,-74.00050999999999,Private room,90,2,3,2018-01-02,0.14,1,0 +20164923,1BR w/ Private Bath - Brooklyn Loft with Roof-deck,119260265,Melissa,Brooklyn,Clinton Hill,40.68878,-73.96155999999999,Private room,60,5,4,2019-01-04,0.17,1,0 +6256470,The Most Affordable 3BR Apartment,17264040,Junior,Bronx,Mount Hope,40.84626,-73.90473,Entire home/apt,105,2,80,2019-06-15,1.66,2,365 +5571405,Beautiful MASTER BEDROOM East side C7,20559017,Yohan,Manhattan,Upper East Side,40.76324,-73.96251,Private room,75,30,8,2018-09-21,0.16,9,303 +22246864,••Rare Find! Modern Room Near Subway & JFK••,161349813,Yola,Queens,Woodhaven,40.69003,-73.8678,Private room,35,3,14,2019-01-14,0.83,2,0 +13435688,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76369,-73.98476,Entire home/apt,150,30,1,2019-05-31,0.77,23,335 +11370047,Sunny and Spacious Room in Central Harlem,6669178,Jay,Manhattan,Harlem,40.81696,-73.94164,Private room,80,3,69,2019-05-25,1.7,1,3 +28340136,Queens house bedroom 3,213111794,Desmond,Queens,Laurelton,40.68013,-73.74734000000001,Private room,180,1,3,2019-07-07,0.33,4,180 +22813265,master room,107183778,Coco,Queens,Flushing,40.76936,-73.83035,Private room,98,1,26,2019-06-29,1.48,1,215 +33689108,"Cozy, Comfy, Clean Mondern 2-Story Condo",229288218,Shawn,Brooklyn,Bushwick,40.69833,-73.93463,Entire home/apt,175,1,5,2019-06-16,1.9,1,264 +31883774,"♥Private-Keyed Room #1 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73894,-73.9952,Private room,99,10,1,2019-02-17,0.21,4,31 +3120723,Charming Private Studio in LES,15853337,Julia,Manhattan,Lower East Side,40.72165,-73.98573,Entire home/apt,160,2,6,2015-06-19,0.1,1,0 +9904570,HighRise Bryant Park Apt w NYC View,3631872,Rui,Manhattan,Midtown,40.75342,-73.98729,Entire home/apt,200,4,3,2016-03-22,0.07,1,0 +25842847,5 min to JFK! Private Queen room in new home. R3,6754369,Johann,Queens,Jamaica,40.69352,-73.80301,Private room,80,1,47,2019-06-30,3.56,4,125 +21020862,"Elegant Private Room, Bath & Patio Next to Subway",59795431,Nazeer,Bronx,Williamsbridge,40.88192,-73.86186,Private room,60,1,70,2019-06-21,3.55,1,283 +29945987,Spacious Apartment near Empire State Building,225150700,Victor,Manhattan,Midtown,40.74563,-73.98342,Entire home/apt,300,1,14,2019-05-07,1.92,1,5 +1079675,"Clean, Complete and Cool",5938496,Michael,Manhattan,Nolita,40.71972,-73.99438,Entire home/apt,149,5,26,2019-06-01,0.35,1,0 +35461527,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69634,-73.97393000000001,Private room,48,30,0,,,25,342 +14090133,Coney Island cabana apt - 1/2 BLOCK FROM BEACH!,84754283,Markus,Brooklyn,Coney Island,40.5738,-73.99044,Entire home/apt,100,2,2,2016-08-28,0.06,1,0 +18915587,Bright and Sunny Brooklyn Sanctuary,60626720,Timothy,Brooklyn,Bushwick,40.69811,-73.9311,Private room,43,3,2,2017-06-01,0.08,1,0 +10050536,Studio Loft in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72766,-73.94393000000001,Entire home/apt,179,3,36,2019-06-14,0.84,13,53 +7542840,Room in Upper West Side Manhattan,31799541,Eugene,Manhattan,Upper West Side,40.79452,-73.97065,Private room,75,1,12,2017-02-19,0.27,1,0 +13997415,"Steps to the Metro, Minutes to Manhattan!",83610543,Virgilio,Brooklyn,Bushwick,40.699740000000006,-73.9338,Entire home/apt,185,2,169,2019-06-30,4.77,1,26 +14616367,"Gem of Brooklyn, 3 bedroom private condo",14433834,Gary,Brooklyn,Crown Heights,40.67228,-73.92707,Entire home/apt,250,4,61,2019-07-02,1.89,1,324 +30800868,W 70s BR in Classic UWS Building,3929012,Kevin,Manhattan,Upper West Side,40.77824,-73.98255,Private room,129,1,30,2019-07-01,4.69,4,49 +8547691,Amazing view from luxury building near Times Sq,44996501,Dave,Manhattan,Hell's Kitchen,40.7633,-73.98591,Private room,135,2,58,2019-05-05,2.16,1,42 +8479799,CLASSIC GUEST ROOM - UWS Townhouse,44660079,Leslie,Manhattan,Upper West Side,40.7786,-73.98554,Private room,135,3,79,2019-07-05,2.19,2,20 +7802086,Sunny Apt in Prime Location,12904034,Shan,Queens,Long Island City,40.74462,-73.95521,Entire home/apt,80,2,1,2015-09-14,0.02,1,0 +19966023,Spacious 2 Bedroom at the heart of East Village,8977208,Rachel,Manhattan,East Village,40.72897,-73.9811,Entire home/apt,130,30,0,,,1,186 +35067483,Quiet modern 2BR in Hells Kitchen with elevator,245013643,Daria,Manhattan,Hell's Kitchen,40.76506,-73.98507,Entire home/apt,285,30,0,,,2,336 +34447529,Cozy UWS Studio Near Riverside Park,260046126,Morad,Manhattan,Upper West Side,40.78958,-73.9794,Entire home/apt,165,1,2,2019-06-30,1.33,1,346 +22494825,Just Minutes From Manhattan,25581222,Ella,Bronx,Mott Haven,40.80986,-73.9214,Entire home/apt,140,2,57,2019-06-16,3.58,1,73 +36356416,[Female Only]Private Room near Columbia University,118767681,Sunny,Manhattan,Upper West Side,40.80243,-73.96637,Private room,49,1,0,,,1,14 +2922197,Furnished privte room,1447684,Rosa,Brooklyn,Greenpoint,40.73026,-73.95513000000001,Private room,65,1,56,2019-05-07,1.06,3,269 +843491,Clean 1 bedroom with private bath :),4241953,Celeste,Queens,Flushing,40.760740000000006,-73.80969,Private room,80,3,8,2019-01-04,0.17,4,342 +30155157,Large room near CUMC....,222749009,Hana,Manhattan,Washington Heights,40.84216,-73.94227,Private room,50,1,4,2019-06-07,1.02,3,71 +26552951,Sonder | 21 Chelsea | Serene 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74259,-73.99589,Entire home/apt,249,29,0,,,96,230 +1196791,Creative Hub in Upper Manhattan,4324767,Caits & Taf,Manhattan,Washington Heights,40.83448,-73.94476,Private room,90,1,33,2016-05-09,0.48,1,189 +4453484,Prime Artist Loft & Exposed Brick,2166065,Peter,Brooklyn,Williamsburg,40.71909,-73.95897,Entire home/apt,250,2,103,2019-06-20,1.87,1,315 +19766387,a room in Clinton Hill,139503928,Noel,Brooklyn,Clinton Hill,40.68231,-73.96658000000001,Private room,45,7,1,2017-08-15,0.04,1,0 +3917007,Williamsburg BK Studio Luxury Bldg,4718049,Anup,Brooklyn,Williamsburg,40.71981,-73.95558,Entire home/apt,150,3,0,,,1,0 +33561854,Cozy studio for the best rest,215744706,Anastasia,Manhattan,Harlem,40.82011,-73.9404,Entire home/apt,110,1,0,,,1,180 +3881808,"Park Ave, Sunny 2beds 6 train, WiFi",18051112,Caleb,Manhattan,East Harlem,40.78697,-73.94999,Entire home/apt,129,2,12,2016-05-10,0.2,1,0 +17312157,Beautiful room in Brooklyn (Bushwick),1267985,Thea,Brooklyn,Bushwick,40.70108,-73.9289,Private room,60,14,1,2017-02-25,0.03,1,0 +18342361,"Romantic Artist's Townhouse, 1 suite: 2 Bd, 1 Bath",126922318,Emily,Manhattan,Upper West Side,40.78975,-73.97154,Private room,250,3,78,2019-06-27,2.93,1,246 +30314964,Modern NYC 2 Bedroom apt. Close to everything 34a,22641060,Wayne,Bronx,Williamsbridge,40.87821,-73.86354,Entire home/apt,85,30,0,,,1,365 +6076202,A Modern 1 bedroom Apartment in Brooklyn,12692690,Sebastian,Brooklyn,Brooklyn Heights,40.69384,-73.99261,Entire home/apt,198,7,7,2018-01-04,0.14,1,4 +11829419,1-bedroom in Brooklyn,62915940,Baochen,Brooklyn,Borough Park,40.6311,-74.00445,Private room,35,1,9,2016-08-09,0.24,1,0 +35096397,Cozy Studio apartment,257623201,Hank,Brooklyn,Flatlands,40.6261,-73.94578,Entire home/apt,75,1,8,2019-06-26,5.58,1,149 +29382257,25 min to Manhattan: Bed in quiet apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67956,-73.91135,Shared room,35,1,13,2019-05-19,1.52,17,89 +34289331,Sonder | 11th Ave | Sunny 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7607,-73.9961,Entire home/apt,189,29,0,,,327,324 +29778804,Giant private bedroom w 1/2 bathroom in 4BR apt,58266933,Jordan,Queens,Astoria,40.75805,-73.90926999999999,Private room,25,7,2,2019-03-21,0.29,1,66 +18091991,Cozy Room,124593127,Miguel,Manhattan,Washington Heights,40.85516,-73.92863,Private room,55,1,96,2019-06-11,3.61,2,128 +21110331,Cherry Hill,141012332,Jeremiah,Bronx,Mott Haven,40.80762,-73.92454000000001,Entire home/apt,115,2,100,2019-06-23,4.76,1,130 +7349633,$500/wk 1br - 150ft2 - Dec 23-Jan 4,38507835,Matt,Manhattan,East Village,40.72492,-73.97914,Private room,80,6,1,2015-07-22,0.02,1,0 +20809263,Elegant Studio Apt in Prospect Heights,87024253,Miguel,Brooklyn,Prospect Heights,40.67935,-73.9723,Entire home/apt,115,2,7,2017-11-27,0.32,1,0 +36404684,Smart Nolita 1BR w/ W/D near famous cafes by Blueground,107434423,Blueground,Manhattan,Nolita,40.72283,-73.99472,Entire home/apt,316,30,0,,,232,325 +27365033,Large Room In Prestigious Neighborhood Of SI,18404082,Alexander,Staten Island,Grymes Hill,40.6157,-74.0985,Private room,89,1,1,2018-11-04,0.12,1,65 +4594389,Furnished 2BR in UES (30 DAYS MIN),23772724,Elem,Manhattan,Upper East Side,40.78302,-73.94646999999999,Entire home/apt,110,30,12,2019-02-18,0.27,15,332 +6305027,Beautiful Boerum Hill 2 Bedroom,309393,Thomas,Brooklyn,Boerum Hill,40.68492,-73.97913,Entire home/apt,175,30,1,2015-08-31,0.02,1,45 +6462454,"Spacious, Bright, Brooklyn Beauty",3210626,Matthew,Brooklyn,Park Slope,40.6761,-73.97509000000001,Entire home/apt,200,1,0,,,1,0 +13605192,4 Bedroom House Perfect for Cooperate Rental,62317991,Phillipa,Brooklyn,East Flatbush,40.64145,-73.9433,Entire home/apt,350,2,34,2019-06-24,1.0,1,344 +30316546,"Nice & clean room, two blocks from Times Square",227671939,Ivan,Manhattan,Hell's Kitchen,40.76136,-73.99205,Private room,90,4,26,2019-07-01,4.29,1,278 +10233196,The Suite Spot @ Washington Heights,51169036,Francois & Keith,Manhattan,Washington Heights,40.83473,-73.93858,Private room,77,1,89,2019-05-27,2.29,1,228 +27468323,*Cozy Room in Manhattan with Private Living Room*,207003851,Carlos Ivan,Manhattan,East Harlem,40.79917,-73.93715999999999,Private room,111,3,9,2018-11-29,0.88,1,3 +15926847,Super spacious & sunny 1-bedroom Fort Greene Apt.,19966776,Lidia,Brooklyn,Fort Greene,40.68386,-73.96813,Entire home/apt,150,2,1,2017-10-08,0.05,1,0 +26989977,Beautiful Clinton Hill 1-BR in luxury building,24822059,Jessica,Brooklyn,Clinton Hill,40.68214,-73.96536,Entire home/apt,119,6,2,2018-08-29,0.18,1,0 +4644828,Hip&Central! Charming Williamsburg!,805843,Johnny,Brooklyn,Williamsburg,40.71745,-73.95961,Entire home/apt,175,2,5,2017-01-06,0.12,1,0 +13941973,Affordable room near of LGA airport in Queens.,46712160,Lucilu,Queens,Woodside,40.74071,-73.89186,Private room,55,1,251,2019-06-23,9.3,2,31 +3687227,"spacious, quiet room w/private bath: BK brownstone",4765290,Emily,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95333000000001,Private room,65,2,3,2016-08-08,0.06,1,0 +36309284,"Private Room Near JFK, St John's Hospital, & Beach",234090781,Phoenix,Queens,Bayswater,40.60804,-73.75829,Private room,45,3,1,2019-07-04,1.0,2,90 +29760869,Studio in East Harlem,169647759,Johann,Manhattan,East Harlem,40.79078,-73.94547,Entire home/apt,100,1,11,2019-04-19,1.34,1,0 +30389192,Fetching FiDi Studio in Luxury Building by Blueground,107434423,Blueground,Manhattan,Financial District,40.70619,-74.00895,Entire home/apt,232,30,0,,,232,61 +18505453,Studio Apartment in UWS,90846964,Allison,Manhattan,Upper West Side,40.792640000000006,-73.97480999999999,Entire home/apt,99,1,7,2017-05-28,0.26,1,0 +1194066,ENTIRE 1 Bedroom apartment- Upper East Side,6525255,Dana,Manhattan,Upper East Side,40.76703,-73.95413,Entire home/apt,190,2,191,2019-06-23,2.6,1,282 +35006121,Best Value ❤️Memorable Vacation,155313109,Alex,Manhattan,Midtown,40.76383,-73.98368,Entire home/apt,149,1,15,2019-07-01,9.78,1,121 +32240970,Sonder | Stock Exchange | Dashing 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.01039,Entire home/apt,215,2,3,2019-06-13,0.77,327,317 +15035050,HEART OF SOHO UPDATED 1 BR,61391963,Corporate Housing,Manhattan,Nolita,40.72332,-73.99466,Entire home/apt,142,30,7,2019-03-26,0.24,91,66 +13461718,"Big, Nicely Decorated Loft: Great location & light",76940389,Matthew,Brooklyn,Williamsburg,40.71855,-73.96359,Private room,85,3,1,2016-06-26,0.03,1,0 +35542830,North Williamsburg Retreat,1646818,Sara,Brooklyn,Williamsburg,40.71884,-73.9502,Entire home/apt,120,30,1,2019-07-06,1.0,1,286 +2074985,Summer catsit in Brooklyn!,248739,Jeremy,Brooklyn,Crown Heights,40.66806,-73.95358,Entire home/apt,50,3,9,2016-11-18,0.13,1,0 +27678259,Studio Apartment in Queens,208911587,Mari,Queens,Springfield Gardens,40.66448,-73.76479,Entire home/apt,85,3,33,2019-06-16,3.07,1,44 +15999129,Railroad Style 1 B.R. Astoria Bachelor Pad,102278506,Alex,Queens,Astoria,40.759890000000006,-73.91343,Entire home/apt,110,21,6,2018-01-19,0.19,1,0 +11567121,Spacious West Village Studio Apt,11523568,Kate,Manhattan,West Village,40.72983,-74.00556999999999,Entire home/apt,190,1,25,2018-11-25,0.67,1,158 +30093274,家庭式獨立衛生間套房G,225889604,Fiona,Queens,Flushing,40.76548,-73.82764,Private room,82,1,2,2019-06-09,0.31,5,85 +22231811,Stylish & Spacious 1BD in Central Harlem!,17430718,Natasha,Manhattan,Harlem,40.81537,-73.94067,Entire home/apt,135,3,21,2019-06-10,1.13,2,75 +33659082,Home Away From Home at Mosholu pkwy,229929832,Ifeoluwa,Bronx,Norwood,40.87414,-73.88342,Private room,51,1,10,2019-07-04,4.76,1,271 +2017397,☆ DESIGN Spacious ☆ 1 BR Sleeps 4 Brooklyn Museum,2496464,Monica,Brooklyn,Crown Heights,40.66687,-73.95619,Entire home/apt,150,5,68,2019-07-01,1.07,1,202 +34867398,Sunset Park Rustic Bed Room for 2 W/AC,38119047,Wu,Brooklyn,Sunset Park,40.64613,-74.00735999999999,Private room,40,1,8,2019-07-08,5.45,2,89 +585937,Comfortable 1 Bedroom in Greenpoint,2888900,Alex,Brooklyn,Greenpoint,40.729490000000006,-73.95493,Entire home/apt,175,3,102,2019-06-25,1.23,2,215 +8107212,Large Private Room in Williamsburg,19668001,Marie,Brooklyn,Williamsburg,40.71061,-73.94971,Private room,70,1,40,2018-10-01,0.87,1,125 +15798969,"Own Floor in Brooklyn Home, 20 min to Manhattan",58390804,Jen And Lev,Brooklyn,Flatbush,40.6459,-73.9642,Entire home/apt,153,3,64,2019-06-24,2.07,1,277 +14187014,Beautiful cozzy apartment in the Upper East Side,85986280,Marushka,Manhattan,Upper East Side,40.76848,-73.96014,Entire home/apt,109,1,25,2019-06-23,0.75,1,0 +718761,"2 private BRs, private bath - Like your OWN APT",216191,M,Brooklyn,Williamsburg,40.70985,-73.9452,Private room,146,2,8,2019-03-09,0.11,4,88 +11123031,11' Windows · Rooftop · Queen Bed,10556524,Ryan,Brooklyn,Williamsburg,40.70606,-73.92884000000001,Private room,149,1,0,,,2,0 +10031933,Beautiful Updated Midtown Apartment,8343891,Shauna,Manhattan,Upper East Side,40.76501,-73.95862,Entire home/apt,146,1,0,,,1,0 +78919,"Historic House Boerum Hill, BK, NYC",422561,Nancy,Brooklyn,Boerum Hill,40.68674,-73.98876,Entire home/apt,135,4,6,2016-02-05,0.1,1,0 +17667585,"Cozy Apartment on Bedford Ave, Brooklyn",42727726,Natasha,Brooklyn,Williamsburg,40.71284,-73.96284,Private room,88,7,15,2018-01-01,0.55,1,0 +3209980,Private room in 2B East Village!,16264357,Tal,Manhattan,East Village,40.7215,-73.97747,Private room,85,5,142,2019-07-05,2.3,1,80 +22533734,Awesome spacious one bedroom in prime NYC location,165492173,Michael,Brooklyn,Park Slope,40.67682,-73.97476,Entire home/apt,200,7,0,,,1,0 +1808550,Invitation to travelers,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69096,-73.94613000000001,Private room,75,7,30,2019-02-16,0.43,5,216 +22205284,New place near D line easy to get to Manhattan,5853457,Stanley,Brooklyn,Borough Park,40.64212,-73.9973,Entire home/apt,149,2,27,2019-06-16,1.47,4,308 +13437219,"Cozy, Private West Harlem Hamilton Heights Bedroom",3143680,Andrew,Manhattan,Harlem,40.8259,-73.94962,Private room,48,7,2,2017-03-24,0.06,1,0 +11753760,Gorgeous apartment in Brownstone,62542300,Gary,Brooklyn,South Slope,40.66736,-73.98773,Private room,140,2,141,2019-07-05,3.63,1,268 +7680504,Ground Fl Apt. w/ backyard-Long term stay welcomed,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.68001,-73.94971,Entire home/apt,150,30,11,2019-05-31,0.29,3,332 +33148781,"Beautiful room in Brooklyn, 2 min ocean and train",196872053,Marina,Brooklyn,Brighton Beach,40.57753,-73.95900999999999,Private room,80,3,0,,,2,350 +28302975,Luxe 2 Bedroom Sunrise Brooklyn Loft Condo,82083094,Fay,Brooklyn,Canarsie,40.63933,-73.88221,Entire home/apt,250,3,0,,,2,270 +28711792,East Village Cottage Life,865148,Eliza,Manhattan,East Village,40.72939,-73.98007,Private room,85,2,26,2019-07-05,3.07,1,165 +30799010,Brand new building with Manhattan view,52053537,Inna,Queens,Long Island City,40.75317,-73.94015,Entire home/apt,200,3,0,,,1,0 +13651334,Beautiful and huge room.,810050,Gladys,Manhattan,Harlem,40.82633,-73.94459,Private room,60,1,1,2016-07-09,0.03,1,157 +20263650,Light Filled Quiet UWS studio,170094,Lee,Manhattan,Upper West Side,40.79272,-73.97519,Entire home/apt,120,3,6,2018-12-16,0.27,1,0 +34306257,Luxury 2 Bed / 2 Bath River and City View.,131647128,Emily,Manhattan,Hell's Kitchen,40.76775,-73.98869,Entire home/apt,265,30,0,,,25,290 +19633139,Private and cozy bedroom in the middle of NYC,59432400,Anna,Manhattan,Harlem,40.81974,-73.94457,Private room,120,4,31,2018-12-13,1.31,2,188 +19283246,LARGE 1 BR IN DOORMAN BUILDING w ROOFTOP + GYM,107179840,Keely,Brooklyn,Bushwick,40.69477,-73.92931,Entire home/apt,90,3,8,2019-05-25,0.32,1,0 +30856384,Cozy Crown Heights Studio,13501779,Alex,Brooklyn,Crown Heights,40.67188,-73.95049,Entire home/apt,85,3,0,,,2,0 +17211246,Cute clean 1 rm,31546047,Miyu,Manhattan,Hell's Kitchen,40.76553,-73.98879000000001,Private room,118,2,16,2019-07-01,0.63,1,24 +31040444,Large Bedroom near Central Park and Mt Sinah,231846634,Jacqueline,Manhattan,East Harlem,40.79022,-73.9471,Private room,100,30,0,,,1,262 +36456829,Perfectly Located Organic Getaway,6677425,Isabel,Manhattan,Upper West Side,40.79753,-73.96155,Shared room,55,2,0,,,2,49 +25101744,Cozy & Bright Studio Close to Subway Station,26555925,Luis,Brooklyn,Bedford-Stuyvesant,40.68057,-73.95249,Entire home/apt,113,3,6,2019-01-28,0.46,1,1 +15221833,Full size bed with drawer space!,75770804,Alyssa Faye,Manhattan,Harlem,40.82088,-73.93879,Private room,35,1,0,,,1,0 +26139590,Safe upscale zone master bedroom close to subway,15838559,Weimin,Queens,Forest Hills,40.71357,-73.85138,Private room,59,60,4,2018-08-03,0.33,4,0 +25807815,A classy room in Harlem,63417081,Devon,Manhattan,Harlem,40.82375,-73.94426,Private room,43,30,1,2019-05-18,0.58,8,310 +16267197,"Cozy Room - 17mins to Manhattan. Close to LGA, JFK",40711894,Jessica,Queens,Elmhurst,40.740120000000005,-73.88917,Private room,53,1,9,2018-09-09,0.29,4,0 +35132775,⚡Stylish Apt in Trendy Location!! ⭐,52071286,Sito,Manhattan,Chelsea,40.73847,-73.99835,Entire home/apt,249,2,6,2019-07-07,6.0,1,225 +12294008,Furnished Duplex with Garden,27742760,Josh,Brooklyn,Boerum Hill,40.68469,-73.98603,Entire home/apt,300,180,0,,,1,365 +8341919,Brand New Luxury Apt Lease Takeover,43945071,Shining,Queens,Long Island City,40.74654,-73.95778,Entire home/apt,199,480,0,,,1,365 +20914216,2 bedroom Modern Apt. in Prime Williamsburg,85722766,Deniz,Brooklyn,Williamsburg,40.71317,-73.94518000000001,Entire home/apt,90,2,5,2019-06-30,0.23,1,157 +8721444,Huge Apt on Central Park South,45774825,Saman,Manhattan,Midtown,40.7675,-73.98228,Entire home/apt,175,7,15,2018-07-08,0.34,1,0 +1546945,(1) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75431,-73.83131,Private room,59,1,116,2017-09-06,1.63,2,0 +31638687,NEW Luxury 1 Bedroom on UES Perfect Location!!!,237201559,David,Manhattan,Upper East Side,40.77112,-73.95405,Entire home/apt,175,2,16,2019-07-03,3.72,1,233 +16202302,NYC Living!,104814891,Kirra,Manhattan,Chinatown,40.71521,-73.99169,Private room,80,2,152,2019-07-05,5.01,1,105 +19873185,"Large room in a beautiful, easy-commute apartment",24383253,Arash,Brooklyn,Crown Heights,40.67139,-73.95676999999999,Private room,50,8,0,,,1,0 +505315,Charming ROOM(s)*Lovely BUSHWICK Block*25min->City,167417,Kelly,Brooklyn,Bushwick,40.69227,-73.90852,Private room,68,2,37,2019-06-23,0.49,1,23 +132516,Forest Hills Apt minutes to midtown Manhattan,85330,Jean,Queens,Forest Hills,40.70925,-73.85262,Entire home/apt,97,3,28,2019-07-01,1.21,3,209 +13951783,Time SQ Midtown West Central Park 3Beds Sleep6,82491369,Joel,Manhattan,Hell's Kitchen,40.76463,-73.98855,Entire home/apt,275,2,125,2019-06-11,3.44,1,146 +34174357,Beautiful private room in Manhattan,245886857,Djily,Manhattan,Harlem,40.81249,-73.94175,Private room,90,4,0,,,2,365 +24473606,Perfect Sunny 1BR in the Treetops,3469364,Joe,Manhattan,NoHo,40.72547,-73.99284,Entire home/apt,185,10,1,2019-05-23,0.64,1,57 +30392623,"Dapper Park Ave Studio w/ Gym, near Grand Central by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74943,-73.98055,Entire home/apt,282,30,1,2019-02-27,0.23,232,323 +28986804,Sunny Private Bedroom/Bath in Beautiful Brooklyn,71314515,Tessa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.94183000000001,Private room,80,1,15,2019-06-23,1.82,1,64 +6237443,"Large Room in Spacious Flat , Central Location",32305413,Laurence,Brooklyn,Prospect Heights,40.675540000000005,-73.96835,Private room,85,1,156,2019-06-24,3.11,1,150 +2075526,1 BR Apt in Park Slope Brooklyn,8109174,Katie And Matt,Brooklyn,Park Slope,40.66952,-73.98285,Entire home/apt,130,4,8,2016-12-30,0.12,1,0 +29884121,~ pure BLISS among CITY turmoil ~,224731704,Andrew,Manhattan,Hell's Kitchen,40.76505,-73.98919000000001,Private room,129,1,11,2019-06-20,1.37,3,177 +29753642,Comfortable room in family home in Brooklyn!,11880311,Aileen,Brooklyn,Carroll Gardens,40.68261,-73.99096999999999,Private room,50,2,6,2019-05-04,1.1,2,0 +35657662,"GREAT APARTMENT, VERY COMFORTABLE, 5 mins to SOHO!",135127305,M. Alejandro,Manhattan,Chinatown,40.71821,-73.99506,Entire home/apt,200,1,0,,,1,312 +25545372,Very small room near Columbia Uni med school,163813488,Mike,Manhattan,Washington Heights,40.84287,-73.94093000000001,Private room,43,1,10,2019-05-27,0.82,1,116 +8151605,Amazing 2BR in Bed-Stuy,1740952,Kaila,Brooklyn,Bedford-Stuyvesant,40.68355,-73.94129000000001,Entire home/apt,180,2,1,2015-09-26,0.02,1,0 +30394494,"Charming Chelsea 1BR w/ Office nook, near Union Sq by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73795,-73.99753,Entire home/apt,316,30,0,,,232,339 +16232783,Private 1Br aparmtent on Floor 1 of my house,6677922,Ilya,Staten Island,Great Kills,40.55616,-74.16027,Entire home/apt,51,4,29,2019-06-22,0.97,1,15 +26867888,Brooklyn private luxury room with private bathroom,11460365,Alan,Brooklyn,Bedford-Stuyvesant,40.67844,-73.93831,Private room,200,1,14,2019-02-17,1.24,1,22 +17524862,Cozy West Harlem Abode,2054816,Sharron And Lenny,Manhattan,Harlem,40.82805,-73.94676,Entire home/apt,150,2,10,2018-07-05,0.36,1,0 +20605399,Brooklyn travel house #6,145802745,Jerry,Brooklyn,Borough Park,40.6357,-74.00508,Private room,170,5,16,2019-03-17,0.7,1,354 +5916713,Williamsburg Sunny Large Loft,2272846,Zack,Brooklyn,Williamsburg,40.71614,-73.95281999999999,Private room,69,30,16,2019-06-06,0.45,2,225 +29079293,Luxury pied-à-terre in Carroll Gdns carriage hse,48806776,Amanda,Brooklyn,Carroll Gardens,40.68132,-73.99169,Entire home/apt,175,2,14,2019-05-25,2.05,1,119 +324517,Central Park Fifth Av MET Museum,1660724,S,Manhattan,Upper East Side,40.77688,-73.96177,Private room,109,1,66,2017-12-10,0.94,1,353 +11236273,Private furnished room in BK apartment,219970,Fely,Brooklyn,Crown Heights,40.67648,-73.9634,Private room,36,1,19,2019-05-31,0.53,2,0 +33820675,*Private room with new bedroom set and mattress,10149317,Lana,Queens,Kew Gardens,40.70927,-73.82948,Private room,50,2,5,2019-06-02,1.88,5,319 +7664066,Cheerful Private Bedroom 5min to F & N Trains,17466612,Tanya,Brooklyn,Bensonhurst,40.6089,-73.97865999999999,Private room,43,2,22,2018-10-09,0.54,2,0 +36321920,Central Park Hidden Gem 5*,273078104,Luli,Manhattan,Upper East Side,40.76966,-73.96688,Entire home/apt,239,1,0,,,1,15 +4681219,"""Central Park"" View Prvt Room,Mnh ",24208781,William Hakan,Manhattan,Harlem,40.80126,-73.95777,Private room,70,2,68,2019-05-19,1.31,1,129 +9514805,Brooklyn Family Getaway,912101,Adrian,Brooklyn,Prospect Heights,40.67806,-73.96735,Entire home/apt,180,5,0,,,1,0 +826685,Dreamy Private Room in Super Cool Bedstuy Apt.,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68407,-73.93944,Private room,51,3,36,2019-06-23,3.04,2,32 +23727923,2 Bedroom Apt Newly renovated-10 Min to Times SQ.,116067987,Kimberley,Queens,Astoria,40.75569,-73.92175,Entire home/apt,325,2,2,2019-07-03,2.0,2,365 +19763459,Great location-Close to metro in cool neighborhood,81160897,Roberto,Brooklyn,Bushwick,40.70152,-73.91148000000001,Private room,50,1,16,2019-04-21,0.66,1,343 +27993666,Sunny room in Park Slope with air mattress,50407407,Nicole,Brooklyn,Park Slope,40.6715,-73.98451,Private room,70,1,1,2018-09-15,0.1,1,0 +35784049,Perfect NYC crib for Explorers & Travelers,269193265,Ana,Manhattan,Murray Hill,40.74611,-73.97399999999999,Private room,105,1,1,2019-06-30,1.0,1,38 +9270122,Beautiful Room in Artistic Loft,48148603,Ricardo,Brooklyn,Greenpoint,40.73469,-73.95778,Private room,60,1,1,2016-01-03,0.02,1,0 +23077687,"Bright, spacious, and inviting home away from home",2616981,Lauren,Manhattan,Upper East Side,40.76354,-73.96189,Entire home/apt,135,4,3,2018-09-22,0.19,1,60 +848853,Upper Manhattan//Harlem Classic,4432173,Stella,Manhattan,Harlem,40.80712,-73.95316,Private room,65,2,15,2018-05-16,0.2,1,361 +14365130,Park Avenue Studio Suite (3),50760546,CRNY Monthly Rentals,Manhattan,Kips Bay,40.74439,-73.98111999999999,Entire home/apt,109,30,5,2018-10-01,0.15,31,134 +32979235,Spacious Bedroom With Queen-Size Bed,49251674,Mirta,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94578,Private room,65,3,1,2019-05-23,0.63,1,119 +29459091,Lovely Modern Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83284,-73.94461,Private room,75,2,17,2019-06-23,1.99,2,27 +14370839,Private room in a shared 3 bed 1 bath in Bushwick,65344210,Carly,Brooklyn,Bushwick,40.6866,-73.91221,Private room,34,3,0,,,1,0 +30049755,"Bright, spacious and comfortable with open view",5326571,Ines,Queens,Ditmars Steinway,40.77751,-73.90956,Private room,85,2,2,2019-05-31,0.29,2,278 +24065918,One bedroom in Brooklyn Heights,35996743,Scott,Brooklyn,Boerum Hill,40.68958,-73.99141,Entire home/apt,118,2,3,2018-11-12,0.21,1,0 +11162977,Beautiful Apartment by Astoria park,58061728,Clinton,Queens,Ditmars Steinway,40.78,-73.91672,Entire home/apt,99,4,17,2019-06-23,0.44,1,0 +15529123,"Park slope, floor through garden apartment",8940513,Martha,Brooklyn,Park Slope,40.67148,-73.97479,Entire home/apt,198,7,43,2019-06-12,1.36,1,241 +403264,Luxury room in Manhattan Duplex Apt,1386983,Candice,Manhattan,Midtown,40.7453,-73.99056,Private room,145,3,165,2019-07-03,1.88,2,181 +19531901,"2BR near Central Park, Lincoln Center",7936109,Ryan,Manhattan,Upper West Side,40.77468,-73.98184,Entire home/apt,180,2,5,2017-08-12,0.2,1,0 +22251884,Authentic and Open Tribeca Loft,16897284,Hugh,Manhattan,Tribeca,40.71813,-74.00538,Entire home/apt,325,1,35,2019-06-25,1.84,1,141 +20388056,studio in gramercy park,46736568,Mitch,Manhattan,Gramercy,40.73594,-73.97946999999999,Entire home/apt,170,3,12,2019-01-01,0.53,1,1 +27551517,"Clean & Sunny room in UES, Doorman+Sunroof+GYM",7186760,Dafna Irit,Manhattan,Upper East Side,40.77742,-73.94686999999999,Private room,70,7,1,2018-10-15,0.11,2,33 +9241956,The New Downtown* 1 bdrm,23267314,Millie,Manhattan,Hell's Kitchen,40.754740000000005,-73.99835999999999,Entire home/apt,177,2,123,2019-06-28,2.81,2,261 +23925502,Sunny Room in brand new apartment in Bushwick,4162797,Ana,Brooklyn,Bushwick,40.70139,-73.92567,Private room,45,10,2,2018-09-30,0.19,1,13 +35823611,Cute East village one bedroom apartment for 3,240141402,Kaspars,Manhattan,East Village,40.72607,-73.97622,Entire home/apt,145,4,0,,,1,26 +34810052,Cozy & clean place - 15min from Manhattan,262394284,Klara,Queens,Astoria,40.75936,-73.9258,Private room,52,2,8,2019-06-23,5.33,1,22 +21107481,Opulent Orange Oasis! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68949,-73.90987,Private room,60,1,66,2019-06-20,3.24,3,120 +31193385,Haven for your Brooklyn Family/Friends Vacation!,4564774,Melanie,Brooklyn,Prospect-Lefferts Gardens,40.66069,-73.94731999999999,Entire home/apt,120,2,15,2019-07-05,2.53,1,20 +66741,Charming Garden Apt in Park Slope,327673,Stefano,Brooklyn,Park Slope,40.67732,-73.98225,Entire home/apt,150,2,214,2019-06-23,2.08,2,263 +16009487,Stylish & Spacious Apartment in Harlem Brownstone,69613456,Elisia,Manhattan,Harlem,40.80891,-73.94247,Entire home/apt,265,2,113,2019-06-23,3.55,1,297 +15032254,Mid-town West/Private room/shared bath,78022684,Pamela,Manhattan,Midtown,40.76485,-73.98121,Private room,112,2,1,2017-05-08,0.04,2,0 +7341983,Brooklyn Studio apartment,38460304,Leon,Brooklyn,Bedford-Stuyvesant,40.69169,-73.93141999999999,Entire home/apt,130,4,34,2019-04-28,0.73,2,340 +34315737,Studio Apartment in BoroPark Brooklyn NY,259063599,Yehudit,Brooklyn,Borough Park,40.63302,-73.9837,Entire home/apt,120,1,3,2019-07-03,1.29,1,177 +35518765,Nolita Gem 2 bedroom One bath,11134859,Anthony,Manhattan,Nolita,40.72037,-73.99454,Entire home/apt,179,2,0,,,1,311 +34088961,14th Street Oasis,214148143,Amber,Manhattan,Stuyvesant Town,40.7311,-73.9775,Private room,165,3,9,2019-06-05,3.7,1,90 +24699301,NYC HUB HOME: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.708870000000005,-73.78275,Entire home/apt,128,2,23,2019-05-05,1.75,7,10 +3852261,SUNNY ROOM FOR TWO @ ELEGANT HOME NEAR JFK,19866189,Natasha,Queens,Arverne,40.58835,-73.79565,Private room,149,1,91,2019-07-01,1.53,5,358 +11842735,"Cozy room available in Bed-Stuy, BK",2384086,Sal,Brooklyn,Bedford-Stuyvesant,40.689,-73.95241,Private room,40,5,0,,,1,0 +24302356,Sweet Getaway in the Hidden Gem w/ Backyard/Patio,33067672,Ivy,Brooklyn,Sunset Park,40.65247,-74.00994,Entire home/apt,120,2,1,2018-06-04,0.08,1,0 +16134745,Williamsburg floor through loft,471153,Ramsay,Brooklyn,Williamsburg,40.71014,-73.96384,Entire home/apt,300,7,2,2018-06-29,0.09,1,352 +16739891,Private Studio Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80842,-73.95568,Private room,158,1,132,2019-06-14,4.37,5,238 +3059273,1 bedroom in Nolita/Soho,15569250,SoSo,Manhattan,Nolita,40.72118,-73.99682,Private room,115,2,9,2019-07-07,0.29,1,332 +6645263,Brooklyn at its finest,351650,Nick,Brooklyn,Williamsburg,40.710840000000005,-73.96557,Entire home/apt,175,3,2,2016-07-06,0.05,1,0 +927597,(2) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75444,-73.83057,Private room,76,1,75,2017-01-01,1.0,2,0 +3278631,Private Bedroom Available June 1,16572957,Hope,Manhattan,East Harlem,40.8008,-73.94346999999999,Private room,130,1,3,2015-06-06,0.05,1,0 +10017087,Classic Murray Hill 1 Bedroom Apartment (64),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74677,-73.97846,Entire home/apt,125,30,4,2017-12-16,0.11,31,111 +8170276,Beautiful 2BR Apt in UES NYC,43119699,Shea,Manhattan,Upper East Side,40.78222,-73.94791,Entire home/apt,100,1,1,2015-09-09,0.02,1,0 +12844709,comfy bedroom in williamsburg,2238348,Abigail,Brooklyn,Williamsburg,40.71311,-73.94015999999999,Private room,42,8,0,,,1,0 +29417325,"Classic, yet Unconventional Tribeca New York City!",221595358,Karen,Manhattan,Tribeca,40.71904,-74.00856999999999,Private room,149,1,32,2019-06-30,3.86,2,317 +16390105,Cozy 1 bedroom in the heart of Fort Greene,2455580,Ithai,Brooklyn,Fort Greene,40.68529,-73.97365,Entire home/apt,225,3,0,,,1,0 +19325562,Private Room in East Village Apartment,119968055,Michelle,Manhattan,East Village,40.72706,-73.98583,Private room,100,1,0,,,1,0 +28861629,Comfort and Charm in Harlem with a View!!!,138957777,Azarii,Manhattan,East Harlem,40.80226,-73.93734,Private room,83,2,25,2019-06-24,2.69,1,161 +18485487,"Sunny, Spacious, Private Room Close to Train!",3083244,Melody,Manhattan,Washington Heights,40.83716,-73.94048000000001,Private room,37,7,1,2017-05-25,0.04,1,0 +20111383,Cozy comfortable Apartment Share with Sleeper Sofa,18547000,Rusty,Queens,Astoria,40.77037,-73.92416999999999,Shared room,60,3,28,2019-07-07,2.26,1,248 +34490377,"Accessible room with Roll-In Shower, Times Square",260639745,Manhattan At Times Square,Manhattan,Theater District,40.7627,-73.98437,Private room,100,1,4,2019-07-07,4.0,15,359 +3442067,Spacious Studio in Luxury Building,17198795,Julie,Manhattan,Upper East Side,40.78284,-73.94825,Entire home/apt,255,2,1,2015-09-28,0.02,1,341 +13544023,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75726,-73.96177,Entire home/apt,220,30,0,,,87,188 +21476604,Entire 1 bed Apt by Central/Morningside Park,12216173,Fan,Manhattan,Harlem,40.80543,-73.95739,Entire home/apt,150,1,21,2019-06-21,1.14,1,2 +7788565,Home 4 Medical Professionals-Wykof4,26377263,Stat,Brooklyn,Bushwick,40.70468,-73.91935,Private room,47,30,0,,,43,257 +25683401,Gorgeous Sunny Studio step away from Central Park,63266842,Lily,Manhattan,Upper East Side,40.76996,-73.9576,Entire home/apt,138,2,57,2019-07-05,4.44,1,1 +7597750,"One person, cozy room, real bed. 20 min to city!!!",26388084,Barbara & Andrzej,Queens,Long Island City,40.75037,-73.91265,Private room,59,4,28,2019-06-29,0.59,2,364 +35800352,"close to LGA, JFK LIRR , (private parking)",26802715,Wu,Queens,Flushing,40.7664,-73.8227,Private room,49,4,0,,,2,63 +28978510,Quite 1 Bedroom Apartment near EBS,211549023,Studioplus,Manhattan,Midtown,40.74822,-73.9873,Entire home/apt,240,2,14,2019-06-22,1.95,13,279 +34207474,Good Day New York - Sunny Single,252604696,Erin,Manhattan,Chelsea,40.7494,-73.99519000000001,Private room,149,1,0,,,20,359 +646147,Private rooms on a XLarge 3 br 2 baths,352230,Andrea,Manhattan,Harlem,40.82732,-73.95111999999999,Private room,145,3,39,2016-12-08,0.47,1,44 +16617542,Peaceful Bedroom with private balcony in LES,19053159,Nikki,Manhattan,Lower East Side,40.71875,-73.98349,Private room,60,2,2,2018-03-21,0.12,1,0 +32943558,"TAO's Cozy Empire in Brooklyn, NY (One Female)",205151601,Thomas,Brooklyn,Crown Heights,40.6745,-73.92612,Private room,60,30,0,,,1,126 +14699186,Spacious 1 bedroom with Private Deck with Grill,31483654,Marcus,Brooklyn,Kensington,40.64535,-73.9738,Entire home/apt,100,3,2,2016-11-15,0.06,1,0 +15774266,Private modern suite in tree lined Windsor Terrace,102016115,Elizabeth,Brooklyn,Windsor Terrace,40.65131,-73.97865999999999,Private room,125,2,89,2019-06-23,2.78,1,310 +17220307,"Designer's picturesque, large flat",115946844,Kelsey,Brooklyn,Brooklyn Heights,40.69819,-73.99324,Entire home/apt,103,2,13,2017-12-30,0.45,1,0 +23377961,Amazing new private bedroom 5 min to subway,174261493,Sophie & Max,Brooklyn,Midwood,40.61204,-73.95501,Private room,99,2,31,2019-06-02,1.9,2,0 +35275591,"Entire Loft, Sunny 2 BR in Brooklyn Navy Yard",51179270,Jirka,Brooklyn,Clinton Hill,40.69704,-73.96704,Entire home/apt,78,7,0,,,1,17 +20152264,"Spacious, cozy, fully equipped apartment with AC",10461088,Noam,Brooklyn,Carroll Gardens,40.6831,-73.99945,Entire home/apt,180,4,0,,,1,0 +34894405,Luxurious apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79328,-73.96817,Entire home/apt,250,31,0,,,3,347 +3643392,Relaxed Elegance in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.93245999999999,Private room,69,2,56,2019-07-02,0.95,7,66 +13712266,Large Private Sun Drenched Bedroom in Ridgewood,69001602,Eugene,Queens,Ridgewood,40.70605,-73.89928,Private room,48,2,6,2018-05-13,0.17,1,0 +23275013,Dope Apt,756577,Jason,Brooklyn,Greenpoint,40.71859,-73.95284000000001,Entire home/apt,100,90,0,,,1,0 +24700984,Contemporary Home in the Heart of Bed-Stuy,52575889,Elissa,Brooklyn,Bedford-Stuyvesant,40.68957,-73.94445,Entire home/apt,115,3,9,2019-01-30,0.63,1,0 +22463757,"Bright 3 Bedroom, Garden, 2 Full Bathrooms",31176801,Nima,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95796,Entire home/apt,170,6,23,2019-05-24,1.42,1,190 +31885791,Room in East Harlem,8754633,Aleksei,Manhattan,East Harlem,40.79865,-73.93638,Private room,65,2,8,2019-06-30,2.79,1,8 +3985673,NYC Artists Loft in Chelsea,6337882,Michael,Manhattan,Chelsea,40.75319,-74.00159000000001,Entire home/apt,300,2,11,2019-05-20,0.19,1,137 +11754456,Amazing 2 BR in SOHO,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72815,-74.00111,Entire home/apt,165,30,7,2019-05-14,0.28,91,142 +21755710,Your comfy abode in Brooklyn,15811194,Gerry,Brooklyn,Brownsville,40.67322,-73.91018000000001,Private room,49,3,30,2019-05-20,1.62,1,62 +16228505,Clean and Cozy Room in Meatpacking District,21422835,Kate,Manhattan,Chelsea,40.74383,-74.0034,Private room,120,3,0,,,1,0 +10875244,Funky apartment,56342651,Valeria,Manhattan,Upper West Side,40.803,-73.96459,Entire home/apt,150,1,0,,,1,0 +36442252,1B-1B apartment near by Metro,273841667,Blaine,Bronx,Mott Haven,40.80787,-73.92399999999999,Entire home/apt,100,1,2,2019-07-07,2.0,1,40 +22067826,Home Away From Home,161184313,Kristina,Brooklyn,Greenpoint,40.72977,-73.9525,Private room,80,5,19,2019-06-15,1.28,2,95 +7095783,"Charming , sweet , and cozy Manhattan apartment.",9819284,Alexis,Manhattan,Upper East Side,40.76533,-73.96163,Entire home/apt,270,4,44,2019-07-02,0.92,1,335 +11739071,XL Corporate 1 BR - Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75639,-73.96593,Entire home/apt,142,30,3,2019-05-31,0.19,91,357 +9710620,1-bed Apt in Crown Heights,7027191,Matthew,Brooklyn,Crown Heights,40.6773,-73.95000999999999,Entire home/apt,84,10,2,2017-01-22,0.05,1,0 +36001938,Spacious 2BR Manhattan/NYC apt. Mins. to time sq.,55711801,Le,Manhattan,Harlem,40.82297,-73.94882,Entire home/apt,139,1,0,,,1,29 +19567443,10th btw 5/6 Ave - A special place in Park Slope,50755667,Kyla,Brooklyn,South Slope,40.66837,-73.98649,Entire home/apt,200,2,83,2019-06-16,3.51,3,201 +23106220,1min from the station K size bed 20min toManhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95541,Private room,70,1,53,2019-06-24,3.29,7,264 +21736682,NEW CHARMING 1BR in Prospect/Lefferts Garden,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.66112,-73.9539,Entire home/apt,110,12,2,2018-11-10,0.17,4,6 +27281620,Trendy & Private Bedroom in Williamsburg! 2-1,204527108,Nina,Brooklyn,Williamsburg,40.71796,-73.957,Private room,87,30,2,2019-06-30,2.0,3,310 +9943258,Cozy studio in Upper West Side,20765208,Martina,Manhattan,Upper West Side,40.78148,-73.97869,Entire home/apt,140,4,0,,,1,0 +10513228,Beautiful room in HUGE 2 bedroom loft style apt,853118,Felix,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.92059,Private room,64,4,25,2019-05-27,0.59,1,18 +5093174,flexible 1BD LIVE/ WORK space BK,17312709,Matthew,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94719,Entire home/apt,140,5,4,2015-06-06,0.08,1,0 +26121733,Modern Apartment in The Heart of Brooklyn,24545739,Ewa,Brooklyn,Bedford-Stuyvesant,40.68824,-73.92376999999999,Private room,65,4,5,2018-11-26,0.39,1,0 +22401504,Charming Private Brooklyn Apartment,163855521,Judith,Brooklyn,East New York,40.6762,-73.87935999999999,Entire home/apt,99,3,66,2019-07-01,3.55,1,254 +1716441,Large sunny room queen bed &balcony,153494,Amikole,Manhattan,Lower East Side,40.71906,-73.9845,Private room,96,1,274,2019-06-29,3.94,1,145 +20659824,☺Kinda feels JUST LIKE HOME! ☺ [BEST RATE],142590597,Joica,Brooklyn,East New York,40.67262,-73.87391,Private room,50,1,3,2018-09-03,0.13,6,179 +30437968,Beautiful one bed in the best part of Brooklyn,52575295,Jonny,Brooklyn,Williamsburg,40.71972,-73.95705,Entire home/apt,295,5,3,2019-06-22,0.49,1,46 +35711402,Amazing Brooklyn 1Bd with Private Balcony,12061757,Taaj,Brooklyn,Brownsville,40.67511,-73.90836,Entire home/apt,100,2,0,,,1,53 +3556241,Private Bamboo Garden Studio,636319,Roger,Brooklyn,South Slope,40.66252,-73.98433,Entire home/apt,150,2,0,,,1,0 +22165797,Brooklyn beautiful big room!,60365315,Mary,Brooklyn,Sheepshead Bay,40.60475,-73.95987,Private room,45,7,0,,,1,0 +13262935,Lovely large bedroom in Brownstone (garden),9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94636,Private room,60,2,9,2018-01-17,0.24,2,0 +15781578,Bedstuy Brooklyn Huge Bed Room with Two Windows,102075715,Juan Carlos,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95224,Private room,80,1,1,2019-06-30,1.0,1,350 +13822434,Private Room in Hamilton Heights,14078461,Emma,Manhattan,Harlem,40.82421,-73.95425999999999,Private room,40,7,1,2016-08-02,0.03,1,0 +13764772,1br in Beautiful 2br-Prime location (LIC/Astoria),24295412,Shaheen,Queens,Astoria,40.75818,-73.92513000000001,Private room,30,6,0,,,1,0 +14747893,"HUGE ROOM,PRIVATE BATH FORT GREENE/CLINTON HILL",91909024,Jason,Brooklyn,Clinton Hill,40.68548,-73.96625,Private room,80,4,2,2016-11-07,0.06,1,0 +32541389,LUXURY 2 BR ON E 18th ST IN GRAMERCY PARK-DOORMAN,200380610,Pranjal,Manhattan,Gramercy,40.73512,-73.98614,Entire home/apt,235,30,0,,,65,242 +4168660,Northside Williamsburg Private Bdrm,20979241,Amy,Brooklyn,Williamsburg,40.72022,-73.96055,Private room,60,3,5,2016-05-19,0.1,1,0 +34935198,"Modern Studio- Midtown, Hell’s Kitchen",47187850,Matthew,Manhattan,Hell's Kitchen,40.76113,-73.99504,Entire home/apt,200,3,1,2019-07-01,1.0,1,0 +36399640,Queen size bed in long island city,32392762,奕竹,Queens,Long Island City,40.74723,-73.94098000000001,Shared room,45,1,0,,,1,15 +28253482,Artsy Brooklyn Apartment,4601788,Heather Marie,Brooklyn,Flatbush,40.644020000000005,-73.96489,Private room,50,1,5,2018-12-02,0.53,1,0 +8335539,Comfy bed in a beautiful apartment!,12720552,Julie,Brooklyn,Bushwick,40.69902,-73.93101999999999,Shared room,50,1,5,2019-06-25,0.11,5,365 +393016,Your Times Square Sanctuary,1303029,Kristina,Manhattan,Hell's Kitchen,40.76013,-73.99006999999999,Private room,104,2,133,2019-05-05,1.51,1,147 +14959206,Cozy Modern Townhouse Studio Williamsburg BK,41177070,Dennis,Brooklyn,Williamsburg,40.712790000000005,-73.94443000000001,Entire home/apt,145,3,96,2019-06-26,2.87,2,0 +20619757,Bed Stuy Renovated Gem,123849755,Gabe,Brooklyn,Bedford-Stuyvesant,40.68303,-73.95430999999999,Entire home/apt,130,3,58,2019-06-18,2.63,1,295 +6603534,Private Small Grey Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.93473,Private room,30,1,107,2019-06-15,2.18,5,345 +27127722,Suite 18 - Cozy room w/ Private Bathroom,99296570,Daisy,Brooklyn,Brighton Beach,40.57987,-73.95889,Private room,65,1,43,2019-05-27,3.82,5,283 +31101102,Quarto espaçoso perto de Manhattan!,190389545,Andressa,Queens,Long Island City,40.75408,-73.94098000000001,Private room,48,2,21,2019-04-24,3.25,2,0 +14370793,Modern Brooklyn oasis (PRIVATE ROOM),20309640,Rameera,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.94299000000001,Private room,125,1,1,2016-09-17,0.03,1,87 +32066991,Studio to yourself! In artsy bushwick railroad apt,33386742,Jayme,Brooklyn,Williamsburg,40.70298,-73.93834,Private room,80,1,0,,,1,5 +35033921,"Shared,Cozy Room İn Times Square 6",263880607,Ahmet,Manhattan,Hell's Kitchen,40.76509,-73.98795,Shared room,77,1,3,2019-07-01,2.0,7,365 +55668,"NOHO/EAST VILLAGE, PRIVATE 1/2 BATH",88209,Jason,Manhattan,NoHo,40.72773,-73.99134000000001,Private room,130,2,115,2018-12-05,1.17,1,75 +35379882,Central Park West Apartment King,266341812,Sophia,Manhattan,Upper West Side,40.79147,-73.96644,Private room,99,14,0,,,1,87 +9925760,300sqft Bedroom in LES Duplex,51021121,Brian,Manhattan,Lower East Side,40.7202,-73.98284,Private room,120,1,1,2015-12-30,0.02,1,0 +5025771,Full Prospect Heights Brownstone!,630519,Alex,Brooklyn,Prospect Heights,40.67676,-73.96683,Entire home/apt,288,1,2,2016-01-03,0.05,1,0 +33374241,"A home away from home, You will be at home.",203569485,Shanice,Brooklyn,Flatbush,40.63481,-73.95926999999999,Private room,70,1,0,,,1,311 +3463385,Gorgeous room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76717,-73.95532,Private room,95,1,202,2019-05-27,3.31,2,263 +26981567,Queens New York 2 bedroom apartment,22780462,Mark,Queens,Kew Gardens Hills,40.72048,-73.81458,Entire home/apt,139,4,6,2019-05-21,0.58,2,282 +22929942,Spacious 1 Bed in Prime Williamsburg (big balcony),25339875,Rotem,Brooklyn,Greenpoint,40.72017,-73.95352,Entire home/apt,140,6,0,,,1,0 +32845131,"Modern, Private Bedroom in East Harlem",74205904,Carly,Manhattan,East Harlem,40.79368,-73.94294000000001,Private room,75,2,3,2019-05-05,0.89,1,0 +34977363,Cozy Studio Midtown East,49646933,Ines,Manhattan,Midtown,40.75375,-73.97416,Entire home/apt,190,3,1,2019-07-01,1.0,1,165 +32315112,TWO BEDROOM APARTMENT IN BEAUTIFUL BED-STUY,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94483000000001,Entire home/apt,100,3,4,2019-06-30,1.04,3,6 +15021635,Cute private bedroom in Bushwick. Close to subway.,61140228,Nadia,Brooklyn,Bushwick,40.7005,-73.9144,Private room,75,2,2,2018-12-22,0.29,1,0 +8078896,Upscale Studio Apt in NYC'S Theatre District!,30283594,Kara,Manhattan,Theater District,40.76145,-73.98555999999999,Entire home/apt,203,30,0,,,121,365 +26992139,Marsha INN,155668897,Nicola,Queens,Jamaica,40.66726,-73.78666,Private room,70,5,43,2019-06-25,3.61,2,365 +10297582,Sunny and huge room in Astoria!,52973925,Alexis,Queens,Astoria,40.75619,-73.91881,Private room,66,1,0,,,1,0 +9691204,Spacious / Garden Condo Ft. Greene,50053165,Carina,Brooklyn,Fort Greene,40.68574,-73.97045,Entire home/apt,185,1,1,2015-12-31,0.02,1,0 +15621557,Bedroom w/ own bathroom & backyard in Bushwick!,6433320,Daniel,Brooklyn,Bushwick,40.69907,-73.92115,Private room,40,5,0,,,1,0 +13395329,Garden Flat Next to Central Park w/ Large Terrace,71679540,Brook,Manhattan,Morningside Heights,40.80273,-73.95924000000001,Private room,89,1,131,2019-07-04,3.62,1,165 +2628191,Charming Cozy Cool 2BR Apartment. ,12360441,Angel,Bronx,Co-op City,40.86646,-73.82154,Private room,80,3,2,2015-10-13,0.03,1,365 +22856025,Newly Renovated Guest Room with Private Bath,34635838,Madeline,Staten Island,Bull's Head,40.60295,-74.17116999999999,Private room,25,1,34,2019-05-16,2.06,2,0 +448048,"1 BR, Book it 1st then write me",1267021,Sharma,Queens,Jackson Heights,40.75193,-73.87873,Private room,75,5,30,2019-05-24,0.37,3,180 +31315991,Large Williamsburg room,195650850,Jasmine,Brooklyn,Williamsburg,40.71218,-73.94615999999999,Private room,60,3,1,2019-03-30,0.3,1,0 +31641160,Marsha Inn,155668897,Nicola,Queens,Jamaica,40.66678,-73.78361,Private room,80,14,6,2019-03-17,1.05,2,365 +32714417,"Modern, Deluxe 1 bedroom apt in prime of NYC!",30283594,Kara,Manhattan,Hell's Kitchen,40.76168,-73.9996,Entire home/apt,350,30,0,,,121,364 +35840564,Cozy 2 bedroom apt in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76595,-73.92656,Entire home/apt,215,2,2,2019-07-07,2.0,2,153 +26526269,Roosevelt Island - Hidden Gem of New York,41655831,Justin,Manhattan,Roosevelt Island,40.76506,-73.94662,Private room,99,1,2,2018-07-21,0.16,1,0 +18142927,Bright Minimalist Creative Retreat Bedroom BedStuy,69860334,DyAnna,Brooklyn,Bedford-Stuyvesant,40.69307,-73.95254,Private room,40,3,1,2017-05-02,0.04,1,0 +15286645,Newly Renovated Studio Near Manhattan,97300191,Zia,Queens,Woodside,40.74767,-73.90720999999999,Entire home/apt,110,2,9,2017-06-03,0.27,1,8 +5883655,Unique Furnished Loft Sublet,30554435,Max,Brooklyn,Greenpoint,40.72684,-73.95628,Private room,75,1,0,,,1,0 +7951346,Cozy Room with private balcony close to La Guardia,7057608,Andres And Salina,Queens,East Elmhurst,40.75712,-73.89365,Private room,42,2,25,2019-07-06,0.54,1,283 +33930602,Your New Private Bedroom Awaits! Near Good Transit,242962235,Yuval,Queens,Ridgewood,40.70897,-73.89663,Private room,34,30,0,,,23,335 +118430,Heart of Meatpacking & Chelsea,585458,Paul,Manhattan,Chelsea,40.74412,-74.00208,Private room,290,2,35,2019-01-03,0.36,1,20 +30131426,Private Williamsburg Co-living Room Madison 3L-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68765,-73.93208,Private room,42,30,1,2019-06-16,1.0,27,339 +19700871,~ Chic and open 2 bedroom Brooklyn Apartment ~,41963149,Carolyn,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95119,Entire home/apt,170,1,1,2017-07-16,0.04,1,0 +30527900,Amazing large 1BR Brand New quiet moderm Charm!!!!,52671461,Andrea,Manhattan,Kips Bay,40.73963,-73.98002,Entire home/apt,200,2,5,2019-04-20,0.72,2,338 +5626601,Easy Tourist resting place!,29161738,Gerardo,Manhattan,Harlem,40.82855,-73.94745,Private room,55,1,7,2016-06-12,0.18,1,0 +4085647,Cozy and Convenient – Spacious 1 Bedroom Apartment,21145652,Kathisha,Brooklyn,East New York,40.65741,-73.87854,Entire home/apt,110,3,9,2018-12-21,0.16,1,36 +21716772,Large private room close to subway station,52889093,Kamyar,Bronx,Kingsbridge,40.88302,-73.90899,Private room,70,1,8,2018-05-24,0.43,1,0 +26000019,1Bedroom 15min Train ride to the Heart of NEW YORK,195419830,Brígida,Manhattan,Washington Heights,40.837990000000005,-73.94036,Private room,50,2,43,2019-06-23,3.42,1,134 +8843995,Charming and Artsy Studio Apartment,46314409,Jake And Catharine,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93268,Entire home/apt,100,3,151,2019-06-29,3.32,1,105 +34142194,QUIET SPACIOUS BEDROOM IN THE HEART OF MANHATTAN,48711094,Alex,Manhattan,Midtown,40.74607,-73.98371999999999,Private room,95,2,10,2019-06-23,4.55,1,0 +18763188,Luxe Penthouse with Terrace/Upper West Side,169653,Terry,Manhattan,Upper West Side,40.80005,-73.9701,Entire home/apt,295,3,3,2019-06-22,0.27,1,0 +25007742,Postmodern Studio,189047392,Dylan,Brooklyn,Clinton Hill,40.69047,-73.9605,Private room,97,1,23,2019-06-03,1.68,1,189 +32845716,3 Bedroom Artist Loft in Williamsburg Prime,1019963,Renzo,Brooklyn,Williamsburg,40.71565,-73.95837,Entire home/apt,223,2,17,2019-07-03,4.47,1,310 +30393921,"Chic Central Chelsea 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73854,-73.99695,Entire home/apt,347,30,0,,,232,7 +3554599,"Great Apartment, Great Location",3902832,Elizabeth,Brooklyn,Greenpoint,40.7322,-73.95881999999999,Private room,80,3,0,,,1,0 +34844071,SWEET STUDIO 4 BLOCKS FROM THE BEACH! 15min to NYC,56306339,Al,Staten Island,Midland Beach,40.57503,-74.09523,Entire home/apt,61,5,0,,,1,290 +9400570,Be comfortable in Harlem,48489264,Claudio,Manhattan,Harlem,40.81443,-73.94121,Entire home/apt,121,30,0,,,1,0 +30394018,"Sleek Wall St. 1BR w/ Lux gym, Doorman, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70513,-74.009,Entire home/apt,271,30,0,,,232,234 +17239807,Private entrance large room BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67203,-73.922,Private room,45,2,18,2018-06-04,0.63,5,0 +11603201,"1 bedroom in Astoria, Queens",7982432,Joe,Queens,Long Island City,40.76485,-73.93959,Private room,65,1,1,2016-04-18,0.03,1,0 +27298901,SPACIOUS 2BR 2BATH IN THE HEART OF YORKVILLE,200380610,Pranjal,Manhattan,Upper East Side,40.7732,-73.95029,Entire home/apt,340,30,0,,,65,364 +13641625,Private rooms in beautiful apartment on UWS,26621764,Marit,Manhattan,Morningside Heights,40.80534,-73.96654000000001,Private room,150,1,0,,,1,0 +19438593,Winterbreak in Brooklyn!,136285608,Giada,Brooklyn,Bushwick,40.68919,-73.91719,Private room,50,10,1,2018-12-21,0.15,1,0 +13262082,Private BR in sunny East Village 2BR,18056150,Mark,Manhattan,East Village,40.72954,-73.98841999999999,Private room,100,1,1,2016-06-25,0.03,1,0 +29628,Sunny Room in New Condo,127608,Chris,Brooklyn,Clinton Hill,40.68414,-73.96351,Private room,89,3,260,2019-07-03,2.35,1,278 +13771529,"Beautiful, Clean, Private & Chic furnished Apt.",73717067,Nichole,Manhattan,Harlem,40.82661,-73.94165,Entire home/apt,100,4,6,2019-07-01,0.17,1,27 +12561615,Stunning Bedroom in Midtown East,68094755,Athena,Manhattan,Midtown,40.757090000000005,-73.96327,Private room,98,3,98,2019-07-03,2.66,1,278 +4637858,Chic apartment in Brooklyn with stunning view,5552587,Chris,Brooklyn,Bedford-Stuyvesant,40.69492,-73.95839000000001,Private room,99,5,14,2017-09-25,0.25,1,306 +19247214,Spacious Bedroom in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72717,-73.98643,Private room,180,1,28,2019-06-24,1.17,7,328 +20674176,Nice room midtown Manhattan 6rs,133130315,Artem,Manhattan,Hell's Kitchen,40.76506,-73.98567,Private room,70,3,6,2019-01-03,0.41,6,225 +1912357,"Brooklyn apt, hip hood, with a view",9921108,Amy,Brooklyn,Crown Heights,40.67801,-73.96106,Entire home/apt,83,7,2,2014-10-14,0.03,1,0 +12542909,Huge 800 sq ft 1 bedroom apt,67758079,Janelle,Queens,Sunnyside,40.74706,-73.92076,Entire home/apt,100,1,1,2016-05-10,0.03,1,0 +14010200,"Scandinavean design in Crown Heights, BK",1683437,Boram,Brooklyn,Crown Heights,40.66477,-73.9506,Entire home/apt,89,5,9,2018-05-28,0.25,1,0 +1534212,Great studio with 2 rooms and kitchen,7365834,Alex,Brooklyn,Sheepshead Bay,40.58426,-73.95949,Entire home/apt,99,3,66,2019-05-27,1.05,5,365 +19332077,The hipster apartment in the hipster borough,4298040,Jon,Brooklyn,Fort Greene,40.69211,-73.97224,Private room,125,4,0,,,1,0 +16674839,Cozy East Village Apartment Room.,110326109,Jenna,Manhattan,East Village,40.72423,-73.97885,Private room,75,1,0,,,1,0 +23200628,Cozy & Comfortable Modern Apartment,3792602,Andre,Manhattan,Harlem,40.8298,-73.93984,Private room,65,2,25,2019-05-21,1.5,1,30 +35385167,Luxurious living in heart of Astoria,266384408,Maria,Queens,Astoria,40.76438,-73.91419,Entire home/apt,225,2,1,2019-07-03,1.0,1,279 +8187719,Location au coeur de Brooklyn!,6898461,Marie,Brooklyn,Bushwick,40.70511,-73.91755,Private room,45,1,0,,,1,0 +30708251,Prime Williamsburg water front modern one-bed,13977477,Courtney,Brooklyn,Williamsburg,40.71643,-73.96443000000001,Entire home/apt,99,5,5,2019-06-02,0.81,1,0 +33666359,Private Entrance Spacious 5 BD Apartment Manhattan,197792014,Danny,Manhattan,Washington Heights,40.84467,-73.93549,Entire home/apt,280,2,23,2019-07-02,8.31,1,215 +19015592,"Spacious, Quiet, Cozy Art-Filled Chelsea Apartment",22221213,George,Manhattan,Chelsea,40.74183,-73.99878000000001,Entire home/apt,350,2,10,2019-06-23,0.72,1,104 +23668747,Deluxe Apartment Fith Ave View #89,177174475,Alberto,Manhattan,Midtown,40.74643,-73.98729,Entire home/apt,163,1,8,2019-03-27,0.57,17,239 +31191752,Large and centrally located Brooklyn room w/ Roof!,31764367,Tyler,Brooklyn,Bedford-Stuyvesant,40.69019,-73.9248,Private room,60,2,2,2019-07-06,2.0,1,151 +29544793,LUXURY 3BDRM 2BTH Sleeps 10 PPL 30 min to Midtown,222461823,Youssef,Queens,Astoria,40.75862,-73.91096999999999,Entire home/apt,349,2,27,2019-07-04,3.29,1,303 +33012494,RAVENWOOD: Modern Hipster Retreat in Williamsburg,196273418,Collen,Brooklyn,Williamsburg,40.7194,-73.95899,Private room,89,2,0,,,1,305 +34723211,"Quiet, luxury 1BR--15minutes to Manhattan!",12898160,Sapna,Bronx,Riverdale,40.88523,-73.91230999999999,Entire home/apt,90,30,0,,,1,55 +21363936,Spacious Apartment in the Heart of Williamsburg,4547593,Hunter,Brooklyn,Williamsburg,40.71982,-73.95569,Entire home/apt,120,5,0,,,1,0 +303345,The best studio in town,1561505,Ibrahima,Manhattan,East Harlem,40.79596,-73.94463,Entire home/apt,90,3,51,2019-05-04,0.57,1,311 +18523182,Cozy private room in a two-bedroom apartment,57060982,Carolina,Brooklyn,Bedford-Stuyvesant,40.68473,-73.94799,Private room,58,1,17,2019-05-26,0.65,1,0 +16248277,Cozy and classic home,106233552,Coco,Queens,East Elmhurst,40.76652,-73.86650999999999,Entire home/apt,239,3,12,2019-05-27,0.55,2,266 +30131250,Private Bushwick Bedroom Madison 3L-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.6877,-73.93146,Private room,42,30,2,2019-05-11,0.47,27,353 +33290753,Luxury Apartment with Balcony,18254321,Mj,Manhattan,Hell's Kitchen,40.75617,-73.99824,Private room,200,4,1,2019-04-28,0.41,1,22 +25032319,Cozy Convenient 2-Bed GARDEN APT w/Central Heat/AC,30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68778,-73.90748,Entire home/apt,99,3,34,2019-06-21,2.58,2,119 +57468,"Modern, Large East Village Loft",239208,Ori,Manhattan,East Village,40.72821,-73.98701,Entire home/apt,189,3,205,2019-06-23,1.96,1,0 +10660249,Cute Apartment in Hell's Kitchen,55062858,Jennifer,Manhattan,Hell's Kitchen,40.75645,-73.99404,Entire home/apt,200,1,207,2019-06-23,5.01,1,245 +25485201,West Village Pied-à-Terre,8050394,Robert,Manhattan,West Village,40.73308,-74.00456,Entire home/apt,157,2,4,2018-09-09,0.3,1,0 +6221877,Brooklyn Zen Gem w/Personal Balcony,31675601,Sophie,Brooklyn,Bay Ridge,40.62672,-74.02802,Private room,65,30,56,2018-09-02,1.14,4,208 +957642,Large bedroom/Heart of Brooklyn,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.66167,-73.95098,Private room,49,5,114,2019-06-09,1.49,3,323 +17944219,"Cozy bedroom, one block from Subway",10744966,Moza,Manhattan,Upper East Side,40.77243,-73.95744,Private room,300,2,10,2017-09-02,0.4,1,0 +30031841,Private room with awesome Manhattan view,225618164,Sergii,Brooklyn,Gowanus,40.68155,-73.98947,Private room,79,30,0,,,3,365 +20970017,The Real B&B Home,89715420,J. Beverly,Brooklyn,Canarsie,40.64399,-73.89315,Entire home/apt,85,7,11,2018-09-22,0.64,1,1 +4261214,Cozy place in Uptown Manhattan,22022473,Gita,Manhattan,Harlem,40.80936,-73.94454,Entire home/apt,149,2,82,2019-06-05,1.43,1,215 +14237346,Cozy room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67824,-73.96966,Private room,55,1,102,2019-06-27,2.98,13,281 +2260595,4RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72959,-73.98111999999999,Entire home/apt,112,30,22,2019-05-11,0.34,6,244 +36379540,Gorgeous brand new Studio Apt 5 min from Manhattan,48434623,Mariana,Queens,Long Island City,40.75267,-73.93028000000001,Entire home/apt,85,20,0,,,1,51 +328040,"Awesome views, Central location",1676487,Robyn,Manhattan,Midtown,40.75023,-73.98293000000001,Entire home/apt,299,10,19,2019-06-11,0.27,1,101 +5168749,LIC Super Sunny & Spacious 1BR Apt,10433019,Serene,Queens,Long Island City,40.74401,-73.95094,Entire home/apt,135,30,3,2019-06-30,0.06,1,231 +35256322,"Basic Brooklyn +Safe/Clean/Easy +Accomadations",3199313,A Tree Grows In Brooklyn,Brooklyn,Prospect-Lefferts Gardens,40.66459,-73.96629,Private room,86,2,0,,,1,179 +26355413,Stunning Apartment in Heart of Williamsburg,46370836,Joey,Brooklyn,Williamsburg,40.7197,-73.95745,Entire home/apt,209,3,3,2018-10-03,0.24,1,0 +34543734,Luxurious Doorman Building-2 Bedroom-Lincoln C-Gym,232596712,Jessica,Manhattan,Upper West Side,40.77791,-73.98043,Entire home/apt,275,30,0,,,6,301 +12687169,Sunny bedroom in gorgeous ParkSlope,49024977,Shelby,Brooklyn,Park Slope,40.67687,-73.97848,Private room,80,1,2,2016-06-05,0.05,1,0 +36266960,Cozy bedroom in a great Apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66662,-73.9936,Private room,51,1,0,,,3,333 +28220182,New Charming 1 Bedroom Oasis Apartment,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.662490000000005,-73.95311,Entire home/apt,85,7,6,2019-01-30,0.62,4,0 +18669801,Huge Private Room in New York 10minute to Midtown,119952908,Meja Hilde,Queens,Long Island City,40.75172,-73.9379,Private room,69,1,3,2017-05-30,0.12,1,0 +16417951,Cozy modern sunny room for 2,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67525,-73.93333,Private room,52,2,123,2019-06-17,4.01,4,332 +10545027,Clinton Hill - pied-à-terre,54378184,Eej,Brooklyn,Clinton Hill,40.68895,-73.96489,Entire home/apt,220,12,13,2019-06-08,0.31,3,354 +15356132,1 RM in 3BR Brownstone: Quiet Upper East Side St.,16390627,Danny,Manhattan,Upper East Side,40.7723,-73.94745999999999,Private room,55,8,1,2018-01-01,0.05,1,0 +15301966,Bright and modern 1 BR in Williamsburg w/balcony,39054866,Kevin,Brooklyn,Williamsburg,40.71238,-73.96279,Entire home/apt,160,3,1,2016-10-09,0.03,1,0 +6107592,Private Room in a Shared Apt by Columbia Univ,30080463,Barbi,Manhattan,Harlem,40.80226,-73.94976,Private room,101,3,65,2019-06-22,1.28,1,138 +23344243,Zen very well located in Chelsea studio,62745867,Tatiane,Manhattan,Chelsea,40.73981,-74.00031,Entire home/apt,146,7,3,2018-12-14,0.21,1,353 +20743305,"Luxury room w/ balcony, 5 mins to subway",11300359,Maya,Brooklyn,Bushwick,40.69954,-73.93579,Private room,60,5,6,2019-04-16,0.27,1,13 +9920626,Gorgeous 2BD LES Apartment,36054372,Camille,Manhattan,Chinatown,40.71401,-73.99063000000001,Entire home/apt,180,1,0,,,1,0 +15647980,"CLEAN, PRIVATE ROOM CLOSE TO THE CITY AND JFK.",100970583,Maria,Queens,Woodhaven,40.687740000000005,-73.8593,Private room,50,4,82,2019-06-11,2.52,2,215 +16772578,Cozy sunny NYC/BK view,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67356,-73.9321,Private room,52,2,101,2019-06-24,3.4,4,329 +2663296,Spacious One Bedroom in Gramercy ,13632182,Natalie,Manhattan,Gramercy,40.73657,-73.98019000000001,Entire home/apt,200,3,6,2016-08-13,0.09,1,0 +9733280,"Quiet, 1 Bedroom, Patio, Gramercy",11763414,Ashley,Manhattan,Gramercy,40.73606,-73.98241999999999,Entire home/apt,149,7,13,2018-04-03,0.33,1,0 +20193790,✮ Gateway to the Boroughs ✮ Spacious Home Base ✮,143796248,Robert,Brooklyn,Williamsburg,40.71029,-73.95148,Private room,90,1,1,2017-08-06,0.04,1,0 +35519038,3 Bedroom house in 2 family house.,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92527,Entire home/apt,190,1,1,2019-06-16,1.0,2,311 +8861269,Harlem Vacation Rental,9933134,Darryl,Manhattan,Harlem,40.80519,-73.94974,Entire home/apt,170,4,28,2019-06-18,0.82,1,364 +14733932,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69568,-73.93384,Private room,50,30,97,2019-05-04,2.79,4,312 +12365836,Beautiful 2 bedroom Duplex Apartment,35660592,Luis,Queens,Maspeth,40.73976,-73.8954,Private room,169,3,27,2019-05-18,0.78,6,256 +30348624,Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66272,-73.76849,Entire home/apt,89,1,88,2019-07-06,12.05,2,253 +33873570,Lexi's Global Retreat in Flatbush! (New Host!!),255787023,Anderson,Brooklyn,East Flatbush,40.64418,-73.92556,Private room,125,1,11,2019-06-27,4.58,1,29 +4917122,Beautiful 1 br Williamsburg apt,4445005,Jamaal,Brooklyn,Williamsburg,40.71281,-73.9657,Entire home/apt,200,2,3,2018-08-30,0.1,1,16 +4868150,Gorgeous quiet & central NYC apt!,3336995,Tamara,Manhattan,Hell's Kitchen,40.76736,-73.98383000000001,Entire home/apt,180,2,8,2017-09-24,0.15,1,10 +16037576,Large Private Room in Upper East Side,85294325,Phillip,Manhattan,Upper East Side,40.77128,-73.95787,Private room,80,4,19,2018-11-24,0.6,1,0 +3523001,"Lovely Tudor Home with Studio in Queens, NY",10628463,Pat & Ray,Queens,Fresh Meadows,40.75037,-73.79154,Private room,125,7,0,,,1,365 +23573326,one Bed in room,104475208,Алексей,Brooklyn,Kensington,40.63285,-73.97483000000001,Shared room,250,3,0,,,1,365 +7603716,Zen Private Bedroom in Brooklyn Gem,10831168,Jennifer,Brooklyn,Fort Hamilton,40.61926,-74.03272,Private room,70,1,15,2019-06-30,0.39,1,22 +13451599,"Bright, Spacious 1 Bedroom in the East Village",14055452,Jessica,Manhattan,East Village,40.72118,-73.98066,Entire home/apt,130,2,1,2016-08-11,0.03,1,0 +26721080,Private Room,44630233,George,Brooklyn,Williamsburg,40.7073,-73.92775999999999,Private room,20,1,8,2018-10-11,0.73,1,1 +33269801,Gorgeous queen size oasis,105762561,Kim,Queens,Jamaica,40.69008,-73.78667,Private room,85,2,12,2019-07-01,3.56,3,330 +792142,Studio Available on Upper East Side,4173419,Meredith,Manhattan,Upper East Side,40.76553,-73.96262,Entire home/apt,150,2,4,2015-06-09,0.06,1,0 +5052495,Sunny Room in Historic Williamsburg Loft,26089087,Karron,Brooklyn,Williamsburg,40.70907,-73.96396,Private room,60,1,33,2019-06-26,2.75,1,19 +18596546,Cozy 1BR Home in Upper Manhattan w/ Amenities,24338366,Daniel,Manhattan,Inwood,40.86057,-73.92907,Entire home/apt,100,1,9,2018-08-01,0.37,1,0 +3265982,"Clean design, One BD, Renovated!",16516195,Tania,Brooklyn,Park Slope,40.67766,-73.98191,Entire home/apt,90,4,22,2018-11-15,0.37,1,13 +20014141,UWS. Beautiful 1brm apartment w/ king size bed,54498900,Svetlana,Manhattan,Upper West Side,40.79271,-73.97272,Entire home/apt,170,7,4,2018-01-01,0.17,1,0 +21406504,2 bedroom close to the subway and central park.,59346339,Doug,Manhattan,East Harlem,40.78996,-73.94873,Entire home/apt,127,2,3,2017-11-20,0.15,1,0 +30718403,Local Paradise,141931484,Xie,Brooklyn,Flatlands,40.62815,-73.92898000000001,Private room,69,2,15,2019-06-29,2.2,3,329 +28604409,Sonder | Madison Ave | Convenient Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74653,-73.98481,Entire home/apt,209,29,0,,,96,250 +14195524,Lincoln Square - Upper West Side Haven,86090561,Alicia,Manhattan,Upper West Side,40.79919,-73.96249,Private room,110,1,84,2019-06-23,2.35,1,301 +27695133,Smart Home in the Heart of Harlem,102332204,Theodora,Manhattan,Harlem,40.81658,-73.93994,Entire home/apt,150,2,11,2019-06-20,2.92,1,38 +9715404,1 Bedroom in the Upper East Side,6105861,Shayan,Manhattan,Upper East Side,40.76496,-73.95801,Private room,100,1,0,,,1,0 +448049,"No Inq,Read it, 1 BR, Rt of Subway,",1267021,Sharma,Queens,Jackson Heights,40.74906,-73.89376999999999,Private room,69,7,55,2018-09-30,0.64,3,318 +20714517,Brooklyn Palace,139623237,Audra,Brooklyn,Flatlands,40.61802,-73.92866,Private room,30,2,13,2019-05-31,0.59,1,292 +35402920,Sun drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67376,-73.95815999999999,Entire home/apt,250,3,0,,,2,8 +25784814,"4 min walk to Times Square, close to everything!",193744745,Rob,Manhattan,Hell's Kitchen,40.76148,-73.99279,Private room,120,7,1,2018-07-09,0.08,1,0 +13913803,Bedroom in Clinton Hill,4310378,Autumn,Brooklyn,Clinton Hill,40.69561,-73.96269000000001,Private room,79,3,26,2019-05-30,0.75,3,362 +34396747,Double Room,95570540,Eileen,Staten Island,Oakwood,40.55908,-74.11992,Private room,65,1,1,2019-06-14,1.0,3,364 +29516374,Private Bedroom - King Size Bed,222272674,Anita,Brooklyn,Bay Ridge,40.62049,-74.02304000000001,Private room,49,1,26,2019-07-06,4.08,1,174 +29286966,Big 1BR in park adjacent apartment,630534,Brandy,Brooklyn,Flatbush,40.65026,-73.96316,Private room,196,3,5,2019-06-08,0.65,1,35 +3818187,Sunny Room in Shared Apartment,19633755,Corey,Manhattan,Upper West Side,40.79744,-73.97098000000001,Private room,95,30,2,2016-05-27,0.04,1,365 +6269968,"近地铁及市中心,干净 NYC 30 min to Manhattan",25915648,正川,Queens,Flushing,40.75717,-73.82004,Private room,37,2,128,2019-02-25,2.53,2,20 +33932981,Peaceful Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70937,-73.89702,Private room,34,30,0,,,23,192 +22247316,Brooklyn style Loft,43600815,Rafael,Brooklyn,Williamsburg,40.70481,-73.93766,Private room,50,4,0,,,2,0 +17070038,CHILLIN ON 5TH,105061915,Darlene,Manhattan,Harlem,40.80379,-73.94434,Private room,46,1,25,2019-07-01,0.97,2,91 +27197193,Soho neighborhood apartment,163482759,John,Manhattan,SoHo,40.72586,-74.00079000000001,Private room,75,1,14,2019-01-25,1.25,1,0 +24996332,Master Bedroom with Full Bath & Manhattan View,129743937,Win,Queens,East Elmhurst,40.75809,-73.8693,Private room,54,1,135,2019-07-02,9.74,2,48 +15188621,Comfortable One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67948,-73.96526,Entire home/apt,125,30,11,2019-05-21,0.34,3,87 +9217460,2 bedroom Artist's Sunny top floor Brownstone apt,19648898,Debra,Manhattan,Harlem,40.80542,-73.9455,Entire home/apt,90,3,1,2016-06-12,0.03,1,0 +741783,LOVELY 2BR West Village Apt!,3880974,Neil & Katie,Manhattan,West Village,40.73454,-74.00365,Entire home/apt,350,1,237,2018-09-16,2.96,1,0 +28461528,NEW! New York City Apartment 7 min walk to Metro!,58234433,Martin,Queens,Sunnyside,40.7359,-73.9187,Entire home/apt,260,1,15,2019-06-23,1.71,8,267 +36458668,"2beds Private Room Step to LGA, CitiFiled, Midtown",217463199,Marvy,Queens,Flushing,40.74387,-73.82556,Private room,68,3,0,,,4,362 +22436168,"Convenient and cozy room in Brooklyn, 2345 trains",22507599,Michela,Brooklyn,Crown Heights,40.67064,-73.95714,Private room,32,1,0,,,1,0 +21191264,Private bedroom in East Village,81959199,Victoria,Manhattan,Lower East Side,40.72269,-73.98862,Private room,80,3,23,2019-07-02,1.1,1,28 +6031904,Charming Room in West Village Apartment,20667334,Irene,Manhattan,West Village,40.73261,-74.00116,Private room,80,3,129,2019-06-14,2.52,1,78 +33256416,Rooftop pool view Lux private room,217482038,Emily,Manhattan,Upper East Side,40.76178,-73.96653,Private room,129,3,1,2019-06-11,1.0,3,0 +6451892,Spacious room is Park Slope,20192028,Alexander,Brooklyn,Gowanus,40.66683,-73.99308,Private room,55,1,1,2015-06-16,0.02,1,0 +3220725,Orchard St,15646137,Joe,Manhattan,Lower East Side,40.71813,-73.99063000000001,Entire home/apt,200,30,0,,,1,365 +19661183,Manhattan Skyline & Freedom Tower View,6484652,Una,Brooklyn,South Slope,40.66388,-73.98786,Private room,88,2,25,2018-10-14,1.04,2,0 +2774381,Brooklyn Studio,1253739,Ariana,Brooklyn,Flatbush,40.64602,-73.95964000000001,Entire home/apt,70,20,11,2018-12-30,0.21,1,211 +4606017,Studio with Loft bed by the river,23867361,Kurt,Manhattan,Upper West Side,40.792840000000005,-73.97675,Entire home/apt,129,12,20,2019-05-01,0.37,1,193 +15994498,Cozy garden floor apartment-Brownstone,75710434,George,Manhattan,Harlem,40.80878,-73.95206,Entire home/apt,150,2,81,2019-06-02,2.57,1,63 +35699567,studio type large next to LGA/JFK/Manhattan20 min,268537798,Liz,Queens,Jackson Heights,40.7486,-73.88469,Private room,99,2,0,,,1,90 +14218795,Spacious 1BR with amazing rooftop,1815738,Emily,Manhattan,Financial District,40.70741,-74.0054,Entire home/apt,238,1,0,,,1,0 +35616793,"CozySuite near F Train & LIRR +Min 2 guests",153141476,Franz,Queens,Briarwood,40.70762,-73.81453,Entire home/apt,78,1,5,2019-07-06,5.0,3,326 +773844,2 Beautiful Large Rooms/Fort Greene,4083145,Hannah,Brooklyn,Fort Greene,40.69377,-73.97009,Private room,90,10,1,2018-09-30,0.11,1,0 +30392517,"Cozy Studio in Charming Chelsea, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73774,-73.99725,Entire home/apt,283,30,0,,,232,337 +28752251,Sun-filled Apartment in Great Location,9165739,Jesse,Manhattan,Chelsea,40.74184,-74.00108,Private room,91,1,10,2019-06-30,1.09,1,0 +35464920,I have private bathrooms i have a lovely dresser,266823254,Temi,Queens,Bayswater,40.60825,-73.75695,Private room,60,1,0,,,1,342 +1753671,Big quiet Sunny room in Upper East Side,4500999,Aaron,Manhattan,East Harlem,40.79692,-73.94434,Private room,100,1,41,2019-06-02,0.87,2,355 +19388198,"Charming Hotel Alternative 2 +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79179,-73.94506,Private room,89,3,21,2019-06-16,0.91,2,125 +11670639,Sunny Apartment with a balcony,61962183,Christopher,Queens,Ditmars Steinway,40.77687,-73.90386,Private room,30,15,0,,,1,0 +12738047,clean and tidy separated livingroom,21492250,Zhenyu,Manhattan,Upper West Side,40.79997,-73.96529,Shared room,80,5,0,,,1,0 +12863594,Bright Loft-Like Apartment,70321716,Y&O,Brooklyn,Crown Heights,40.67212,-73.9439,Entire home/apt,150,15,0,,,1,0 +32570893,Stay in a NYC Historic Site!,13733669,Madeleine,Manhattan,Harlem,40.81134,-73.94097,Private room,59,4,7,2019-04-16,1.59,1,0 +14176878,Sunny bedroom in Williamsburg,13933878,Christine,Brooklyn,Williamsburg,40.70937,-73.96128,Private room,75,3,0,,,1,0 +23477827,Masterful bedroom & private bathroom in Astoria,24555919,David,Queens,Long Island City,40.76322,-73.93047,Private room,47,3,0,,,1,0 +23772767,First floor #6,151084261,Angie,Brooklyn,Williamsburg,40.71865,-73.94951,Private room,125,30,13,2019-05-27,0.86,6,255 +30937759,Sonder | The Nash | Bohemian 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97610999999999,Entire home/apt,263,2,5,2019-05-18,0.99,327,62 +28986535,Wonderful apartment Brooklyn 1 minute to L train.,96864161,Pedro,Brooklyn,Bushwick,40.68365,-73.90517,Entire home/apt,129,2,38,2019-06-25,4.73,1,192 +9998091,A bedroom in Chinatown,22735666,Simon,Manhattan,Chinatown,40.71346,-73.99592,Private room,95,1,1,2016-01-02,0.02,1,0 +26394988,Gorgeous room in luxury apartment (2),198478845,Jelani,Brooklyn,Clinton Hill,40.68697,-73.96063000000001,Private room,59,3,10,2019-06-05,0.87,2,150 +25101138,WYNDHAM MIDTOWN 45 NEAR THE UNITED NATIONS,189734742,James,Manhattan,Midtown,40.75184,-73.97301999999999,Private room,175,2,3,2018-11-04,0.31,2,0 +36175342,South Park Slope 2 BR Garden-Level - Brand New!,48164151,Todd,Brooklyn,Sunset Park,40.66294,-73.99146,Entire home/apt,250,3,0,,,1,85 +9429015,Amazing Location! mid-70s 1BR @ Columbus,13129524,Whitney,Manhattan,Upper West Side,40.78198,-73.97803,Entire home/apt,275,1,4,2016-06-26,0.09,1,0 +34574929,Magnificent 1Bedroom in the Lower East Side,260879160,Safia,Manhattan,Lower East Side,40.7202,-73.9891,Entire home/apt,160,14,3,2019-07-07,2.14,1,288 +8013947,ICONIC STUDIO MIDTOWN 5TH AVENUE!,29338009,Guilherme,Manhattan,Midtown,40.74921,-73.98445,Entire home/apt,185,7,17,2018-03-31,0.36,1,0 +16690832,1 private room in a spacious+quiet Park Slope apt,110522157,Noam,Brooklyn,Park Slope,40.66825,-73.98432,Private room,46,3,4,2018-12-31,0.27,1,72 +21926279,The Tree House,6999831,Erik,Brooklyn,Flatbush,40.64813,-73.9589,Entire home/apt,90,2,8,2018-07-24,0.42,1,0 +26147702,YANKEE BASEBALL STAY,158215530,Deon,Bronx,Concourse,40.82714,-73.92528,Private room,200,1,0,,,2,179 +9453245,Light Room In Little Italy,3784521,Matiss,Bronx,Belmont,40.85487,-73.88710999999999,Private room,70,7,0,,,1,0 +36078939,Cosy room Bushwick,235745868,Mari,Brooklyn,Bushwick,40.69324,-73.9094,Private room,37,29,0,,,1,340 +31212220,AMAZING ENTIRE 1 BEDROOM APARTMENT (No hot water),233434401,Randy,Bronx,Longwood,40.82306,-73.90821,Entire home/apt,75,1,50,2019-06-23,8.11,1,359 +30938582,"Beautiful apartment in, steps from the train",231186389,A.M,Brooklyn,Flatbush,40.633790000000005,-73.96246,Private room,40,53,0,,,1,90 +17820343,Cozy Studio on the Upper East Side!,30283594,Kara,Manhattan,Upper East Side,40.76138,-73.9598,Entire home/apt,115,30,1,2017-09-30,0.05,121,336 +10245677,One bedroom in great NYC location!,52661714,Chelsea,Manhattan,Hell's Kitchen,40.76214,-73.98985,Private room,300,1,0,,,1,0 +16320520,Penthouse,102913031,David,Manhattan,East Harlem,40.79142,-73.9398,Entire home/apt,350,4,33,2019-06-26,1.2,1,346 +22805947,Big studio in Pospect Park,162127741,Roger,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.96039,Entire home/apt,110,5,28,2019-06-30,1.71,1,347 +27279139,Charming and Spacious BK Loft 15 mins to Manhattan,3662122,Tina,Brooklyn,Bushwick,40.70743,-73.92294,Entire home/apt,175,4,7,2018-10-05,0.63,3,54 +34251680,Spacious private bedroom upper manhattan NYC,4711282,Gen,Manhattan,Washington Heights,40.85015,-73.93863,Private room,70,1,11,2019-06-16,4.93,1,97 +3369100,Park Slope Studio Apartment,16106756,Michael,Brooklyn,Park Slope,40.67978,-73.97458,Entire home/apt,175,3,176,2019-06-26,2.88,1,0 +34369607,Lovely and affordable place in the Bronx,178924110,Roukayatou,Bronx,Hunts Point,40.81415,-73.88671,Private room,36,1,9,2019-06-21,4.09,2,97 +13780126,Studio apartment 10minute to JFK 20m to Manhattan,80904983,Eddie,Queens,Briarwood,40.71116,-73.81514,Entire home/apt,75,2,57,2019-05-17,1.55,1,314 +769448,"Bedford Loft, Williamsburg Prime",4059034,Ian,Brooklyn,Williamsburg,40.7179,-73.96106999999999,Entire home/apt,312,2,302,2019-06-23,4.18,1,246 +32740475,Sonder | The Nash | Cozy Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74835,-73.97612,Entire home/apt,244,2,9,2019-06-13,2.31,327,133 +21813491,East Village · Pied Á Terre · NYC,155014420,Tim And Reuben,Manhattan,East Village,40.72256,-73.97925,Entire home/apt,184,30,11,2018-06-28,0.61,1,313 +34788893,A little oasis in the big city!,39831146,George And Laura,Brooklyn,Carroll Gardens,40.68026,-74.00078,Entire home/apt,225,4,0,,,1,317 +10994530,Cozy Renovated 2br Apartment! Close to Manhattan!,11501945,Victoria,Brooklyn,Flatbush,40.63649,-73.95614,Entire home/apt,92,1,25,2018-01-01,0.63,2,0 +15896468,Charming Loft,2089329,Emanuele,Manhattan,East Harlem,40.79084,-73.93961999999999,Entire home/apt,250,3,6,2019-01-06,0.22,1,0 +1114788,Astoria Heights Gorgeous Guest Bedroom,6118355,William,Queens,Ditmars Steinway,40.77103,-73.89461,Private room,73,1,6,2019-03-31,0.13,1,363 +36081181,Private Room in the most convenient location!,93551842,Farhath,Manhattan,Murray Hill,40.74605,-73.9773,Private room,80,1,1,2019-06-26,1.0,1,2 +35540740,Private Single Room 4 min walk to subway,175771113,Victoria,Brooklyn,East Flatbush,40.64575,-73.94654,Private room,36,15,1,2019-06-22,1.0,1,46 +20350704,Cozy bedroom in the heart of Harlem,140641026,Portia,Manhattan,Harlem,40.804190000000006,-73.94792,Shared room,65,1,1,2018-12-30,0.16,1,365 +28286101,*** Hell's kitchen quiet private room ***,137191484,Maria,Manhattan,Hell's Kitchen,40.76561,-73.98387,Private room,99,1,62,2019-06-30,6.55,5,351 +998887,Sunny studio apt in heart of SoHo,227908,Mischa,Manhattan,SoHo,40.72602,-74.00318,Entire home/apt,130,20,33,2019-06-02,0.43,1,11 +5543210,Sunny Oasis in Carroll Gardens,3424719,Demetria,Brooklyn,Columbia St,40.68255,-74.00224,Private room,90,4,8,2019-05-13,0.16,1,0 +34968153,Comfy Cozy,256485515,Joseph,Brooklyn,Fort Hamilton,40.61822,-74.03538,Private room,55,1,1,2019-06-23,1.0,1,322 +31285562,Charming East Village one-bedroom,129034868,Maria,Manhattan,East Village,40.72943,-73.98443,Entire home/apt,111,4,3,2019-05-09,0.8,1,37 +799900,"Amazing apartment near museum, gardens & park!",4211266,Nora,Brooklyn,Prospect Heights,40.67338,-73.96415,Entire home/apt,150,17,3,2016-09-26,0.07,1,0 +16438038,Cosy room in Williamsburg,40630037,Clara,Brooklyn,Williamsburg,40.70786,-73.94821,Private room,60,2,8,2017-10-03,0.26,1,0 +11990841,Private room in Bushwick!,13318184,Rebecca,Brooklyn,Williamsburg,40.70553,-73.94203,Private room,50,1,0,,,4,0 +18358470,Spacious 2 bedrooms Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.725640000000006,-73.93989,Entire home/apt,199,30,3,2018-10-31,0.28,52,310 +32225195,Sonder | Stock Exchange | Beautiful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70732,-74.01029,Entire home/apt,240,2,8,2019-06-20,1.98,327,357 +927987,Bright Doorman One Bedroom on Upper East Side,755172,Meg,Manhattan,Upper East Side,40.77543,-73.95499000000001,Entire home/apt,230,3,20,2019-06-10,0.26,1,282 +20912512,Spatious Park Ave Studio,40120855,Matthew,Manhattan,Murray Hill,40.74943,-73.97945,Entire home/apt,210,2,14,2019-06-25,0.64,1,13 +28786315,Brooklyn House at 443 Linden Room 3,216304678,Bryan,Brooklyn,East Flatbush,40.65285,-73.943,Private room,60,3,11,2019-05-18,1.17,5,347 +14404240,"Private room near E,F trains近地铁单房",88400958,Yuliang,Queens,Forest Hills,40.71741,-73.8333,Private room,58,2,78,2019-06-16,2.22,1,0 +29340345,Sams place,178337703,Samuel,Bronx,Clason Point,40.805040000000005,-73.85327,Private room,300,1,1,2018-10-21,0.11,1,364 +24136172,Sunny Studio Williamsburg w/ Private Bath&Entrance,1844352,Christine,Brooklyn,Williamsburg,40.71195,-73.94306999999999,Private room,95,5,10,2018-09-19,0.7,2,0 +33849970,"3min to Grand Ave subway, newly built in 2015",19303369,Hiroki,Queens,Elmhurst,40.7387,-73.8771,Private room,33,30,0,,,37,31 +13544302,Park Avenue 4 Bedroom 1 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74564,-73.98174,Entire home/apt,250,30,1,2017-05-14,0.04,31,215 +20989659,LUXURY MURRAY HILL EAST 34TH~1BR,2856748,Ruchi,Manhattan,Murray Hill,40.7488,-73.97844,Entire home/apt,225,30,1,2019-06-23,1.0,49,311 +26165195,"Private Bedroom. Near Subway. Bushwick, Brooklyn",396599,Thomas,Brooklyn,Bushwick,40.69966,-73.92295,Private room,40,1,65,2019-07-02,5.27,2,52 +25534977,Amazing Times Square Room close to Everything,110115422,Anne,Manhattan,Midtown,40.76538,-73.98293000000001,Private room,150,2,79,2019-07-06,7.69,1,120 +30354291,Cozy private bedroom with Great East River view,24593962,Sean,Manhattan,Upper East Side,40.78353,-73.94592,Private room,90,2,1,2018-12-05,0.14,1,0 +21183312,Charming Greenpoint Apartment. Clean!!!!,50383289,Scott,Brooklyn,Greenpoint,40.724,-73.95201999999999,Entire home/apt,225,1,18,2018-07-02,0.87,1,0 +35646375,Large Private Chic and Cosy Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.76073,-73.99032,Private room,140,4,1,2019-06-16,1.0,2,34 +20692159,A Simple Room 35 Minutes From 42nd Street,113152267,Pedro,Bronx,University Heights,40.85657,-73.90915,Private room,55,1,2,2018-03-28,0.11,1,0 +16718498,"Huge Cosy Room in E.Williamsburg,Rooftop &Backyard",3989837,Nadav,Brooklyn,Williamsburg,40.70867,-73.94060999999999,Private room,75,3,59,2019-06-28,1.95,2,77 +8966368,Beautiful Apartment in Cobble Hill,321710,Piero,Brooklyn,Cobble Hill,40.68653,-73.99288,Entire home/apt,225,3,1,2016-04-12,0.03,1,0 +34022740,Safari in Brooklyn!,256899020,Melissa,Brooklyn,Brownsville,40.657990000000005,-73.91595,Private room,57,4,7,2019-06-23,2.84,1,35 +35260483,Cozy Apartment minutes to Central Park,24237725,Jacopo,Manhattan,Hell's Kitchen,40.76476,-73.98871,Entire home/apt,145,7,0,,,1,5 +31982293,Brightly Artsy 1 Bedroom next to Pratt Institute,720974,Seble,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95886,Entire home/apt,120,4,13,2019-07-07,3.28,1,13 +27263672,Massive room seconds from Bushwick graffiti,26302195,Michael,Brooklyn,Williamsburg,40.70562,-73.92734,Private room,65,1,2,2019-02-24,0.44,1,0 +31514475,New Building Rooms 5 from 1,203266238,Steve,Bronx,Morris Park,40.85589,-73.85825,Private room,85,5,5,2019-06-29,0.85,5,343 +9211534,"Spacious, Private Room For Rent",43846246,Zoey,Queens,Astoria,40.76547,-73.92079,Private room,70,1,0,,,1,0 +19696119,"Home away from home, come live like a Brooklynite!",4334590,Ashley,Brooklyn,Bushwick,40.69807,-73.9335,Private room,115,1,72,2018-09-25,2.98,1,0 +31965415,Cozy Brooklyn Private Bedroom,161657326,Rachael Lee,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94103,Private room,37,3,1,2019-02-16,0.21,1,0 +19134112,Clean and Cozy 1br Home in heart of Soho/Nolita,16308791,Sara,Manhattan,Little Italy,40.717690000000005,-73.99854,Entire home/apt,236,2,55,2019-06-24,2.24,1,314 +22057103,Central Park Studio,14290739,Stanton,Manhattan,Upper West Side,40.79176,-73.96717,Entire home/apt,175,30,1,2018-12-18,0.15,3,3 +26385006,Harlem Historian/Musician near Columbia Room 2,6088893,Karen,Manhattan,Harlem,40.819320000000005,-73.95765,Private room,55,3,4,2019-01-01,0.36,1,21 +13476685,"HOTTEST LOCATION! Cozy, convenient and chic.",2091070,Anna,Manhattan,Chelsea,40.7403,-74.0029,Entire home/apt,165,3,14,2018-08-19,0.38,1,10 +18872091,Traveler's Cabin,45605434,Adam,Queens,Long Island City,40.76365,-73.93191999999999,Private room,60,30,4,2018-09-16,0.16,1,0 +3867705,5146-Doorman Pool!1 bedroom View,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7937,-73.9659,Entire home/apt,185,30,2,2018-07-16,0.13,96,310 +27540102,"Sun-drenched Chic SOHO ""Cabin""",206972453,Grant,Manhattan,Nolita,40.72205,-73.99699,Entire home/apt,250,4,16,2019-06-26,1.68,1,0 +31772667,A3 Delightful Budget private room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69213,-73.90248000000001,Private room,65,2,15,2019-06-18,2.81,8,344 +8931373,Delightful flat near the Park,719497,Cinjon,Manhattan,Harlem,40.81425,-73.9516,Private room,75,3,0,,,1,0 +4082357,Big bedroom in Brooklyn!,3801427,Liz,Brooklyn,Greenpoint,40.72631,-73.94126999999999,Private room,36,14,18,2019-04-27,0.34,1,0 +22389020,Upper East Side Living,3693489,Raymond,Manhattan,Upper East Side,40.76944,-73.95251999999999,Entire home/apt,150,2,0,,,1,0 +20895878,Extra Large 1 Bedroom Park Slope / Prospect Park,150044472,Amar,Brooklyn,South Slope,40.66163,-73.98265,Entire home/apt,159,2,5,2018-05-16,0.26,2,0 +19888160,Cool Room + Private Bathroom | Hip Location!,128517263,Alina,Brooklyn,Bushwick,40.69876,-73.93687,Private room,75,6,8,2019-01-28,0.34,3,53 +20568215,NYC tourism and food just steps away!,93376283,Gabriella,Manhattan,Hell's Kitchen,40.76638,-73.99079,Entire home/apt,168,2,4,2017-11-25,0.2,1,0 +21710003,Garden 1-Bedroom Apartment in Greenpoint,848748,Sarah,Brooklyn,Greenpoint,40.72365,-73.95188,Entire home/apt,200,3,30,2019-06-17,1.52,2,101 +15494796,Private Guest Room in Charming West Village Duplex,390117,Coco,Manhattan,West Village,40.73142,-74.01,Private room,250,3,8,2019-04-28,0.24,2,0 +21293,Sunny Apartment in Artist Home,44145,Tyrome,Brooklyn,Bushwick,40.70093,-73.92609,Entire home/apt,105,3,118,2019-06-18,1.05,2,9 +4537198,Huge room wt bathroom + entrance,6926899,Liana,Brooklyn,Williamsburg,40.7113,-73.94938,Private room,90,3,4,2016-06-11,0.07,1,0 +28611271,Cozy Room in Steinway st. with a firescape view!,150439529,Marina,Queens,Astoria,40.76677,-73.91315,Private room,70,4,6,2019-05-26,0.68,1,63 +29434293,Room at 1br apt,7040483,Agata,Queens,Astoria,40.76107,-73.91364,Private room,69,5,20,2019-06-23,2.43,1,37 +6628117,Cozy room in heart of Williamsburg,24839107,Brittany,Brooklyn,Williamsburg,40.71681,-73.96141,Private room,80,1,7,2015-11-02,0.14,1,0 +9015649,Charming duplex Morningside Heights-Private Floor,47076540,Edlira,Manhattan,Morningside Heights,40.81111,-73.95465,Private room,125,1,27,2019-05-28,2.87,1,80 +12754199,Quiet Queens Basecamp,10135994,Laurence,Queens,Bayside,40.73975,-73.76156999999999,Private room,60,1,0,,,1,0 +28558474,Cozy apartment separated bedroom - Near Manhattan,21124300,Simon,Brooklyn,Fort Greene,40.68803,-73.973,Entire home/apt,140,2,8,2019-07-07,0.83,1,14 +2635078,"GREAT 2bed/2bath/patio, FORT GREENE",1821771,Daria,Brooklyn,Fort Greene,40.68914,-73.9776,Entire home/apt,235,4,23,2019-06-21,0.36,1,31 +13294325,"Private Bedroom in Brownstone House, Bedstuy",75034279,Irina,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9512,Private room,56,2,43,2019-06-30,1.61,2,110 +8547630,Brand new Building. Great space.,44996314,Chris,Brooklyn,Williamsburg,40.71179,-73.96092,Private room,70,3,26,2018-12-28,0.57,1,0 +36315143,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN.,178272943,Sharon,Queens,Jamaica,40.671,-73.77911,Entire home/apt,250,1,0,,,4,69 +9092903,"Cosy Loft, Studio - lots of light",552067,Miriam,Brooklyn,Williamsburg,40.70994,-73.94915,Entire home/apt,120,7,9,2018-12-11,0.21,1,0 +26108084,Sunny Flat in NYC,11121151,Christina,Manhattan,Upper West Side,40.7958,-73.97163,Private room,69,2,0,,,1,0 +5549530,Sun-filled bedroom in East Village / Gramercy NYC,322697,Jeff & TJ,Manhattan,Gramercy,40.7317,-73.98272,Private room,99,2,136,2019-07-03,2.67,1,33 +8842667,Brooklyn apartment in Boreum Hill,10261855,Ruby,Brooklyn,Boerum Hill,40.68338,-73.98231,Entire home/apt,120,4,0,,,1,0 +7383722,Stunning 1BR - SoHo Prime Location!,14281112,Andrew,Manhattan,SoHo,40.7221,-74.00464000000001,Private room,125,2,2,2015-10-09,0.04,1,0 +15753014,"Classic Brklyn brick house w 2 bedrooms, sleeps 6.",18314550,Tim,Brooklyn,Sunset Park,40.66451,-73.99342,Entire home/apt,175,2,6,2019-04-19,0.2,1,18 +9990200,Artist Escape With Private Terrace,4878363,Jessie,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.94349,Private room,25,1,7,2018-08-28,0.19,2,8 +22449860,Beautiful Oasis in Brooklyn,92835031,Cindy,Brooklyn,Bedford-Stuyvesant,40.6832,-73.9529,Entire home/apt,225,3,50,2019-06-23,3.12,1,71 +9575562,Sunny Apt in the Heart of Brooklyn,23254783,Amanda,Brooklyn,Williamsburg,40.71219,-73.94826,Entire home/apt,115,3,43,2019-07-07,1.03,1,0 +13906636,Bedstuy Brownstone Gem,62785237,Fanny,Brooklyn,Bedford-Stuyvesant,40.68535,-73.94959,Entire home/apt,138,3,95,2019-07-05,2.74,1,71 +9644961,Amazing loft in Williamsburg,7897771,Nour,Brooklyn,Williamsburg,40.717690000000005,-73.9544,Private room,115,3,3,2016-01-26,0.07,1,0 +33701468,Best Location! Spacious 3BR in Center of NYC!,253128090,Harvy Jake,Manhattan,Midtown,40.76167,-73.96944,Entire home/apt,149,2,7,2019-06-14,2.63,1,163 +7656308,Large Private Bedroom in Williamsburg Apartment,1311104,Christopher,Brooklyn,Williamsburg,40.71256,-73.95695,Private room,45,30,19,2019-03-21,0.43,1,0 +36006715,Room in cozy Brooklyn apartment,1639684,Tyler,Brooklyn,Williamsburg,40.70757,-73.94247,Private room,49,5,0,,,1,4 +3717689,CHARMING BROOKLYN LOFT WITH PATIO,18393872,Natalie,Brooklyn,Bedford-Stuyvesant,40.69141,-73.95886,Entire home/apt,85,7,2,2017-05-15,0.03,1,0 +10566341,Front Bedroom in Beautiful Apt,17191693,Moss,Brooklyn,Williamsburg,40.70732,-73.95466,Private room,60,2,18,2017-01-04,0.46,2,0 +6654984,Beautiful apartment in trendy Brooklyn,5417600,Elvira,Brooklyn,Park Slope,40.67376,-73.98397,Entire home/apt,200,365,4,2018-06-16,0.14,1,173 +12926849,Comfy Room for May,28680349,Bryan,Brooklyn,Greenpoint,40.72577,-73.94981,Private room,90,1,7,2016-08-02,0.19,1,0 +16794070,1 Bedroom in a gorgeous brownstone in South Harlem,37482532,Adam,Manhattan,East Harlem,40.80964,-73.93964,Entire home/apt,69,2,2,2017-02-05,0.07,1,0 +13623891,Stunning Studio in Midtown BEST LOCATION,78929276,Blaine,Manhattan,Midtown,40.7441,-73.98834000000001,Entire home/apt,199,2,106,2019-06-20,2.96,1,250 +9737840,2 Bedrooms & 2 Bathrooms Apt in Hell's Kitchen,40169737,Alex G,Manhattan,Hell's Kitchen,40.76553,-73.98709000000001,Entire home/apt,300,1,268,2019-06-26,6.12,1,261 +23668975,Live like a New Yorker! Easy access to all...,130804,Heather,Manhattan,Washington Heights,40.8331,-73.94346999999999,Private room,65,2,0,,,1,0 +8539830,Gorgeous renovated apt w garden,1841463,Baptiste,Brooklyn,Greenpoint,40.72361,-73.94123,Entire home/apt,228,1,0,,,1,0 +23855466,Cheap Rental in Manhattan Downtown!,179187831,Nadia,Manhattan,Chelsea,40.75031,-73.99336,Entire home/apt,70,1,0,,,1,364 +9107772,Beautiful 1-Bedroom near Columbia!,4055295,Sara,Manhattan,Harlem,40.82673,-73.94995,Entire home/apt,100,2,17,2016-12-27,0.39,1,0 +13702697,2 Bdr gem by Time sq,79951689,Andrea,Manhattan,Hell's Kitchen,40.76496,-73.99415,Entire home/apt,199,5,0,,,1,0 +6747106,New York apt in beautiful area for Summer,2388537,Andrea,Manhattan,Morningside Heights,40.81666,-73.96074,Entire home/apt,105,15,33,2019-01-02,0.69,2,5 +21398613,Spacious 1 BR APT right next to Central Park,24393270,Marc,Manhattan,Upper West Side,40.76877,-73.98371,Entire home/apt,150,5,1,2017-10-30,0.05,1,0 +29184026,Lava Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69366,-73.95563,Private room,65,2,7,2019-06-22,0.8,34,285 +1189378,Authentic Soho Loft (1200 sq ft),867249,Norwin,Manhattan,Tribeca,40.71976,-74.00571,Entire home/apt,285,2,124,2019-06-22,1.7,1,131 +8943358,Loved by NYLocals Private Room SoHo,2695451,Elle,Manhattan,SoHo,40.72476,-74.00386999999999,Private room,82,1,228,2019-07-05,5.11,2,28 +1403635,Sunny & large W. Harlem private 1 bedroom.,754675,Lucy,Manhattan,Harlem,40.82036,-73.95589,Private room,75,5,3,2018-12-31,0.16,1,0 +17618446,SOHA 2 bedroom Beauty! Sleeps 5,119779683,Julian,Manhattan,Harlem,40.80859,-73.94216,Entire home/apt,158,3,61,2018-08-03,2.21,1,62 +7803828,Spacious Private Bedroom,8375500,Rosario,Manhattan,Washington Heights,40.83261,-73.94328,Private room,46,2,9,2017-05-20,0.19,1,0 +25080137,Sun drenched loft like space with private yard,15820708,Arlene,Brooklyn,Williamsburg,40.70987,-73.94221999999999,Private room,110,3,15,2019-06-23,1.13,2,254 +12129960,LuXe*Chef'sKitchen*forestGarden*patio.Marble.ART,4128829,Sara,Brooklyn,Bushwick,40.69055,-73.92071,Entire home/apt,75,1,48,2019-01-03,1.22,2,36 +16321597,Great room in charming Fort Greene Brooklyn,26004891,Ariane,Brooklyn,Fort Greene,40.69357,-73.97235,Private room,44,6,0,,,1,0 +5477034,Comfy room in Williamsburg Loft Apt,4687722,Mav,Brooklyn,Williamsburg,40.71538,-73.94527,Private room,85,1,0,,,1,0 +13821190,"Private room in Astoria, NY",81430151,Liliana,Queens,Astoria,40.75528,-73.91628,Private room,55,2,41,2019-06-02,1.19,1,278 +23142074,Spacious & bright 2BR/2BA (available for August),818585,Julian,Brooklyn,Flatbush,40.64726,-73.95936999999999,Entire home/apt,76,14,1,2018-02-08,0.06,1,41 +15986677,"A Private Room in Manhattan, NYC !!!",519554,Umut&Deniz,Manhattan,Lower East Side,40.71858,-73.98968,Private room,78,2,7,2018-06-30,0.23,5,365 +4784867,Great location w/ Terrace!,198387,Kim,Brooklyn,Williamsburg,40.71349,-73.9629,Entire home/apt,165,5,26,2016-10-12,0.47,1,0 +9862913,Room in Sunny Apt in Great Area,7532013,Jennifer,Brooklyn,Fort Greene,40.69431,-73.97316,Private room,60,3,1,2016-01-27,0.02,1,0 +30388011,"Bright 1BR near Times Sq w/ Indoor pool, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.75988,-73.98568,Entire home/apt,312,30,0,,,232,341 +33661788,Cozy bedroom in Sunset Park apartment,70406797,Monée,Brooklyn,Sunset Park,40.646440000000005,-74.01057,Private room,47,1,0,,,1,31 +1855846,Unshared Apt Cozy One Bedroom,9685977,Sherry,Manhattan,Harlem,40.82597,-73.95102,Entire home/apt,150,5,29,2019-05-18,0.43,1,260 +27951475,Brooklyn Apartment,168569105,Maka,Brooklyn,Bedford-Stuyvesant,40.69037,-73.92694,Private room,60,9,1,2019-04-09,0.33,1,83 +27873228,Spacious Private Room near Train and Prospect Park,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65815,-73.95546,Private room,40,31,3,2019-06-01,0.45,2,84 +35835936,BEAUTIFUL WEST VILLAGE APARTMENT,22550881,Graham,Manhattan,West Village,40.73895,-74.00393000000001,Entire home/apt,151,1,1,2019-07-05,1.0,1,8 +25138149,√ LUXURY NYC LOFT √ | Spa Amenities | Smart Home,3129460,Feliz,Manhattan,East Harlem,40.79523,-73.94230999999999,Entire home/apt,200,3,24,2019-06-29,1.94,1,337 +30387960,"Ideal Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73899,-73.99749,Entire home/apt,291,30,0,,,232,320 +5729118,REAL LUXURY my SUNNY alcove studio,12020405,Jen,Manhattan,Upper West Side,40.77556,-73.98416,Entire home/apt,244,4,38,2019-06-12,0.74,1,222 +2713887,Furnished Studio UES near the Met,13888072,Will,Manhattan,Upper East Side,40.77518,-73.95618,Entire home/apt,200,5,4,2018-09-29,0.07,1,0 +2279335,Gorgeous 1 BR in N Williamsburg,7009234,Sarah,Brooklyn,Williamsburg,40.71947,-73.9552,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +6042635,Spacious Studio,31358851,Mo,Manhattan,Washington Heights,40.85882,-73.92896999999999,Entire home/apt,65,4,38,2019-06-30,0.79,1,307 +24397824,Cozy private Bedroom in upper Manhattan!,72423116,Isabelle,Manhattan,Morningside Heights,40.80385,-73.96499,Private room,100,1,17,2019-06-26,1.36,1,31 +34453822,Quiet Room Next to Times Square and Bryant Park,260191397,Hotel Mela,Manhattan,Theater District,40.75745,-73.98595999999999,Private room,100,1,7,2019-06-17,4.04,7,296 +19645931,Time Square NYC Location,2074014,Carmine,Manhattan,Hell's Kitchen,40.76232,-73.99285,Private room,110,7,1,2018-01-24,0.06,1,99 +5942962,Large BED in Amazing LIVING SPACE,2981156,Kia,Queens,Long Island City,40.7618,-73.92728000000001,Shared room,55,1,26,2018-12-02,0.55,2,84 +12342004,Lovely West Harlem Apartment,6416695,Patrice,Manhattan,Washington Heights,40.83549,-73.94729,Entire home/apt,105,3,8,2017-07-05,0.21,1,0 +2523629,ENTIRE APT IN GORGEOUS PARK SLOPE,12921356,Elizabeth,Brooklyn,South Slope,40.66517,-73.98637,Entire home/apt,165,5,7,2015-12-31,0.11,1,0 +19767924,"Charming 1 bedroom, Great Location LES/Chinatown",139127299,Switch,Manhattan,Chinatown,40.71609,-73.99204,Entire home/apt,198,10,4,2018-11-05,0.19,1,0 +6261971,Morningside Heights Cathedral Lane,32537929,Sara,Manhattan,Upper West Side,40.80146,-73.96132,Private room,50,2,0,,,1,0 +22385723,"Large, Sunny Bushwick Loft with Rooftop Access",35089676,Francis,Brooklyn,Bushwick,40.699670000000005,-73.92096,Private room,35,1,8,2019-06-14,0.44,1,76 +7320160,Charming Old-School Apartment 2,19692652,Benjamin,Brooklyn,Clinton Hill,40.69387,-73.96840999999999,Private room,60,2,42,2017-08-14,0.87,1,0 +8186068,Bright&Beautiful BR in Williamsburg,2182167,Mez,Brooklyn,Williamsburg,40.71288,-73.94136999999999,Private room,80,2,2,2015-09-23,0.04,1,0 +4671824,Master Bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83212,-73.93054000000001,Private room,60,1,56,2019-06-23,1.09,3,355 +8164877,Private Room 1 Stop From Manhattan,9862206,Devon,Brooklyn,Williamsburg,40.71697,-73.95919,Private room,70,1,19,2016-07-01,0.41,1,0 +33500813,Upper East Fun and Sunny 1B1B Very Close to Subway,252460693,Stephen,Manhattan,East Harlem,40.78499,-73.94588,Entire home/apt,159,1,15,2019-07-06,5.11,1,152 +13296897,Beautiful Bedroom Mid Town Manhattan,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76283,-73.99331,Private room,115,2,30,2019-07-02,0.8,3,3 +2471725,Awesome Spot near HK/Theatre Distri,12366541,Pj,Manhattan,Hell's Kitchen,40.76269,-73.9907,Private room,124,5,196,2017-12-06,3.02,2,149 +251262,Prime Williamsburg Loft off Bedford,1278802,Anne,Brooklyn,Williamsburg,40.71628,-73.95737,Private room,129,2,241,2019-06-29,2.6,1,303 +2189129,10-Room Apt w/ 3BR & Park Views,11163727,Marcus,Brooklyn,Park Slope,40.66587,-73.97737,Entire home/apt,250,1,0,,,1,0 +30821860,Cozy 1 person bedroom in Fancy neighborhood,13126043,Carolle,Manhattan,Midtown,40.743120000000005,-73.98447,Private room,89,3,1,2018-12-29,0.16,2,26 +35425436,World luxury,266609191,Yvette,Brooklyn,Bedford-Stuyvesant,40.68451,-73.92753,Private room,70,1,2,2019-06-15,2.0,1,161 +267376,BIG ROOM / DOWNTOWN LOFT /,638721,Fred,Manhattan,Financial District,40.70741,-74.00102,Private room,65,30,10,2019-06-24,1.02,1,0 +17796480,PRIVATE ROOM near JFK & La Guardia,100812175,Luz,Queens,Jackson Heights,40.75125,-73.87644,Private room,51,1,108,2019-06-30,3.91,1,306 +22290340,Brooklyn House,58380725,Osei,Brooklyn,Flatbush,40.65099,-73.95596,Entire home/apt,95,2,90,2019-07-04,4.79,1,73 +16704118,Prime location 15-20mins to manhattan.nearall.C.,59974573,Taka,Queens,Elmhurst,40.73734,-73.87215,Entire home/apt,99,4,50,2019-06-25,1.85,2,60 +28578651,Sunny Private bedroom in prime Greenpoint,1521811,Colleen,Brooklyn,Greenpoint,40.72749,-73.95217,Private room,53,5,1,2018-10-06,0.11,1,11 +30393171,Airy + Bright FiDi Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.708870000000005,-74.01446,Entire home/apt,233,30,0,,,232,365 +26107318,Great Townhome!! 1 Stop from Manhattan! Sleeps 6,99268393,Brian,Queens,Long Island City,40.74436,-73.95205,Entire home/apt,175,2,42,2019-07-01,3.77,1,238 +28961919,Linda's Place,218301609,Merle,Queens,Hollis,40.70864,-73.76683,Private room,65,5,8,2019-05-24,0.99,1,170 +34337574,Cozy Room in the Upper East Side,157068054,Tim & Cecilia,Manhattan,East Harlem,40.79252,-73.94055,Private room,49,3,8,2019-07-05,4.07,1,16 +18236999,Penthouse with private terrace and bath,23269913,Patrick,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92345,Private room,50,2,5,2017-12-16,0.19,1,0 +29944625,Cozy King Sized Apt In NYC (Harlem),225139503,Tracy,Manhattan,East Harlem,40.8055,-73.93653,Entire home/apt,250,1,7,2019-07-01,0.9,1,78 +1472002,SHARED STUDIO AT MANHATTAN'S HEART BY C. PARK,3003563,Rocio,Manhattan,Theater District,40.76035,-73.98026,Shared room,99,2,62,2019-05-23,2.22,1,21 +21486004,Elegant Studio,67072838,Oscar,Manhattan,Midtown,40.74703,-73.98738,Entire home/apt,160,4,48,2019-06-08,2.44,1,327 +5136833,Spacious private room upper west side,26558533,Jinqiu,Manhattan,Upper West Side,40.79678,-73.96545,Private room,79,2,8,2016-10-16,0.22,1,0 +19068933,Quiet and Safe 7,133123832,Parmenides,Manhattan,Upper West Side,40.78773,-73.97022,Entire home/apt,113,30,0,,,3,69 +23628745,"Queen Bedroom besides Central Park, West Side",176809727,Cristian,Manhattan,Upper West Side,40.80076,-73.96236,Private room,105,2,38,2019-06-16,2.38,1,300 +28437754,8. Beautiful clean room 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73894,-73.92288,Private room,65,2,26,2019-07-01,2.8,6,355 +34809450,Fantastic Apartment in Greenpoint,2157562,Athena,Brooklyn,Greenpoint,40.72235,-73.94533,Entire home/apt,120,3,4,2019-06-22,3.33,1,181 +12069335,Luxury room in 2 bedroom apartment,20161989,Zhenni,Brooklyn,Midwood,40.62462,-73.95508000000001,Private room,89,2,5,2017-10-23,0.13,1,365 +26109380,Amazing large studio apartment in Harlem!,4426065,Lynn,Manhattan,Harlem,40.80799,-73.94158,Entire home/apt,100,7,1,2018-07-24,0.09,1,26 +1617443,Great Artistic Studio in Historic Building,2240143,Pavel,Manhattan,Harlem,40.81606,-73.94363,Shared room,85,3,38,2019-05-27,0.56,1,157 +9862199,Cozy Studio Home on the UWS!,32787246,Heather,Manhattan,Upper West Side,40.80383,-73.96793000000001,Entire home/apt,103,3,1,2016-01-01,0.02,1,0 +5066526,Lovely Big Bedroom in Clinton Hill,26162659,Kylie,Brooklyn,Bedford-Stuyvesant,40.69494,-73.95506999999999,Private room,70,1,0,,,1,0 +26516849,Private Room in Rockaway House-Nearby JFK & Subway,199299171,Paul,Queens,Rockaway Beach,40.58743,-73.81411,Private room,49,1,10,2019-06-11,0.87,1,356 +18596194,Cozy Studio with private entrance,12827876,Jasen,Brooklyn,Canarsie,40.64493,-73.90897,Private room,33,2,1,2017-05-29,0.04,1,0 +13250303,Single room in Bed-Stuy,38322121,Pierre-Alexis,Brooklyn,Bedford-Stuyvesant,40.69484,-73.95852,Private room,70,3,2,2016-06-23,0.05,1,0 +525523,Comfortable Private Room in Upper Manhattan 2BR,2582890,Kim,Manhattan,East Harlem,40.80762,-73.94017,Private room,50,2,16,2018-07-04,0.62,1,60 +27654484,Greenpoint Williamsburg Jewel for 6,89031106,Edyta,Brooklyn,Greenpoint,40.72409,-73.95039,Entire home/apt,125,5,5,2019-05-30,1.17,4,68 +34805393,Stylish 2 bedrooms Downtown Manhattan Chinatown,14156628,Bruno,Manhattan,Lower East Side,40.71255,-73.99146999999999,Entire home/apt,200,2,4,2019-07-01,4.0,1,233 +22533436,Best Value in Manhattan - Steps from 6 Train,155810605,Danielle,Manhattan,East Harlem,40.79005,-73.94929,Entire home/apt,110,4,4,2018-11-08,0.22,2,0 +14961253,86th st express train/Private Patio/Clean One Bed,94196548,Kim,Manhattan,Upper East Side,40.77883,-73.95205,Entire home/apt,219,1,5,2017-05-21,0.16,1,0 +15955961,2 Bedroom East Village NYC Apartment,883283,Alison,Manhattan,East Village,40.72739,-73.98274,Entire home/apt,350,2,0,,,1,0 +1521335,Private Room in Brooklyn Brownstone,8120180,Ivey,Brooklyn,Bedford-Stuyvesant,40.68329,-73.95111,Private room,45,3,2,2016-07-09,0.05,1,0 +16701051,Tribeca one bedroom apt - jan 13-30th,110629411,T,Manhattan,Chinatown,40.71471,-73.9993,Entire home/apt,100,7,0,,,1,0 +33801117,Brooklyn Couples Retreat w/ spa bathroom,25308624,Michele,Brooklyn,Bedford-Stuyvesant,40.68129,-73.93437,Private room,75,5,4,2019-05-30,2.03,1,313 +34020097,Cozy Room in Classic Crown Heights,98978751,Vita,Brooklyn,Crown Heights,40.67052,-73.95612,Private room,70,1,4,2019-06-18,2.67,1,153 +26084814,Large bedroom in a lovely flat in perfect location,54970203,Molly,Manhattan,Harlem,40.80372,-73.95266,Private room,82,2,33,2019-06-16,2.75,1,2 +23463017,A great experience in a fashionable neighborhood,9241743,Antonio,Manhattan,Harlem,40.80899,-73.94225,Private room,80,4,1,2018-03-19,0.06,1,365 +15038469,Prime Park Slope Room (10 min. train to Lower NYC),62587696,Andrew,Brooklyn,Gowanus,40.67127,-73.99006,Private room,45,2,97,2019-06-21,2.92,2,80 +13495691,Fort Greene bedroom w/private bathroom,26209213,Kaitlyn,Brooklyn,Fort Greene,40.692890000000006,-73.98076999999999,Private room,65,10,0,,,1,0 +20435636,Stay like a local in Willamsburg/Greenpoint - NYC,63043,Tolga,Brooklyn,Greenpoint,40.72767,-73.95084,Private room,80,5,19,2019-01-21,1.26,1,0 +8760003,Cozy Room in Willamsburg Loft,45937698,Rhea,Brooklyn,Greenpoint,40.726040000000005,-73.95536,Private room,35,1,9,2017-03-06,0.2,1,0 +9810271,Private room in 4 BR on Riverside,50539477,Brian,Manhattan,Harlem,40.8226,-73.95468000000001,Private room,48,30,100,2019-05-31,2.31,2,183 +4613154,New York City Studio,23899573,Oscar,Manhattan,Hell's Kitchen,40.76679,-73.98598,Entire home/apt,150,7,23,2016-06-26,0.42,1,0 +651648,One Bedroom Apartment in an 1879 Brownstone,3274376,Edward,Brooklyn,Clinton Hill,40.683040000000005,-73.96348,Entire home/apt,200,3,56,2019-05-21,0.96,1,365 +8412352,Apt on President St & Kingston Ave,44314131,Raphael,Brooklyn,Crown Heights,40.66852,-73.9425,Entire home/apt,160,1,1,2015-10-06,0.02,1,0 +12342979,Beautiful Room - Ideal for Business Travelers!,1462483,Danny,Manhattan,Midtown,40.74566,-73.9834,Private room,100,4,40,2019-06-19,3.36,2,164 +6006387,FABULOUS SUNNY BEDROOM IN HARLEM,31181172,T.,Manhattan,Harlem,40.82442,-73.95203000000001,Private room,50,20,9,2018-01-27,0.24,1,300 +2772111,It's very warm and friendly.,14176488,Ada Azra,Bronx,Fordham,40.86705,-73.88545,Shared room,55,7,10,2018-10-13,0.16,1,365 +11620821,Great! Private Room in Sunnyside,58234433,Martin,Queens,Sunnyside,40.7364,-73.91923,Private room,90,1,36,2019-06-13,0.99,8,346 +31918252,Private Bedroom & Living Room in Sunny Apt,53300414,Monica,Brooklyn,Gowanus,40.66938,-73.99164,Private room,95,1,4,2019-06-16,0.93,2,59 +19843731,Modern Comfort Room w/ Patio 7 mins to Manhattan,137832487,Mariame,Bronx,Longwood,40.82164,-73.90163000000001,Private room,65,3,2,2018-02-28,0.11,1,0 +25995062,Private room with balcony with ROOFTOP terrace,177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66342,-73.94519,Private room,90,1,100,2019-07-03,7.71,3,316 +30062477,FEMALE SHARED ROOM 30 minutes to Times Square,172369331,Abby,Brooklyn,Sheepshead Bay,40.59823,-73.95909,Shared room,30,2,5,2019-06-12,0.66,10,0 +35823101,SO CHILL!! Very spacious and cozy bk apartment !!,269470349,Jim,Brooklyn,Bushwick,40.70146,-73.91932,Entire home/apt,75,2,3,2019-06-28,3.0,1,163 +7956149,"Studio Apartment in New York, NY",32502064,Danielle,Manhattan,Financial District,40.7044,-74.00851,Entire home/apt,200,1,0,,,1,0 +35508864,Architect Designed Industrial Oasis in Greenpoint,3830566,Tom,Brooklyn,Greenpoint,40.72105,-73.93933,Entire home/apt,200,1,2,2019-06-13,2.0,1,316 +33560439,"Location Location Location! Basic, Clean & Cheap!",54023713,Khero,Manhattan,Kips Bay,40.74385,-73.97669,Entire home/apt,100,4,25,2019-07-05,8.24,1,4 +33269847,Sunny Happy Artist room close to train,248472625,Tyrone,Brooklyn,Bushwick,40.68929,-73.9216,Private room,45,14,1,2019-05-30,0.73,1,67 +30823817,New York Lovely Quiet Room near to Time’s Square,137191484,Maria,Manhattan,Hell's Kitchen,40.76436,-73.98779,Private room,120,1,31,2019-06-21,4.67,5,321 +13802699,"Dottie's Place, Room #2...Just for You!",80819921,Traci,Queens,Rosedale,40.65218,-73.73498000000001,Private room,70,1,0,,,1,0 +35672777,**SUMMER OFFER**Healers LOFT: Tranquil and Light,2010787,Amma,Manhattan,Lower East Side,40.7144,-73.98201,Entire home/apt,297,20,0,,,1,276 +29591011,"Cozy, cute room in Williamsburg w/ shared backyard",41728993,Raqueli,Brooklyn,Williamsburg,40.71518,-73.93982,Private room,95,1,1,2019-05-04,0.45,1,0 +22325617,Charming room in Brooklyn,52109239,Joanne,Brooklyn,Bedford-Stuyvesant,40.68195,-73.92113,Private room,40,3,0,,,1,0 +1215627,Floating Cabin Houseboat Rockaway Surf's Up!,5720054,Ingrid,Queens,Arverne,40.59204,-73.78665,Entire home/apt,150,1,109,2019-06-22,1.49,1,358 +36221298,Bohemian studio in Midtown,5288346,Lauren,Manhattan,Upper East Side,40.7603,-73.96225,Entire home/apt,120,1,1,2019-07-01,1.0,1,1 +13959538,Luxurious 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74201,-73.97957,Entire home/apt,133,30,7,2019-04-09,0.29,91,342 +23106431,Bright Room with Qsize bed 20min to dt Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.6896,-73.95653,Private room,62,1,27,2019-06-25,1.69,7,248 +25274161,Beautiful Single Room,37842947,Heena,Queens,Woodside,40.75607,-73.90146,Private room,80,1,3,2018-10-26,0.31,1,89 +6397592,Lower East Side/Chinatown Bedroom,2696970,Sasha,Manhattan,Two Bridges,40.71193,-73.99454,Private room,99,2,28,2018-11-08,0.55,1,296 +28359897,Comfy LGA apt in Queens,207808113,Md,Queens,East Elmhurst,40.76115,-73.88239,Entire home/apt,150,1,73,2019-06-25,7.55,1,78 +30310098,NYC Hamilton Heights Apartment,114462596,Morgan,Manhattan,Harlem,40.82251,-73.9512,Private room,112,1,5,2018-12-30,0.67,1,0 +18073738,Huge Room in Bushwick with private bathroom,512101,Martha Cristina,Brooklyn,Bushwick,40.69801,-73.93356999999999,Private room,88,3,11,2019-06-02,0.81,1,0 +16710016,Newly renovated 1 bdrm right by trains. Entire apt,2431149,Delphina,Brooklyn,Crown Heights,40.67024,-73.93406,Entire home/apt,69,1,7,2017-04-30,0.23,2,0 +5217507,Great 1-bd apartment in Murray Hill,3510638,Eugene,Manhattan,Murray Hill,40.74479,-73.97573,Entire home/apt,149,5,13,2018-05-20,0.24,1,0 +29130381,24 Lex Prime Location of East NYC 15min to TimeSq,161057073,Stella,Manhattan,Kips Bay,40.73945,-73.98168000000001,Entire home/apt,95,2,39,2019-06-22,4.33,4,74 +36265677,Best Brooklyn room w/ bathroom close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69563,-73.94197,Private room,77,2,0,,,7,165 +9924665,Private Room in Greenpoint,26714887,Anthony,Brooklyn,Greenpoint,40.73036,-73.95453,Private room,60,1,3,2016-08-23,0.07,2,0 +23685999,1bedroom with private bathroom,22779744,April,Queens,East Elmhurst,40.77127,-73.87123000000001,Private room,100,1,0,,,1,0 +27524258,Darling Duplex on UES,17826780,Sam,Manhattan,Upper East Side,40.77454,-73.95454000000001,Entire home/apt,250,30,1,2018-10-07,0.11,1,60 +20148616,1 BEDROOM / HIGH FLOOR / BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77104,-73.98522,Entire home/apt,190,30,6,2019-05-16,0.31,25,190 +8225210,Doorman Harlem Apt with Great Views,43370599,John,Manhattan,Harlem,40.81243,-73.9392,Entire home/apt,250,1,0,,,1,89 +16241319,Spacious Brooklyn 2BR house (with cat & parking!),24418469,Kirsten,Brooklyn,East Flatbush,40.64625,-73.95048,Entire home/apt,200,3,6,2019-01-01,0.2,1,0 +28486770,Williamsburg Nest: Your Home Away From Home,47239386,Eliran,Brooklyn,Williamsburg,40.71671,-73.95064,Entire home/apt,220,4,3,2018-10-15,0.32,1,16 +16148973,"Sun-drenched, Lux, village studio",28804489,Bobbi,Manhattan,East Village,40.73121,-73.98693,Entire home/apt,220,5,46,2019-07-01,1.81,1,92 +94477,The Vernon On Greene,478395,Jason,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93185,Entire home/apt,175,2,370,2019-07-05,3.74,1,204 +12629865,NEW! American Private Cozy Room,16740102,Anton,Brooklyn,Bedford-Stuyvesant,40.68634,-73.94414,Private room,52,3,0,,,1,0 +34756040,(= RENT ME RENT ME =),262118049,Aaron,Manhattan,Chinatown,40.713840000000005,-73.99278000000001,Entire home/apt,212,1,1,2019-06-26,1.0,1,0 +23760168,"HUGE *SUITE*, with EN SUITE, AC/Heat",30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68609,-73.90733,Entire home/apt,105,2,80,2019-07-01,5.08,2,77 +17405175,Joy,38294216,Rachel,Queens,South Ozone Park,40.66561,-73.81103,Private room,50,15,2,2019-04-19,0.39,4,190 +20281546,Sunny 1br across from the park,52251632,Daniel,Manhattan,Morningside Heights,40.80711,-73.95826,Entire home/apt,114,1,1,2017-08-20,0.04,1,0 +10489896,Extra Bed in a Cozy & Sunny Studio,54074349,Razan,Manhattan,Chelsea,40.74398,-73.99664,Shared room,46,1,0,,,1,0 +30819919,Charming Hideout by the East River,63419128,Noah,Manhattan,Stuyvesant Town,40.73284,-73.97635,Private room,120,3,2,2019-01-19,0.32,1,0 +29547131,Nights in Midtown Manhattan-Ladies Only,222476614,Melanie,Manhattan,Kips Bay,40.74579,-73.97887,Shared room,39,2,6,2019-04-21,0.74,3,352 +36166946,Spacious decorated 2 BR minutes from Central Park.,21802668,Domenica,Manhattan,East Harlem,40.80208,-73.94415,Entire home/apt,250,17,0,,,1,46 +7064199,One-month SUBLET - bright big room,37040263,Hector And Miriam,Brooklyn,Bushwick,40.69682,-73.91458,Private room,80,1,1,2015-07-14,0.02,1,0 +36236515,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN#3.,178272943,Sharon,Queens,Jamaica,40.671890000000005,-73.78008,Private room,50,1,0,,,4,70 +30913615,Cute room for single traveler,33238800,Ayzhan,Manhattan,Hell's Kitchen,40.76568,-73.9876,Private room,100,1,35,2019-06-30,5.59,1,82 +18899768,Amazing private room in a 2 Bed/1Bath apartment!,14614795,Antonio,Manhattan,Upper East Side,40.76615,-73.95427,Private room,90,2,1,2017-06-09,0.04,1,0 +10022144,Modern & Upgraded in Midtown,10770088,Tim,Manhattan,Midtown,40.75221,-73.97157,Entire home/apt,101,2,1,2015-12-28,0.02,1,0 +9238295,Modern Spacious Apartment near UN (doorman bldg),24272490,Slavka,Manhattan,Midtown,40.75145,-73.97162,Entire home/apt,179,1,9,2017-09-11,0.21,1,189 +26277801,Upper west side 2bedroom apartment.,187960424,Anqi,Manhattan,Upper West Side,40.78968,-73.97169,Entire home/apt,250,3,1,2018-07-28,0.09,1,0 +13830415,Beautiful 2 bedroom apartment in West Harlem NYC,80491022,Mel,Manhattan,Harlem,40.82295,-73.95066,Entire home/apt,100,5,0,,,1,0 +4204988,Charming Soho One Bedroom + Loft,1162642,Emily,Manhattan,NoHo,40.72577,-73.99337,Entire home/apt,350,2,0,,,2,0 +9792286,Private room in East Village Apt.,48593918,Aaron,Manhattan,East Village,40.72265,-73.98365,Private room,90,2,187,2019-07-07,4.31,1,86 +17461591,"Cozy, Quiet Abode near Times Square",2522596,Nina,Manhattan,Hell's Kitchen,40.76051,-73.99183000000001,Entire home/apt,103,2,12,2017-08-14,0.42,1,0 +20762692,Great studio on Restaurant Row in Harlem,32502340,Moya,Manhattan,Harlem,40.8055,-73.95478,Entire home/apt,125,6,8,2018-07-01,0.36,1,0 +27876346,Industrial Brooklyn Duplex w/ Rooftops!,4336107,Bryce,Brooklyn,Crown Heights,40.67436,-73.9551,Entire home/apt,200,4,6,2019-04-07,0.61,1,4 +24609530,Modern and spacious 2 bedroom in Manhattan,185981519,Erika,Manhattan,East Village,40.72189,-73.98219,Entire home/apt,260,1,44,2019-05-25,3.0,1,299 +16276632,Cozy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76335,-73.87007,Private room,48,1,510,2019-07-06,16.22,5,341 +7916684,Room in Stylish Hells Kitchen Apt.,41743945,George - Francis,Manhattan,Hell's Kitchen,40.76328,-73.99347,Private room,160,3,3,2016-03-27,0.06,2,0 +17702320,Chic Private BR in Upper East!,10661558,Gio,Manhattan,Upper East Side,40.77571,-73.94803,Private room,119,1,120,2019-06-09,4.34,4,147 +33405611,Moxy NYC Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.711,-74.00883,Private room,169,7,4,2019-06-15,1.97,13,323 +35757611,TriBeCa / Fidi in the sky,181143,Michael,Manhattan,Financial District,40.71013,-74.00511,Entire home/apt,200,4,1,2019-07-01,1.0,1,108 +24077483,Heaven in Hell’s Kitchen,116482644,Yaniv,Manhattan,Hell's Kitchen,40.76499,-73.98888000000001,Private room,110,1,67,2019-04-08,4.51,2,0 +29216716,Sunny Room with Private Bath,29285454,Marie,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94318,Private room,55,5,2,2019-01-03,0.3,1,297 +22281888,The Fountain House,162836752,Omowumi,Brooklyn,East New York,40.670770000000005,-73.87564,Entire home/apt,169,2,23,2019-06-17,1.36,1,196 +27336782,"Cute room, 45min Manhattan, 20 LGA, 20 JFK 2Peop",205999048,Clara,Queens,Flushing,40.73717,-73.80847,Private room,30,1,16,2019-06-23,1.46,1,153 +20720290,Sophisticated KING 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77832,-73.95657,Entire home/apt,133,30,7,2019-05-31,0.47,91,281 +30333873,Accomplished private room next to Columbia Uni,126653377,Sergii,Manhattan,Harlem,40.80373,-73.95805,Private room,63,30,0,,,6,364 +36315828,Lux Tribeca Studio w/ Pool + Gym + View near City Hall by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71495,-74.00701,Entire home/apt,314,30,0,,,232,299 +34504997,"Clean room, 10 min away from the city. PRKG AVBL",252646618,Michael,Queens,Astoria,40.7644,-73.91208,Private room,65,1,2,2019-06-24,2.0,2,0 +4897673,Room available for long term,14035846,Monica,Queens,Sunnyside,40.74383,-73.92076999999999,Private room,50,15,2,2018-08-12,0.17,1,341 +36041377,Newly Renovated 1 BD w/ AC & Netflix in Queens (2),268784513,Amit,Queens,East Elmhurst,40.75755,-73.88199,Private room,50,1,3,2019-07-05,3.0,3,359 +34517668,980 sqft Royalton Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74501,-73.98668,Private room,350,1,0,,,10,361 +9756258,Room for Female-Upper West Side,11513145,Jessica,Manhattan,Upper West Side,40.78641,-73.97739,Private room,65,1,2,2016-01-08,0.05,1,0 +25584852,Huge Room With TV Uptown Manhattan,69862540,Rina,Manhattan,Washington Heights,40.8395,-73.94156,Private room,65,2,38,2019-06-27,2.97,3,21 +32448627,Lola's Casa,243766178,Lola,Bronx,Westchester Square,40.83619,-73.84916,Private room,52,4,1,2019-02-22,0.22,1,0 +230956,Wonderfully inviting East Village,1207399,Mark,Manhattan,East Village,40.72709,-73.98274,Private room,90,1,109,2015-10-02,1.15,1,333 +3613161,Exquisite SoHa/Columbia area large 2 BR,11976676,David,Manhattan,Harlem,40.80465,-73.95365,Entire home/apt,139,3,24,2017-04-26,0.49,1,0 +26386411,Cozy Modern Room in Greenpoint - GREAT LOCATION!,129559316,Tk,Brooklyn,Greenpoint,40.72225,-73.94328,Private room,115,1,6,2018-09-27,0.49,1,0 +4513084,Beautiful Sunny Private Penthouse Suite,23401472,Heather,Manhattan,Harlem,40.826240000000006,-73.94527,Entire home/apt,150,30,1,2016-07-30,0.03,2,244 +18753411,Private Room 2 Blocks From Central Park / UWS,109106746,Omer,Manhattan,Upper West Side,40.79948,-73.96314,Private room,75,1,5,2017-06-23,0.2,1,0 +27336613,Cozy Loft Apartment in Bushwick,74678395,Gabriela,Brooklyn,Bushwick,40.70624,-73.9177,Entire home/apt,130,5,14,2019-06-30,1.24,1,305 +4244528,Williamsburg Beauty,4162754,Angel,Brooklyn,Williamsburg,40.71295,-73.9623,Private room,80,1,52,2019-05-27,1.12,1,297 +25590851,Cozy master bedroom in HK: LGBT FRIENDLY.,35342651,David,Manhattan,Hell's Kitchen,40.76633,-73.98325,Private room,100,14,1,2018-06-30,0.08,1,0 +31258461,Designer 2 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69496,-73.9243,Entire home/apt,155,30,0,,,2,365 +5718494,Spacious studio between NoLiTa and LES,11559667,Veronica And Tyler,Manhattan,Lower East Side,40.72019,-73.99297,Entire home/apt,150,2,3,2017-09-15,0.13,1,0 +8211314,Cosy double bedroom in Brooklyn #2,27990825,Sophie,Brooklyn,Bushwick,40.70015,-73.92693,Private room,45,2,1,2015-10-26,0.02,2,0 +9125862,Luxury large one-bedroom apartment,47541749,Aline,Manhattan,Midtown,40.75807,-73.96308,Entire home/apt,300,1,0,,,1,0 +33163633,Beautiful Spacious Brooklyn Room #2,249291429,Boho,Brooklyn,Bedford-Stuyvesant,40.69284,-73.95954,Private room,45,3,0,,,2,135 +19981649,"Big, Bright, Beautiful Private Apartment",10286572,Erik,Manhattan,East Village,40.72697,-73.98509,Entire home/apt,239,2,13,2019-04-24,0.68,1,3 +31052694,Private Room With a Balcony In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.70877,-73.94171,Private room,89,6,8,2019-06-15,1.98,3,260 +24522061,Private space in luxury apartment with river view,63189852,Marshall,Manhattan,Roosevelt Island,40.76811,-73.94483000000001,Private room,50,7,3,2018-08-04,0.23,1,0 +16315292,Spacious 1 bedroom in the heart of downtown NYC,8368667,Maura,Manhattan,East Village,40.72543,-73.99129,Entire home/apt,215,2,18,2019-06-03,0.7,1,68 +6467264,Spacious room w/private roof deck,33782884,Kate,Brooklyn,Carroll Gardens,40.67674,-73.99805,Private room,158,2,4,2015-07-02,0.08,2,0 +33429773,Beautiful 600 ft studio in Soho,160754766,Jonah,Manhattan,SoHo,40.72506,-74.00876,Entire home/apt,230,3,2,2019-05-26,0.82,1,0 +26788016,Eclectic Room,201419214,Bryant,Brooklyn,Clinton Hill,40.68387,-73.96392,Private room,70,30,27,2019-06-13,2.38,3,347 +10292758,"**3BR, Large Duplex/private Garden, Time Square!!",52950465,Gal,Manhattan,Hell's Kitchen,40.76195,-73.99224,Entire home/apt,225,30,18,2017-12-05,0.45,12,173 +13564911,Gorgeous exposed-brick 2 BR Apt in LES!,16904031,Kiley,Manhattan,Lower East Side,40.71692,-73.98874,Entire home/apt,175,2,0,,,1,0 +13077301,"Duane Street, Upscale Tribeca 1bd",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00667,Entire home/apt,245,30,1,2018-05-26,0.07,87,262 +13745575,2 Bedroom Apartment / Prime Williamsburg Location,1571120,Timothy + Gina,Brooklyn,Williamsburg,40.71104,-73.96098,Entire home/apt,199,2,31,2019-05-22,0.88,2,23 +25290969,Wyndham Midtown 45 (2 Bedroom Presidential) 3A,100238132,Michael,Manhattan,Midtown,40.75305,-73.97129,Entire home/apt,339,3,14,2018-11-19,1.13,12,0 +6726361,"South Facing Brownstone, 2nd Floor",921857,Victoria,Brooklyn,Bedford-Stuyvesant,40.68354,-73.92612,Private room,50,7,3,2016-12-29,0.06,1,31 +9342478,"Beautiful, airy, light-filled room",10406276,Kathleen,Brooklyn,Williamsburg,40.70491,-73.93098,Private room,42,3,0,,,1,0 +7562552,Classic 1BR Brownstone w/ Backyard,39639169,Marlene,Brooklyn,Bedford-Stuyvesant,40.68338,-73.92071999999999,Entire home/apt,110,3,125,2019-06-25,2.66,1,315 +6330321,2-Bdrm Entire Apartment St. George,6319915,Jason,Staten Island,St. George,40.64524,-74.08326,Entire home/apt,89,4,129,2019-06-30,2.57,2,25 +8741446,"Clean, inviting apt.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77058,-73.91091,Entire home/apt,187,6,57,2019-06-09,1.33,8,275 +26900640,Cozy & Bright Room w/ Big Window!!,200239515,Shogo,Queens,Woodside,40.74102,-73.89358,Private room,40,30,3,2019-02-25,0.29,15,0 +8993887,NYC.CHAUNCEY1 15.min to Manhattan.,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68003,-73.92094,Private room,42,1,122,2019-06-23,2.84,4,340 +7686940,The Wielingen,40371157,Jimmy,Bronx,Longwood,40.82417,-73.90156,Private room,95,1,182,2019-01-01,3.82,2,0 +31803703,COZY! PRIME LOCATION! REAL 2-BEDROOM!,238342493,George,Brooklyn,Cobble Hill,40.68846,-73.99557,Entire home/apt,250,2,19,2019-07-01,3.63,1,295 +18462291,Comfortable One bedroom Harlem Aprt,57900598,Lyvan Esteban,Manhattan,Harlem,40.81752,-73.94162,Entire home/apt,80,2,40,2019-06-30,1.51,1,0 +23897524,Small room in Midtown West,6438952,Sam,Manhattan,Hell's Kitchen,40.76191,-73.99199,Private room,75,7,0,,,1,0 +25764939,"Penny's Place Brooklyn, NY",186481199,Penny,Brooklyn,East Flatbush,40.65496,-73.94405,Private room,125,1,0,,,1,311 +31050262,"Come and enjoy ""Brooklyn is the new Manhattan""",231929970,Nusrat,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.94083,Private room,55,1,1,2019-01-02,0.16,1,0 +13801296,FORT GREENE- Private room in spacious apartment.,81161047,Fernando & Jess,Brooklyn,Fort Greene,40.69195,-73.97151,Private room,57,7,0,,,1,0 +31465817,HIP & FUN PRIVATE / COZY BEDROOM 1 BLK FROM METRO,132908616,Federico,Brooklyn,Bushwick,40.70218,-73.92045999999999,Private room,40,3,13,2019-07-03,2.95,2,51 +34316575,#4 ROOM 4FAMILY (4 guests) Train 3 Kingston Ave,256235740,Levi,Brooklyn,Crown Heights,40.66878,-73.93888000000001,Shared room,45,2,0,,,3,365 +24260464,Garden room in a private house,15310048,Darya,Brooklyn,East Flatbush,40.65185,-73.94555,Private room,45,45,5,2019-06-01,0.38,2,155 +9577296,1BD in West Village,49577355,J.J.,Manhattan,West Village,40.74029,-74.00578,Entire home/apt,225,2,185,2019-06-21,4.24,1,250 +3857180,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65575,-73.9609,Private room,150,5,11,2016-10-31,0.23,2,0 +19709666,Beautiful Studio in Historic Inwood-NYC!,21056771,Lauren & Ron,Manhattan,Inwood,40.86801,-73.92371999999999,Entire home/apt,65,2,112,2019-06-27,4.67,1,103 +28658564,Perfectly located UWS - Cool Clean studio,196211856,Tarun,Manhattan,Upper West Side,40.77771,-73.98023,Entire home/apt,145,5,4,2019-05-05,0.53,1,0 +36278959,"Bright and sunny clean, cute Upper East side oasis",29570399,Sean,Manhattan,Upper East Side,40.77488,-73.94934,Entire home/apt,210,2,0,,,1,106 +29630759,"Room @Brooklyn, NY",222136360,Muhammet,Brooklyn,Borough Park,40.647490000000005,-73.99646,Private room,45,1,8,2019-01-01,0.96,1,6 +18062797,Huge Room with a Private Bathroom,85316652,Umut Can,Queens,Sunnyside,40.74385,-73.91403000000001,Private room,95,2,36,2018-09-11,1.37,1,0 +29791183,Nice room in Astoria 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.76984,-73.90779,Private room,45,1,7,2019-06-22,2.5,5,29 +8521188,1 Bed Room BEST LOCATION EPIC VIEWS,684398,Deepak,Manhattan,Hell's Kitchen,40.75744,-73.99269,Entire home/apt,285,4,2,2016-10-09,0.04,1,0 +23506770,Brooklyn Designer Home!!!,5977578,Agate,Brooklyn,Crown Heights,40.67843,-73.96125,Entire home/apt,325,4,3,2018-08-23,0.27,2,98 +8653999,Charming Upper West Side Apartment,43219894,Lauren,Manhattan,Upper West Side,40.78322,-73.97435,Entire home/apt,180,1,2,2016-11-27,0.04,1,0 +35768873,Brand new 3 BD apartment a minute from G train,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95456999999999,Entire home/apt,300,2,0,,,4,275 +18188738,Cute Family Friendly Vintage Brownstone Living!!,27403581,Shay & Cam,Manhattan,Harlem,40.82665,-73.94669,Shared room,49,2,52,2019-04-16,1.95,1,194 +15940176,Cute room in Williamsburg BK,1252820,Marc,Brooklyn,Williamsburg,40.71329,-73.96321999999999,Private room,60,5,72,2019-07-06,2.35,1,7 +23207975,Ridge wood apartment w/ rooftop deck,47070613,Max,Queens,Ridgewood,40.70663,-73.89709,Private room,60,1,44,2019-06-22,2.57,1,84 +35617028,Huge room @ a Gorgeous apt + beautiful back yard,6997690,Gregg,Brooklyn,Greenpoint,40.73259,-73.95611,Private room,100,3,1,2019-06-23,1.0,1,65 +6821839,"1 BR Apt., historic Jackson Heights",35726649,Chris,Queens,Jackson Heights,40.75129,-73.88784,Entire home/apt,135,5,8,2019-06-29,0.17,1,0 +8502814,Comfortable Junior One Bedroom,8636732,Kay,Brooklyn,Flatbush,40.63682,-73.9676,Entire home/apt,70,3,0,,,2,0 +18610539,Garden-level apartment in historic Cobble Hill,34361146,Penelope,Brooklyn,Cobble Hill,40.68582,-73.99801,Entire home/apt,156,31,10,2018-12-09,0.39,1,0 +4386598,1 Bedroom in Top Lower East Side Address,356933,Jessica,Manhattan,Lower East Side,40.71962,-73.98567,Entire home/apt,180,2,178,2019-07-01,3.11,1,227 +2115784,Beautiful Prewar 1BD Apartment,10787148,Sarah,Brooklyn,Flatbush,40.64759,-73.96173,Entire home/apt,50,10,4,2014-07-13,0.06,1,0 +15483201,Cute Bedroom for Two in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74777,-73.91685,Private room,108,3,36,2019-05-25,1.18,4,356 +17589815,"A small bedroom, Lower East Side",64610450,Emma,Manhattan,Chinatown,40.71569,-73.99076,Private room,63,3,10,2017-05-05,0.36,1,0 +3595554,Jackson Stayover Apt,18108212,Adriana,Queens,St. Albans,40.69283,-73.75828,Entire home/apt,108,2,81,2019-06-27,1.35,1,328 +25137152,Bright 1 Bedroom in the East Village,189982777,Cloe,Manhattan,East Village,40.72266,-73.98148,Entire home/apt,140,4,49,2019-07-03,3.58,1,51 +33787438,Cozy Studio in the heart of NYC,131544841,Taina,Manhattan,Kips Bay,40.744690000000006,-73.98037,Entire home/apt,120,2,5,2019-07-07,2.05,1,10 +19675166,Massive 1200ft² Luxury Loft in Heart of Flatiron,4252459,Sara,Manhattan,Flatiron District,40.74175,-73.99104,Entire home/apt,350,2,0,,,1,205 +31286946,Spacious large bedroom room,88484548,Margaret,Queens,Queens Village,40.70685,-73.73583,Private room,70,2,1,2019-01-21,0.18,1,0 +29672090,comfortable one-bedroom in great LES location,1887283,Sylvia,Manhattan,Chinatown,40.71415,-73.99255,Entire home/apt,121,2,8,2019-06-24,1.07,1,0 +35836471,Cozy Large Sunny Artist Retreat 10min to Manhattan,269114687,Felicia,Brooklyn,Williamsburg,40.71799,-73.95826,Entire home/apt,188,5,1,2019-06-30,1.0,1,51 +22796694,room 3 Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81376,-73.95354,Private room,69,2,4,2018-10-28,0.29,11,180 +20162513,Cozy Studio Close to Broadway and Times Square,683142,Jose,Manhattan,Hell's Kitchen,40.76242,-73.99481999999999,Entire home/apt,135,2,3,2017-12-26,0.13,1,0 +19260473,Nicki and Tim's place,5325177,Nicki,Brooklyn,Flatbush,40.64707,-73.96278000000001,Entire home/apt,85,5,2,2018-01-01,0.09,1,0 +4757941,Cute & Cozy 1BR in the East Village,24551170,Neil,Manhattan,East Village,40.72619,-73.98284,Entire home/apt,239,2,2,2015-02-05,0.04,1,0 +21212937,EAST 60TH STREET STUDIO WITH 2 DOUBLE BEDS,76104209,Rated,Manhattan,Upper East Side,40.761140000000005,-73.961,Entire home/apt,153,30,1,2017-10-30,0.05,33,365 +755684,Cozy Soho Studio Loft Apt Bleecker ,3977494,Sandra,Manhattan,Greenwich Village,40.727140000000006,-73.99580999999999,Entire home/apt,187,14,1,2013-01-04,0.01,1,0 +1028263,Spacious Room/Great Location,5658953,Claudia,Manhattan,East Village,40.72944,-73.98645,Private room,60,5,66,2019-06-26,0.87,1,232 +18546552,Large 1 Bedroom in South Brooklyn,12627412,Allen,Brooklyn,Sheepshead Bay,40.60402,-73.95257,Entire home/apt,88,4,1,2017-05-22,0.04,1,0 +18104150,Large Newly Renovated Guest Suite,124702572,Ted & Tony,Brooklyn,Bedford-Stuyvesant,40.6817,-73.92068,Entire home/apt,200,2,12,2019-06-14,0.46,1,9 +5418312,*PIZZAZZ* Fantastic Studio Apartment-Upper East!,25237492,Juliana,Manhattan,Upper East Side,40.76181,-73.96127,Entire home/apt,115,30,18,2019-06-30,0.35,34,311 +16026567,Cozy Room In Williamsburg Near Trains❤️,13394035,Samuel,Brooklyn,Williamsburg,40.70875,-73.94478000000001,Private room,49,20,85,2019-05-27,2.74,1,35 +17524075,Quiet & spacious east village/LES private bedroom,15730200,Ruishu,Manhattan,Lower East Side,40.72131,-73.98508000000001,Private room,150,2,1,2019-04-20,0.37,1,0 +16179502,Charming room well located !!!!,13325936,Madi,Manhattan,East Harlem,40.79275,-73.94191,Private room,60,5,1,2017-01-02,0.03,1,0 +6703091,Charming East Village Apartment,35087743,Joshua,Manhattan,East Village,40.72132,-73.98263,Entire home/apt,100,5,0,,,1,0 +4582684,Comfortable one bedroom with patio,23754530,Josh,Brooklyn,Fort Greene,40.688590000000005,-73.9767,Entire home/apt,150,2,99,2019-06-29,1.77,1,246 +4188351,"Cozy, charming private apt in Brooklyn",610819,Brian,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93058,Entire home/apt,116,2,148,2019-06-16,2.56,1,0 +30067550,1 Sunny Sublet in Crown Heights 3 BR Apt,7569336,Simona,Brooklyn,Crown Heights,40.66988,-73.94682,Private room,60,20,1,2018-11-30,0.14,1,64 +2165107,Cozy Manhattan 1 BR,10533538,Sean,Manhattan,Upper East Side,40.7604,-73.96029,Entire home/apt,100,6,29,2019-05-30,0.47,1,128 +18793633,Beautiful 1 Bed near Washington Square Park!!,38609043,Lauren,Manhattan,Greenwich Village,40.73193,-73.99931,Entire home/apt,299,2,28,2019-07-07,1.15,1,64 +1573068,COZY STUDIO,8362282,Drica 2017,Manhattan,Upper West Side,40.78808,-73.9754,Entire home/apt,125,1,15,2016-05-24,0.21,1,362 +13215733,EAST 25TH ST~KIPS BAY/EAST VILLAGE/UNION SQUARE,2856748,Ruchi,Manhattan,Kips Bay,40.7394,-73.97995999999999,Entire home/apt,225,30,0,,,49,364 +2106241,Private Room with Plush Queen Bed,1318137,Adriano,Brooklyn,Bushwick,40.69472,-73.92874,Private room,65,3,87,2019-06-11,1.37,2,305 +8224368,Bushwick Brooklyn Morgantown Oasis,4591602,Alec & Laura,Brooklyn,Bushwick,40.7043,-73.92719,Private room,120,2,78,2019-06-03,1.79,1,206 +29455764,Single room in a 2-br apartment in the UWS,92657816,Juan Francisco,Manhattan,Morningside Heights,40.80463,-73.96373,Private room,99,3,3,2019-03-04,0.38,2,0 +24805348,Bright Room in Williamsburg,187530856,Baris,Brooklyn,Williamsburg,40.70896,-73.94754,Private room,157,1,6,2018-10-28,0.42,2,365 +20641332,COZY L.E.S APARTMENT,108894035,Danny,Manhattan,Lower East Side,40.72008,-73.98786,Entire home/apt,139,5,12,2019-04-28,0.56,1,25 +20915427,Tiny homes on water,95999344,Marie L,Brooklyn,Mill Basin,40.60903,-73.91846,Entire home/apt,250,1,5,2019-07-07,1.7,1,360 +11553357,Brick House: Unique Garden Apartment! King Bed!,3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.91365,Entire home/apt,125,2,40,2019-07-01,0.99,3,354 +15042361,Airports Sleep Inn,57023844,Karlene,Queens,Jamaica,40.6871,-73.77887,Private room,68,3,16,2019-01-03,0.47,2,359 +20772782,Bushwick Palace,69034515,Alexandra,Brooklyn,Bushwick,40.70353,-73.9288,Private room,80,4,0,,,1,0 +30369494,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,228011801,Hugo,Brooklyn,Williamsburg,40.70955,-73.96311,Private room,69,7,1,2019-06-23,1.0,1,0 +6709867,Large Private Room in prime BK,11039369,Mike,Brooklyn,Fort Greene,40.68881,-73.97391,Private room,55,1,1,2016-03-24,0.02,1,0 +714028,An Oasis in the Big Apple 2,3621183,Paul,Queens,Woodside,40.74746,-73.89712,Entire home/apt,120,3,51,2019-07-03,1.52,3,253 +26200914,Full Apartment in Forest Hills with Easy Parking,97262966,John,Queens,Forest Hills,40.71325,-73.85415,Entire home/apt,89,3,5,2018-12-30,0.45,2,1 +9315478,Darling West Village Studio,15815555,Meredith,Manhattan,West Village,40.7356,-74.00405,Entire home/apt,200,1,0,,,1,0 +5364337,1 Private Bedroom w/ private bath,27807705,Isoke,Brooklyn,Bedford-Stuyvesant,40.68767,-73.94147,Private room,70,1,0,,,1,0 +21633631,Cozy studio at heart of Williamsburg,21099366,Lauren,Brooklyn,Williamsburg,40.71223,-73.96025,Entire home/apt,150,4,5,2019-01-02,0.25,1,0 +14841128,"Cozy Quiet/NYC, Brooklyn apt next to subway!!",92333417,Valerie,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94943,Entire home/apt,152,3,132,2019-06-24,4.13,2,321 +23702356,The Yellow CropTop in Harlem NYC,177562935,Virginia,Manhattan,Harlem,40.812740000000005,-73.9455,Private room,147,1,3,2019-04-22,0.3,2,57 +30084269,Private Large Bedroom in Brooklyn,12171344,Marta,Brooklyn,Crown Heights,40.66655,-73.95005,Private room,85,2,7,2019-07-03,0.99,2,27 +13314752,Astoria-LIC Private Room,75061595,Cesar,Queens,Long Island City,40.76053,-73.92976999999999,Private room,78,2,27,2017-08-21,0.72,1,0 +14995382,Large Victorian in Brooklyn - Downstairs 2 Beds,94555248,Beryl,Brooklyn,East Flatbush,40.63948,-73.95008,Private room,50,1,35,2019-06-16,1.03,2,365 +16883813,Cozy and Sunny 2 bedroom apartment,5302735,Thiago,Manhattan,Harlem,40.80495,-73.9556,Entire home/apt,224,4,29,2019-06-09,0.99,2,0 +26388933,Brooklyn Hostel bedroom 2. Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69405,-73.95591999999999,Shared room,38,1,12,2019-06-08,1.0,34,360 +17860607,Super Cozy Luxury Apt,10914834,Heidi,Manhattan,Financial District,40.704640000000005,-74.00715,Entire home/apt,220,2,108,2019-07-01,3.92,1,225 +26098606,"Light, airy and spacious Apartment close to all",15106211,Siddhartha,Brooklyn,Gowanus,40.67965,-73.98899,Entire home/apt,150,5,2,2019-04-25,0.17,1,16 +31994556,Williamsburg Micro Guest House,239887273,Amanda,Brooklyn,Williamsburg,40.71815,-73.95834,Private room,75,1,24,2019-07-03,4.62,1,201 +13064443,Amazing Studio in Brooklyn Heights,15239567,Feliz,Brooklyn,Brooklyn Heights,40.69218,-73.99124,Entire home/apt,110,2,1,2016-05-23,0.03,1,0 +647520,Charming 1br in of NYC's best Neighborhood!,3245431,Jon,Manhattan,NoHo,40.7256,-73.99445,Entire home/apt,234,20,29,2019-04-30,0.37,1,302 +28185867,Zen & Cozy Room In Astoria,39537244,Evelyn,Queens,Ditmars Steinway,40.78569,-73.91521999999999,Private room,42,3,11,2019-07-02,1.14,1,244 +1354973,Gorgeous spacious. 2 subways close,306394,Marialuisa,Brooklyn,Bedford-Stuyvesant,40.6842,-73.9177,Private room,59,1,123,2019-06-30,2.23,1,336 +35496676,Cozy Private Bedroom in Upper West Side,266522456,Aaron,Manhattan,Upper West Side,40.8014,-73.96563,Private room,130,1,9,2019-07-07,9.0,3,79 +14547982,Modern Room with private bathroom in spacious apt,27427335,Tyler,Brooklyn,Greenpoint,40.71937,-73.95331999999999,Private room,99,3,3,2017-10-28,0.13,1,0 +22233024,Newly Renovated 1BR in SoHo/Nolita,23261539,James,Manhattan,Nolita,40.72344,-73.99592,Entire home/apt,225,7,1,2018-06-28,0.08,1,0 +21633212,NYC Garden Escape (2 min to subway),155938307,John,Manhattan,Harlem,40.81264,-73.94601999999999,Entire home/apt,225,2,55,2019-06-16,3.5,1,133 +36207556,Beautiful apartment steps away from Central Park,192572987,Stewart,Manhattan,Upper West Side,40.79617,-73.96228,Entire home/apt,125,2,0,,,1,0 +23575358,Cozy quarters for your getaway!,165135574,Kam,Manhattan,Gramercy,40.73629,-73.98753,Entire home/apt,165,6,10,2019-07-02,0.65,1,43 +34502284,Bushwickian Paradise,18263672,Andrew,Brooklyn,Bushwick,40.69243,-73.90741,Entire home/apt,100,2,3,2019-06-16,1.73,1,35 +17140782,Williamsburg Loft,16868847,Sophie,Brooklyn,Williamsburg,40.71779,-73.96337,Private room,129,2,0,,,1,0 +23056637,A Cozy Artsy Apartment in the heart of Sunnyside,80651652,Vasko,Queens,Sunnyside,40.7437,-73.91983,Entire home/apt,100,3,0,,,1,0 +14842991,Sunny Upper East Side Escape,4611487,Caroline,Manhattan,Upper East Side,40.76749,-73.95470999999999,Private room,95,4,101,2019-06-26,2.94,1,49 +13162150,"Sunfilled, clean, MONTHly discount",4326776,Sabina,Queens,Woodside,40.74457,-73.90474,Private room,80,14,0,,,1,0 +11530901,Modern Condo in Heart of Harlem,42535703,Fma,Manhattan,East Harlem,40.79922,-73.94677,Private room,120,3,0,,,2,0 +4394687,Upper East Side Studio,10952317,Angela,Manhattan,Upper East Side,40.77626,-73.95246,Entire home/apt,125,1,7,2016-10-03,0.13,1,0 +26982403,Enchanting 1BR near Times Sq w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76196,-73.98536,Entire home/apt,280,30,2,2019-05-16,0.36,232,218 +22651032,1BR Guest Suite with private entrance,113469347,Joel,Queens,Queens Village,40.718990000000005,-73.75347,Entire home/apt,45,3,27,2019-06-24,3.65,1,304 +27920036,Penthouse 1 bedroom in LIC,32604201,Cherie,Queens,Long Island City,40.75094,-73.93806,Entire home/apt,107,3,4,2018-11-25,0.38,1,0 +29873175,Vibrant room in Bushwick with lots of light,119990626,Vladimir,Brooklyn,Bushwick,40.69862,-73.92849,Private room,60,7,1,2018-11-28,0.13,1,173 +7203943,Waterfront in Williamsburg,21381325,Tara,Brooklyn,Williamsburg,40.709990000000005,-73.9689,Private room,100,1,0,,,1,0 +11253351,One room available in apartment,55688014,Juliann,Manhattan,Hell's Kitchen,40.76112,-73.99075,Private room,70,1,0,,,1,0 +8167884,Greenpoint Brooklyn Modern Charm,43108922,Robbin,Brooklyn,Greenpoint,40.72176,-73.94393000000001,Entire home/apt,165,2,129,2019-06-06,2.8,2,235 +13370053,Spacious creative waterfront loft,75915628,Farrah,Brooklyn,Greenpoint,40.73431,-73.95928,Entire home/apt,140,2,3,2016-12-21,0.08,1,0 +14767195,"Quaint, sunny, and quiet room overlooking garden.",92110601,Amey,Queens,Sunnyside,40.73967,-73.92367,Private room,50,2,7,2016-11-13,0.21,1,0 +19906578,Charming studio in the heart of Williamsburg,132839074,Jill,Brooklyn,Williamsburg,40.71673,-73.94442,Entire home/apt,101,2,7,2019-02-09,0.64,1,0 +26756045,vicky客栈3,180991373,Vicky,Queens,Flushing,40.74294,-73.82318000000001,Private room,49,1,25,2019-07-05,2.12,5,46 +12953234,Sofa Bed Available in Midtown Manhattan,3664485,Arnie,Manhattan,Hell's Kitchen,40.76455,-73.99128,Shared room,30,3,0,,,1,0 +3120957,"Clean, Safe, Convenient, Comfy",8703,Michael,Manhattan,Harlem,40.80699,-73.94227,Shared room,200,1,8,2016-09-29,0.13,1,180 +9416007,Subway. Ocean. Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.5888,-73.97278,Private room,70,3,46,2019-06-13,1.05,2,92 +66451,**Fantastic Williamsburg Apt**,325389,Luis Fernando,Brooklyn,Williamsburg,40.71031,-73.9583,Entire home/apt,140,2,9,2019-02-16,0.11,1,254 +2296024,Three bedroom upscale condo,2321783,Donna,Bronx,Riverdale,40.88579,-73.91599000000001,Entire home/apt,250,7,2,2019-01-02,0.04,1,338 +18094196,Upper East Side Full 1-Bedroom Apartment,16307239,Julia,Manhattan,Upper East Side,40.7709,-73.95508000000001,Entire home/apt,130,7,5,2019-07-06,0.21,1,14 +33633697,Olive's Guest Quarters #3,152394865,Arline,Brooklyn,Flatlands,40.6313,-73.94534,Private room,175,2,4,2019-06-18,2.18,3,43 +3623201,Charming brownstone top floor 1BD,14273136,Allegra,Brooklyn,Park Slope,40.66981,-73.98461999999999,Entire home/apt,94,10,26,2019-06-22,0.52,1,0 +7763203,Large comfy room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95595,Private room,89,5,28,2019-06-15,0.6,3,282 +14318774,New York Masterpiece,37718300,Martha,Queens,Rego Park,40.73541,-73.85632,Entire home/apt,145,3,88,2019-06-17,2.56,1,321 +29565013,True 1BR in East Village with City Views,213302863,Kahrej,Manhattan,East Village,40.72348,-73.98321999999999,Entire home/apt,175,3,3,2019-01-01,0.36,1,0 +30941454,Spacious 1 bedroom in Bensonhurst - Sleeps 4,231212364,Kel,Brooklyn,Bensonhurst,40.6065,-73.99916999999999,Entire home/apt,113,3,13,2019-05-27,2.07,2,118 +24095408,"Spacious Williamsburg, Brooklyn Spare Room",156955078,Michael,Brooklyn,Williamsburg,40.71952,-73.94165,Private room,70,2,41,2019-06-30,2.73,1,14 +2897507,Private Room in Cozy Brooklyn Apt. for Female,9840901,Anna,Brooklyn,Bedford-Stuyvesant,40.68105,-73.95783,Private room,40,7,16,2019-05-18,0.5,1,221 +34811838,Experience the cozy #VanLife in NYC/East Village!,262452748,Nancy,Manhattan,East Village,40.72609,-73.98354,Entire home/apt,89,1,10,2019-06-24,5.88,2,173 +11923007,Trendy & spacious Williamsburg Apt,7640852,Markus,Brooklyn,Williamsburg,40.71178,-73.95779,Private room,95,2,0,,,1,0 +26743923,Freehand New York- Bunk Room,164291123,Freehand,Manhattan,Flatiron District,40.74107,-73.98693,Private room,179,1,35,2019-05-26,3.11,3,331 +5624807,"Luxury 2BR, Prime Location, 20 Min to Manhattan",15775091,Asaf,Brooklyn,Crown Heights,40.67051,-73.95851,Entire home/apt,180,2,2,2017-06-11,0.07,1,0 +16055506,Cozy private studio 10m fr LGA 30m to Manhattan,104558512,Olenka,Queens,Maspeth,40.7322,-73.89944,Entire home/apt,86,2,78,2019-06-29,2.55,1,149 +12958663,"Breathtaking, panoramic views of Downtown NYC/FiDi",71241926,Mike,Manhattan,Financial District,40.70951,-74.01476,Entire home/apt,125,32,99,2019-05-29,2.73,1,203 +35958528,East Harlem Studio Sleeps 3,56731026,Danyelle,Manhattan,Harlem,40.81709,-73.93866,Entire home/apt,125,1,0,,,1,69 +28892979,4min subway.free parking big private room温馨漂亮大睡房,196058543,美德,Queens,Forest Hills,40.719840000000005,-73.83969,Private room,78,2,28,2019-07-03,3.05,5,205 +24267385,Sonder | 116 John | Charming 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70688,-74.00523000000001,Entire home/apt,194,29,0,,,96,343 +680104,Newly Renovated 1 BR,3462232,Stephen,Manhattan,Lower East Side,40.7195,-73.99416,Private room,167,5,32,2018-09-14,0.39,1,341 +34600024,My NYC Dream Home II,261036755,Sandra,Brooklyn,Bedford-Stuyvesant,40.69023,-73.92746,Entire home/apt,175,3,2,2019-07-01,2.0,1,329 +22275821,,49662398,Kathleen,Brooklyn,Bushwick,40.69546,-73.92741,Entire home/apt,110,4,5,2018-08-13,0.27,1,0 +2057295,Junior 1-BR in West Village,10534508,Amanda,Manhattan,West Village,40.73075,-74.00238,Entire home/apt,110,45,21,2018-01-02,0.31,1,0 +30815097,Entire 1BR APT in historic Clinton Hill Brownstone,3636827,Kyle,Brooklyn,Clinton Hill,40.68246,-73.9643,Entire home/apt,195,2,2,2019-05-19,0.31,1,44 +24943768,Luxurious Suite Grand Central,168465501,Ian,Manhattan,Murray Hill,40.74929,-73.97827,Entire home/apt,150,30,3,2018-11-23,0.27,4,113 +98330,LOVELY APARTMENT IN THE HEART OF NY,31374,Shon,Manhattan,Kips Bay,40.73877,-73.97707,Entire home/apt,125,4,1,2012-01-03,0.01,3,181 +23353173,Chateau Upon Metro - large sunny 1bd near train,55149174,Anthony,Brooklyn,Kensington,40.64588,-73.97831,Private room,43,2,0,,,1,0 +9013280,Luxury studio Bedstuy Brooklyn,8011670,Joel,Brooklyn,Bedford-Stuyvesant,40.68757,-73.93032,Entire home/apt,70,2,77,2019-06-29,1.77,1,274 +25503835,Hidden Gem in Canarsie-FREE private parking,192464234,Rodolfo,Brooklyn,Canarsie,40.64516,-73.89684,Entire home/apt,100,1,95,2019-07-08,7.77,1,124 +7649693,"Beautiful, large and sunny bedroom",40138709,Dani,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95634,Private room,32,1,0,,,1,0 +20418684,East Village / Alphabet City 1BR,33827790,Kevin,Manhattan,East Village,40.72208,-73.97779,Entire home/apt,185,1,17,2019-05-05,0.77,1,11 +23479042,Spacious & Private Apt steps to Prospect Park,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.65891,-73.95886999999999,Entire home/apt,150,2,68,2019-07-05,4.27,2,32 +33141938,Clean Beautiful New apartment renovated in 2019,19303369,Hiroki,Manhattan,Inwood,40.86507,-73.92348,Private room,35,29,0,,,37,31 +30514401,1 bedroom,222805048,Fidel,Manhattan,Washington Heights,40.85025,-73.94105,Private room,40,1,27,2019-06-17,4.01,1,49 +34778518,"Cozy Studio in Manhattan, Upper East Side",262244457,Marie,Manhattan,Upper East Side,40.77064,-73.95606,Entire home/apt,250,1,7,2019-06-30,4.47,1,188 +23425584,"1 bedroom, entire apartment, in upper Manhattan",31825530,Keyonna,Manhattan,Washington Heights,40.83229,-73.94339000000001,Entire home/apt,66,5,8,2018-12-27,0.48,1,0 +5161173,3BDR architect's garden home,1027417,Julien,Brooklyn,Park Slope,40.67365,-73.9814,Entire home/apt,350,3,5,2019-02-19,0.12,1,22 +452541,Brooklyn Apartment Windsor Terrace,2248545,Helen,Brooklyn,Windsor Terrace,40.660340000000005,-73.9829,Entire home/apt,142,3,120,2019-07-01,1.4,1,222 +32790345,Private cozy room By Yankee stadium,246666261,Jovid,Bronx,Claremont Village,40.84355,-73.91103000000001,Private room,55,1,8,2019-06-17,2.67,1,358 +13669161,Comfortable-Private one room in LES,17605950,Denis,Manhattan,Lower East Side,40.71881,-73.98881999999999,Private room,99,2,48,2018-02-03,1.3,1,0 +9612938,Studio apt in Historic House Museum,49736436,George,Manhattan,Washington Heights,40.83549,-73.93968000000001,Entire home/apt,120,3,10,2019-07-01,0.7,2,244 +8842185,Staten Island NYC Marathon,46305818,Elizabeth,Staten Island,Shore Acres,40.60597,-74.06208000000001,Private room,300,1,0,,,1,0 +26250185,LYRIC - Hotel Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70722,-74.00873,Entire home/apt,219,1,36,2019-07-07,2.83,8,321 +26810466,Bright Midtown East,53883793,Rory,Manhattan,Midtown,40.76085,-73.96627,Entire home/apt,180,2,2,2019-06-10,0.17,1,4 +18597754,Sunny 1BR Near Train (Greenpoint/Williamsburg),29134684,Max,Brooklyn,Greenpoint,40.72686,-73.95246,Entire home/apt,199,6,2,2017-07-14,0.08,1,0 +8162587,Studio in Midtown East (1 q+couch),43082153,Ema,Manhattan,Midtown,40.75249,-73.96866,Entire home/apt,120,4,3,2016-07-10,0.06,1,0 +33774162,Shared room y Times Square,253906467,Erik,Manhattan,Hell's Kitchen,40.76483,-73.98975,Shared room,85,1,12,2019-06-27,4.09,9,349 +19942348,Sunny and Airy FiDi Studio,141324173,Victoria,Manhattan,Financial District,40.71103,-74.00845,Entire home/apt,200,2,74,2019-06-24,3.13,1,35 +19209474,Cambridge Place 4 bed Home,134415241,Katherine,Brooklyn,Clinton Hill,40.68384,-73.96200999999999,Entire home/apt,350,2,4,2017-08-06,0.16,1,0 +14451686,Super relaxing West Village 1BR w/private terrace,60102990,Nicolas,Manhattan,West Village,40.73435,-74.0066,Entire home/apt,199,30,32,2018-10-06,0.91,1,343 +21272115,Visit the Big Apple! Mini-MOMA. Enjoy all of NYC!,68557372,Shannon,Manhattan,Harlem,40.806740000000005,-73.95336999999999,Private room,75,1,60,2019-06-27,3.25,2,182 +16048422,Cute Greenpoint room,25599837,Louise,Brooklyn,Greenpoint,40.734190000000005,-73.95675,Private room,60,3,1,2017-01-02,0.03,1,0 +33044270,Quite clean queen size bedroom,154234826,Max,Manhattan,Harlem,40.82039,-73.94402,Private room,50,3,4,2019-05-23,1.97,1,9 +34749210,Sobro,262047205,Adriana,Bronx,Mott Haven,40.80689,-73.91436999999999,Entire home/apt,100,3,4,2019-07-01,2.79,1,330 +2620068,Cute Apartment with Great Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77107,-73.95682,Entire home/apt,117,30,6,2019-03-31,0.11,29,255 +18396197,Two Bed Brownstone in the Heart of Brooklyn!,23722638,Laura,Brooklyn,Carroll Gardens,40.6845,-73.99024,Entire home/apt,175,4,4,2017-12-26,0.16,2,0 +34948758,Charming and Cozy Studio Apartment!!,103628289,Kathleen,Manhattan,East Village,40.7283,-73.98589,Entire home/apt,130,3,1,2019-06-23,1.0,1,4 +6223929,Charming studio near Little Italy!,1613244,Ariel,Manhattan,Nolita,40.72342,-73.99292,Entire home/apt,95,30,13,2019-05-04,0.27,9,137 +30401429,Lovely room in convenient location. J/M & L trains,58344344,Julie,Brooklyn,Bushwick,40.70089,-73.93903,Private room,51,1,33,2019-06-28,5.24,1,19 +28609762,Sun Filled Oasis,135150441,Savannah,Brooklyn,Bedford-Stuyvesant,40.68987,-73.94484,Private room,80,4,1,2018-12-22,0.15,1,325 +25911322,Brooklyn Basement,144002200,April,Brooklyn,Gowanus,40.67087,-73.99305,Entire home/apt,75,2,7,2019-07-07,0.74,1,7 +22689214,A ROOM DESIGNED JUST FOR YOU,72392039,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93056999999999,Private room,55,2,9,2019-04-04,0.8,1,319 +3672455,Private RM | Queens | 20min to city,6966831,Victoria,Queens,Sunnyside,40.74532,-73.91974,Private room,75,2,3,2015-07-23,0.06,1,0 +3048234,Best Deal/Columbus Circle/Renovated,1475015,Mike,Manhattan,Hell's Kitchen,40.76866,-73.98616,Entire home/apt,87,30,6,2018-10-04,0.1,52,365 +33548209,"Large, Bright, Full Home in Greenpoint w/ Backyard",252790183,Shelley,Brooklyn,Greenpoint,40.73279,-73.954,Entire home/apt,240,2,1,2019-04-28,0.42,1,7 +12212943,Upper East Side Brand New Apt,65690091,Mohine,Manhattan,Upper East Side,40.78173,-73.94621,Private room,185,1,0,,,1,0 +35667379,Renovated apartment near 1 train ( & Columbia),222549093,Anna Laura,Manhattan,Harlem,40.81668,-73.9569,Private room,65,1,1,2019-07-06,1.0,3,17 +13225970,哥大附近卧室 Room on Upper West/Columbia,74231989,Siyu,Manhattan,Upper West Side,40.80205,-73.9658,Private room,36,15,1,2016-08-01,0.03,1,0 +6843145,"Perfect, 1 block from Central Park",5361360,Michael,Manhattan,Upper West Side,40.78787,-73.97116,Entire home/apt,200,3,6,2017-07-17,0.16,1,0 +18264166,10 mins/Airports JFK/LGA/Hosp/malls bus/train# 1,126247863,Seeranie,Queens,Richmond Hill,40.69104,-73.82204,Private room,50,1,102,2019-06-23,4.02,2,354 +14692459,2BR fully furnished in the UES - minimum 30 days,23772724,Elem,Manhattan,Upper East Side,40.78316,-73.94662,Entire home/apt,175,30,4,2018-08-04,0.14,15,343 +18852245,Beautiful Room in Historic Hamilton Heights,835019,Yasmin,Manhattan,Harlem,40.82265,-73.94686,Private room,55,21,7,2019-04-30,0.29,1,286 +21609205,It's Always Sunny in Bed-Stuy!,19536596,Andrew,Brooklyn,Bedford-Stuyvesant,40.67653,-73.90814,Private room,48,1,106,2019-07-01,5.26,5,243 +35269083,Large and bright one bedroom in bedstuy,44321906,Julie,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93094,Entire home/apt,120,4,1,2019-06-25,1.0,1,10 +35809289,3 COZY LIGHT ROOM BROOKLYN,102292061,Roman,Brooklyn,Sheepshead Bay,40.58624,-73.9448,Private room,50,1,5,2019-07-05,5.0,3,85 +246916,Quality Cozy Studio Next to Subway,3647,Rafael,Queens,Elmhurst,40.7347,-73.88065999999999,Entire home/apt,79,4,60,2019-06-25,0.64,2,297 +15021783,Private Room in Chelsea 3 BR,94820583,Zoë,Manhattan,Chelsea,40.74063,-73.99843,Private room,80,5,2,2016-10-29,0.06,1,0 +8067738,Rm @Top Floor of a Luxury Building!,3958647,Yegor,Brooklyn,Bushwick,40.69955,-73.92225,Private room,90,3,0,,,1,0 +6416714,1 private bedroom in Williamsburg,24448775,Mo,Brooklyn,Williamsburg,40.70883,-73.94068,Private room,85,4,4,2015-09-19,0.08,1,0 +27190005,1 Bedroom Suite By LGA / JFK airports & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76087,-73.88375,Private room,45,3,19,2019-04-10,1.67,2,0 +26864429,Big Bright Beautiful Home in PRIME WIlliamsburg,26030112,Tatiana,Brooklyn,Williamsburg,40.71714,-73.95783,Private room,190,2,3,2019-01-02,0.36,1,0 +10034364,Spacious and sunny bedroom,1653404,Erica,Brooklyn,Williamsburg,40.70872,-73.95689,Private room,58,5,1,2015-12-18,0.02,1,0 +4908331,Beautiful and Spacious 2 bedroom West Harlem Apt.,25266756,Antoinette,Manhattan,Harlem,40.807390000000005,-73.95159,Entire home/apt,150,5,14,2019-06-20,0.26,1,66 +19711512,"Cozy, Cool, Mid Century Modern Apt in Boerum Hill",1024251,Michael,Brooklyn,Boerum Hill,40.68807,-73.98161,Entire home/apt,170,2,21,2018-08-21,0.86,1,9 +17610016,Cozy & Private Bedroom only 30-35 min to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67989,-73.90857,Private room,55,1,102,2019-06-24,3.66,3,121 +30227502,COZY ONE BEDROOM APARTMENT IN MIDTOWN EAST,227007194,Ele,Manhattan,Midtown,40.75339,-73.96765,Entire home/apt,250,1,1,2018-11-24,0.13,1,64 +28909477,Charming NYC Guest Suite (Loft Room),50756378,Nina,Staten Island,Clifton,40.61595,-74.08535,Shared room,150,2,2,2018-11-04,0.22,7,312 +15787042,"Cozy 1 Bedroom in Brooklyn, near park and shops",33626735,Maureen,Brooklyn,Crown Heights,40.67143,-73.92971,Entire home/apt,83,30,7,2019-01-06,0.22,1,311 +32886361,beautifulROOM/Safe&comfortable/ near LG& JFK,169587048,Jay/Carolina Bastidas Family,Brooklyn,Cypress Hills,40.68258,-73.87731,Private room,50,7,1,2019-05-13,0.52,2,365 +24889922,Glendale apartment,177560095,Michelle,Queens,Glendale,40.69991,-73.88951999999999,Private room,50,7,17,2019-04-10,1.27,1,66 +16735801,Twin bed-Close to Columbia U & Central Park,64471880,Jaleh,Manhattan,Harlem,40.80172,-73.95538,Private room,100,1,226,2019-07-03,7.75,2,32 +4343956,Large Spacious Room For Rent,22548091,Cynthia,Manhattan,Morningside Heights,40.8067,-73.95799,Private room,107,6,12,2019-01-03,0.47,2,251 +16400753,Room in 3 bed apt/w parking- Wburg.,8134440,Austin,Brooklyn,Williamsburg,40.71614,-73.94134,Private room,55,2,0,,,1,0 +12686241,Large Middle Bedroom & Private Backyard,30848788,Jamie,Brooklyn,Bedford-Stuyvesant,40.69415,-73.9481,Private room,45,4,41,2019-05-17,1.06,2,89 +6672758,Cool Large 3 bedrooms in the heart of East village,2196224,Sally,Manhattan,East Village,40.73037,-73.98158000000001,Entire home/apt,197,30,1,2018-03-10,0.06,4,191 +35156906,Sunny Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68739,-73.93208,Private room,42,30,0,,,27,0 +1428844,Gorgeous sky-lit 2BR,266878,Jean & Gabriel,Brooklyn,Williamsburg,40.71362,-73.93561,Entire home/apt,175,3,199,2019-06-30,2.78,1,272 +27195692,Low Price Private Room,204786430,Shamyra,Queens,Ridgewood,40.70775,-73.90853,Private room,53,7,0,,,2,0 +13769300,Spacious Serene Room Located in Prime E. Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63348,-73.94736999999999,Private room,95,1,20,2018-09-04,0.58,8,189 +23449499,Our recently rebuilt 19th century Brooklyn gem,7886822,Lior,Brooklyn,Bedford-Stuyvesant,40.68791,-73.95633000000001,Entire home/apt,300,5,0,,,1,0 +19554491,A Room in Park Slope,137382776,Gladis,Brooklyn,Prospect Heights,40.68066,-73.97299,Private room,340,3,0,,,1,83 +32586373,The Heart of Williamsburg Brooklyn,244906527,Julia,Brooklyn,Williamsburg,40.71586,-73.9391,Entire home/apt,120,2,15,2019-06-22,3.52,1,292 +13507377,"Sunny Apartment in Park Slope, Brooklyn",32706119,Shanee,Brooklyn,South Slope,40.66769,-73.98886,Entire home/apt,190,3,39,2019-06-25,1.07,2,226 +22031456,Brooklyn City Home,160495098,Miller,Brooklyn,Flatbush,40.633590000000005,-73.94915,Entire home/apt,58,2,28,2019-02-24,1.46,5,0 +14724015,Swimming Pool! 2 Bed 2 bath Amazing Layout!5143,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79371,-73.96708000000001,Entire home/apt,295,30,2,2018-04-01,0.06,96,250 +9804299,Private room in Williamsburg,3285138,Raffi,Brooklyn,Williamsburg,40.71776,-73.9605,Private room,70,5,1,2016-01-05,0.02,1,0 +20017753,Super Clean Room For 2 - Close To Metro,142135334,Garland,Brooklyn,Bedford-Stuyvesant,40.68985,-73.95317,Private room,45,5,38,2019-06-13,2.08,1,79 +29060585,Hostel - Full-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70431,-73.91584,Shared room,25,4,17,2019-06-23,1.88,5,80 +22544160,Comfortable Studio Apartment!,165612495,Alexei,Bronx,Fordham,40.86665,-73.8954,Entire home/apt,80,3,26,2019-06-22,1.68,1,15 +27774740,Entire Garden apartment in Brownstone,60928518,Evelyn,Brooklyn,Carroll Gardens,40.67982,-74.00038,Entire home/apt,185,2,25,2019-06-19,2.42,1,17 +27876600,Peaceful garden + private studio in the UES,43888084,Elena,Manhattan,Upper East Side,40.78057,-73.95186,Entire home/apt,248,4,3,2019-04-16,0.31,1,100 +33888418,Beautiful room in East Village spacious apartment,1409287,Adrian,Manhattan,East Village,40.72777,-73.97951,Private room,180,3,0,,,1,91 +17988221,Private Room in Cozy East Village Apt,4296251,Marina,Manhattan,East Village,40.72286,-73.98025,Private room,100,2,0,,,2,0 +25727611,Beautiful room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.93906,Private room,87,2,4,2019-05-24,0.45,5,337 +10924304,"Harlem, NY +Historical Sugar Hill Neighborhood",25461543,David,Manhattan,Harlem,40.83117,-73.94281,Entire home/apt,200,1,3,2019-06-08,0.38,2,365 +17263550,Thelonious Monk room at The Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80754,-73.95151,Private room,58,2,68,2019-06-26,2.35,4,1 +35226897,2 bedroom family residence in Gramercy!,11065010,Jacqueline,Manhattan,Chelsea,40.74117,-73.99951,Entire home/apt,300,4,0,,,1,16 +33187408,Gorgeous bedroom w/ensuite bath-East Williamsburg,249870831,Melat,Brooklyn,Williamsburg,40.71395,-73.94022,Private room,65,1,2,2019-05-27,1.15,1,124 +27925678,Large cozy bedroom close to Times Square 43D4,194535003,John,Manhattan,Hell's Kitchen,40.75537,-73.995,Private room,54,30,2,2018-10-27,0.23,1,352 +31020675,Beautifully Renovated Small Mid Century Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72173,-73.9918,Private room,125,1,4,2019-07-07,0.79,2,165 +8033609,Studio Apartment with King Bed,33213436,Alec,Brooklyn,Gowanus,40.67872,-73.98286,Private room,119,1,171,2019-06-19,3.82,8,236 +2524658,"Unique loft in Bushwick - Offices, yoga & roof!",1091832,Julie,Brooklyn,Bushwick,40.69728,-73.93066,Entire home/apt,120,2,15,2019-03-10,0.24,1,61 +10784650,"East Village 3 Beds, 2 bedrooms. Sleeps 5 MAX",48320077,Michael,Manhattan,East Village,40.7276,-73.98635,Entire home/apt,219,1,101,2019-07-01,2.46,2,341 +34721879,prime central park location - 2 mins to subway,261894786,Ariana,Manhattan,East Harlem,40.79247,-73.94892,Entire home/apt,109,1,8,2019-06-28,5.11,1,233 +24244194,Full private bathroom inside private room :),176821276,Andrea,Manhattan,Harlem,40.82499,-73.95374,Private room,75,3,8,2018-08-13,0.54,1,0 +33614390,Vacate NYC.,58027700,Janei,Brooklyn,Bedford-Stuyvesant,40.67758,-73.92751,Private room,65,1,12,2019-06-29,4.29,1,179 +29191862,Room in a Lovely Apartment in Upper East Side,219981147,Amanda & Rafael,Manhattan,Upper East Side,40.76869,-73.95007,Private room,150,2,8,2019-02-10,0.92,1,0 +19904670,Cozy private room near cafes and subway,17507326,Kat,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92255,Private room,107,2,1,2019-06-30,1.0,1,90 +24872073,Big & Bright Bed-Stuy Bushwick Border Boudoir,2967674,Lilly,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92681999999999,Private room,50,30,4,2018-10-12,0.37,2,21 +23131155,Newly Renovated Mins from JFK & LGA,45735959,Rose,Queens,St. Albans,40.70828,-73.75276,Entire home/apt,120,3,59,2019-05-26,3.49,1,52 +11192547,bedroom,58274544,Austin,Brooklyn,Crown Heights,40.67305,-73.94533,Private room,85,1,1,2016-02-13,0.02,1,0 +6559453,Private Rm–Industrial Loft–Bushwick,34306160,Dan,Brooklyn,Williamsburg,40.70306,-73.93629,Private room,60,4,87,2019-06-27,1.75,1,96 +16228346,ENTIRE UNIT: MID TOWN NYC - GRAND CENTRAL STATION,43828940,James,Manhattan,Midtown,40.75343,-73.97313,Entire home/apt,119,3,0,,,1,0 +31269703,Heart of Jamaica Queens,81146418,Monique,Queens,Jamaica,40.68684,-73.79921,Entire home/apt,80,2,13,2019-06-15,2.36,1,87 +1420295,"Sunny, Bright, Vibrant Apartment in Williamsburg!",2357027,Harmon,Brooklyn,Williamsburg,40.71419,-73.95042,Entire home/apt,200,7,0,,,1,345 +34864348,阳台大双人房 (queens size room with balcony ),255641440,Li,Queens,Flushing,40.76316,-73.80869,Private room,55,1,0,,,7,329 +3554287,Academic Summer Sublet/Sunset Park,6504434,Ayanna,Brooklyn,Sunset Park,40.64993,-74.00191,Private room,35,7,0,,,1,0 +8115321,Private Room close to subway (1/3),40874834,Esteban,Queens,Jackson Heights,40.75526,-73.86468,Private room,75,1,114,2019-06-17,2.45,3,328 +29519083,Entire Apt in the center of NYC,60525649,Lixia,Manhattan,Hell's Kitchen,40.75464,-73.99542,Entire home/apt,120,2,9,2019-06-30,1.08,1,2 +24970711,Budget Basement,188783370,Faraz,Queens,Flushing,40.73968,-73.80601,Private room,80,1,9,2018-08-10,0.65,1,0 +16859099,Manhattan &Time Square Less than 30min 1st floor.,3158364,Devika,Queens,Sunnyside,40.73661,-73.92514,Private room,32,5,47,2019-07-01,1.61,4,266 +22489858,61 st East room D Manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76014,-73.96098,Entire home/apt,140,1,25,2019-06-27,1.67,11,330 +5562710,CLEAN & COZY EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.73097,-73.98178,Entire home/apt,160,1,169,2019-06-21,3.22,4,238 +6766169,Nice and spacious 1BR in Brooklyn,35422693,Raquel,Brooklyn,Crown Heights,40.66922,-73.94682,Entire home/apt,70,15,9,2018-07-25,0.19,1,0 +11522815,Cute 1bd w/balcony E Williamsburg,60753668,Therese,Brooklyn,Williamsburg,40.71946,-73.94193,Entire home/apt,130,30,42,2018-06-29,1.06,1,0 +12231331,Bright Brooklyn Room,27379452,Kevin,Brooklyn,Williamsburg,40.70611,-73.93966,Private room,55,5,0,,,1,0 +16778904,"Quiet cozy apartment, air-conditioned room",111433024,Danielle,Manhattan,Washington Heights,40.84353,-73.94201,Private room,25,3,34,2019-05-31,1.46,1,139 +15057784,Furnished Battery Park Apartment,80603103,Gary,Manhattan,Battery Park City,40.70707,-74.01702,Entire home/apt,105,30,0,,,1,0 +16720662,Beautiful Brooklyn 3-Bedroom Duplex,107947878,Michael,Brooklyn,Bedford-Stuyvesant,40.67948,-73.90822,Entire home/apt,150,2,112,2019-07-07,3.88,2,195 +12133746,Warm & Cozy Sunflower Room:STG,13750728,Gayle,Bronx,Longwood,40.81725,-73.90929,Private room,55,2,31,2019-03-18,0.81,4,280 +31773898,PRIME SOHO: Lovely Room With Closet on Prince St,236445157,Anna,Manhattan,SoHo,40.7276,-74.00275,Private room,80,180,1,2019-03-11,0.25,3,342 +36114202,Private Room in Central Park North #2,264495166,Jordania,Manhattan,Harlem,40.80079,-73.95783,Private room,85,2,0,,,3,11 +16883282,Gorgeous Luxury 1 Brd Apt in Trendy West Village!,3827805,Casey,Manhattan,West Village,40.732490000000006,-74.00854,Entire home/apt,210,3,0,,,1,0 +7310413,Beautiful Spacious Ground Floor Apt,1603343,Carina,Brooklyn,Bushwick,40.70403,-73.91275999999999,Entire home/apt,225,2,3,2015-11-28,0.06,1,0 +25545275,2BR LES Apartment Near Best Food and Bars in NYC,192716996,Kohl,Manhattan,Lower East Side,40.72077,-73.98427,Private room,95,1,9,2018-11-24,0.68,1,0 +1778294,Sweet Apartment on Quiet Block,367815,Liz,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95548000000001,Entire home/apt,120,7,39,2019-06-22,0.91,2,50 +5447255,Cozy 1BR Near Theater Distict!,28255422,Sara,Manhattan,Hell's Kitchen,40.76387,-73.99039,Entire home/apt,151,7,12,2015-10-26,0.24,1,0 +21357119,Newly Built Uptown Manhattan Large Pied-à-Terre,177293,Herman,Manhattan,East Harlem,40.80832,-73.93755999999999,Entire home/apt,200,30,0,,,1,0 +29800915,Entire floor (private entrance) w/ 1 BR in NYC,224206042,Jose,Bronx,Allerton,40.86116,-73.86248,Entire home/apt,55,3,26,2019-06-25,3.36,1,349 +13510347,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76371,-73.96153000000001,Entire home/apt,225,30,1,2016-11-12,0.03,87,341 +28716187,Home away from home,216611306,Eme,Queens,Briarwood,40.71378,-73.80796,Private room,50,1,13,2019-04-08,1.46,1,0 +30566910,Spacious East Village Zen Den,33531612,Kim,Manhattan,East Village,40.72365,-73.98643,Entire home/apt,110,2,1,2019-05-27,0.7,1,280 +4620505,1br - Williamsburg Luxury Sublet ,12511067,Jaclyn,Brooklyn,Williamsburg,40.718,-73.95344,Entire home/apt,95,1,0,,,1,0 +8589729,Magnolia House Saint George,45201692,Danforth,Staten Island,St. George,40.64779,-74.0846,Entire home/apt,144,1,105,2019-06-30,2.3,1,258 +31067715,Large Bx condo 3 mins to Subway by Yankee Stadium,146675319,Will,Bronx,Fordham,40.852140000000006,-73.90294,Entire home/apt,100,2,12,2019-06-17,2.98,3,20 +30283940,Charming Studio in Manhattan - Great location!,128721938,Livia,Manhattan,Kips Bay,40.7425,-73.97704,Entire home/apt,250,3,1,2019-01-01,0.16,1,0 +35033070,Sunny Apt on Treelined Street 2 blocks from trains,1274264,Kristen,Brooklyn,Sunset Park,40.64918,-74.00756,Entire home/apt,100,7,0,,,1,66 +30069021,Midtown West - Cozy Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75753,-73.99701,Private room,199,1,25,2019-06-23,3.21,30,324 +32748003,Close to Flushing Main Street and Manhattan! (3D),246272839,Northern Star Realty,Queens,Flushing,40.76663,-73.81921,Entire home/apt,85,1,5,2019-07-06,1.69,4,145 +12360207,One station from Manhattan Bedford,3922831,Serra,Brooklyn,Williamsburg,40.71592,-73.96265,Entire home/apt,170,5,35,2019-06-26,0.9,1,290 +33279214,Corner Room in Midtown Manhattan | Outdoor Terrace + Fitness Center,239660813,Yotel,Manhattan,Hell's Kitchen,40.75842,-73.99609,Private room,197,1,1,2019-05-17,0.57,10,342 +13279036,Sunny cozy room with rooftop area in BK,72483475,Andrea,Brooklyn,Bushwick,40.69092,-73.91073,Private room,50,2,2,2016-06-14,0.05,1,0 +29897123,Entire Cozy Apt in Brooklyn - 20 mins to Manhattan,218959287,George,Brooklyn,Crown Heights,40.67355,-73.94566999999999,Entire home/apt,100,2,0,,,1,0 +29825609,Spacious Sunny Balcony Room in Williamsburg,57973441,Mark,Brooklyn,Williamsburg,40.70932,-73.94792,Private room,90,1,1,2018-11-19,0.13,1,32 +10010012,CORPORATE RENTAL ON HISTORIC BLOCK!,43014167,Mark,Manhattan,Washington Heights,40.83403,-73.93867,Entire home/apt,200,1,1,2016-05-20,0.03,1,0 +18314397,Charming Room 4 blocks from Empire State Building,94648262,Martin & Christine,Manhattan,Kips Bay,40.744040000000005,-73.97985,Private room,110,3,59,2019-06-23,2.92,1,51 +29093302,Cozy quiet private room,41939513,Cynthia,Manhattan,Harlem,40.79913,-73.95357,Private room,120,5,3,2018-12-09,0.38,1,0 +10160215,Torre del Lago Room.,2787,John,Brooklyn,Gravesend,40.60755,-73.9741,Private room,79,1,17,2019-06-26,0.4,6,174 +28943748,Home Away from Home: The Restorative Room,130971031,J-,Brooklyn,Bushwick,40.70355,-73.91803,Private room,73,3,1,2018-10-08,0.11,4,0 +4497963,Iconic West Village Apartment,10225905,Kym,Manhattan,West Village,40.73474,-74.00867,Entire home/apt,250,2,0,,,1,0 +18855980,Close by La Guardia airport,109526714,Aleida,Queens,East Elmhurst,40.76078,-73.87661,Private room,50,1,97,2019-06-27,3.86,2,149 +9078632,Private room in Manhattan,42570179,Joanne,Manhattan,Washington Heights,40.83559,-73.94552,Private room,75,2,53,2018-06-29,1.18,1,0 +8534267,STARTUP SPACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64487,-73.94919,Shared room,40,30,3,2017-01-01,0.07,7,360 +32377751,Central Location in NYC - Walk to Central Park,38483415,Florentino,Manhattan,East Harlem,40.80108,-73.94601999999999,Private room,79,1,9,2019-05-25,2.23,4,365 +14036117,Comfortable 1BR with Laundry NYC,84071996,Clayton,Manhattan,Washington Heights,40.85519,-73.92705,Private room,40,3,3,2018-09-01,0.09,1,171 +36106887,Simple + Cute + Spacious Studio (Perfect for 1-2),102848162,Daniel,Manhattan,Upper West Side,40.78627,-73.97995,Entire home/apt,149,1,1,2019-07-03,1.0,1,189 +19675121,Sunny Bushwick Bungalow,70506872,Kyle,Brooklyn,Bushwick,40.69915,-73.93743,Private room,52,4,4,2017-09-30,0.18,2,0 +7692660,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81229,-73.88887,Private room,40,30,19,2019-06-29,0.4,6,287 +29262635,"Modern 2 Bedroom, Brooklyn Apt! Amazing Amenities!",220468724,Yngrid,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92281,Entire home/apt,149,2,73,2019-07-07,8.62,1,93 +32045403,Comfortable Private Room in Crown Heights,64213111,Meir,Brooklyn,Prospect-Lefferts Gardens,40.66088,-73.94363,Private room,50,2,0,,,1,0 +12759453,The Clean Comfortable Modern Lounge,48671504,Albert,Queens,Cambria Heights,40.68891,-73.73531,Entire home/apt,79,2,90,2019-06-24,2.35,1,331 +1538077,New Listing! Terrific Price.,8200820,Valerie,Brooklyn,Greenpoint,40.71938,-73.95136,Private room,50,2,11,2014-02-03,0.16,2,157 +25625417,The Palace of Perhaps (Bushwick / Ridgewood),21061846,Briana,Queens,Ridgewood,40.69943,-73.90711999999999,Private room,40,2,13,2019-06-28,0.99,1,0 +30109151,Large Open Brooklyn Loft,4445708,Kirsten,Brooklyn,Bedford-Stuyvesant,40.69137,-73.96,Entire home/apt,118,2,6,2019-02-18,0.89,1,67 +21649695,Spacious Manhattan Apt minutes from Time Square,115589496,Simona & Matther,Manhattan,Hell's Kitchen,40.75976,-73.9955,Entire home/apt,140,2,26,2018-12-31,1.41,1,0 +21740756,Brooklyn Large private room (near Manhattan),90058061,Siyi,Brooklyn,Sunset Park,40.66035,-73.99794,Private room,45,7,2,2018-04-15,0.1,1,0 +68765,Designer 2.5 BR Loft in Carroll Gardens by Subway,282655,Jenna,Brooklyn,Carroll Gardens,40.67817,-73.99495,Entire home/apt,250,2,106,2019-06-27,1.34,3,272 +21474885,LAVISHING COMFORT IN BROOKLYN BROWNSTONE NYC,2015914,Majar,Brooklyn,Bushwick,40.68818,-73.91519,Private room,75,3,2,2019-06-30,1.2,8,365 +20164634,Quiet 1BR in Ft Greene! Close to Ft Greene park,12586279,Sophia,Brooklyn,Fort Greene,40.68841,-73.97283,Entire home/apt,110,2,5,2017-11-23,0.22,1,0 +6255407,Cozy & Bright 1 Bedroom,8095903,Christelle,Manhattan,Harlem,40.82903,-73.94123,Entire home/apt,100,1,2,2015-08-26,0.04,1,0 +14529806,Designer Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80637,-73.94544,Private room,149,30,84,2019-05-18,2.43,4,337 +34686108,Modern Upperwest Side Condo,259952789,David,Manhattan,Harlem,40.80317,-73.95559,Entire home/apt,350,1,2,2019-07-06,1.22,1,85 +21612193,"Private Room in 19th Century Townhome, Mott Haven",67396790,Shannon,Bronx,Mott Haven,40.8118,-73.92263,Private room,54,1,9,2018-01-28,0.46,1,0 +10125213,"Cozy, Artistic Room with Comfy Bed",15109029,Zane,Manhattan,East Harlem,40.80197,-73.93888000000001,Private room,55,1,0,,,1,0 +4472978,Charming Studio in a Great location,5800619,Catia,Manhattan,Hell's Kitchen,40.75531,-73.99945,Entire home/apt,195,1,136,2019-07-05,2.94,1,203 +740823,Beautiful private Apt-15m Manhattan (3rd Room),570882,Eldad & Paulina,Brooklyn,Bushwick,40.70226,-73.92797,Private room,50,2,27,2019-06-12,0.35,1,2 +13477118,Artistic Escape in Brooklyn,77135414,Brett,Brooklyn,Williamsburg,40.70742,-73.94315999999999,Entire home/apt,92,2,11,2019-06-23,0.31,1,7 +32278370,Furnished room in a nice apt 20 mins to Manhattan,212151296,Ella,Queens,Rego Park,40.72871,-73.86014,Private room,54,2,10,2019-07-01,2.34,1,319 +10212862,"Tranquil Room in Airy, Sunny Bushwick Loft",2109282,Olga,Brooklyn,Bushwick,40.69688,-73.93448000000001,Private room,55,14,2,2016-09-04,0.06,1,0 +14917475,"RENOVATED 2-Bedroom, Near subway, comfy & cosy!",93734865,Caroline,Brooklyn,Bushwick,40.68312,-73.9086,Entire home/apt,85,30,42,2019-02-28,1.24,1,355 +9888174,2-bd apt 20min metro to Manhattan,56326,Mehrnoush,Brooklyn,Flatbush,40.65234,-73.95329,Entire home/apt,155,1,1,2016-01-06,0.02,1,0 +21607402,Spacious Master Bedroom Exposed Brick in Harlem,22296461,Brandi,Manhattan,Harlem,40.81866,-73.93796,Private room,50,1,8,2017-12-31,0.4,1,0 +20581823,"NO XTRA FEES: Big single room, work station, TV",82889379,Shera,Bronx,Wakefield,40.89756,-73.85639,Private room,50,1,130,2019-06-28,5.76,4,148 +28738642,4th Floor en-suite Bath Room,216772639,Ling,Brooklyn,Borough Park,40.63378,-74.00599,Private room,60,1,7,2019-06-04,0.76,7,179 +23325238,☀ Beautiful & Quiet ☀TIMES SQUARE ☀ 2 BDR Apt ☀,5201405,Rob,Manhattan,Hell's Kitchen,40.76155,-73.98687,Entire home/apt,295,2,71,2019-07-03,4.25,1,89 +34173579,Quiet and cozy 1 bedroom apartment,78261482,Petr,Manhattan,Hell's Kitchen,40.76085,-73.99221999999999,Entire home/apt,168,3,2,2019-07-01,1.13,2,4 +31854564,Three Bedroom / 2.5 Restroom In Warm Relaxing Home,238733096,Roy,Queens,Richmond Hill,40.68378,-73.83136,Entire home/apt,175,2,7,2019-06-23,2.88,2,345 +3067062,Musician's Private Room,5317082,Kells,Brooklyn,Williamsburg,40.71477,-73.94105,Private room,100,21,10,2019-07-04,0.17,2,14 +35686069,Perfect Two Bed Railroad Style Apartment,254422852,Ben,Manhattan,East Harlem,40.79522,-73.93918000000001,Entire home/apt,225,4,2,2019-06-29,2.0,1,289 +18877341,One bedroom with private roof deck,4175606,Wilder,Brooklyn,Bushwick,40.69671,-73.92628,Entire home/apt,100,4,25,2019-06-12,1.05,1,56 +28221653,Private Bedroom in Super Comfortable NYC Apt.,160611440,Fran,Manhattan,Upper West Side,40.79912,-73.97064,Private room,95,1,11,2019-06-05,1.11,1,0 +8016747,Modern Manhattan Oasis,1444040,Ethan,Manhattan,Lower East Side,40.72126,-73.98482,Entire home/apt,109,1,76,2016-09-29,1.65,1,0 +141154,Affordable Furnished Apartment,686768,Mark,Brooklyn,Boerum Hill,40.6858,-73.9828,Entire home/apt,120,3,232,2019-06-22,2.41,1,221 +33226517,Spacious Room w/ oversized closet in East Harlem,39823351,Geli,Manhattan,East Harlem,40.79415,-73.94156,Private room,90,4,10,2019-07-03,3.53,1,24 +12814997,Sunny room with a/c in new building,13007287,Brandon,Brooklyn,Bedford-Stuyvesant,40.68147,-73.95814,Private room,70,3,36,2017-06-23,0.95,1,0 +17268111,Lighted Luxury Studio!,40821640,Alina,Queens,Forest Hills,40.72737,-73.85155999999999,Entire home/apt,50,27,0,,,1,0 +10901062,Stylish Windsor Terrace flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65636,-73.97945,Entire home/apt,150,4,1,2016-03-30,0.03,3,0 +28833410,Bright two bedroom apartment in Soho,40394752,Vanya,Manhattan,SoHo,40.72277,-74.00464000000001,Entire home/apt,275,5,6,2019-06-25,0.71,2,9 +4586330,Artist Loft in Greenpoint/Williamsb,23677128,Darby,Brooklyn,Greenpoint,40.72712,-73.95499000000001,Private room,80,1,0,,,1,0 +2974433,Stylish Williamsburg Loft Apartment,2363988,Mads,Brooklyn,Williamsburg,40.70775,-73.94214000000001,Private room,100,5,2,2018-01-03,0.07,1,0 +4885975,Large Bedroom by Grand Central Station in NYC,21817218,Jason,Manhattan,Midtown,40.75163,-73.9722,Private room,90,7,27,2018-08-09,0.5,1,35 +33188757,GORGEOUS 1-bdrm with PRIVATE YARD & washer/dryer,249881559,Christopher,Brooklyn,Williamsburg,40.71594,-73.9402,Entire home/apt,135,2,9,2019-06-27,3.86,1,162 +33957038,A Beautiful Williamsburg Apartment Available Today,252575404,Yeshe,Brooklyn,Williamsburg,40.71009,-73.95841999999999,Private room,90,3,4,2019-07-02,3.53,1,63 +18866187,Carroll Gardens Modern Sunny Loft,4463379,Katy,Brooklyn,Gowanus,40.67718,-73.99656,Entire home/apt,350,3,0,,,1,0 +16528572,East Williamsburg private room w/ backyard access,67925153,DeAnna,Brooklyn,Williamsburg,40.705090000000006,-73.93321999999999,Private room,45,1,8,2017-04-08,0.26,1,0 +19284253,2A,17770287,Nina,Manhattan,Midtown,40.75077,-73.9814,Entire home/apt,145,30,4,2018-11-30,0.18,14,207 +28367264,Spacious 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.7442,-73.97355,Entire home/apt,174,29,0,,,96,311 +9694297,Private room in Historic Queens NY,50064597,David,Queens,Woodhaven,40.69472,-73.84855999999999,Private room,45,2,5,2017-08-21,0.12,1,0 +9578683,Cozy room in the heart of LES,49511227,Alex,Manhattan,Chinatown,40.71668,-73.98954,Private room,92,1,120,2018-03-19,2.74,2,0 +12358495,Beautiful 1 bed Apt in Midtown!,16596850,Robby,Manhattan,Midtown,40.75761,-73.96217,Entire home/apt,300,1,0,,,1,0 +20186021,"Bright, clean, cosy room in the heart of Brooklyn!",94113622,Darlene,Brooklyn,Bushwick,40.68252,-73.90651,Private room,60,3,2,2017-08-29,0.09,2,165 +10033868,NICE 2 BED APT NEAR TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.762440000000005,-73.99295,Entire home/apt,166,30,7,2019-01-03,0.18,31,195 +21667733,A room with a view,28369674,Ramond,Brooklyn,Williamsburg,40.70551,-73.93454,Private room,67,3,33,2019-05-23,1.66,2,127 +21513143,Airy Ridgewood Brownstone,70035028,Rebecca And Jolie,Queens,Ridgewood,40.70341,-73.89624,Private room,48,2,39,2019-06-28,1.91,1,231 +7790838,"Quiet, Charming Studio in UES",17550956,Kelsie,Manhattan,Upper East Side,40.77357,-73.94729,Entire home/apt,142,2,48,2019-04-27,1.02,1,329 +34417846,Fantastic Duplex LOFT 2BED/1.5BATH by Metro,258629654,Joseph,Manhattan,Kips Bay,40.7447,-73.97959,Entire home/apt,299,6,8,2019-07-05,4.36,1,158 +27255936,"Cozy Room, 2 min Times Square, centrally located",84825183,Antoine,Manhattan,Hell's Kitchen,40.76243,-73.99078,Private room,95,3,3,2018-08-05,0.26,1,5 +9596608,Family friendly upper west side apt,4931159,Rob,Manhattan,Upper West Side,40.7924,-73.97265,Entire home/apt,85,4,17,2019-04-21,0.55,1,0 +16506121,Beautifully private furnished room,108464471,Jeremiah,Bronx,Longwood,40.8179,-73.91456,Private room,100,6,0,,,1,365 +18170615,Private room/Columbia/Central park,75810157,Antong,Manhattan,Morningside Heights,40.80416,-73.96538000000001,Private room,99,4,3,2017-06-29,0.11,1,0 +33428571,Beautiful sunny bedroom in central Williamsburg,6080376,Leah,Brooklyn,Williamsburg,40.71322,-73.94655,Private room,74,1,18,2019-07-01,5.4,1,49 +3989564,Brooklyn Garden Apartment ,1272714,Arielle,Brooklyn,Bedford-Stuyvesant,40.68313,-73.9413,Entire home/apt,119,2,209,2019-06-19,3.62,1,241 +3499326,"Sunny, Tall Artsy Loft @ Williamsburg",380728,Ligeia,Brooklyn,Williamsburg,40.71119,-73.96703000000001,Private room,77,6,17,2015-09-01,0.29,1,188 +6326410,Stylish 1 bed room in the East Village,32922532,Jillian,Manhattan,East Village,40.73069,-73.98515,Entire home/apt,150,3,107,2019-06-23,2.16,1,99 +25209061,Spacious and Clean bedroom in modern apt,51091522,Carissa,Manhattan,East Harlem,40.787690000000005,-73.94691,Private room,76,1,0,,,1,0 +23662887,Welcoming space w/ private room in Upper Manhattan,20618692,Mytasha,Manhattan,Washington Heights,40.83711,-73.94438000000001,Private room,90,1,32,2019-05-06,2.02,1,5 +1929321,Quiet 1br in a Mansion!,9991075,Erika,Brooklyn,Clinton Hill,40.68492,-73.96669,Entire home/apt,130,1,16,2017-04-17,0.38,2,0 +6741094,Gorgeous Luxury Apartment,35299368,Adriana,Manhattan,Murray Hill,40.74798,-73.9814,Private room,200,1,1,2015-06-21,0.02,1,0 +32611480,Modern Luxury Private Room Steps from subway,218407281,Sahar,Manhattan,East Harlem,40.80551,-73.93654000000001,Private room,75,2,3,2019-05-24,1.17,1,332 +22588755,Amazing Room w/Workspace - Williamsburg,53821850,Jermaine,Brooklyn,Williamsburg,40.706990000000005,-73.94604,Private room,80,1,62,2019-06-23,4.83,2,58 +27761683,"Clean Cozy Room, Queens-5 min walk to subway (R/M)",199524563,Bei,Queens,Rego Park,40.72678,-73.86218000000001,Private room,55,2,25,2019-06-22,2.37,3,38 +27871248,"Clean, Cozy Home in Perfect Park Slope Location",106063627,Young Jean,Brooklyn,Park Slope,40.68178,-73.97957,Entire home/apt,130,120,0,,,1,0 +30027892,Stunning Garden Apartment in Prospect Heights,91851098,Matthew,Brooklyn,Prospect Heights,40.67786,-73.97029,Entire home/apt,110,2,5,2019-04-26,0.89,1,0 +34707625,Dikeman comfort is a very special Airbnb !!!!,261779182,Torrey,Brooklyn,Red Hook,40.67522,-74.01139,Shared room,38,1,1,2019-06-26,1.0,2,179 +5261913,"Small, Comfortable Bedroom w/Private Bathrm for 2",27238076,Stephanie,Manhattan,Hell's Kitchen,40.76432,-73.98599,Private room,135,2,195,2019-06-28,3.69,1,241 +23122597,"Brand new two-bedroom apt. in Bensonhurst, Bklyn!",79305630,Elvira,Brooklyn,Gravesend,40.59868,-73.99202,Entire home/apt,148,4,26,2019-07-05,1.68,2,92 +31953043,Lincoln Center Stunning One Bedroom,239571340,Alice,Manhattan,Hell's Kitchen,40.76516,-73.99205,Private room,180,1,0,,,1,83 +36382381,Spacious studio in the heart of downtown Astoria,273570019,Khaled,Queens,Astoria,40.76349,-73.92577,Private room,75,1,0,,,1,359 +2431607,"Bright, Airy Room Share for 2",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68642,-73.9344,Shared room,25,5,76,2019-06-06,1.22,3,258 +30562589,Gut renovated one bedroom in Brooklyn!,51596064,Toma,Brooklyn,East Flatbush,40.64487,-73.94711,Entire home/apt,70,1,23,2019-01-28,3.27,1,0 +28811035,New York House,217293060,Mohan,Manhattan,Greenwich Village,40.73278,-73.99712,Entire home/apt,175,90,0,,,4,311 +7132891,Bohemian & Chic Apartment.,23988743,Rachid,Brooklyn,Bushwick,40.69319,-73.92375,Private room,75,2,22,2019-06-04,0.46,1,362 +27852017,Your Private Safe-Clean Haven w/Private Bath,206884583,Haidy,Bronx,Pelham Bay,40.84633,-73.83029,Private room,80,2,28,2019-06-25,2.69,1,78 +11792006,"Spacious, Sunny Brooklyn 2BR Duplex Apartment",1850179,Tyson,Brooklyn,Bedford-Stuyvesant,40.68265,-73.94466,Entire home/apt,145,4,18,2019-01-01,0.49,1,0 +15798809,"Private, Comfortable and Big Room89",102218558,Luz Dary,Queens,Jackson Heights,40.75523,-73.88418,Private room,70,1,52,2018-07-22,1.61,1,0 +10386831,Cozy Room in Boerum Hill,15895218,Amy,Brooklyn,Gowanus,40.68444,-73.98846999999999,Private room,62,2,1,2016-01-18,0.02,2,0 +9424217,"Monthly+. Quiet, Upscale Neighborhood",12122228,Joseph,Manhattan,Upper East Side,40.77557,-73.94615,Private room,62,30,0,,,1,174 +9836642,Spacious & upscale room (Long-term),50656310,Adam,Manhattan,Hell's Kitchen,40.76487,-73.99143000000001,Private room,60,21,0,,,1,0 +19239928,"Bright UES Studio, avail short or long term",5530093,Natallia,Manhattan,Upper East Side,40.76327,-73.9612,Entire home/apt,180,6,5,2017-11-07,0.21,1,0 +28226667,BP- BEAUTIFUL COZY ROOM FOR 2 NEAR MANHATTAN wifi,213208277,Darry,Brooklyn,Borough Park,40.64189,-73.99356999999999,Private room,60,5,5,2019-07-01,0.53,8,364 +33852169,Large East Village Private Room & Private bathroom,37792599,Moji,Manhattan,East Village,40.72485,-73.98422,Private room,119,2,3,2019-05-24,1.32,1,2 +30770830,One Bdrm Apt in Charming South Harlem Brownstone,208477013,Bill,Manhattan,Harlem,40.80442,-73.94756,Entire home/apt,125,2,7,2019-07-01,1.12,1,24 +7069743,Private Bedroom in Shared Apartment,17475096,Rosemary,Brooklyn,Flatbush,40.65192,-73.96023000000001,Private room,75,1,0,,,2,0 +34344713,Cozy spacious 1 be avail for June,164907052,Elise,Manhattan,East Harlem,40.785990000000005,-73.94256,Private room,45,14,0,,,1,2 +27831194,Bright 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75498,-73.96426,Entire home/apt,212,29,0,,,96,203 +33579970,Spacious and sunny one bedroom,64898741,Pete,Queens,Long Island City,40.75912,-73.92903000000001,Entire home/apt,130,3,2,2019-06-09,1.43,2,0 +4187387,Beautiful Studio in posh Upper East,20289059,Cristina,Manhattan,Upper East Side,40.7661,-73.9573,Entire home/apt,139,2,160,2019-06-27,2.76,1,248 +411918,"3 BR apartment Crown Heights, BKLYN",2050338,Verena,Brooklyn,Crown Heights,40.66924,-73.94406,Entire home/apt,160,5,125,2019-07-02,1.47,3,169 +30347852,Huge room in Bushwick apt. 20 mins from Manhattan,40004714,Ruth,Brooklyn,Bushwick,40.695040000000006,-73.93061,Private room,50,2,13,2019-06-23,1.83,2,11 +16442834,Modern 1-bedroom apartment in Fordham,2422554,Brais,Bronx,University Heights,40.86084,-73.90288000000001,Entire home/apt,110,7,0,,,2,40 +10000470,Charming and CLEAN Room!!,51374331,Daniel,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93893,Private room,57,2,175,2019-06-28,4.08,1,38 +444171,Upper Duplex in Brooklyn Brownstone,2206506,James,Brooklyn,Bedford-Stuyvesant,40.68813,-73.92817,Entire home/apt,189,7,7,2017-04-17,0.1,2,303 +6942211,Sunny UWS Apt Steps to Central Park,10124757,Ning,Manhattan,Upper West Side,40.78905,-73.96748000000001,Entire home/apt,185,8,3,2016-01-03,0.06,1,0 +5918053,1 Quiet Private Room in Heart of Soho!,2938204,Veronica,Manhattan,SoHo,40.72741,-74.00178000000001,Private room,142,5,8,2017-12-21,0.16,1,188 +30468177,Sunny apartment in the heart of Williamsburg,4765019,Xavier,Brooklyn,Williamsburg,40.7198,-73.95741,Entire home/apt,150,3,9,2019-06-30,1.44,1,0 +1049224,Beautiful duplex in a brownstone,1740216,Laura,Manhattan,Harlem,40.81241,-73.94371,Entire home/apt,190,30,31,2018-01-04,0.43,2,84 +19030149,"Beautiful, Comfortable Apt. in Convenient Location",182461,Jose,Queens,Ozone Park,40.67488,-73.85568,Entire home/apt,110,3,81,2019-06-30,3.33,2,9 +34622133,Newly Renovated Place 47 Buffalo 1F Room#1,260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67771,-73.92356,Private room,60,1,6,2019-07-07,3.53,2,77 +23988427,Chill in Bushwick,64194344,Glynn,Brooklyn,Bushwick,40.70226,-73.92895,Private room,55,1,0,,,1,0 +10855464,"A Spacious, Bright Brooklyn Bedroom",790177,Erin,Brooklyn,Sunset Park,40.64553,-74.00220999999999,Private room,40,2,119,2017-11-01,2.88,1,0 +11011567,Sweet & Bright Two Bedroom Artist Flat Brooklyn,22861935,Jessica,Brooklyn,Columbia St,40.68443,-74.00392,Entire home/apt,162,3,37,2019-05-20,1.06,1,22 +13937701,Entire Spacious Artist Apartment,36438456,Marco,Manhattan,Washington Heights,40.83625,-73.93915,Entire home/apt,140,2,10,2017-08-03,0.28,1,0 +35526392,Charming 1.5 Bed Apartment Upper East Side,129443696,Andrea,Manhattan,Upper East Side,40.7739,-73.94803,Entire home/apt,250,7,0,,,1,44 +21058573,Beautiful Cypress Hills apt,14719992,Yoni,Brooklyn,Cypress Hills,40.67966,-73.89028,Entire home/apt,106,1,2,2018-11-04,0.11,3,0 +27438452,TAO (The Ascending Oasis),204684505,David,Brooklyn,East Flatbush,40.63558,-73.94929,Entire home/apt,199,3,9,2019-05-08,0.81,1,353 +34938410,(E) Private Queen Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72655,-73.86697,Private room,70,1,0,,,10,112 +16914299,Friendly and well located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6675,-73.97694,Entire home/apt,120,1,5,2018-04-10,0.18,2,0 +19603487,"Bright Private Space, Central Harlem, NYC",137829485,Barron,Manhattan,Harlem,40.81232,-73.94112,Private room,45,7,1,2018-03-17,0.06,1,17 +35652031,Comfortable private bedroom in Apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.695240000000005,-73.93234,Private room,54,4,2,2019-06-24,2.0,3,330 +15678623,"Spacious and Homey 2 bedroom, Express Subway Stop",3137269,Rosy,Brooklyn,Crown Heights,40.67587,-73.93175,Entire home/apt,130,3,7,2017-05-08,0.21,1,0 +292266,Sunny and spacious bedroom,1513294,Urszula,Brooklyn,Bushwick,40.69755,-73.91187,Private room,50,60,17,2019-04-01,0.19,2,74 +15929281,new Private room Near Tompkins square park,1810885,Alex,Manhattan,East Village,40.72468,-73.9783,Private room,85,3,48,2019-06-24,1.51,3,44 +35899551,"Clean, Elegant luxury and close to everything!",259226302,Karen,Brooklyn,Flatbush,40.63378,-73.95867,Private room,135,3,0,,,1,248 +15543090,Brooklyn Room in Hip Neighborhood - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69172,-73.94445999999999,Private room,61,1,181,2019-05-27,5.47,4,0 +34247102,"Charming, newly renovated prime Park Slope Studio",11522108,Cecilia,Brooklyn,Park Slope,40.67428,-73.97559,Entire home/apt,150,3,4,2019-06-25,2.73,1,130 +28988684,"Gorgeous sunny, queen size room Brooklyn",71157443,Jane,Brooklyn,Bushwick,40.6911,-73.90942,Private room,90,1,2,2019-04-11,0.25,1,29 +1060019,"Modern Duplex 1 bdrm , 1.5 Baths + terrace!",5837033,Mark,Manhattan,Upper East Side,40.7744,-73.95578,Entire home/apt,199,1,116,2019-06-17,1.54,1,300 +294717,Modern apartment w/ gorgeous view,1523610,Marissa,Brooklyn,Williamsburg,40.71095,-73.95239000000001,Private room,125,3,17,2015-05-20,0.19,1,0 +33909508,Private room in Manhattan,173673660,Jessica,Manhattan,Washington Heights,40.8415,-73.9375,Private room,55,2,6,2019-07-01,2.54,1,0 +4839323,Perfect 2-bedroom in the best part of Williamsburg,988069,Angelina,Brooklyn,Williamsburg,40.71983,-73.96465,Entire home/apt,249,30,0,,,1,0 +29129018,"AFFORDABLE ROOM, 5 MINUTES TO MANHATTAN!",217784241,Analia,Brooklyn,Williamsburg,40.70964,-73.95969000000001,Private room,60,1,81,2019-06-21,8.97,4,0 +33112929,Prospect Lefferts Garden Private rm 30 min to Nyc,27785287,Bendji,Brooklyn,Flatbush,40.65345,-73.95476,Private room,50,2,6,2019-06-21,1.78,1,2 +1731969,Beautiful UES residence minutes from everything,17318747,Jay,Manhattan,Upper East Side,40.77084,-73.95810999999999,Private room,99,1,20,2019-06-30,0.42,2,278 +30941095,Minutes to Manhattan,69713712,Trevor,Bronx,Hunts Point,40.81389,-73.88914,Private room,70,2,1,2018-12-30,0.16,1,342 +12000617,Comfortable Bedroom right by express subway!,64170751,Dani,Brooklyn,Crown Heights,40.66759,-73.95187,Private room,49,3,5,2017-04-09,0.13,1,0 +2092588,Staying in Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73408,-73.95600999999999,Private room,51,3,19,2018-01-23,0.32,4,0 +33884349,Comfy Bronx home away from home,54136018,Louise,Bronx,Kingsbridge,40.86925,-73.89974000000001,Private room,35,1,8,2019-06-27,8.0,1,48 +20228476,Prospect Heights gorgeous apartment,93220722,Jenelle,Brooklyn,Crown Heights,40.6762,-73.9617,Entire home/apt,75,2,1,2018-03-24,0.06,1,72 +13236366,Beautiful 2 Bed/2 Bath Duplex on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78396,-73.97691,Entire home/apt,171,30,3,2016-11-16,0.08,6,188 +10016601,Murray Hill 1 Bedroom Apartment (62),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74711,-73.97694,Entire home/apt,115,30,5,2019-03-17,0.14,31,179 +30285056,"LOVELY, SPACIOUS FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86328,-73.92184,Private room,50,3,0,,,3,96 +18734125,Large Industrial Loft In Bushwick,81066021,Javerick,Brooklyn,Williamsburg,40.70608,-73.9313,Entire home/apt,158,3,2,2017-07-22,0.08,2,324 +9678488,Studio in the Heart of WVillage,50003858,Michael,Manhattan,West Village,40.73702,-74.00633,Entire home/apt,200,1,5,2017-04-16,0.12,1,0 +3600961,Charming 1 Bed in Trendy Location!,18142696,Morgan,Manhattan,East Village,40.72974,-73.98371999999999,Entire home/apt,160,2,5,2015-08-20,0.08,1,0 +14772701,2A Lovely one bedroom apartment in Williamsburg,49704571,Krzysztof,Brooklyn,Williamsburg,40.71943,-73.94255,Entire home/apt,89,30,11,2019-05-31,0.34,8,144 +35465579,Be happy in New York,194804585,Ines,Queens,Jackson Heights,40.75268,-73.88595,Private room,55,1,4,2019-06-27,4.0,2,308 +21958889,Upper West Side Brownstone Duplex by Central Park,160306249,Andy,Manhattan,Upper West Side,40.78165,-73.9749,Private room,55,2,14,2019-06-29,0.81,2,0 +28001862,Garden Oasis,8056254,Lou,Manhattan,East Village,40.72795,-73.97768,Entire home/apt,225,2,2,2019-01-02,0.22,1,0 +28781373,Spacious & Sunny Brooklyn Home,5188470,Zoe,Brooklyn,Flatbush,40.6437,-73.95973000000001,Entire home/apt,65,4,11,2019-07-07,1.46,1,19 +4498927,Manhattan townhouse near subway,23334165,Patricia,Manhattan,Harlem,40.82257,-73.94543,Entire home/apt,300,5,91,2019-06-21,1.65,3,288 +20305686,"Clean and cozy room , quite neighborhood.",144841101,Anjeza,Queens,Astoria,40.76406,-73.90959000000001,Private room,112,7,0,,,1,0 +36280858,"【Brooklyn N, R地铁口 45街阳光主卧7月短租】限女生,Only girls",122963021,莹,Brooklyn,Sunset Park,40.65012,-74.00867,Private room,30,7,0,,,1,190 +17540291,One bedroom Apartment in Carroll Gardens,2063421,Megan,Brooklyn,Carroll Gardens,40.67522,-73.99853,Entire home/apt,125,1,0,,,1,0 +19475005,Fun Eclectic Home for Summer in the City,5180222,Maya,Manhattan,Inwood,40.8688,-73.92256,Entire home/apt,150,3,4,2017-08-21,0.16,1,0 +6712618,"Big room 2 blocks from Central Park, UWS Manhattan",22651758,Tiphaine,Queens,Sunnyside,40.74147,-73.91996999999999,Entire home/apt,85,1,2,2015-09-08,0.04,1,0 +33989972,MONTAUK HEIGHTS,152503673,Idemudia,Brooklyn,East New York,40.67562,-73.87763000000001,Entire home/apt,89,3,11,2019-07-01,4.58,1,13 +31499944,Stylish 1BR in West Village,46389451,Martin,Manhattan,West Village,40.73411,-74.00508,Entire home/apt,170,3,9,2019-06-19,1.71,3,169 +29278247,Bushwick Loft (must love plants!),2093557,Sarah,Brooklyn,Bushwick,40.69975,-73.92602,Entire home/apt,100,1,3,2019-06-16,1.34,2,4 +856918,Large Room in Garden Duplex ,4481005,Karen,Brooklyn,Park Slope,40.67422,-73.98097,Private room,62,2,11,2018-10-29,0.14,2,158 +8355794,New York Upper West Near Columbia U,15833732,Yawen,Manhattan,Upper West Side,40.80285,-73.9657,Private room,60,5,2,2015-12-01,0.05,1,0 +1813829,Enjoy Harlem Renassiance Sunny Room,9501531,Andre,Manhattan,Harlem,40.82519,-73.9453,Private room,60,1,93,2019-07-02,1.34,3,358 +20373836,Downtown Manhattan Weekender,6933112,Josie,Manhattan,Financial District,40.70874,-74.01342,Private room,102,1,0,,,2,0 +28637994,Spacious Room in Upper Manhattan,2605122,Jessica,Manhattan,Harlem,40.8072,-73.94513,Private room,55,28,3,2018-10-30,0.33,1,0 +32963138,Incredible 1 Bedroom in the Heart of Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73232,-73.95664000000001,Entire home/apt,70,1,15,2019-06-01,4.09,6,0 +22885310,MODERN AND BEAUTIFUL BROOKLYN,103745233,Luiz,Brooklyn,Crown Heights,40.67346,-73.93295,Private room,60,1,54,2019-03-31,3.07,1,0 +9116831,1 Bedroom w/ GARDEN -Williamsburg,3922367,Christophe,Brooklyn,Williamsburg,40.71617,-73.95395,Entire home/apt,165,4,0,,,1,0 +29797712,Brooklyn Magic Space,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71818,-73.95945,Entire home/apt,300,2,15,2019-07-02,2.06,2,273 +7369852,spacious private rooms in 5bd 4bth,9059810,Vlad,Brooklyn,Sheepshead Bay,40.59244,-73.95633000000001,Private room,85,7,0,,,3,90 +34176066,Airy Bushwick Home with Back Yard,743732,Jaxyn,Brooklyn,Bushwick,40.70043,-73.92266,Entire home/apt,70,30,0,,,1,0 +14181211,"Comfy 1-Bedroom, Just a block from the Subway!",1540903,Medina,Queens,Ditmars Steinway,40.77487,-73.91196,Entire home/apt,120,1,237,2019-06-26,6.62,1,71 +36151001,Crown Heights Haven,209921907,Erma,Brooklyn,Crown Heights,40.66997,-73.92696,Private room,38,2,0,,,1,179 +23644644,"Private, Spacious 2BR Apt",52549310,Melissa,Queens,Ditmars Steinway,40.77462,-73.91020999999999,Private room,70,2,6,2018-08-05,0.38,1,0 +14086188,Nice room near Times Square BEST LOCATION ❤️,12086609,Laetitia,Manhattan,Hell's Kitchen,40.76126,-73.99117,Private room,90,1,11,2017-07-30,0.42,1,0 +14524686,U.S. Open Special: Hospitality Beyond Expectations,89766221,Alan,Queens,Flushing,40.7568,-73.83055,Private room,185,2,25,2017-08-16,0.71,2,0 +32289,"Sun-drenched, artsy modernist 1 BDRM duplex",139612,Elisabeth,Brooklyn,Williamsburg,40.71561,-73.94835,Entire home/apt,199,3,10,2018-06-11,0.1,1,280 +20054293,Cozy spacious room in LIC with backyard and bath,63235915,Shen,Queens,Long Island City,40.76024,-73.94091,Private room,61,3,1,2017-08-01,0.04,1,0 +33394700,Cozy kosher home for your stay in NYC,251578356,Ari,Brooklyn,Sheepshead Bay,40.60165,-73.96299,Private room,55,1,3,2019-05-12,1.15,1,0 +7638537,Private Bedroom on Queens Blvd,40072723,Maksud,Queens,Rego Park,40.72929,-73.8574,Private room,48,1,32,2017-08-29,0.92,1,0 +10096352,West Village Dream *Newly Renovated,12485770,Raanan,Manhattan,West Village,40.7313,-74.00154,Entire home/apt,166,30,5,2018-12-31,0.13,9,332 +7275655,Cosy 1 bed in trendy East Village!,19491505,Kristine,Manhattan,East Village,40.72457,-73.98142,Entire home/apt,170,2,5,2016-04-04,0.11,1,0 +24413589,Peaceful place 10min. from Center of New York City,72872297,Zamira,Queens,Long Island City,40.75558,-73.93643,Private room,75,2,67,2019-07-01,4.93,1,11 +35064797,Prime location West Village private room,10445838,Simon,Manhattan,West Village,40.73435,-74.00392,Private room,150,3,2,2019-06-22,2.0,1,34 +10849750,Brownstone Beauty 1 Bedroom,185847,Faizal,Brooklyn,Fort Greene,40.68584,-73.97570999999999,Entire home/apt,135,2,1,2016-08-15,0.03,1,0 +13893264,Prospect Lefferts Terrific Townhouse,37413,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.66047,-73.95445,Entire home/apt,175,6,3,2018-08-28,0.13,1,12 +22410359,Charming bedroom with huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.7233,-73.94065,Private room,80,2,5,2018-10-28,0.27,2,0 +27107124,Cozy Midtown Studio,204018218,Annika,Manhattan,Hell's Kitchen,40.76668,-73.99656,Entire home/apt,135,2,21,2019-06-10,2.78,1,5 +35903391,1 Bedroom in a Washington Heights Apartment,129301317,Natalie,Manhattan,Washington Heights,40.84191,-73.93705,Private room,50,2,1,2019-06-30,1.0,1,26 +32546497,Spacious One Bedroom near Lower East Side!,244573712,Daniel,Manhattan,Chinatown,40.71411,-73.99375,Entire home/apt,145,2,3,2019-03-31,0.79,1,0 +35402354,The perfect 3BR apartment,115771987,Yuki,Manhattan,Financial District,40.70723,-74.01045,Entire home/apt,215,30,0,,,6,299 +35609955,Spacious modern apartment in the heart of Astoria,267624351,Mohamad,Queens,Astoria,40.76332,-73.91166,Entire home/apt,75,2,0,,,1,14 +7936698,"Spacious, sunny bedroom next to Prospect Park!",2128535,Lily,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96246,Private room,50,3,5,2017-01-14,0.11,1,0 +32240388,Sonder | Stock Exchange | Classic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.01023,Entire home/apt,230,2,9,2019-06-10,2.11,327,323 +34906695,Brooklyn's Finest,47399487,Malik,Brooklyn,Flatbush,40.64208,-73.95574,Entire home/apt,150,2,2,2019-07-05,2.0,1,113 +6328394,"Trendy, newly renovated 1 BD Apt.",8876603,Tammy,Manhattan,Harlem,40.81356,-73.94807,Entire home/apt,145,3,143,2019-06-24,2.95,1,252 +7024474,Beautiful Private Room,15929157,Christina,Brooklyn,East New York,40.6724,-73.88118,Private room,34,20,29,2019-03-30,0.59,3,192 +20121617,LARGE ROOM/PRIVATE BATHROOM BY PROSPECT PARK,2802251,Cansu,Brooklyn,Flatbush,40.6495,-73.9643,Private room,60,2,2,2017-09-27,0.08,1,0 +31650146,Gorgeous Spacious 1BR in Prime Lower East Side,1306854,Ani,Manhattan,Lower East Side,40.71991,-73.98505,Entire home/apt,110,30,0,,,1,172 +19790151,Only 30 Minutes Away From Manhattan,106430338,Alana,Brooklyn,Bensonhurst,40.612,-73.99573000000001,Private room,57,3,3,2018-10-30,0.27,2,83 +24752747,Sonder | Hanover Square | Simple 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70518,-74.00994,Entire home/apt,182,29,2,2019-04-01,0.24,96,347 +36262579,Amazing bedroom with Backyard close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94314,Private room,77,2,0,,,7,153 +1530660,Boutique Williamsburg Duplex Apartment,173980,Will And Jo,Brooklyn,Williamsburg,40.70919,-73.95012,Entire home/apt,160,30,13,2014-01-05,0.18,2,252 +24650448,Astoria bedroom with personality,185495146,Alexandria,Queens,Astoria,40.75452,-73.91458,Private room,52,6,7,2019-06-25,0.5,1,2 +9529493,Large hip open-space loft,1461344,Adam,Brooklyn,Williamsburg,40.71218,-73.95766,Entire home/apt,245,3,20,2019-07-01,0.46,1,128 +6301965,Beautiful SoHo Loft,655506,Silvia,Manhattan,SoHo,40.7234,-73.99967,Entire home/apt,16,3,3,2018-01-08,0.16,1,0 +33960800,Sunlight Large Studio in Heart of Harlem,56338076,Barbara,Manhattan,Harlem,40.81431,-73.93994,Entire home/apt,130,1,6,2019-06-15,2.25,3,0 +35540762,驿站,239139334,Fang,Queens,Bayside,40.76883,-73.78707,Private room,49,1,4,2019-07-08,4.0,3,345 +3010988,Big Private room in Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.6769,-73.94483000000001,Private room,32,7,3,2018-06-15,0.07,3,319 +35465766,NYC Beach House with Yard.,6227706,Michael,Queens,Arverne,40.58817,-73.79914000000001,Private room,99,3,1,2019-06-29,1.0,1,95 +1479283,"Great Chelsea Location, Couch/2nd bed, Free WiFi",7245581,Michael,Manhattan,Chelsea,40.75028,-73.99533000000001,Entire home/apt,96,115,45,2019-03-15,0.63,19,210 +34737337,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76187,-73.82169,Private room,69,1,9,2019-06-28,4.91,6,365 +23763320,Spacious Brooklyn Brownstone with Backyard & Cat,1181486,Kurt,Brooklyn,Bushwick,40.69569,-73.90733,Entire home/apt,84,9,1,2018-03-13,0.06,1,0 +34303799,Magical space in prime Williamsburg,116674915,Virginia,Brooklyn,Williamsburg,40.71417,-73.95867,Private room,69,6,2,2019-06-10,1.46,1,4 +29799420,Private and cozy room in East Williamsburg.,53103368,Caroline,Brooklyn,Williamsburg,40.70701,-73.94445999999999,Private room,65,2,0,,,1,6 +11118296,Forest Hills Haven,57762390,Annette,Queens,Forest Hills,40.71813,-73.8386,Entire home/apt,100,2,1,2016-08-05,0.03,1,0 +21317156,1 BR close to Times Square - WOMEN ONLY,84766486,Willi,Manhattan,Hell's Kitchen,40.76068,-73.99143000000001,Private room,79,5,0,,,1,0 +22277333,Spacious 1 BR apartment in authentic Brooklyn,25769776,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65616,-73.95676,Entire home/apt,64,2,4,2018-01-14,0.21,1,0 +21898686,2BR in the Heart of Downtown Brooklyn - Near ALL,46705025,Angelo,Brooklyn,Boerum Hill,40.68837,-73.98716999999999,Entire home/apt,185,3,18,2018-06-06,0.91,1,0 +29190221,Cozy room in Brooklyn. 40 min to Manhattan.,172986033,Boris,Brooklyn,Bensonhurst,40.61023,-73.99627,Private room,39,1,0,,,1,0 +23902905,Shared Room in Midtown East,1429710,Bonnie,Manhattan,Midtown,40.75693,-73.97078,Shared room,63,1,18,2019-06-03,1.2,1,56 +3703805,Cozy spacious room in Crown Heights,6932160,Terry,Brooklyn,Crown Heights,40.66935,-73.9485,Private room,99,5,27,2018-10-25,0.7,1,365 +22691267,Handmade artist loft,76422506,Damon,Brooklyn,Clinton Hill,40.69675,-73.96188000000001,Private room,60,3,0,,,1,0 +12009651,GREAT Bright Manhtattan Apartment!,87266,David,Manhattan,Harlem,40.8245,-73.94264,Entire home/apt,120,150,10,2019-05-07,0.46,1,331 +24181925,Family Room in Bed-Stuy,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.6856,-73.94388000000001,Private room,79,1,75,2019-06-23,4.91,3,295 +6717309,Marvellous spacious Upper East apt,15444104,Willem,Manhattan,Upper East Side,40.77878,-73.94491,Entire home/apt,170,10,11,2017-05-16,0.24,1,0 +30762826,Jefferson Avenue Apartment,6051149,Cristiano,Brooklyn,Bedford-Stuyvesant,40.68341,-73.94608000000001,Entire home/apt,140,3,12,2019-06-17,2.25,1,66 +7541444,Beautiful treeline BK apartment!,1110017,Bettina,Brooklyn,Greenpoint,40.72402,-73.9415,Entire home/apt,149,5,2,2016-10-14,0.04,1,0 +26809805,Gramercy spacious apt!,19955930,Olivia,Manhattan,Kips Bay,40.74068,-73.98227,Entire home/apt,150,1,5,2019-06-05,0.46,1,23 +24373776,Spacious bedroom in Washington Heights,6024063,Bree,Manhattan,Washington Heights,40.84821,-73.94153,Private room,50,2,1,2019-07-06,1.0,1,25 +17692837,"Manhattan Large, room by CUNY& Columbia University",27378293,Lendy,Manhattan,Harlem,40.82837,-73.94854000000001,Private room,86,2,3,2018-09-13,0.11,3,342 +22344396,Sunny room in Bushwick,13394563,Virginia,Brooklyn,Bushwick,40.69112,-73.904,Private room,45,5,2,2018-03-14,0.12,1,0 +27987084,"Free Cleaning & WiFi, Young Professional Roommates",155297713,Marie & Tyler,Brooklyn,Bushwick,40.70466,-73.92553000000001,Private room,35,30,1,2018-10-31,0.12,3,4 +17266124,"Shay's Place #1 +( 1 Bdrm. Apt ) +5 mins From JFK",116404073,Sheila,Queens,Springfield Gardens,40.66812,-73.76303,Entire home/apt,95,1,240,2019-07-07,9.66,2,253 +34472646,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Jackson Heights,40.75015,-73.86899,Entire home/apt,153,4,0,,,3,135 +10087874,Large room with private bath in Brooklyn home,28840058,Karen,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9189,Private room,61,1,4,2018-01-02,0.1,1,0 +21422090,"Bedroom 5 min away from E, 7, F, M, R trains!",106766048,Chelsea,Queens,Jackson Heights,40.752390000000005,-73.89021,Private room,45,3,12,2019-06-27,1.67,1,0 +22031711,"Large, beautiful fully furnished studio for sublet",42051399,Ari,Manhattan,Harlem,40.82932,-73.94563000000001,Entire home/apt,128,30,0,,,1,89 +33555952,"HUGE, SUNNY room in Financial District",12655794,Pat,Manhattan,Financial District,40.70598,-74.00804000000001,Private room,150,4,2,2019-04-15,0.62,1,90 +18795448,Brooklyn room with a view,2482085,Michelle,Brooklyn,Bedford-Stuyvesant,40.68415,-73.95640999999999,Private room,55,2,0,,,1,0 +32724719,"Quiet and Private Space in Bushwick, Brooklyn",42164373,Gina,Brooklyn,Bushwick,40.70725,-73.91966,Entire home/apt,50,3,1,2019-03-24,0.28,1,0 +9757875,NY Queens Penthouse Share = 1LOFT aka Queens' Loft,34861728,Iris,Queens,Kew Gardens,40.7092,-73.82984,Private room,65,7,8,2018-10-25,0.18,4,320 +19696952,Lovely Bedroom available in the heart of Bushwick,70822653,Brandon,Brooklyn,Bushwick,40.70126,-73.91396,Private room,55,3,2,2017-11-29,0.1,1,241 +13864224,Spacious Artist's Loft/Apartment,74011703,Stephanie,Manhattan,Financial District,40.71069,-74.00751,Entire home/apt,200,3,6,2016-10-14,0.16,1,0 +5373703,Sunny Fort Greene Suite,10887881,Erin,Brooklyn,Clinton Hill,40.68943,-73.96635,Private room,85,1,28,2016-03-27,0.53,1,0 +19555750,Travel Themed Room at Great Location,137264725,Gulcin,Manhattan,Chinatown,40.71391,-73.99162,Private room,60,1,101,2019-06-21,4.13,4,257 +32866678,Sonder | The Nash | Relaxed 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74896,-73.97521,Entire home/apt,212,29,0,,,327,330 +16723682,"Cozy, sun-splashed room in two-floor apartment",100595030,Michael,Brooklyn,Williamsburg,40.71483,-73.94935,Private room,68,30,13,2019-06-30,0.47,2,64 +12955943,Charming 1 bed apt in Williansburg,23050317,Ana Paula,Brooklyn,Williamsburg,40.70944,-73.9492,Entire home/apt,100,7,6,2017-12-31,0.16,1,0 +34443679,The Logan’s Oasis - 8 min. to JFK & 20 min. to LGA,260009677,Heather,Queens,Jamaica,40.69242,-73.79673000000001,Entire home/apt,90,2,14,2019-07-06,7.92,1,354 +36205851,Entire Spacious Apartment in UWS near Central Park,140997060,Amy,Manhattan,Upper West Side,40.77824,-73.98325,Entire home/apt,275,3,0,,,2,24 +19212370,‘ SMALL STUDIO ONLY FOR 2’,11601610,Gh,Manhattan,Upper West Side,40.7732,-73.98768000000001,Entire home/apt,148,4,60,2019-06-22,2.42,1,320 +11657725,Spacious one-bedroom Apartment,61863502,Wei,Manhattan,Upper East Side,40.77933,-73.94861999999999,Entire home/apt,119,5,1,2016-06-19,0.03,1,0 +3923128,Sunny 1-BR Apt with Soaking Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77237,-73.95536,Entire home/apt,118,30,3,2018-08-31,0.1,29,282 +7174361,2 BEDROOM APT IN MANHATTAN midtown SLEEPS 5 GUESTS,37579015,Ana,Manhattan,Hell's Kitchen,40.75788,-73.99223,Private room,250,2,17,2019-01-06,0.37,5,130 +21505197,Heart of Brooklyn Heights,3900540,Erin,Brooklyn,Brooklyn Heights,40.7008,-73.99385,Entire home/apt,196,1,39,2019-07-07,2.0,1,96 +9061331,Sunny Harlem penthouse,4186597,Michael Francis,Manhattan,Harlem,40.80822,-73.94264,Entire home/apt,180,2,18,2019-06-13,0.42,1,29 +25140000,2 Rooms + Bath in Spacious Apartment w/ Backyard,4281300,Alex,Brooklyn,Williamsburg,40.715720000000005,-73.94161,Private room,209,1,21,2019-06-30,3.07,3,15 +10958463,Nice bedroom at Manhattan -Upper East Side/Harlem,21784104,Paulo,Manhattan,East Harlem,40.79226,-73.93895,Private room,150,3,73,2019-05-25,1.85,1,32 +18447712,Artist Loft Space,127886968,Steve,Brooklyn,Bushwick,40.70351,-73.93092,Private room,75,1,0,,,1,0 +35603885,AMAZING 2 BEDROOM SPTEPS FROM SUBWAY,230403448,Francisco,Brooklyn,Williamsburg,40.71006,-73.95716,Entire home/apt,180,2,0,,,1,260 +20698073,"Hip Modern Brooklyn Studio, Minutes to Manhattan!",148148402,Gary,Brooklyn,Clinton Hill,40.69167,-73.96927,Entire home/apt,129,2,93,2019-07-01,4.15,1,43 +7678453,Beautiful Sunny Bedroom in BedStuy,39197422,Caitlin,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9303,Private room,60,5,1,2016-03-28,0.03,1,0 +11948586,Large Bedroom,63800453,Harry,Brooklyn,Flatbush,40.63836,-73.95698,Private room,85,1,6,2017-01-01,0.16,1,0 +17793180,Nice room in quiet 3BR apartment,106046570,Diamond,Brooklyn,Bushwick,40.69491,-73.91266,Private room,100,1,2,2018-01-01,0.09,1,269 +405408,"Magazine SOHO Studio Loft. +Read our reviews!",2020431,M. C.,Manhattan,SoHo,40.72057,-73.99976,Entire home/apt,225,3,134,2019-06-22,1.53,1,231 +14066397,"Sunny, Clean, 1BR in Washington Heights",33990883,Summer,Manhattan,Washington Heights,40.85182,-73.92941,Entire home/apt,115,5,13,2019-05-22,0.37,1,0 +9859888,Apartment in Harlem,50750250,Ryan,Manhattan,Harlem,40.80728,-73.94986999999999,Entire home/apt,65,1,3,2015-12-30,0.07,1,0 +31391642,Spacious East Harlem Room,163510250,Munyaradzi,Manhattan,East Harlem,40.78754,-73.94185999999999,Private room,75,1,6,2019-05-30,2.95,1,0 +17759482,"Clean, beautifully modernized, vintage apartment",32012247,Isaiah,Manhattan,Lower East Side,40.72194,-73.98940999999999,Shared room,68,1,5,2017-06-18,0.18,1,0 +34930659,Sunny Fresh Hamilton Heights Bedroom,22118412,Brigitte,Manhattan,Harlem,40.82862,-73.94938,Private room,54,3,0,,,1,19 +6560165,Large Upper West Side 1 bedroom,23311838,Adrianna,Manhattan,Upper West Side,40.7791,-73.98565,Entire home/apt,175,1,4,2016-06-11,0.08,1,0 +26540634,Sleek and Modern Studio Apartment,4066678,Brandon,Brooklyn,Williamsburg,40.71657,-73.96512,Entire home/apt,200,15,0,,,1,0 +18723095,FINANCIAL NEAR WORLD TRADE CENTER,130204296,Anny,Manhattan,Financial District,40.70817,-74.00675,Private room,115,1,5,2017-10-06,0.19,1,0 +35266495,Cozy 1 bedroom apt in Manhattan,42316597,Helen,Manhattan,Upper East Side,40.761790000000005,-73.96427,Entire home/apt,210,1,1,2019-06-10,1.0,1,331 +9758378,Prospect Heights/Park slope condo next to the Park,50324962,John,Brooklyn,Prospect Heights,40.67545,-73.96884,Entire home/apt,250,30,13,2019-05-11,0.34,1,319 +6949554,Clean bedroom with private bathroom,10609847,Kristie,Brooklyn,Williamsburg,40.70781,-73.95553000000001,Private room,93,3,0,,,1,0 +15956772,"Clean, Cozy Private Room in Classy Bushwick Apt",103611173,Jiyae,Brooklyn,Bushwick,40.69838,-73.91965,Shared room,60,1,0,,,1,0 +22214268,Cozy 1BR+SofaBed in Quiet Part of Popular LES,93039729,Sunny,Manhattan,Lower East Side,40.71833,-73.98562,Private room,95,1,0,,,2,0 +15043788,Private Room in Sunnyside 3,84607966,Nurcan,Queens,Sunnyside,40.73908,-73.9203,Private room,45,1,134,2019-07-01,3.93,3,308 +19502079,ღღღSteps to Major Tourist Attractionsღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76615,-73.98829,Private room,99,1,73,2019-06-30,2.96,3,342 +22241250,Newly renovated 1br in the heart of NY,4148879,Carlos,Manhattan,Flatiron District,40.74212,-73.99042,Entire home/apt,249,4,3,2019-05-22,0.16,1,0 +20702398,Quiet house on City Island,1457680,James,Bronx,City Island,40.84964,-73.78716999999999,Private room,50,2,45,2019-06-22,2.04,1,118 +18477519,Cozy one bedroom apartment in the Lower East Side,9667737,Hadas,Manhattan,Lower East Side,40.71862,-73.9836,Entire home/apt,80,14,1,2018-03-01,0.06,1,0 +18946091,Beautiful Bay Ridge room,62475681,Nina,Brooklyn,Fort Hamilton,40.62327,-74.03543,Private room,90,6,0,,,1,365 +18736642,Super Spacious and Sunny Top-Floor 1BR in Brooklyn,16481892,Ben,Brooklyn,Prospect-Lefferts Gardens,40.66325,-73.94978,Entire home/apt,75,7,0,,,1,0 +34504929,Luxury Boutique Private One-bedroom Apartment,109389069,Victoria,Brooklyn,Bushwick,40.69414,-73.92477,Entire home/apt,98,2,7,2019-07-03,3.33,1,4 +16244843,Cozy room in the East Village - Manhattan,53836757,Felipe,Manhattan,East Village,40.72947,-73.9785,Private room,85,4,20,2018-12-27,0.65,1,12 +33441771,BEST location in Williamsburg,251932107,Nicola,Brooklyn,Williamsburg,40.71623,-73.9601,Private room,85,2,5,2019-06-10,2.38,1,86 +20260218,"Spacious, Private bedroom in Bushwick apartment",144406701,Bryan,Brooklyn,Bushwick,40.69201,-73.92364,Private room,40,9,2,2017-11-21,0.09,1,0 +1806378,Mayor's Mansion - Fort Greene,1929442,Claudia And Leo,Brooklyn,Fort Greene,40.68585,-73.97015999999999,Entire home/apt,250,4,134,2019-07-02,1.95,1,222 +4257889,Large Room@ColumbiaUniversity/15min toTime Square,22096807,Stephenie,Manhattan,Morningside Heights,40.8049,-73.96558,Private room,89,1,46,2019-07-05,1.33,1,363 +31928508,Modern Private room in Hell's kitchen- times Squar,239383641,Jc,Manhattan,Hell's Kitchen,40.76474,-73.98924,Private room,80,1,30,2019-06-29,5.73,1,183 +17735639,Adorable Bright Private Bedroom.,4204783,Kevin,Staten Island,West Brighton,40.63149,-74.12393,Private room,49,2,32,2019-06-29,1.14,3,315 +21068818,Amazing Studio at the Time Square Area/53B,48146336,Irina,Manhattan,Hell's Kitchen,40.76269,-73.99364,Entire home/apt,130,30,4,2019-01-30,0.23,20,272 +818325,Pied-à-Terre in Midtown Manhattan,4298167,Shane,Manhattan,Kips Bay,40.7445,-73.97583,Entire home/apt,148,5,29,2019-06-01,0.37,1,188 +924658,"Bright, airy room share in Brooklyn",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.687,-73.93446,Shared room,30,5,91,2019-06-01,1.18,3,248 +30375114,South Prospect Park Private Middle Room F&Q subway,221940893,Sara,Brooklyn,Kensington,40.6377,-73.97062,Private room,36,2,18,2019-07-07,2.51,3,189 +19574956,Cozy Bedstuy Room,14163206,Alexander,Brooklyn,Bedford-Stuyvesant,40.68301,-73.94757,Private room,45,2,6,2017-12-29,0.25,1,0 +20803227,Central Park north,29766155,Miero,Manhattan,Harlem,40.800990000000006,-73.95105,Entire home/apt,200,1,0,,,1,0 +9488285,J&D Vacation Home,49177258,Mrs .D,Brooklyn,Bedford-Stuyvesant,40.68282,-73.92934,Entire home/apt,335,2,21,2019-06-16,0.53,1,304 +29336346,Luxury and convenience in the center of it all!,15872365,Daniel,Queens,Astoria,40.76553,-73.91625,Entire home/apt,89,4,15,2019-06-18,1.73,1,12 +28314565,"Cozy room near subway , LGA airport n manhattan",79499558,Robertina,Queens,Jackson Heights,40.75164,-73.88506,Private room,55,2,29,2019-06-20,2.96,4,149 +20819221,"2 bed, 2 full bath quaint street in Brooklyn",4732049,Sabrina,Brooklyn,Boerum Hill,40.68592,-73.98181,Entire home/apt,275,1,7,2018-12-16,0.43,1,129 +28840175,Pretty and cozy 2BR apartment in Chelsea,217111553,Jason,Manhattan,Chelsea,40.7467,-73.99335,Entire home/apt,288,3,44,2019-07-06,4.78,1,48 +36236389,Large room(Brooklyn) - 20 min to the beach+comfort,271162941,Anna,Brooklyn,Midwood,40.62477,-73.95517,Private room,100,1,0,,,3,330 +19611015,Beautiful 2 Bedroom on Subway,14487073,Jeremy,Brooklyn,Bushwick,40.70421,-73.91561,Entire home/apt,150,2,68,2019-06-16,2.85,2,263 +894015,Boldera: Your Home Away From Home,4622027,Damon And Kent,Brooklyn,Bedford-Stuyvesant,40.68194,-73.92896,Entire home/apt,107,2,147,2019-06-22,1.89,1,27 +16579236,Chambre idéale couple ou amis - Proche Manhattan,24118830,Constanza,Brooklyn,Williamsburg,40.70825,-73.94932,Private room,80,2,5,2017-06-06,0.18,1,0 +35916489,Sun-drenched LGBT Cozy Private QueenRoom @Bushwick,135563904,Michael,Queens,Ridgewood,40.7055,-73.9096,Private room,180,1,2,2019-07-01,2.0,3,78 +966104,Private room in large 2 bed room,5268970,Javier,Manhattan,East Village,40.72726,-73.97573,Private room,75,3,51,2018-11-25,0.7,1,127 +11190831,Suite1442,18833883,Norga,Brooklyn,Bedford-Stuyvesant,40.67981,-73.94372,Entire home/apt,145,2,125,2019-06-30,3.23,1,271 +2203450,Perfect Location - 2 bdrm/2 bth ,1500487,David,Brooklyn,Williamsburg,40.71577,-73.95408,Entire home/apt,250,10,0,,,1,0 +34116575,"Sunny, Quiet, Green Studio near Central Park & MET",42144338,Jessie,Manhattan,Upper East Side,40.7786,-73.95028,Entire home/apt,120,6,2,2019-06-15,1.36,1,9 +27303282,Spacious Bedroom with Beautiful Views,205697848,Carly,Manhattan,Hell's Kitchen,40.76435,-73.99298,Private room,85,1,8,2019-04-28,0.7,1,30 +19459965,HOUSE 2 ENTRANCES 2 KITCHEN 2 BATH 15min TO MANHTN,30237517,David,Queens,Forest Hills,40.73437,-73.8502,Entire home/apt,278,3,9,2018-11-18,0.39,6,0 +19308199,Sunny beautiful large bedroom in Williamsburg,31907981,Luis,Brooklyn,Williamsburg,40.71635,-73.94238,Private room,80,3,9,2018-05-11,0.38,1,0 +17356639,Spacious Brooklyn One Bedroom/Loft***Morgan L Stop,40313256,Joey,Brooklyn,Williamsburg,40.70552,-73.93,Entire home/apt,195,4,0,,,1,0 +28692232,Luxury Affordable comfort in the Bronx-Suite 3!,216456504,Annick,Bronx,Wakefield,40.89399,-73.84279000000001,Private room,65,1,52,2019-06-28,5.4,3,363 +34607249,Studio for a couple visiting New York City,126161542,Luis,Manhattan,Harlem,40.81942,-73.95796,Entire home/apt,99,2,5,2019-06-22,2.88,1,0 +5126391,1bd in a sunny 2 bd Ft. Greene Apt,26003292,Carrie,Brooklyn,Fort Greene,40.69454,-73.97166,Private room,63,1,104,2019-06-23,2.16,1,11 +30589552,Clean & Spacious Apt. 2 min. to Subway,24594462,Fatima,Manhattan,East Harlem,40.795190000000005,-73.94543,Entire home/apt,135,2,2,2019-06-08,1.67,2,2 +20314852,COMFY BEDROOM IN THE HEART OF HARLEM,144863286,Georgy,Manhattan,Harlem,40.8173,-73.95571,Private room,120,1,0,,,1,180 +11085352,"Amazing Williamsburg, Brooklyn Apt.",10994250,Jerry,Brooklyn,Williamsburg,40.70925,-73.94909,Private room,50,1,0,,,1,0 +26450798,Stunning 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74417,-73.97206,Entire home/apt,189,29,0,,,96,316 +22843793,Large Sunny Apartment in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69185,-73.92052,Entire home/apt,125,1,2,2018-07-07,0.13,2,0 +26441519,Sunny & colorful room in Bushwick w/ yard access,16865342,Elene,Brooklyn,Bushwick,40.70553,-73.91938,Private room,53,2,29,2019-06-20,2.46,2,143 +33256653,"Bed-Stuy, Brooklyn apt w/ rooftop & skyline view.",204221927,"Tommy, Nate, And Kofi",Brooklyn,Bedford-Stuyvesant,40.68716,-73.94241,Private room,55,2,6,2019-06-30,3.53,1,89 +1159142,Private Master Bedroom@Central Park,2010724,K. Naomi,Manhattan,East Harlem,40.7948,-73.94835,Private room,108,14,4,2015-09-22,0.06,3,38 +473777,Bright Modern Artist's Apartment,2348973,Koren,Brooklyn,Williamsburg,40.71285,-73.94383,Entire home/apt,155,5,10,2017-02-19,0.12,1,0 +31572551,Chic in the City,6486059,Matt,Manhattan,Washington Heights,40.854420000000005,-73.93266,Entire home/apt,85,4,4,2019-06-18,0.72,1,8 +34118020,Amazing Area - Quick walk to Metro - Spacious!,161324994,Ashley At Bedly,Manhattan,East Harlem,40.791,-73.94807,Private room,38,30,1,2019-05-31,0.77,6,44 +14355431,Nice comfy room,58453451,Michael,Brooklyn,East New York,40.67333,-73.8872,Private room,40,2,84,2019-07-04,2.45,2,273 +13272041,A queen size bed with a cat near Grand Central,4920111,Emily,Manhattan,Midtown,40.75242,-73.97261,Private room,100,1,4,2016-10-09,0.11,1,0 +12867950,Beautiful summer sublet in Astoria,70358943,Jeff,Queens,Ditmars Steinway,40.78192,-73.91439,Private room,40,1,0,,,1,0 +27623260,Upper East Side creative sanctuary apartment,17898332,Zizi,Manhattan,Upper East Side,40.78497,-73.95201,Entire home/apt,150,4,7,2019-06-24,0.69,1,0 +23164537,Shared studio apartment,172186369,Elisheva,Bronx,Morris Heights,40.84718,-73.91378,Shared room,20,1,9,2018-05-21,0.53,1,0 +10921091,Stuido apt near Lincoln Center,56607815,Jonathan,Manhattan,Upper West Side,40.77035,-73.98638000000001,Entire home/apt,150,2,0,,,1,0 +32801102,Kips Bay Apartment,209587921,Gia,Manhattan,Kips Bay,40.74072,-73.97764000000001,Entire home/apt,199,2,6,2019-05-19,1.91,1,237 +9811274,Large Room for 2! Hipstest hood for summer!,16003028,Analá,Brooklyn,Greenpoint,40.72974,-73.95163000000001,Private room,80,5,2,2016-06-28,0.05,1,0 +6146783,"Quiet, quaint room in Victorian TH",14796247,Sandra And Cary,Brooklyn,Flatbush,40.64224,-73.96273000000001,Private room,45,5,59,2019-06-24,1.46,4,247 +26058246,Sunny room in Avenida Siempre Verde - Bushwick,19407197,Alvaro,Brooklyn,Bushwick,40.68642,-73.90734,Private room,70,3,21,2019-06-29,1.78,1,33 +17731891,New 2 BDR apt/great location/20 mins to Manhattan,120725189,Svetlana,Brooklyn,Bath Beach,40.60353,-74.01599,Entire home/apt,180,3,46,2019-07-02,1.68,1,334 +5931824,LARGE SUNNY QUIET NY APARTMENT,23116198,Sash,Manhattan,Harlem,40.82896,-73.94059,Private room,50,1,0,,,1,0 +26450809,Sonder | Hanover Square | Classic 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70569,-74.00929000000001,Entire home/apt,190,29,0,,,96,284 +17172375,Skyscraper Living in Midtown,29240443,Luis,Manhattan,Theater District,40.76106,-73.98626999999999,Entire home/apt,180,3,3,2017-05-21,0.11,1,0 +33315338,Lovely bedroom in Brooklyn,52818583,Justin & Lilo,Brooklyn,Bedford-Stuyvesant,40.68797,-73.95439,Private room,75,1,21,2019-06-30,7.5,1,114 +26832236,5 blocks from Central Park- Entire 1br apartment,177478860,Annie,Manhattan,Upper East Side,40.77096,-73.95671999999999,Entire home/apt,140,5,2,2018-10-09,0.19,1,0 +34914606,Cozy Sunset Park Private Bed Room for 2 w/AC,38119047,Wu,Brooklyn,Sunset Park,40.64739,-74.00549000000001,Private room,45,1,7,2019-07-07,4.77,2,50 +23665341,"Sunny 1BR in Sunnyside, Queens",176793977,Patrizia,Queens,Sunnyside,40.74035,-73.91663,Private room,60,7,0,,,1,0 +20825876,Lo Studio/15 min central park/wifi+ street parking,116839989,Ez,Queens,Astoria,40.76064,-73.92481,Entire home/apt,95,30,48,2019-06-23,2.97,5,217 +13477234,Midtown Luxurious 1 bedroom apt.,49939937,Julie,Manhattan,Midtown,40.7531,-73.97158,Entire home/apt,101,4,1,2016-07-06,0.03,1,0 +34202362,Entire Apt. In Brooklyn. 25 minutes to Manhattan.,135061108,Carmelo,Brooklyn,East Flatbush,40.64902,-73.94795,Entire home/apt,125,1,0,,,2,33 +24203680,Entire Newly Renovated Sugar Hill Apt,9756051,Samantha,Manhattan,Harlem,40.82696,-73.94598,Entire home/apt,100,3,6,2019-01-04,0.44,1,8 +18669019,"Entire Apt – 2 BR/1 BA – beautiful, block from L/M",23149564,Dan,Brooklyn,Bushwick,40.696940000000005,-73.91269,Entire home/apt,100,7,0,,,1,0 +34014939,Two floor apartment near Central Park,82746113,Cecilia,Manhattan,Upper West Side,40.786840000000005,-73.96911999999999,Entire home/apt,250,1,0,,,2,88 +2123731,Spacious Suite in Midtown West/Times sq.,10828833,Stephen,Manhattan,Hell's Kitchen,40.76466,-73.99325,Private room,180,3,191,2019-06-19,3.29,1,161 +35055076,Balcony with Room! Close to LGA and JFK.,256290334,Aisling,Queens,Richmond Hill,40.70254,-73.8322,Private room,65,1,17,2019-07-05,13.42,1,157 +4033422,The Lighthouse Manor,20911928,Judith,Staten Island,Lighthouse Hill,40.57718,-74.13981,Entire home/apt,200,2,49,2018-12-31,0.92,1,360 +19521346,Chic apartment with large deck - best of Brooklyn,12647740,Shmuel,Brooklyn,Boerum Hill,40.68546,-73.97933,Entire home/apt,200,20,11,2019-05-20,0.46,1,32 +33644836,"Priv room in an immaculate Apt,near Cent Park, UWS",76628403,Matt,Manhattan,Upper West Side,40.77961,-73.97821,Private room,160,2,3,2019-06-30,1.13,1,61 +557487,Full apartment close to G & L train,2740824,Lindsey,Brooklyn,Greenpoint,40.72363,-73.9457,Entire home/apt,104,11,22,2019-05-10,0.26,1,0 +32260853,Room in Williamsburg w/ private full bathroom,80354349,Luke,Brooklyn,Williamsburg,40.7079,-73.94608000000001,Private room,75,2,2,2019-05-06,0.85,1,188 +21416483,A cozy room for the holidays in Brooklyn,155200301,Andy,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9216,Private room,40,18,1,2017-12-31,0.05,2,0 +2825322,nice room in bedstuy D,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95136,Private room,55,1,67,2019-06-28,1.11,15,307 +20255158,Newly Renovated Brooklyn Apt.,45451027,David,Brooklyn,Crown Heights,40.67651,-73.95877,Private room,40,6,4,2018-09-09,0.18,1,0 +22231558,Spacious 3BR/3BA in the East Village,7002074,Ryder,Manhattan,East Village,40.72625,-73.97822,Entire home/apt,250,2,2,2017-12-30,0.1,1,0 +16823923,Wonderful Apartment Upper West Side Midtown,71739526,Jonathan,Manhattan,Upper West Side,40.77016,-73.98125999999999,Entire home/apt,250,7,0,,,1,0 +26357377,Spacious Midtown one bedroom,120762452,Stanley,Manhattan,Murray Hill,40.74891,-73.97719000000001,Entire home/apt,200,30,1,2019-05-23,0.64,50,352 +8679596,1 bedroom in nyc,4360949,Denetrias,Manhattan,Hell's Kitchen,40.76366,-73.98849,Entire home/apt,260,1,0,,,1,0 +7309129,Beautiful Airy Lower East Side Loft,7737249,Casandra,Manhattan,Chinatown,40.71431,-73.99141999999999,Entire home/apt,250,30,48,2019-04-29,1.83,2,341 +6990524,3BR Gramercy Apt in heart of NYC,36650631,Alissa,Manhattan,Kips Bay,40.73912,-73.9825,Entire home/apt,300,1,0,,,1,0 +6899995,Come to Know New York I,25812962,Claudio & Rose,Manhattan,East Harlem,40.78968,-73.94202,Private room,80,1,39,2019-06-10,0.82,3,306 +20708619,Superhost*Sunny/Private room in 2BR ❤️Williamsburg,15647614,Lin,Brooklyn,Williamsburg,40.71647,-73.95333000000001,Private room,75,1,45,2019-06-21,2.01,2,84 +31294712,Bushwick Loft Apartment w/ Stunning Manhattan View,1180631,Dale,Brooklyn,Bushwick,40.70426,-73.92111,Entire home/apt,200,4,0,,,1,66 +1929540,2 floor loft in Gramercy park,6846161,Stefano,Manhattan,Kips Bay,40.73772,-73.98025,Entire home/apt,175,3,9,2014-06-21,0.13,1,0 +35597932,Beautiful NYC Broadway Apartment next to Subway!,255259069,Jonah,Manhattan,Harlem,40.82586,-73.95296,Entire home/apt,130,31,0,,,2,333 +24300863,Tranquil Oasis in the Heart of Greenwich Village,5594198,Michelle,Manhattan,Greenwich Village,40.730340000000005,-74.00135,Entire home/apt,250,2,29,2019-06-23,1.91,1,44 +15939056,"Sunny, Contemporary 1 Bedroom Apt W/ Large Patio",103452342,David,Queens,Kew Gardens Hills,40.72077,-73.81485,Entire home/apt,105,4,21,2019-05-31,0.69,1,352 +4129195,2 sleeping areas for 2 people together +2 singles,702419,Lars,Manhattan,Chelsea,40.75097,-73.99562,Entire home/apt,175,14,78,2019-03-10,1.36,1,0 +15497568,Quite & Cozy High Raise Atmosphere,23895443,Eva,Manhattan,Harlem,40.81545,-73.95806,Private room,99,1,2,2019-01-01,0.09,1,35 +25236588,Brand New Apt Room with Modern Living Room,62533391,Yvonne,Brooklyn,Borough Park,40.63584,-74.00578,Private room,55,1,5,2019-05-19,0.41,7,326 +679633,Cozy 1 bedroom apartment in NYC,3458785,Glauce,Queens,Ditmars Steinway,40.77987,-73.91565,Entire home/apt,75,3,1,2012-09-18,0.01,1,0 +22267590,Spacious 1 bdr in Brooklyn Heights near all trains,4915579,Elisabeth,Brooklyn,Brooklyn Heights,40.69491,-73.99355,Entire home/apt,160,3,0,,,1,0 +1649957,GRACIOUS HARLEM 1 BEDROOM,8751800,Olubode Shawn,Manhattan,Morningside Heights,40.8117,-73.9555,Entire home/apt,125,2,21,2019-05-07,0.3,1,363 +17845507,Small room in South Slope House,122079426,Martha,Brooklyn,South Slope,40.6632,-73.98529,Private room,50,1,19,2017-06-12,0.71,1,0 +33822605,Brooklyn share next to train 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6783,-73.91055,Shared room,35,1,3,2019-06-07,1.11,17,77 +23292216,Lower East Side Oasis,173406651,Dan,Manhattan,Lower East Side,40.7196,-73.98133,Entire home/apt,300,3,30,2019-07-02,1.77,2,182 +22968206,1br in spacious 2 br in the heart of Williamsburg,22748648,Hugo,Brooklyn,Williamsburg,40.71246,-73.96133,Private room,90,5,1,2018-02-21,0.06,1,0 +5761564,East Village - Private Room in 2 BR,10532169,Ben,Manhattan,East Village,40.73065,-73.98444,Private room,100,1,0,,,1,0 +21125733,"Modern, Bright, Private Bklyn Room w/ 2 Beds",12632660,Christopher,Brooklyn,Fort Greene,40.69211,-73.98102,Private room,125,3,60,2019-06-21,2.79,1,0 +15447148,Modern luxury w/views of WTC,37694131,Sara,Brooklyn,Prospect-Lefferts Gardens,40.65737,-73.94606999999999,Private room,87,1,11,2019-01-05,0.36,1,361 +33789647,Zen Room in Artist’s Apartment,61278683,Leela,Queens,Astoria,40.76429,-73.90966999999999,Private room,120,2,6,2019-06-23,4.62,1,16 +5432597,1 Full Bed Room Apt in NYC,17822208,Kristin,Manhattan,Kips Bay,40.74352,-73.97859,Entire home/apt,175,2,0,,,1,0 +29331741,Spacious WV studio at the center of everything,2301120,Varun,Manhattan,West Village,40.733270000000005,-74.00157,Entire home/apt,300,2,8,2019-06-30,0.94,1,0 +21340451,Shared Apartment One stop from Manhattan in LIC.,55724558,Taylor,Queens,Long Island City,40.76024,-73.94228000000001,Shared room,48,2,21,2019-05-23,1.02,5,90 +19290380,Cozy gem in the heart of TriBeca!!,134887663,Luis,Manhattan,Tribeca,40.71863,-74.0117,Entire home/apt,220,2,76,2019-06-26,3.04,1,127 +25127539,Spacious Private Room near Prospect Park and Train,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65889,-73.95626999999999,Private room,45,31,3,2019-06-09,0.27,2,242 +9824682,1 bedroom apartment w/ Private yard,19103161,Jonathan,Brooklyn,Greenpoint,40.72691,-73.94802,Entire home/apt,150,1,0,,,1,0 +3303382,Hamilton Heights - Private Guest Suite,16683574,Delphine And Michael,Manhattan,Harlem,40.82888,-73.94997,Entire home/apt,145,4,115,2019-06-29,1.9,2,262 +6489828,Industrial Flex 2br duplex Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72583,-73.94176999999999,Entire home/apt,159,30,3,2016-08-07,0.07,52,340 +7415011,Cozy room in 1bedroom apt,15824880,Israel,Queens,Astoria,40.7722,-73.93105,Private room,37,1,0,,,1,0 +36310247,Spacious 1 Bedroom With Private Garden,25498509,Michael,Brooklyn,Clinton Hill,40.68183,-73.96464,Entire home/apt,100,1,0,,,1,6 +22205179,Spacious and sunny apartment by the Cloisters,921299,Mia,Manhattan,Washington Heights,40.8584,-73.93009,Entire home/apt,110,2,3,2019-05-28,1.55,1,12 +14303789,BEAUTIFUL AND SPACIOUS APARTMENT 1st FLOOR,5613109,Lilly,Queens,Astoria,40.7581,-73.91975,Entire home/apt,120,2,13,2018-06-25,0.37,1,115 +21082203,Sunny Private Bedroom in Washington Heights,75126216,Michael,Manhattan,Washington Heights,40.83784,-73.94081,Private room,75,3,2,2017-10-22,0.09,1,0 +22689135,Cozy private room,167250189,Kennedy,Brooklyn,Bushwick,40.69827,-73.93207,Private room,50,5,1,2018-01-21,0.06,1,0 +6078234,"Chic, Spacious & Quiet UWS Manhattan NYC 1BDR Gem!",31425596,Kevin,Manhattan,Upper West Side,40.78866,-73.97878,Entire home/apt,195,3,67,2019-06-30,1.33,1,85 +33446557,"Mi casa, tu casa!",203932958,Lina,Manhattan,Lower East Side,40.72044,-73.98335,Entire home/apt,240,3,10,2019-06-24,3.23,2,8 +19951242,Luxury Williamsburg with Panoramic City Views,202362,Liad,Brooklyn,Williamsburg,40.7191,-73.9617,Entire home/apt,275,5,3,2017-12-05,0.15,1,0 +22339165,Semi private room in great apartment,922478,Brad,Brooklyn,Clinton Hill,40.68232,-73.96043,Shared room,50,4,15,2018-08-27,0.81,2,0 +18228187,《2》法拉盛市中心明亮干净的私人房间,123580100,Evelyn,Queens,Flushing,40.76417,-73.83008000000001,Private room,45,1,94,2019-06-17,3.48,2,62 +7259804,Beautiful Place near Manhattan,5499064,Akira,Brooklyn,Bedford-Stuyvesant,40.687540000000006,-73.92522,Private room,45,3,87,2019-06-30,1.91,1,258 +7004408,Cozy & Zen Manhattan Soho Studio,21641864,Yann,Manhattan,SoHo,40.72745,-74.0027,Entire home/apt,190,6,61,2019-06-07,1.27,1,275 +3609762,Sunny spacious 3 BR/ 2Bth in Bayside townhouse,18189519,Irma,Queens,Bay Terrace,40.77995,-73.78506,Entire home/apt,184,3,146,2019-06-19,2.46,1,143 +681805,NEAR THE CITY THAT NEVER SLEEPS!,3375455,Maria,Staten Island,Mariners Harbor,40.62879,-74.16062,Private room,54,2,48,2019-06-11,0.59,1,232 +35883990,Smart Bedroom in Artistic Williamsburg Apartment,89919417,T. & Marnie,Brooklyn,Williamsburg,40.71019,-73.95739,Private room,70,1,1,2019-06-30,1.0,1,46 +944840,Dumbo Loft With A Beautiful View,5110818,Kevin,Brooklyn,DUMBO,40.70447,-73.98754,Entire home/apt,134,14,14,2019-01-29,0.18,1,0 +6974249,Prime Williamsburg Location,6623402,Robert,Brooklyn,Williamsburg,40.7196,-73.95599,Entire home/apt,125,1,6,2016-08-28,0.13,1,0 +34152598,Hip budget friendly room 20 min from Manhattan!,34269923,Annabella,Brooklyn,Bushwick,40.69718,-73.91165,Private room,52,1,7,2019-07-01,4.77,1,0 +21608855,The Cozy Bushwick Modern (Room B),142625186,J.R.,Brooklyn,Bushwick,40.69104,-73.91685,Private room,75,1,44,2019-06-19,2.16,2,0 +4402117,GORGEOUS 2 Bedroom in Queens NYC,22780462,Mark,Queens,Kew Gardens Hills,40.72891,-73.82588,Entire home/apt,149,3,82,2019-06-23,1.55,2,327 +8335547,W Hotel Style 2 BR w/ Private Patio,1237358,David,Manhattan,East Village,40.72342,-73.98871,Entire home/apt,250,2,1,2015-09-26,0.02,1,0 +34791952,Master Suite in Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69056,-73.91185,Private room,80,1,1,2019-05-27,0.68,2,74 +31319056,Sunny and cozy Williamsburg apartment.,3807069,Deva,Brooklyn,Williamsburg,40.71125,-73.95935,Private room,100,2,4,2019-05-05,1.05,1,0 +4547273,Beautiful Spacious Studio By Park,10411359,Alison,Manhattan,Upper West Side,40.78316,-73.97269,Entire home/apt,120,3,33,2019-07-01,0.62,1,0 +29176864,136 Apt 7,159435936,Jonathan,Manhattan,Upper West Side,40.78833,-73.97182,Entire home/apt,85,30,2,2019-02-26,0.44,3,118 +20433620,Time square/ Bryant park,145803893,Jonathan,Manhattan,Midtown,40.75205,-73.98564,Entire home/apt,170,2,102,2019-06-23,4.48,1,213 +22208315,Patio Perfection,55324782,Kaitlin,Manhattan,Upper West Side,40.78309,-73.97831,Private room,75,1,1,2018-01-01,0.05,1,0 +21765318,Middle Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72477,-73.94465,Shared room,35,2,16,2019-06-23,0.81,5,274 +23378120,Quiet 2BR In Residential Area; Desks + Monitors!,1670486,Chris,Brooklyn,Greenpoint,40.72345,-73.94641999999999,Entire home/apt,96,4,0,,,1,0 +13530588,Sunny Cozy Room Located In Prime East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63292,-73.94569,Private room,80,2,7,2018-01-10,0.21,8,189 +23377713,Private room in lovely Brooklyn Apt,54241,Matt,Brooklyn,Sunset Park,40.66289,-73.99815,Private room,80,21,0,,,1,0 +32835357,4mins to Manhattan Bound 7train; 10mins to LGA (1),247013511,Frank,Queens,Jackson Heights,40.75298,-73.87675,Private room,40,2,8,2019-06-20,2.42,6,75 +19673318,Hunters Hideaway,138526119,Richard,Queens,Rockaway Beach,40.58573,-73.8137,Entire home/apt,142,2,11,2019-05-20,0.46,1,117 +32544596,Brooklyn Awesomely Huge Apartment - 2,9864136,Anthony,Brooklyn,Bushwick,40.68491,-73.91324,Entire home/apt,85,30,1,2019-03-10,0.25,26,312 +19068247,Quiet garden studio in Bushwick,23991242,Lizzie,Brooklyn,Bushwick,40.68748,-73.90751,Entire home/apt,100,2,1,2019-07-07,1.0,1,99 +4291200,"Comfy Rm, Hallway Bath, Forest Hills",19597910,Ruth,Queens,Forest Hills,40.7269,-73.83952,Private room,95,2,42,2019-05-09,0.74,3,334 +36347051,Beautiful Large Bedroom in the Heart of Harlem,273101668,Betty,Manhattan,Harlem,40.83225,-73.94496,Private room,60,2,0,,,1,72 +27967621,"Private Guest Suite Close To Ferry, Colleges, RUMC",13974626,Carrie,Staten Island,Tompkinsville,40.63482,-74.095,Entire home/apt,65,2,13,2019-06-16,2.89,1,247 +26743342,Brand New Brooklyn Style Hostel RM3 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69396,-73.95578,Shared room,35,1,16,2019-07-06,1.34,34,346 +2232697,Kate's Place,1726966,Katarina,Brooklyn,Crown Heights,40.67167,-73.92434,Shared room,48,1,146,2019-07-06,2.21,1,0 +21569763,Cheery Bedroom in Brooklyn Apartment,3075854,Alexa,Brooklyn,Sunset Park,40.64046,-74.01337,Private room,35,3,3,2018-09-07,0.16,1,0 +19767688,Bedroom with Patio in Prime Williamsburg Location!,3900279,Adriel,Brooklyn,Williamsburg,40.72054,-73.95919,Private room,100,3,0,,,2,0 +13326731,Cozy room with Queen bed in spacious loft.,75275467,Yaron,Bronx,Port Morris,40.80872,-73.93051,Private room,49,2,59,2019-06-11,1.59,4,148 +21650258,"Bright, modern apartment",48492315,Sawyeh,Brooklyn,Bedford-Stuyvesant,40.68364,-73.95821,Entire home/apt,85,3,3,2018-01-02,0.15,1,0 +11714323,100% 5★ Reviews - Big 2-Bed 2-Bath – Central Wburg,10078038,Robert,Brooklyn,Williamsburg,40.71765,-73.95189,Entire home/apt,300,5,46,2019-06-22,1.18,1,29 +3157330,"clean, casual 2BD apt in bed-stuy!",9105586,Marc,Brooklyn,Bedford-Stuyvesant,40.68898,-73.9412,Entire home/apt,75,1,1,2015-02-12,0.02,1,0 +27852410,Big Bed Paradise,104812805,Amarjit S,Staten Island,Arrochar,40.59623,-74.0839,Private room,34,4,8,2019-06-08,0.85,8,290 +21610946,Cozy Light-Filled Prospect Heights Apartment,39255079,Amy,Brooklyn,Prospect Heights,40.67411,-73.96531999999999,Private room,62,1,55,2019-07-01,2.76,1,63 +18092438,LOCATION! Coffee and Central Park!,17428203,Christine,Manhattan,Upper East Side,40.77241,-73.94800000000001,Entire home/apt,124,31,0,,,2,0 +34411020,Super Spacious room in Brooklyn,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.6788,-73.92721999999999,Private room,43,1,4,2019-06-10,2.0,3,343 +24645220,Private bedroom in two bedroom apartment Brooklyn,115258603,Toun,Brooklyn,Crown Heights,40.672540000000005,-73.91686,Private room,62,2,23,2019-06-03,1.58,1,172 +30582854,Cozy Private Room w/ Full Bed - Perfect for Travel,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66015,-73.94251,Private room,55,1,24,2019-06-27,3.38,7,45 +5770483,Cozy Quiet 1 BR Apt Hell's Kitchen,29936494,Monica,Manhattan,Hell's Kitchen,40.76525,-73.98953,Entire home/apt,195,5,55,2019-06-14,1.09,1,34 +34179924,Comfy Room in the Heart of Queens,258058607,Raul,Queens,Woodside,40.74444,-73.896,Private room,125,1,0,,,1,90 +24104871,"Cozy Art Private Bedroom-Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83163,-73.94615,Private room,70,1,16,2019-01-01,1.22,6,32 +34182096,Architecturally Designed East Village Oasis,18327084,Sheelagh,Manhattan,East Village,40.72495,-73.97679000000001,Entire home/apt,240,4,0,,,1,83 +20287322,Private room in two-bedroom apartment in Chinatown,90130659,Spencer,Manhattan,Two Bridges,40.71261,-73.99609,Private room,80,7,0,,,1,0 +35512005,Hotel like stay in beautiful Brooklyn,742949,Adam,Brooklyn,Prospect Heights,40.67977,-73.96882,Entire home/apt,249,3,1,2019-07-06,1.0,1,89 +20173972,Spacious bedroom w/ private entrance + roofdeck,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95688,Private room,80,2,64,2019-07-06,2.73,3,116 +33406274,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70842,-74.00519,Private room,169,7,1,2019-06-09,1.0,13,358 +26866997,Sweet little home,201893473,Danielisa,Bronx,Concourse,40.832240000000006,-73.92068,Private room,38,5,6,2018-12-08,0.52,1,188 +21781983,Beautiful Sunny Private Room #2 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61465,-74.00312,Private room,70,2,15,2019-07-01,0.77,4,236 +27827834,Coziest room off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92588,Private room,65,1,27,2019-01-26,2.52,2,0 +19655651,Color and Comfort in Prime Brooklyn Location,16872537,Adir,Brooklyn,Crown Heights,40.67025,-73.95009,Entire home/apt,84,6,0,,,1,0 +6966936,Single Family Bushwick Oasis,36208562,Rebecca & Warren,Brooklyn,Bushwick,40.69847,-73.92787,Entire home/apt,250,2,23,2016-10-29,0.49,1,0 +18573121,LUXURY 1BR ON EAST 44TH~DOORMAN/LAUNDRY,2856748,Ruchi,Manhattan,Midtown,40.751940000000005,-73.97068,Entire home/apt,232,30,2,2018-11-17,0.1,49,364 +16206887,Private room in Brooklyn house with backyard,43754478,Thomas,Brooklyn,Bedford-Stuyvesant,40.69878,-73.94606999999999,Private room,50,5,5,2017-04-28,0.17,1,0 +4137789,"Sunny 2BR in Brooklyn townhouse, steps to subway",21466751,Elizabeth,Brooklyn,Windsor Terrace,40.65282,-73.97394,Entire home/apt,180,3,56,2019-05-28,0.99,1,121 +30498747,Luxurious bedroom in Tribeca - walk to World Trade,36642844,Jason,Manhattan,Tribeca,40.71802,-74.01038,Private room,97,1,4,2019-04-26,0.63,1,0 +7789346,"Home 4 Medical Professionals - The ""Noxious""",26377263,Stat,Brooklyn,Bushwick,40.70619,-73.9191,Private room,47,30,3,2018-08-18,0.07,43,291 +25339184,Cute 1 Bedroom close to Graham Ave. train stop,3360346,Christen,Brooklyn,Williamsburg,40.71604,-73.94216999999999,Entire home/apt,53,3,4,2019-06-21,0.3,2,29 +24286851,"Sunny West Village 1BR: amazing location, spacious",54042,Vicki,Manhattan,West Village,40.729690000000005,-74.00697,Entire home/apt,200,2,10,2019-06-21,0.68,1,0 +16499274,Two bedroom apt in Williamsburg,13924244,Steven,Brooklyn,Williamsburg,40.71281,-73.94246,Entire home/apt,100,4,48,2019-05-14,2.16,1,6 +16514343,"Modern, Beautiful Tribeca 2-Bedroom Loft",12554468,Eric,Manhattan,Tribeca,40.71845,-74.00932,Entire home/apt,259,2,116,2019-07-06,4.03,1,1 +30246118,Amazing apt in Brooklyn close to Prospect Park A,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66166,-73.94084000000001,Private room,70,1,19,2019-06-30,2.57,5,199 +12683452,Two Nice Private Rooms in Brooklyn!,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67798,-73.93734,Private room,128,2,3,2016-10-11,0.08,3,12 +31445273,Convenient - 2 Stops from the city (good price!),235548617,Khalid,Queens,Long Island City,40.7576,-73.93222,Private room,55,1,25,2019-07-07,5.03,2,34 +34310607,Large private Room nearly JFK 8 mins,222049462,Jose,Queens,Rosedale,40.65919,-73.73411999999999,Private room,60,1,14,2019-07-01,6.46,2,88 +20216170,"Cozy, Sunny, Spacious 1 Bedroom Gem in Greenpoint!",144017474,Kristin,Brooklyn,Greenpoint,40.73639,-73.95342,Entire home/apt,83,1,85,2019-07-01,3.74,2,0 +34289867,"Amazing 2 BR Ap,10min walk 2 Empire state building",258892159,Flora,Manhattan,Kips Bay,40.74357,-73.97646999999999,Entire home/apt,299,1,0,,,1,20 +6782407,,31147528,Huei-Yin,Brooklyn,Williamsburg,40.71354,-73.93881999999999,Private room,45,1,0,,,1,0 +9833953,East Village 3br 2 bath Luxury,45911716,Peter,Manhattan,East Village,40.72804,-73.97638,Entire home/apt,325,3,17,2017-06-04,0.46,1,0 +11557387,EAST RIVER VIEW~HIRISE STUDIO,2856748,Ruchi,Manhattan,Midtown,40.75453,-73.96473,Entire home/apt,205,30,0,,,49,364 +1327775,Luxury 1BR w/ Rooftop,7205838,Erik,Queens,Long Island City,40.76592,-73.93428,Entire home/apt,120,3,2,2016-05-29,0.05,1,0 +613818,Small Private Room # 1 with Window,2712353,Masud,Brooklyn,Cypress Hills,40.68375,-73.87065,Private room,35,28,88,2019-05-22,1.05,4,326 +29074124,"Private bedroom close to Times Square, Manhattan",219080539,Jose,Manhattan,Hell's Kitchen,40.76108,-73.99358000000001,Private room,100,1,15,2019-06-10,1.74,1,27 +30445028,Midtown Priv. Lux.Room in a Penthouse (only girls),172586583,Miriam,Manhattan,Chelsea,40.74772,-73.99146,Private room,110,3,6,2019-06-28,0.84,1,12 +12735625,Private Bedroom in 2 BR apartment,69254072,Morgan,Manhattan,Inwood,40.86468,-73.92209,Private room,85,1,0,,,1,0 +24748187,"Modern, Private Room in Heart of East Village",7656338,Conor,Manhattan,East Village,40.72191,-73.98124,Private room,80,2,9,2018-09-17,0.66,1,0 +20975327,Spacious Bedroom near Prospect Park,6375186,Sonya,Brooklyn,Kensington,40.64773,-73.97499,Private room,100,1,28,2019-06-30,1.44,1,21 +12760088,Modern Apartment. Central Park. B/C,52630170,Flora,Manhattan,Harlem,40.8033,-73.95770999999999,Private room,50,3,2,2016-05-23,0.05,1,0 +30018456,COMFORTABLE PRIVATE ROOM IN FLATBUSH!,72015600,XaXa,Brooklyn,Flatbush,40.646640000000005,-73.95486,Private room,60,1,3,2019-01-27,0.48,1,0 +27292217,"Center of manhattan, Times Square , 1min from st",57724903,Treasure,Manhattan,Theater District,40.76193,-73.98236,Entire home/apt,325,7,0,,,1,0 +34255449,Beautiful Manhattan TOWNHOUSE APARTMENT w Deck,779474,Clint,Manhattan,Washington Heights,40.83515,-73.94178000000001,Entire home/apt,128,3,9,2019-07-05,4.66,1,236 +30578526,Summertime in Brooklyn’s Bedford–Stuyvesant,229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68422,-73.92314,Private room,65,2,16,2019-07-06,2.5,3,222 +6855514,Clean & sunny private room (fits 3),24260658,Kristy,Manhattan,East Harlem,40.79487,-73.93477,Private room,110,2,68,2019-06-22,1.39,5,44 +22339259,Cozy affordable room close to Express station!,64018594,Daphne,Manhattan,Harlem,40.80966,-73.95299,Private room,90,1,1,2017-12-31,0.05,2,0 +11587997,"Quiet, Clean, Lit @ Lower East Side",40470433,Hana,Manhattan,Lower East Side,40.71303,-73.98645,Private room,52,1,0,,,1,0 +3739864,Large Bedroom in Brooklyn for June and July.,14102923,Mark,Brooklyn,Flatbush,40.65136,-73.95974,Private room,48,5,0,,,1,0 +292121,1 bedroom apt in Midtown West,169927,Hubert,Manhattan,Hell's Kitchen,40.7625,-73.9869,Entire home/apt,199,3,4,2018-09-12,0.07,1,200 +26946208,Cozy room in the heart of Little Italy,21146326,Olga,Manhattan,Chinatown,40.717940000000006,-73.99686,Private room,75,3,4,2018-11-04,0.4,2,0 +18412771,Great room for students and tourists,127583166,Maite,Manhattan,Washington Heights,40.8398,-73.94384000000001,Private room,55,21,8,2018-11-18,0.52,2,38 +21926893,Studio with brand new furniture and appliances!,159998120,Joe,Queens,Astoria,40.76522,-73.92438,Entire home/apt,92,1,0,,,1,0 +498120,Hi Traveler.. welcome,2459648,Ellen,Bronx,Allerton,40.8687,-73.8524,Private room,35,7,2,2018-07-23,0.17,1,90 +17118782,Modern East Village Tenement (1 bedroom),36383228,Amanda,Manhattan,East Village,40.72576,-73.97908000000001,Entire home/apt,160,5,25,2019-05-27,0.9,1,0 +22295038,Home away from Home-Close to trains and JFK,58237901,Nicola,Brooklyn,Brownsville,40.66116,-73.90305,Entire home/apt,100,4,29,2019-06-11,1.57,1,281 +22533156,Private Sunny Room (B) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65255,-73.9454,Private room,75,2,5,2019-06-02,0.35,2,40 +18094311,Manhattan Bedroom | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74563,-73.9759,Entire home/apt,219,30,1,2018-05-31,0.07,23,362 +796232,"Cozy Apt in Bushwick, Brooklyn!",4194142,Alexandra,Brooklyn,Bushwick,40.70308,-73.92765,Entire home/apt,115,4,12,2018-09-21,0.18,1,0 +8635762,"Studio Close To LIJ, JFK.Private Entry,欢迎中国朋友来住",45404928,Joan,Queens,Queens Village,40.71412,-73.73008,Entire home/apt,59,1,113,2019-07-07,2.79,1,346 +6539778,Large 1BR in heart of Williamsburg!,34201688,Samantha,Brooklyn,Williamsburg,40.718340000000005,-73.95867,Entire home/apt,149,30,35,2019-05-17,0.83,1,0 +2331154,Spacious Private Room in East Williamsburg,4467316,Barbara,Brooklyn,Williamsburg,40.70874,-73.93818,Private room,60,30,16,2019-07-05,0.28,2,190 +21110709,Smart 3BR in Trendy Astoria - 8 min to N/W Subway,59959974,Russell,Queens,Astoria,40.7726,-73.92298000000001,Entire home/apt,180,4,41,2019-07-05,2.22,1,120 +28012031,A Charming Hideout for a perfect weekend,178499417,Vanessa,Brooklyn,East Flatbush,40.64557,-73.94684000000001,Entire home/apt,80,1,14,2019-02-24,1.49,1,0 +7455635,Unique Artists' Studio in Manhattan,1407021,Gabe,Manhattan,Chinatown,40.71624,-73.99015,Entire home/apt,180,3,30,2018-01-03,0.63,1,0 +12703851,Large stylish Mid Century Duplex in Clinton Hill,11109705,Valeska,Brooklyn,Clinton Hill,40.68678,-73.96178,Entire home/apt,180,7,10,2019-05-07,0.78,1,0 +7987306,Huge room in a cool neighbourhood,34149113,Jeremy,Brooklyn,Bushwick,40.70227,-73.92362,Private room,50,2,0,,,1,0 +27482124,"Large, Bright Studio for Rent",20398684,Heather,Manhattan,Midtown,40.75135,-73.97197,Entire home/apt,120,2,6,2019-04-15,0.62,1,0 +2707194,Large Sunny Apartment,159726,Tina,Manhattan,Washington Heights,40.83482,-73.94617,Entire home/apt,130,6,5,2014-08-20,0.08,1,0 +2882666,"UWS Large clean 1Br entire apt, 2 stops fromTiMESQ",6964353,Patricia,Manhattan,Upper West Side,40.79972,-73.96418,Entire home/apt,150,10,6,2016-06-29,0.1,1,0 +16634534,3A. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80715,-73.93834,Private room,50,1,98,2019-04-15,3.25,10,350 +1987371,"Williamsburg, prime loction, Brooklyn private room",1525582,Christina,Brooklyn,Williamsburg,40.71971,-73.95998,Private room,79,3,176,2019-06-21,2.63,1,37 +21771486,Park Slope it! Close to Manhattan! Renovated!,31697949,Michelle,Brooklyn,Sunset Park,40.66475,-73.99629,Private room,30,2,7,2018-05-15,0.36,1,0 +19295652,Backpacker’s Studio( Spring Deal!!),13547493,Chuck,Manhattan,Upper East Side,40.78179,-73.95209,Entire home/apt,120,3,38,2019-06-01,3.37,2,5 +13876809,Sunrise Loft Room in Luxurious Brooklyn Condo,82083094,Fay,Brooklyn,Canarsie,40.63927,-73.88145,Private room,65,2,13,2019-05-05,0.42,2,270 +24022413,New penthouse with Manhattan and park views!,4094332,Nick & Gaby,Brooklyn,East Flatbush,40.65478,-73.95264,Private room,65,3,51,2019-06-20,3.71,1,62 +14280057,Cozy Room Right Next to Prospect Park!,27186608,Clara,Brooklyn,Flatbush,40.64562,-73.96446,Private room,39,3,13,2019-07-05,0.38,1,186 +763600,"Private 2BR / East Williamsburg, Bk",3891399,Anthony,Brooklyn,Williamsburg,40.70369,-73.93284,Private room,75,3,2,2014-11-03,0.03,1,0 +12730083,Elegant 2 Bdrm Apt W/ Add. 2 Rms on Lower Level,15089968,Anna,Queens,Richmond Hill,40.69961,-73.84158000000001,Entire home/apt,250,3,40,2019-01-01,1.04,2,189 +16396119,Enjoy my apartment for the summer!,52780335,Aaron,Manhattan,Washington Heights,40.83985,-73.93715,Entire home/apt,65,3,14,2019-06-29,0.45,1,0 +29081288,"Great home stay,Manhattan Barclay Center 25minutes",94214493,Dadrine,Brooklyn,East Flatbush,40.65454,-73.91885,Private room,90,7,1,2019-06-02,0.79,9,365 +33944826,Bienvenidos a casa,234956201,Jose,Manhattan,Washington Heights,40.83588,-73.93978,Private room,65,2,7,2019-07-01,3.75,1,180 +673760,Sunrise Room in Spacious Duplex,2219255,Natalie,Brooklyn,Canarsie,40.62764,-73.90086,Private room,250,2,70,2018-10-10,0.85,3,0 +3058087,Fully Furnished Luk Room including Air Conditiner!,5986790,Gen,Manhattan,Washington Heights,40.83568,-73.94457,Private room,40,31,2,2019-06-16,0.15,6,130 +12495887,Bright & Sunny Greenpoint Studio,2104160,Brendon,Brooklyn,Greenpoint,40.7369,-73.95288000000001,Entire home/apt,119,4,4,2017-05-09,0.1,1,0 +4224091,Brooklyn - Boerum Hill Beauty,21921207,Nick,Brooklyn,Boerum Hill,40.68449,-73.98524,Entire home/apt,195,2,116,2019-07-03,2.02,1,260 +13491951,QUIET OASIS in Prime Chelsea LRGE APT PRIVATE back,51137325,Ellen,Manhattan,Chelsea,40.74494,-74.00116,Entire home/apt,225,30,0,,,1,280 +8088779,[201] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.759890000000006,-73.98899999999999,Shared room,250,1,134,2019-06-07,2.88,11,306 +11718547,"Spacious Private Room, lots of character & light",18562674,Belkis,Manhattan,Harlem,40.8284,-73.94461,Private room,81,1,102,2019-06-01,2.7,2,90 +23803836,Blue House on Martense,55339775,Jon,Brooklyn,East Flatbush,40.65202,-73.95104,Entire home/apt,30,4,0,,,1,0 +4540852,Williamsburg Apartment,10718241,Jason,Brooklyn,Greenpoint,40.7191,-73.94964,Private room,50,1,0,,,1,0 +7247033,Sunny Lower E. Side Ap. near BDFMJZ,37947830,Marcus,Manhattan,Chinatown,40.71574,-73.99107,Private room,100,1,13,2019-05-18,0.27,1,2 +12713090,Beautiful West Village Apartment,23919461,Cesar,Manhattan,West Village,40.733990000000006,-74.00549000000001,Entire home/apt,250,3,30,2019-05-27,0.77,2,18 +1919766,Full of Harlem Soul & Charm,9501531,Andre,Manhattan,Harlem,40.82438,-73.94332,Private room,60,1,245,2019-07-07,3.6,3,336 +8170917,HK SWEET SPOT,41466973,Christopher,Manhattan,Hell's Kitchen,40.75849,-73.9907,Entire home/apt,200,2,1,2015-09-22,0.02,1,161 +26121109,Boho Haven with Private Balcony in Bushwick,33592161,Dakota,Brooklyn,Bushwick,40.69777,-73.92251999999999,Entire home/apt,95,3,5,2019-04-27,0.39,1,0 +6574595,Two Adjoined Rooms Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71329,-73.96231999999999,Private room,199,1,2,2018-01-04,0.06,3,346 +25493355,"Close to Central Park,renovated quite studio A",192407842,Aron,Manhattan,Upper West Side,40.78488,-73.9763,Entire home/apt,149,1,62,2019-07-03,4.77,1,224 +11483117,Brooklyn Style Apartment,60446325,Taniesha,Brooklyn,Clinton Hill,40.69483,-73.96403000000001,Private room,54,2,30,2019-06-05,1.17,1,333 +19327636,Cozy studio apartment close to trains 111 st/2 av,67280917,Adam,Manhattan,East Harlem,40.79313,-73.94154,Entire home/apt,100,2,14,2019-06-30,1.22,1,36 +30767367,Fantastic Co-Living Space 2L-2,230192510,Zach,Brooklyn,Fort Greene,40.696290000000005,-73.97447,Private room,48,30,0,,,25,341 +33489978,Huge private apartment in Manhattan,252356839,Leo,Manhattan,Harlem,40.82802,-73.94481,Entire home/apt,74,3,1,2019-04-07,0.32,2,0 +12804693,Quiet bedroom on St Marks,69782291,Karen,Manhattan,East Village,40.7291,-73.98628000000001,Private room,120,5,13,2017-09-23,0.34,1,0 +16802965,Modern Apt in Townhouse in Williamsburg prime!,25233493,Jaime,Brooklyn,Williamsburg,40.71286,-73.96084,Entire home/apt,200,5,31,2018-11-04,1.39,2,291 +16113712,2 Bedroom Apartment in Harlem,105069538,Sohel,Manhattan,East Harlem,40.80764,-73.93963000000001,Entire home/apt,175,1,8,2018-10-03,0.29,1,66 +6286307,Terrific Location in Prospect Heights,1771148,Alex & Laura,Brooklyn,Crown Heights,40.678090000000005,-73.95903,Private room,62,4,12,2016-09-02,0.24,1,0 +11750766,SWEEPING VIEWS 23d FLR~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.757540000000006,-73.96129,Entire home/apt,245,30,0,,,49,334 +35235379,"Feel Like a Home,Shopping Mall Walking Distance !!",265288059,Masum,Queens,Corona,40.7363,-73.86316,Private room,36,1,5,2019-07-07,3.85,2,337 +5940868,Sunlit Gem in Happening Greenpoint,2862308,Auran,Brooklyn,Greenpoint,40.72777,-73.95231,Entire home/apt,75,2,6,2017-01-04,0.14,1,0 +15781324,Inviting One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67821,-73.96588,Entire home/apt,125,30,6,2019-01-31,0.23,3,55 +21120246,"Positive Vibes, Bushwick Living - Entire Apartment",6378149,Laurel,Brooklyn,Bushwick,40.69883,-73.91583,Entire home/apt,115,2,1,2018-08-10,0.09,3,0 +35467286,Beautiful studio basement in Bushwick,14763957,Giuliana,Brooklyn,Bushwick,40.70364,-73.92679,Private room,58,2,0,,,1,57 +9575089,2 Bedroom Private Garden Apartment,48966726,Grace,Brooklyn,Crown Heights,40.66996,-73.94989,Entire home/apt,160,2,35,2019-05-05,0.9,1,8 +30432254,"Beautifully lit, newly renovated bushwick home",284199,Avijit,Brooklyn,Bushwick,40.69277,-73.92133000000001,Private room,70,15,0,,,2,0 +16352982,"Great Room &Host, steps from #1 train",60163700,Dee,Manhattan,Harlem,40.82378,-73.95354,Private room,50,60,13,2018-08-15,0.67,4,0 +9822738,Beautiful Upper East Side Apt!,50593964,Laura,Manhattan,Upper East Side,40.77641,-73.95505,Entire home/apt,199,4,1,2016-01-03,0.02,1,0 +29761272,"cozy room in queens, with free subway pick up",223913025,Jennyfer,Queens,Cambria Heights,40.69597,-73.74306999999999,Private room,100,7,1,2018-11-10,0.12,1,0 +4650725,Lovely Room in a 2 BR in Greenpoint,24075308,Saskia,Brooklyn,Greenpoint,40.72518,-73.93844,Private room,85,14,3,2015-07-03,0.05,1,0 +4539906,"Bright 1BR, central location",23540800,Carl,Manhattan,Hell's Kitchen,40.75381,-73.99491,Entire home/apt,205,2,0,,,1,0 +3974464,Art Studio Loft in Manhattan (UWS),20047729,Fabio,Manhattan,Upper West Side,40.78789,-73.97679000000001,Private room,50,5,0,,,1,0 +13395513,Entire apartment in the heart of SOHO,74994238,Godfrey,Manhattan,SoHo,40.7207,-73.99815,Entire home/apt,76,30,10,2019-06-11,0.31,1,30 +24756679,Light-Filled Studio Across From Prospect Park,56051614,Erica,Brooklyn,Prospect Heights,40.67388,-73.96709,Entire home/apt,128,3,13,2019-06-30,0.99,1,2 +6576327,"manhattan uptown 2/b, excellent for big family",33680030,Ruby,Manhattan,Harlem,40.82033,-73.95631999999999,Entire home/apt,120,1,3,2015-07-28,0.06,1,0 +925137,Cute Manhattan Chelsea Apartment,3458692,Karla,Manhattan,Chelsea,40.74435,-74.00038,Entire home/apt,124,30,4,2016-06-10,0.07,1,42 +29320258,Private Room in Prime Bushwick,89339003,Shoshi,Brooklyn,Bushwick,40.7027,-73.91429000000001,Private room,70,5,1,2019-02-17,0.21,1,53 +32678246,Private and Spacious Queen Room Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74902,-73.99211,Private room,100,1,17,2019-07-02,7.08,9,324 +31773364,Spacious room with easy commute to Grand Central!,137358866,Kazuya,Queens,Woodside,40.74466,-73.90899999999999,Private room,38,30,0,,,103,244 +23449907,"Light-drenched 2-bedroom apt, prime location中国城",2148510,Joanna,Manhattan,Chinatown,40.71708,-73.99908,Entire home/apt,145,29,18,2019-05-31,1.13,1,155 +20049161,Williamsburg Loft - Private room,2612106,Emil,Brooklyn,Williamsburg,40.71862,-73.94579,Private room,100,5,0,,,1,0 +9884516,Gorgeous Space in LIC/Astoria,47653056,Jamie,Queens,Long Island City,40.75342,-73.9237,Private room,66,7,1,2016-01-05,0.02,1,0 +33627366,Cozy Bedroom in Bed-Stuy apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68375,-73.91503,Private room,150,1,0,,,2,177 +34490359,One Bedroom Penthouse Suite in Times Square,260618374,The Knickerbocker,Manhattan,Midtown,40.75449,-73.98737,Private room,100,1,0,,,13,312 +24969822,Modern Apartment in Long Island City,137575565,Jamesdean,Queens,Long Island City,40.7563,-73.93401999999999,Private room,75,3,2,2018-06-29,0.16,1,0 +18809063,Lovely apartment in Brooklyn,58528354,Karen,Brooklyn,Crown Heights,40.67537,-73.91821999999999,Entire home/apt,85,2,42,2019-06-21,1.71,1,147 +7126996,Williamsburg 2 BR Apt w View of NYC,37191276,Deniz,Brooklyn,Williamsburg,40.71255,-73.95121,Private room,125,2,0,,,1,0 +6767911,"Private Floor, 1BR 1BTH, PR Entry",24742173,Tammy,Manhattan,Upper West Side,40.79745,-73.96936,Entire home/apt,130,4,16,2018-04-20,0.32,3,0 +17186834,Private charming room for gate away.,59505164,Ali,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9449,Private room,59,4,74,2019-06-15,2.52,1,85 +4700809,Cozy Two-bedroom Apt in a Cute House in Brooklyn!,24298733,Tuva,Brooklyn,Kensington,40.6367,-73.97434,Private room,35,4,0,,,2,0 +16424743,Garden studio w/ private entry&bath. No smokers.,107671914,Etwin,Brooklyn,East Flatbush,40.65737,-73.92563,Private room,90,3,36,2019-01-01,1.28,1,50 +3341682,Prime Greenpoint/Williamsburg room,1558222,Nikki,Brooklyn,Greenpoint,40.72285,-73.95192,Private room,75,1,3,2015-10-19,0.05,3,0 +652648,GRAMERCY PARK~FURNISHED E.20's ST P,1475015,Mike,Manhattan,Kips Bay,40.741890000000005,-73.97833,Entire home/apt,87,30,3,2018-08-15,0.05,52,363 +33763207,Lady's Powder Room,253753123,Basia,Brooklyn,Borough Park,40.63112,-73.99531999999999,Private room,39,1,9,2019-07-04,3.7,1,11 +28919815,G1. Private room for 2 guest.,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.94660999999999,Private room,35,2,1,2018-10-06,0.11,6,364 +3359315,Sublet near Columbia University,16948705,Berhani,Manhattan,Harlem,40.81742,-73.95358,Private room,22,10,3,2015-08-08,0.05,1,0 +6913240,Bedroom + Study with private bath,15792771,Wenxin,Queens,Rego Park,40.72597,-73.86131,Private room,80,4,2,2015-09-15,0.04,1,0 +36105607,NYC apartment located in Midtown Manhattan,271591823,Rob,Manhattan,Kips Bay,40.73835,-73.98121,Private room,150,2,0,,,1,31 +33595791,Beautiful Chelsea townhouse bedroom,236668588,Jen,Manhattan,Chelsea,40.74679,-74.00263000000001,Private room,115,1,3,2019-06-30,1.11,2,113 +27659540,One Bedroom in Gramercy,21923346,John,Manhattan,East Village,40.73215,-73.9866,Entire home/apt,225,2,6,2019-01-23,0.57,1,87 +11740163,Modern 1 Bdrm Apt off Bedford Ave,1709729,Jill,Brooklyn,Williamsburg,40.72138,-73.95756999999999,Entire home/apt,200,30,45,2018-03-20,1.27,1,310 +36069295,Private Rock and roll room 1blk from train,95886123,Melissa,Queens,Astoria,40.76621,-73.92274,Private room,100,2,0,,,2,357 +3785438,Quiet Oasis in the Middle of it All,16437254,Benjamin,Brooklyn,Fort Greene,40.68961,-73.97780999999999,Entire home/apt,158,30,5,2019-03-30,0.1,21,278 +2094213,Large Stylish 1.5 BR Noho/Nolita,10642609,Laura,Manhattan,NoHo,40.72477,-73.99323000000001,Entire home/apt,255,2,8,2017-01-02,0.12,1,0 +31838338,"ingefära hus! Two bedroom apt in Williamsburg, BK",179679,Ginger,Brooklyn,Williamsburg,40.71144,-73.95576,Entire home/apt,175,2,4,2019-05-19,0.99,3,14 +21933969,Gowanus-Park Slope- Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.6784,-73.98447,Private room,129,1,32,2019-07-07,1.62,17,363 +25264538,Modern one bedroom in Financial District,6254791,Maite,Manhattan,Financial District,40.70884,-74.00822,Entire home/apt,299,2,2,2018-09-23,0.2,1,0 +23090632,LIC 1 Bedroom in a pet-friendly apartment.,171488589,Hisham,Queens,Long Island City,40.74281,-73.95044,Private room,76,1,13,2018-06-20,0.86,1,0 +26584630,Park Slope getaway with giant outdoor space,6947681,Hiten,Brooklyn,Park Slope,40.66986,-73.98668,Entire home/apt,120,2,23,2019-07-02,1.86,1,4 +6279160,1 Bedroom steps from Central Park,9742010,Peter,Manhattan,Upper West Side,40.78203,-73.97644,Private room,175,2,0,,,1,0 +7921643,Luxury studio in Brooklyn,15102423,Prachal,Brooklyn,Fort Greene,40.69011,-73.98053,Entire home/apt,225,1,0,,,1,0 +3317978,Spacious Queen Size Room,16751902,Asher,Manhattan,Upper West Side,40.80048,-73.96621,Private room,44,1,2,2016-06-30,0.05,1,0 +24894724,A cozy studio in Chelsea,30558890,Alexander,Manhattan,Chelsea,40.75164,-73.99727,Entire home/apt,120,30,2,2018-12-30,0.21,1,0 +13248565,COZY 1 BEDROOM APARTMENT,74489237,Carmen,Bronx,Tremont,40.84268,-73.89294,Entire home/apt,68,1,0,,,1,0 +2738377,Carroll Gardens Brownstone,14011859,Ann,Brooklyn,Carroll Gardens,40.68322,-73.99248,Entire home/apt,350,5,6,2016-08-28,0.12,1,0 +10385262,UPPER WEST SIDE GEM ON PARK BLOCK,53462017,Harry,Manhattan,Upper West Side,40.78923,-73.96802,Entire home/apt,135,30,1,2019-06-21,1.0,1,30 +25812852,Fabulous Room Near Central Park,1292274,Forest,Manhattan,Upper East Side,40.78175,-73.94797,Private room,111,1,10,2019-06-08,0.76,2,62 +19952226,Bright Airy Spacious Brooklyn Artist's Home,15835115,Shelley,Brooklyn,Flatbush,40.65447,-73.95631,Entire home/apt,75,2,3,2017-09-11,0.13,1,0 +1151343,Large room in 2/1 on park w/2day discounts,4910820,Alex,Manhattan,Harlem,40.80449,-73.95687,Private room,94,1,30,2019-07-05,0.4,1,218 +30580793,Beautifully Renovated Mid Century Modern Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72189,-73.99133,Private room,150,1,16,2019-07-06,2.25,2,20 +15195491,Private Room w/ Private Bath in Heart of Bed-Stuy,33612454,Lucey,Brooklyn,Bedford-Stuyvesant,40.68655,-73.94299000000001,Private room,80,2,106,2019-06-24,3.14,1,47 +22277909,"Cozy, Upper West Side One Bedroom",132464629,Bethany,Manhattan,Upper West Side,40.78178,-73.97928,Entire home/apt,135,12,1,2018-01-05,0.05,1,0 +20639311,"Modern, Quiet & Ultra Clean 1 BDRM Steps Subway",34379227,Jamie,Queens,Sunnyside,40.74317,-73.92532,Entire home/apt,140,3,40,2019-07-02,1.76,1,42 +34834494,"Big Sunny Room in the heart of Greenpoint, BK",9943690,Lisha,Brooklyn,Greenpoint,40.72618,-73.94971,Private room,55,5,0,,,1,136 +29390218,Bright and cozy 1 bedroom,221405192,Ivan,Brooklyn,Bensonhurst,40.61667,-73.99932,Entire home/apt,100,1,3,2018-12-28,0.41,1,61 +12497757,Fully Furnished Williamsburg Apt,50137233,Courtney,Brooklyn,Williamsburg,40.712,-73.94609,Private room,190,1,0,,,1,0 +27786254,Bright Studio near park,170026468,Azia,Brooklyn,Flatbush,40.65258,-73.96343,Entire home/apt,115,3,11,2019-06-05,1.23,1,165 +34284597,South Bronx Suite,19903807,Carol,Bronx,Mott Haven,40.81305,-73.91655,Entire home/apt,120,3,5,2019-06-02,2.5,3,45 +30937597,Sonder | The Nash | Pristine Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74884,-73.97589,Entire home/apt,252,2,7,2019-06-23,1.19,327,117 +35688424,Bedroom + Ensuite Bath + Backyard in Bedstuy,20086738,Kristin Page,Brooklyn,Bedford-Stuyvesant,40.68028,-73.91829,Private room,105,2,0,,,2,17 +9061117,LOVELY 1BR. 15Min. to Times Square,4087778,Katie,Queens,Sunnyside,40.74502,-73.91355,Entire home/apt,180,3,0,,,1,0 +35837998,Large 2-bedroom 2-bath Apt by Central Park,8066407,Vladimir,Manhattan,Harlem,40.79981,-73.95436,Entire home/apt,250,4,0,,,1,13 +6673638,A clean private room in Brooklyn,19600872,Pianpian Carolyn,Brooklyn,Gravesend,40.6046,-73.97771999999999,Private room,69,1,0,,,1,0 +10032560,Cozy and Chic UES Studio,39945901,Mercy,Manhattan,East Harlem,40.78866,-73.94941,Entire home/apt,200,3,28,2019-06-03,0.65,1,3 +17712552,"Cozy, Private Guest Bedroom In A Great Location",73756811,Cara,Brooklyn,Crown Heights,40.67247,-73.94421,Private room,65,1,51,2018-06-28,1.83,1,0 +24232774,Room in Brooklyn near EVERYTHING!!,41869421,Oriana,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95097,Private room,90,2,1,2018-09-24,0.1,1,343 +23660722,Beauty Renovated 1br +Balcony fully furnished!,26584499,Ofir,Manhattan,Upper West Side,40.782990000000005,-73.98318,Entire home/apt,150,31,1,2018-06-01,0.07,8,332 +19654252,BEAUTIFUL renovated Hamilton Heights room!,7449972,Jordon,Manhattan,Harlem,40.82512,-73.95054,Private room,69,14,6,2017-09-09,0.25,1,0 +6243991,Quiet Park Slope Apartment,1892681,Richard,Brooklyn,South Slope,40.66586,-73.97948000000001,Entire home/apt,100,1,183,2019-06-28,5.17,1,1 +23748179,Spacious formal apt mins from midtown or Columbia,6854910,Scott,Manhattan,Harlem,40.80849,-73.94244,Private room,150,7,0,,,1,0 +13824091,"Empty 3 bedroom apartment in Bushwick, Brooklyn",5341236,Christina,Brooklyn,Bushwick,40.69477,-73.92376,Entire home/apt,45,5,8,2019-02-28,0.22,2,0 +27295164,"private room in Redhook, Brooklyn",8593113,Salem,Brooklyn,Red Hook,40.67381,-74.00761999999999,Private room,50,1,25,2019-06-29,2.17,2,351 +20326395,"Spacious 1 bed/1 bath home, 3A",49704571,Krzysztof,Brooklyn,Greenpoint,40.72074,-73.9432,Entire home/apt,90,30,4,2019-04-27,0.19,8,125 +33636725,Charming 2BR Apt! Popular Neighborhood!,192951036,Jasmine,Manhattan,Greenwich Village,40.72667,-73.99878000000001,Entire home/apt,289,1,3,2019-07-01,1.5,10,133 +34015098,Entire Gorgeous Greenpoint Duplex,38217925,Lily,Brooklyn,Greenpoint,40.7342,-73.95707,Entire home/apt,205,5,0,,,2,64 +9451126,Cosy Carroll Garden Apartment,48970186,Margarita,Brooklyn,Carroll Gardens,40.68315,-73.99387,Entire home/apt,155,4,128,2019-05-26,2.89,2,0 +8009332,My cozy artistic Apartment,37849636,Maggie,Brooklyn,Sheepshead Bay,40.60991,-73.95676999999999,Shared room,48,1,59,2019-07-05,1.26,1,90 +4232255,Super Clean Newly Furnished in Prime Bay Ridge,21962039,Beatriz,Brooklyn,Bay Ridge,40.62605,-74.03014,Private room,49,10,7,2019-03-05,0.14,1,281 +22194287,Bright 2 Bedroom Apt in quiet Woodside,5726293,Suah,Queens,Woodside,40.74402,-73.90946,Entire home/apt,150,2,3,2018-07-10,0.16,2,0 +12166912,Sunny Prime Heart of East Village Room,50200840,Katherine,Manhattan,East Village,40.72827,-73.9863,Private room,110,3,36,2019-07-01,0.91,1,292 +30394541,Bright 1BR w/ Gym near Chelsea Mkt + Meatpacking by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74423,-74.0026,Entire home/apt,298,30,0,,,232,285 +21282732,Serenity Falls in lovely Astoria 15min to the city,16727881,Jeannie,Queens,Ditmars Steinway,40.7745,-73.90406,Private room,40,2,1,2018-11-01,0.12,1,363 +925075,Sunny Loft Style Apt-Great Location,4938485,Paul & Elena,Manhattan,Hell's Kitchen,40.75893,-73.99014,Entire home/apt,140,3,25,2015-01-03,0.33,1,157 +34446902,★Spacious bedroom in Midtown | Centrally Located★,164051353,Warren,Manhattan,Chelsea,40.74443,-73.99166,Private room,140,1,7,2019-06-28,3.75,3,87 +25209619,A NYC apartment,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.6811,-73.94541,Entire home/apt,65,30,2,2018-11-02,0.21,6,269 +23308563,Room in the Safest Neighborhood of Staten Island!,106897471,Oswaldo,Staten Island,Silver Lake,40.62422,-74.09316,Private room,60,3,90,2019-05-26,5.49,1,0 +8442642,Private Bath/Master Bedroom Astoria,1411399,Carlos,Queens,Astoria,40.767990000000005,-73.91234,Private room,109,1,2,2016-05-12,0.04,5,138 +16561990,Cozy one bedroom in Upper East Side Manhattan UES,16860700,Lu,Manhattan,Upper East Side,40.77628,-73.95322,Entire home/apt,91,1,0,,,1,0 +36034181,Best in Greenwood 1min walk 15min Manhattan,27922303,Aprilene,Brooklyn,Sunset Park,40.65625,-74.0038,Private room,75,2,1,2019-07-01,1.0,2,311 +33908307,Stuyvesant Heights quiet private Apartment,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68682,-73.93493000000001,Entire home/apt,130,29,1,2019-06-22,1.0,2,283 +36312994,Cosy and quiet studio near Columbia University,2019485,Maria,Manhattan,Morningside Heights,40.8075,-73.96679,Entire home/apt,103,3,0,,,1,40 +35729630,Elegant private bedroom in sunny modern home #2,101771985,Yudis,Manhattan,Harlem,40.806090000000005,-73.9484,Private room,90,1,0,,,3,121 +25845142,Sunny and spacious private room in Bushwick,46782979,Ava,Brooklyn,Bushwick,40.69907,-73.92348,Private room,150,30,0,,,1,0 +35934686,2BR Midtown Times Square!,269164383,Tristan Mark,Manhattan,Hell's Kitchen,40.76274,-73.99118,Entire home/apt,189,31,0,,,1,237 +36133997,Refreshing apt in the heart of downtown,8415945,Dennis,Manhattan,Greenwich Village,40.72968,-74.00195,Entire home/apt,157,3,1,2019-06-28,1.0,1,169 +19405371,Modern and Artful Home in Manhattan/NYC,35064923,Marlyn,Manhattan,East Harlem,40.80138,-73.94413,Entire home/apt,127,4,86,2019-06-29,3.68,1,1 +19343700,Modern Upper East Side Apartment near Central Park,135522817,Shaun,Manhattan,Upper East Side,40.77412,-73.95695,Entire home/apt,198,1,143,2019-06-15,5.91,1,300 +22863062,Beautiful 2-br Apt in the Heart of Williamsburg,1678861,Efrat,Brooklyn,Greenpoint,40.72016,-73.95461999999999,Entire home/apt,275,2,3,2018-09-03,0.22,1,0 +31146186,Large bedroom with a private terrace in Astoria,6586697,Yasha,Queens,Astoria,40.76904,-73.91001999999999,Private room,75,1,1,2019-04-11,0.33,3,0 +16273526,Home away for the holidays!,407407,Calixto,Bronx,Norwood,40.87372,-73.88625,Private room,60,2,3,2017-12-25,0.1,1,364 +33930074,"Your Private Oasis In A Shared Apt, Near 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70893,-73.89636,Private room,34,30,0,,,23,243 +5091056,Comfy Bedroom quite neighborhood ,26301893,Claude,Queens,Forest Hills,40.71158,-73.85273000000001,Private room,80,1,12,2019-01-03,0.35,1,59 +9333533,Private Room in Williamsburg,48442001,Carlos,Brooklyn,Williamsburg,40.70723,-73.94811,Private room,50,7,4,2016-03-20,0.09,1,0 +5389907,House 10 min from Manhattan w/ parking near subway,3641421,Martha & Remo,Queens,Astoria,40.7636,-73.926,Entire home/apt,300,7,1,2019-01-01,0.16,1,42 +10634636,Cozy room 15mins Manhattan & 10 LGA,697477,Kesang,Queens,Woodside,40.75427,-73.90646,Private room,55,1,54,2019-06-21,1.28,1,297 +4947174,Open Room for 12 Days this February,25412718,Benjamin,Brooklyn,Crown Heights,40.66948,-73.93638,Private room,50,5,0,,,1,0 +36076807,cozy apt in midtown,271393608,Michael,Manhattan,Hell's Kitchen,40.76725,-73.98669,Shared room,70,1,3,2019-06-30,3.0,6,24 +20688793,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70866,-74.01385,Entire home/apt,178,30,1,2018-10-31,0.12,33,327 +27112835,5 ave apto,10476100,Cezar,Manhattan,Chelsea,40.73916,-73.99471,Entire home/apt,85,14,1,2018-12-20,0.15,1,16 +7366831,"Sunny, big room available in 3 BDRM",38599690,Chantal,Manhattan,East Harlem,40.80023,-73.93822,Private room,35,1,1,2015-07-22,0.02,1,0 +15819242,Sweet two bedroom in Crown Heights Bk,41191579,Maura,Brooklyn,Crown Heights,40.67034,-73.93902,Entire home/apt,87,1,9,2019-01-21,0.3,3,0 +4694179,Artsy and Cozy 1b. - Walk Everywhere!,3753306,Michelle,Manhattan,Gramercy,40.73287,-73.98585,Entire home/apt,180,1,1,2017-09-15,0.05,1,0 +11210604,The Study - UWS Bedroom In Luxury Building,58388047,Jay,Manhattan,Upper West Side,40.79481,-73.97185,Private room,40,21,11,2018-08-12,0.27,1,177 +21973631,Need a Beautiful place to stay?,3832479,Hunderson,Brooklyn,Crown Heights,40.67504,-73.93956,Private room,50,30,0,,,1,113 +32897532,X Live,184750740,Juice,Bronx,Morrisania,40.82575,-73.90993,Private room,80,1,0,,,4,365 +1877255,"PRIVATE Room, located on Central MANHATTAN***",7748646,Denise,Manhattan,Upper East Side,40.7789,-73.95311,Private room,85,3,134,2019-06-18,1.96,1,108 +17679645,Room & private bathroom in historic Harlem,51594665,Shireen,Manhattan,Harlem,40.81248,-73.94317,Private room,55,2,0,,,1,0 +21568187,Large Skylight Private Room,131476075,Lakisha,Brooklyn,Bushwick,40.68741,-73.91138000000001,Private room,51,1,19,2019-06-02,0.94,8,175 +28428636,Room for easy commute. Near train & essentials!,137358866,Kazuya,Queens,Elmhurst,40.74345,-73.87901,Private room,38,30,2,2019-05-30,0.39,103,247 +29589341,E 74 & 2nd Avenue,32606852,Julie,Manhattan,Upper East Side,40.77063,-73.95819,Entire home/apt,123,4,13,2019-05-28,1.94,1,1 +3635624,Cozy 1BD in the lower east side,6050632,Yana,Manhattan,Lower East Side,40.72138,-73.98371,Entire home/apt,159,3,1,2014-08-28,0.02,1,0 +9350729,Cozy room in the heart of Brooklyn,2953015,Soria,Brooklyn,Clinton Hill,40.69223,-73.96879,Private room,63,2,2,2016-06-11,0.05,1,0 +4155012,true 1 BR in prime east village,21560088,Sarah,Manhattan,East Village,40.72784,-73.99104,Entire home/apt,219,2,9,2017-09-22,0.15,1,0 +19190579,"Charming, Sleek UES Studio",9649691,Deaton,Manhattan,Upper East Side,40.76715,-73.95857,Entire home/apt,118,3,29,2019-07-06,1.15,1,0 +35669284,Cozy private room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.70125,-73.93915,Private room,72,30,0,,,5,341 +27762497,*NYC Central Park* Entire Floor with Great Privacy,205390315,Yu,Manhattan,Upper West Side,40.796890000000005,-73.96289,Entire home/apt,149,3,32,2019-06-22,3.07,1,96 +1354415,Great Flat in Historic Brownstone,7136700,Michelle,Brooklyn,Bedford-Stuyvesant,40.67927,-73.94252,Entire home/apt,100,3,162,2019-07-02,2.24,4,141 +21489266,"Fun, Stylish, 3 Bedroom Pad 20 Mins to Midtown",154741428,Kyle,Manhattan,Harlem,40.82056,-73.95338000000001,Entire home/apt,249,3,3,2018-08-11,0.21,1,0 +26451569,Cozy Apartment 15 Minutes from Grand Central,198451327,Amanda,Queens,Sunnyside,40.74611,-73.91548,Entire home/apt,72,2,14,2018-09-29,1.12,1,0 +13998049,Cozy Studio blocks from Time Square & the Hudson.,7245466,Steven,Manhattan,Hell's Kitchen,40.7621,-73.99424,Entire home/apt,150,1,2,2017-01-05,0.06,1,0 +24085451,Elegant and Comfortable Home Away from Home in UES,47929235,Samir,Manhattan,East Harlem,40.78723,-73.94955999999999,Private room,100,7,68,2019-06-22,4.39,1,77 +327521,"Lovely studio in East Village, NY",82896,Esther,Manhattan,East Village,40.725,-73.98850999999999,Entire home/apt,150,5,1,2015-11-16,0.02,1,0 +3812133,"Sunny, Central, Quiet, UWS, 72&Bway",1529179,Gs,Manhattan,Upper West Side,40.77885,-73.98178,Entire home/apt,169,7,0,,,1,0 +34424598,Bedroom in NYC - Minutes to Central Park!!!,140830391,Jay,Manhattan,Inwood,40.86191,-73.92726,Private room,125,2,1,2019-06-24,1.0,9,335 +19027786,The Diamond Room,33552302,Ese,Manhattan,East Harlem,40.80244,-73.94409,Private room,125,1,11,2019-05-05,0.44,1,341 +29057244,"Bright & Cozy Private Room—Williamsburg, Brooklyn",8185593,Diana,Brooklyn,Williamsburg,40.70951,-73.95443,Private room,80,3,1,2018-10-28,0.12,1,8 +22101044,Luxury 2 Bedroom - Nicest renovations and quality,61391963,Corporate Housing,Manhattan,Murray Hill,40.74975,-73.97699,Entire home/apt,185,30,0,,,91,0 +27211525,Brooklyn Home convenient to everywhere,204915695,Jian,Brooklyn,Sunset Park,40.63729,-74.01046,Private room,50,3,25,2019-07-05,2.26,2,108 +28935673,Victorian Studio Bedroom Suite in Brooklyn,720510,Erin,Brooklyn,Bushwick,40.702740000000006,-73.92598000000001,Entire home/apt,100,2,16,2019-06-30,1.89,1,55 +24287826,Superb Private Bedroom with Private Bath in UPS!,183211558,Linda,Manhattan,Upper East Side,40.77768,-73.94951,Private room,100,2,39,2019-06-19,2.58,1,55 +31711813,法拉盛花园独立屋Entire 3beds+Park mins go JFK Airport/NYC,44093954,Susan,Queens,Whitestone,40.78236,-73.82092,Entire home/apt,140,1,9,2019-06-07,1.64,1,204 +7691534,"2 bed, 2 bath in Battery Park City",40394783,Richard,Manhattan,Battery Park City,40.70803,-74.01735,Entire home/apt,200,1,0,,,1,0 +29702007,"Cozy apartment with art, good light, books",8533032,Andrew,Brooklyn,Carroll Gardens,40.67414,-73.99961,Entire home/apt,130,4,5,2019-05-18,0.63,1,10 +239055,Nolita Penthouse_Private Deck_Elev_,65064,Ashley & Nir,Manhattan,Chinatown,40.71892,-73.99628,Entire home/apt,300,7,2,2014-10-06,0.03,1,0 +6662422,"Modern Park Slope Family 2 BR, 2 BA",34873920,Joedan,Brooklyn,Park Slope,40.68018,-73.97556999999999,Entire home/apt,250,6,0,,,1,0 +5195409,Upper West Nest,12879620,Neda,Manhattan,Upper West Side,40.79148,-73.97828,Entire home/apt,158,100,2,2018-08-01,0.04,1,290 +31498735,NEW Perfect private room near Two Bridges IV,170263842,Sultan,Manhattan,Lower East Side,40.7096,-73.98703,Private room,71,15,0,,,4,185 +19530271,Appartement spacieux au cœur d'Astoria,37980834,Oceane,Queens,Ditmars Steinway,40.76944,-73.90751,Entire home/apt,119,1,1,2017-07-09,0.04,1,0 +18889564,Bright West Village Private Studio,65933105,Tori,Manhattan,West Village,40.73267,-74.00404,Entire home/apt,254,2,4,2017-11-26,0.17,1,0 +34974705,Awesome Renovated Room in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.69118,-73.93476,Private room,68,1,5,2019-07-07,3.13,3,16 +9768765,Room in quiet Brooklyn home,50369736,Benjamin,Brooklyn,Kensington,40.646370000000005,-73.97863000000001,Private room,24,18,1,2016-01-29,0.02,1,0 +3710436,THREE BEDROOM APARTMENT IN BROOKLYN,318729,Mitch,Brooklyn,Bedford-Stuyvesant,40.67862,-73.94686999999999,Entire home/apt,199,3,118,2019-07-01,2.12,1,23 +19559780,Quiet Room Close to Central Park,61042,Marlon,Manhattan,East Harlem,40.79995,-73.94121,Private room,50,5,16,2019-05-28,0.68,6,15 +11672849,Sunny room along riverside on 66th,57694481,Jillian,Manhattan,Upper West Side,40.7783,-73.98807,Entire home/apt,172,12,13,2019-06-22,0.37,1,34 +20000260,"Bright, Plant-Filled 2 Bedroom in Prospect Park",16091224,Jesse,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.96094000000001,Entire home/apt,130,3,1,2017-08-20,0.04,2,0 +13814281,Twin size bed 2 blocks away L&M train to Manhattan,48985309,Serdar,Queens,Ridgewood,40.70183,-73.91145999999999,Private room,35,7,16,2019-06-25,0.47,1,247 +7664959,Nice and cozy room!,40237377,Lena,Brooklyn,Sheepshead Bay,40.5994,-73.95940999999999,Private room,119,1,0,,,1,126 +20927532,Newly renovated garden apartment in brownstone!,1963215,Michael,Brooklyn,Carroll Gardens,40.68227,-73.99948,Entire home/apt,150,30,5,2019-03-06,0.44,1,79 +3920562,Large & Beautiful Manhattan NYC,16715941,Ian,Manhattan,East Harlem,40.79882,-73.94266,Private room,90,1,295,2019-06-27,4.99,2,155 +875567,Cozy West Village Studio Apartment,4622733,Marise,Manhattan,West Village,40.73746,-74.00686,Entire home/apt,113,3,71,2019-06-09,0.95,1,343 +31736343,Penthouse studio. Clean. A+ location Cafe&Park :),42153340,Boomer,Brooklyn,Greenpoint,40.72328,-73.94969,Entire home/apt,120,2,2,2019-02-19,0.42,2,0 +6328175,Large apartment near Columbia Univ,25697753,Eduardo,Manhattan,Morningside Heights,40.80692,-73.96434,Entire home/apt,120,4,2,2016-06-22,0.04,1,0 +34546265,Cozy Two Bedroom Apartment in Bedstuy (Whole Apt),68422715,Dominique,Brooklyn,Bedford-Stuyvesant,40.68826,-73.93714,Entire home/apt,94,3,5,2019-07-07,3.13,1,1 +8458863,"Spacious Studio, Upper East Side",44086736,Darren,Manhattan,Upper East Side,40.78465,-73.94914,Entire home/apt,100,1,7,2016-12-26,0.2,1,0 +3864528,Amazing Priv 1 BR in Hells Kitchen,19800918,Will,Manhattan,Hell's Kitchen,40.76053,-73.99002,Private room,200,1,0,,,1,0 +20400190,Entire Studio Apartment,93411405,Eden,Queens,Elmhurst,40.74282,-73.87655,Entire home/apt,120,6,8,2018-09-11,0.35,2,0 +7206579,"Sunny, Spacious Room- Heart of Williamsburg!",15491509,Autumn,Brooklyn,Williamsburg,40.71544,-73.95433,Private room,66,2,6,2018-01-25,0.13,1,0 +21898567,Spacious room in a cozy apartment .....,62635426,Lizzie,Brooklyn,Greenpoint,40.72566,-73.94823000000001,Private room,50,3,2,2018-09-30,0.21,1,0 +25677480,Comfy 6ft. couch in living room,9726872,Natalie,Manhattan,Upper East Side,40.7677,-73.95476,Shared room,70,1,7,2018-12-09,0.55,1,66 +2063587,Beautiful Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74282,-73.9803,Private room,75,30,42,2018-12-10,0.67,26,345 +35005258,Sonder | 11th Ave | Lovely 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7622,-73.99673,Entire home/apt,189,29,0,,,327,332 +6923161,Cozy room just off Central Park,36285615,Selim,Manhattan,Harlem,40.80152,-73.9509,Private room,90,2,12,2016-07-05,0.24,1,0 +35484268,Best CoLiving next to Bushwick! 2,133802988,Sergii,Queens,Ridgewood,40.7046,-73.90215,Shared room,38,30,0,,,6,358 +6730582,"3 bdrms, fully equip bth/rm kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68491,-73.75895,Entire home/apt,160,3,29,2019-01-16,0.59,3,179 +1906993,Lower East Side Penthouse Room w/ Epic Views,4358024,Jonathan,Manhattan,Lower East Side,40.72147,-73.98806,Private room,228,1,2,2019-06-23,0.22,2,365 +13151075,ASTORIA APARTMENT OUTDOOR SPACE,18051286,Danielle,Queens,Astoria,40.77221,-73.92900999999999,Private room,50,1,0,,,1,0 +7411733,Sunny apartment overlooking park,38832294,Samantha,Brooklyn,Crown Heights,40.67358,-73.94351,Entire home/apt,105,1,7,2018-09-11,0.15,1,0 +12360254,Prime Williamsburg balcony cityview,32193665,Nicolas,Brooklyn,Williamsburg,40.71671,-73.94989,Entire home/apt,200,2,0,,,1,0 +2755909,Cozy sunny Apt in NYC,3447539,Nick,Manhattan,Washington Heights,40.84915,-73.93848,Private room,59,30,65,2019-06-06,1.33,2,99 +16393500,Bedroom in beautiful Brooklyn apartment,23099342,Jon,Brooklyn,Fort Greene,40.68713,-73.97222,Private room,55,7,2,2017-01-02,0.06,1,0 +18961150,Room with a view,5139965,Jamie,Queens,Long Island City,40.75125,-73.93807,Entire home/apt,195,1,3,2017-06-26,0.12,1,0 +31175623,Spacious Room Close to Subway & Central Park,137358866,Kazuya,Manhattan,Harlem,40.81221,-73.94225,Private room,47,30,1,2019-04-27,0.41,103,228 +9540193,Washington Heights 1 bedroom beauty,49412548,Laiona,Manhattan,Washington Heights,40.84335,-73.94059,Entire home/apt,85,1,28,2019-05-25,0.65,1,27 +21094476,"Large, Charming & Sunny 2 Bedroom in Brooklyn!",33946068,Chris,Brooklyn,Crown Heights,40.67701,-73.96249,Entire home/apt,150,2,53,2019-06-05,2.49,1,160 +33743807,Cozy Bushwick Studio - Great Location,18569998,Brandon,Brooklyn,Bushwick,40.7077,-73.9225,Entire home/apt,100,4,4,2019-06-24,1.52,1,11 +30769959,Private One Bedroom Chelsea Apartment New York-#2,9328763,Synergy Global,Manhattan,Chelsea,40.74566,-73.99673,Private room,138,25,0,,,2,0 +35612963,"Bright Spacious CrashPad , NextDoor To Subway",21261408,Jay,Brooklyn,Clinton Hill,40.68981,-73.9604,Shared room,37,1,4,2019-06-29,4.0,6,344 +26964456,New aparment biutiful area,104311294,Edwin,Queens,Corona,40.73933,-73.84851,Entire home/apt,100,2,2,2018-08-21,0.18,1,0 +13358405,Delightful Brownstone,75484381,Shon,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94866,Entire home/apt,225,30,0,,,1,249 +21377493,Macon Modern Brownstone Suite,154550758,Khadijah,Brooklyn,Bedford-Stuyvesant,40.68417,-73.92726,Entire home/apt,160,2,0,,,1,171 +18691084,Spacious and sunny room in Williamsburg,30384022,Cecilia,Brooklyn,Williamsburg,40.7107,-73.94295,Private room,65,7,1,2017-12-24,0.05,1,0 +32867399,Amazing location 10min to the city,247189581,Helena,Brooklyn,Fort Greene,40.6865,-73.9729,Shared room,38,2,3,2019-05-19,0.81,5,31 +31521732,Comfortable Room For 4-Near Columbia University.,16480700,Eddie&Vlad,Manhattan,Harlem,40.81981,-73.95353,Private room,79,1,1,2019-03-14,0.26,7,60 +13109817,Private room available for summer,23147852,Briana,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94515,Private room,69,90,0,,,1,365 +24420139,401 east 60th,165898555,Honey,Manhattan,Upper East Side,40.75972,-73.96021,Entire home/apt,275,30,1,2018-05-24,0.07,7,364 +1717058,Top floor 1 bedroom soho/nolita,9053036,Raynald,Manhattan,Nolita,40.72182,-73.99625,Entire home/apt,185,3,65,2019-06-07,1.04,1,106 +32681548,Artful UWS Room-2 Double Beds Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78162,-73.97941,Private room,250,1,1,2019-05-04,0.45,10,281 +804911,Sunny apartment in Carroll Gardens,2373697,Doug,Brooklyn,Carroll Gardens,40.68216,-73.99504,Entire home/apt,130,5,2,2015-06-26,0.04,1,0 +3437101,Sparkling Brick APT Heart UES +Yoga,17318747,Jay,Manhattan,Upper East Side,40.77343,-73.95979,Private room,99,1,21,2019-06-15,0.47,2,82 +36169764,Studio (200 sq ft.) near Times Square!,78501032,Eileen,Manhattan,Hell's Kitchen,40.76066,-73.99011,Entire home/apt,134,1,0,,,1,0 +36384487,Peace in NYC,108640056,Osi,Manhattan,Lower East Side,40.71421,-73.97853,Entire home/apt,350,1,0,,,1,131 +27254736,Beautiful Empire State Views Studio Apartment,14317115,Samantha,Manhattan,Kips Bay,40.74075,-73.97674,Entire home/apt,86,1,0,,,1,0 +7662874,"Quiet, sunny, renovated",40223271,Max,Manhattan,Harlem,40.82883,-73.94468,Entire home/apt,79,15,22,2019-05-05,0.49,1,0 +1350055,Cozy room in Beautiful Williamsburg Appartment,2035472,Alessio,Brooklyn,Williamsburg,40.714490000000005,-73.95905,Private room,85,3,2,2019-02-03,0.32,1,89 +25142331,MODERN & CHIC 2 Bedroom Loft**Central Park/Musuems,190028461,Jeff & Elita,Manhattan,Upper West Side,40.78209,-73.97598,Entire home/apt,294,4,34,2019-06-10,2.48,1,179 +12581875,Sunny Private Bedroom in Park Slope,342510,Maya,Brooklyn,South Slope,40.66383,-73.98252,Private room,65,1,0,,,1,0 +33532216,BKLYN Cozy B&B,252678417,Anthony,Brooklyn,Bedford-Stuyvesant,40.69655,-73.93458000000001,Private room,55,1,18,2019-06-22,6.0,1,0 +34834104,Heights II,9130040,Candace,Brooklyn,East Flatbush,40.66189,-73.93309,Private room,99,1,1,2019-05-19,0.59,6,365 +34009172,Charming NoMad Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.74403,-73.98701,Entire home/apt,274,30,0,,,232,353 +25837948,Beautiful room(s) near JFK airport,156547988,Minying,Queens,Woodhaven,40.68853,-73.85474,Private room,60,1,14,2019-06-15,1.13,4,335 +417685,Bright and Quiet 2 BR in Park Slope,119588,Vero,Brooklyn,Park Slope,40.66626,-73.97933,Entire home/apt,160,1,145,2019-06-22,1.76,2,257 +22188812,Quiet 2 Bdrm in Williamsburg,67336825,Cody,Brooklyn,Williamsburg,40.70879,-73.94977,Entire home/apt,105,3,2,2017-12-19,0.11,1,0 +29383019,"Sunny room B in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81376,-73.95954,Private room,85,1,66,2019-06-22,7.59,4,71 +34489725,Luxury Room between Times Square and Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.761790000000005,-73.98399,Private room,100,1,1,2019-06-16,1.0,15,351 +29028761,#5 Quadruple private bedroom for 1-4 people,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81322,-73.91696,Private room,42,5,7,2019-07-01,1.08,4,321 +22569600,Cozy and Warm Stay in Fidi/Battery Park City,63343926,Hanna,Manhattan,Battery Park City,40.71082,-74.0176,Private room,94,1,65,2019-06-24,3.68,1,6 +35461818,Zen East Williamsburg w/ yard,2428014,Kristen,Brooklyn,Williamsburg,40.7128,-73.94341999999999,Entire home/apt,199,7,0,,,1,33 +5175054,Perfect Times Square 1 bedroom ,22305520,James,Manhattan,Hell's Kitchen,40.76064,-73.99112,Entire home/apt,199,30,119,2019-06-11,2.21,2,215 +26569512,Comfortable room 30/35 minutes to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67963,-73.90816,Private room,55,1,16,2019-04-28,2.34,3,0 +7610785,Modern CottageStyle EarlyBirdDiscount! TimeSquare,39915290,A. Kaylee,Manhattan,Harlem,40.81095,-73.95296,Entire home/apt,299,3,90,2019-06-09,1.96,2,304 +12984851,Private room in heart of LES,56752163,Sabina,Manhattan,Lower East Side,40.71884,-73.99294,Private room,60,2,3,2018-04-22,0.08,2,0 +18902729,3Beds/Kitchen/wifi/US Open唐人街电梯公寓/厨卫/网快/美网赛事,80769114,Yoga,Queens,Flushing,40.75851,-73.8203,Entire home/apt,98,1,34,2019-06-20,1.38,1,55 +9955886,Sunny Peaceful Furnished Room w/Dresser,16568093,Karla,Manhattan,East Harlem,40.79111,-73.94077,Private room,50,3,1,2016-07-19,0.03,1,0 +35069663,Apartamento compartido NYC.,264182618,Jesus A,Bronx,Fordham,40.85743,-73.90233,Shared room,22,1,1,2019-06-03,0.83,1,11 +26417009,Ladies Bedroom Bed 2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.95636,Shared room,38,1,17,2019-06-23,1.39,34,365 +24137279,Prime Dumbo location for a great price!,7199637,Rafael,Brooklyn,Vinegar Hill,40.70045,-73.98468000000001,Private room,46,3,4,2018-05-02,0.26,1,0 +26131195,"Large modern luxury 1 bdrm apt, beautiful rooftop!",40323007,Joshua,Manhattan,East Village,40.72852,-73.97986999999999,Entire home/apt,280,2,40,2019-06-27,3.18,1,119 +31307651,TIME SQ WEST- 2 Bunk Beds for 4 People,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75681,-73.99865,Private room,199,1,1,2019-04-18,0.36,30,362 +34908806,Large one bedroom in the heart of Williamsburg,558101,Ailee,Brooklyn,Williamsburg,40.7132,-73.96441,Entire home/apt,155,4,1,2019-06-29,1.0,1,0 +29835357,East Village Oasis,8573489,Jc,Manhattan,East Village,40.73022,-73.97998,Entire home/apt,220,4,1,2019-07-08,1.0,1,14 +20708173,Crown Heights 1 Bedroom,834806,Daniel,Brooklyn,Crown Heights,40.66592,-73.95319,Entire home/apt,100,7,3,2017-11-10,0.13,1,0 +34644243,"Large, clean and tasteful apartment in Gramercy",10170046,Jenny-Lynne,Manhattan,Gramercy,40.73676,-73.98685,Entire home/apt,250,1,2,2019-06-30,2.0,1,171 +27551436,Eco Chic Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68517,-73.99545,Private room,80,7,54,2019-06-30,4.98,2,311 +21890848,Beautiful Healthy Home in Ditmas Park,21003445,Vanessa,Brooklyn,Flatbush,40.63531,-73.96546,Private room,55,2,3,2018-04-30,0.16,1,65 +13708820,"Safe upper-class area,20 min to Manhattan/Airports",15838559,Weimin,Queens,Forest Hills,40.714290000000005,-73.85088,Private room,59,3,15,2018-08-04,0.41,4,0 +32545866,"Rest and relaxation, free swimming pool at bay st",244544373,Valerie,Staten Island,St. George,40.63763,-74.08268000000001,Private room,100,1,0,,,2,365 +14065821,Doorman Views Location One bedroom 5194,16098958,Jeremy & Laura,Manhattan,Midtown,40.75298,-73.98874,Entire home/apt,170,30,3,2018-12-08,0.1,96,0 +2684223,Cozy Clean Room in Bed Stuy,4334757,Vashti,Brooklyn,Bedford-Stuyvesant,40.6821,-73.91632,Private room,45,2,53,2019-07-01,0.83,1,365 +24970373,Studio apartment; close to tourist attractions,58391499,Sia,Manhattan,Civic Center,40.71175,-74.00763,Entire home/apt,200,2,4,2018-12-31,0.45,1,0 +22232328,"LUX 2Bed/UWS Gem! +5 Min Walk to Central Park",57470846,Melissa,Manhattan,Upper West Side,40.78472,-73.97575,Entire home/apt,175,3,0,,,1,0 +33528562,"Private, warm & inviting contemporary space.",252641467,Antoinette,Bronx,Wakefield,40.88491,-73.85484,Private room,33,1,0,,,1,116 +14452731,Cozy room just 15 mins from Central Park,8616291,Chikie,Manhattan,Harlem,40.82112,-73.95111999999999,Private room,69,5,80,2019-06-20,2.26,2,0 +32923358,"Guest Room in a Warm, friendly Artist's Home",11018124,Alea,Manhattan,Upper West Side,40.78812,-73.97091,Private room,175,2,0,,,1,66 +1515659,Relax at our duplex + backyard,8092818,Romi,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94645,Entire home/apt,115,5,3,2014-04-02,0.04,1,0 +22232269,Cozy one bedroom apartment perfect for couples,145993199,Bradley,Brooklyn,Flatbush,40.63436,-73.96126,Entire home/apt,90,2,13,2019-04-07,0.7,1,5 +30510347,"Modern, Sunlit Brooklyn Apartment",34621599,Ashley,Brooklyn,Crown Heights,40.6782,-73.945,Private room,55,2,6,2019-06-04,0.86,1,89 +6559926,"Sunny 1Bdr + 2 Big Sofabed, Clean!",26270573,Joe,Manhattan,Upper East Side,40.77205,-73.95339,Entire home/apt,240,5,82,2019-06-08,1.87,2,158 +4699061,Cosy room in Brooklyn!2min to Sbwy,24291213,Joerg,Brooklyn,Sunset Park,40.64009,-74.01714,Private room,35,1,0,,,2,0 +30815605,Massive Designer One Bedroom in Brownstone,2582762,Anna,Brooklyn,Fort Greene,40.69301,-73.97128000000001,Entire home/apt,220,14,0,,,1,31 +31315479,Chic Eclectic Midtown Apartment,42037177,Larissa,Manhattan,Midtown,40.754940000000005,-73.96437,Private room,300,3,2,2019-02-03,0.33,1,365 +23262857,Central Park - Room for 2 to 4,60281397,Lugao,Manhattan,Upper West Side,40.79701,-73.96933,Private room,93,1,27,2019-06-09,1.69,3,190 +27088944,Charming and Artistic West Village Studio,2102205,Conrad,Manhattan,West Village,40.73894,-74.00108,Entire home/apt,250,2,15,2018-12-22,1.33,1,0 +21801370,Authentic Brklyn Experience - Room C,156042211,Tia,Brooklyn,Canarsie,40.64942,-73.89783,Private room,40,4,4,2018-09-10,0.22,4,37 +9478370,Spacious and comfortable 1Br apt close to NYC.,8200337,María Cristina,Queens,Sunnyside,40.74538,-73.92139,Entire home/apt,115,2,6,2018-07-02,0.18,1,0 +7805443,Simple and Central Near Times Sq,30467944,Reymon,Manhattan,Hell's Kitchen,40.76294,-73.99248,Private room,92,2,1,2015-09-16,0.02,1,0 +21322272,Comfy room steps away from Williamsburg nightlife,154339771,Chris,Brooklyn,Williamsburg,40.71258,-73.95742,Private room,50,2,10,2018-01-28,0.5,1,0 +26194606,Brooklyn Oasis in Beautiful Bay Ridge,64825520,Anthony,Brooklyn,Fort Hamilton,40.61798,-74.03619,Entire home/apt,200,2,8,2019-06-11,0.63,1,177 +16442660,Private Room in East Harlem,107830392,Nuries,Manhattan,East Harlem,40.79528,-73.9478,Private room,75,1,91,2018-05-28,2.95,1,188 +34600508,Artist's Loft! A+ Location! Central Park/5th ave!,256610768,John Ghaddie,Manhattan,Upper East Side,40.764140000000005,-73.96728,Entire home/apt,159,31,4,2019-06-16,2.45,1,244 +35161717,Sunset Suite in Spectacular E. Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.72291,-73.98447,Private room,125,2,1,2019-06-10,1.0,4,338 +2730497,Entire Private Garden Floor of Brownstone,13974214,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68058,-73.93856,Entire home/apt,130,3,92,2019-06-19,1.45,1,248 +8763502,Stay here and love Williamsburg!!,45955013,Jason,Brooklyn,Williamsburg,40.708940000000005,-73.94554000000001,Entire home/apt,150,2,198,2019-06-23,4.48,1,92 +6556848,Bright and Airy Brooklyn Abode,9119676,Angeline,Brooklyn,Prospect Heights,40.6815,-73.97309,Entire home/apt,175,2,10,2015-12-28,0.2,1,0 +17121563,Uptown Gem,64960623,Tipicah,Manhattan,Harlem,40.82376,-73.94198,Private room,85,1,0,,,1,0 +15701072,DREAM MIDTOWN RENOVATED STUDIO,101378990,Grand,Manhattan,Midtown,40.74634,-73.98704000000001,Private room,179,1,4,2017-06-20,0.13,1,337 +20149300,Crown Heights Guest House 3R3L,74541079,Abraham,Brooklyn,Crown Heights,40.66955,-73.93576,Entire home/apt,199,4,7,2019-04-29,0.34,9,89 +27304971,Private 1 BD in 2 BD/1 BTH in W. Harlem,66495651,Brittany,Manhattan,Harlem,40.82209,-73.95423000000001,Private room,100,1,0,,,1,302 +6412693,Cozy Room in Washington Heights Apt,11555845,Elizabeth And Elias,Manhattan,Washington Heights,40.84543,-73.94283,Private room,58,1,148,2019-06-12,3.58,1,280 +28574888,Guest Studio at Stella's place,15617507,Stella,Bronx,Morris Park,40.85105,-73.86049,Entire home/apt,60,2,20,2019-05-19,2.29,3,208 +17569246,City Zen Apartment in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.68956,-73.90599,Entire home/apt,109,3,72,2019-06-17,2.55,4,140 +7573321,Great NYC Apartment,1242357,Sam,Manhattan,Upper West Side,40.79397,-73.97376,Entire home/apt,175,3,1,2015-08-14,0.02,1,0 +36358910,"Bright, quiet railroad style apartment",160175680,Chiara,Queens,Ridgewood,40.70617,-73.90503000000001,Entire home/apt,75,15,0,,,1,22 +22569197,Mine,150858745,Nirit,Queens,Rego Park,40.72195,-73.86112,Entire home/apt,300,3,0,,,1,5 +24261171,Luxury Two-Story Loft in Clinton Hill/Bed-Stuy!,1133299,Ibada,Brooklyn,Bedford-Stuyvesant,40.69592,-73.94765,Entire home/apt,168,3,24,2019-06-10,1.63,1,30 +573870,Central Park West/ 80s One bedroom!,1385157,Brian,Manhattan,Upper West Side,40.78292,-73.97438000000001,Entire home/apt,120,30,18,2019-05-27,0.22,5,337 +27154602,"Master Suite w/ King Bed, Backyard",1418015,Reuben,Brooklyn,Crown Heights,40.6756,-73.95232,Private room,140,2,41,2019-06-29,3.69,4,334 +4091629,"DO DROP IN, LLC",21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95373000000001,Entire home/apt,150,5,14,2017-12-27,0.28,2,363 +21512357,NYC Modern Luxury Apartment 15 Mins to Wall Str.,3424386,V,Brooklyn,Park Slope,40.68111,-73.97994,Entire home/apt,129,3,7,2019-04-10,0.38,1,12 +22275245,"Spacious room in Historical South Street Seaport,",162784512,Biggi,Manhattan,Financial District,40.70875,-74.00183,Private room,129,30,32,2018-11-08,1.73,1,0 +13571116,Private Room in Large Airy Apartment,54797779,Sofia,Manhattan,Harlem,40.820040000000006,-73.95063,Private room,40,2,3,2017-01-23,0.1,1,0 +30769899,Gorgeous Brooklyn Heights apartment,2547347,Jessica,Brooklyn,Brooklyn Heights,40.69214,-73.99444,Entire home/apt,100,2,7,2019-05-01,1.12,1,326 +28656163,Celebrity Home Artistic Master Bdrm,213816392,DuChess,Queens,Queens Village,40.70649,-73.74517,Private room,41,1,24,2019-06-28,2.47,3,351 +9563266,Beautiful cozy LES apartment!,49511227,Alex,Manhattan,Lower East Side,40.71582,-73.98812,Entire home/apt,300,2,60,2019-06-15,1.36,2,118 +34335356,The Sunshine Palace 2,236018119,Lucy,Queens,Queens Village,40.70842,-73.73843000000001,Entire home/apt,175,1,0,,,3,0 +35850605,Convenient Private Master Room Prime Time Square!,2196491,Sophia,Manhattan,Theater District,40.75696,-73.98323,Private room,65,14,0,,,3,85 +29686857,"2BR Apartment in Ridgewood, 20min to Manhattan",223422291,Robin,Queens,Ridgewood,40.70242,-73.90403,Entire home/apt,115,3,15,2019-06-24,1.88,1,10 +36311265,Bright sunny large BK room in shared space,97633452,Noelani,Brooklyn,Williamsburg,40.71437,-73.9437,Private room,150,10,0,,,1,91 +10390902,Cozy spot off L train - 20min>City,53495399,Blake,Brooklyn,Bushwick,40.70526,-73.91964,Private room,75,1,1,2016-03-24,0.02,1,0 +27160493,曼哈顿/帝国大夏/ time square【2】,107245546,Michael,Manhattan,Chelsea,40.74756,-73.99072,Private room,165,2,5,2019-07-02,3.0,3,93 +25637401,Cozy Shared Apartment in Midtown Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76361,-73.98992,Shared room,69,1,81,2019-06-21,6.09,8,192 +35867271,Empire State Building Area,269579151,Freedom,Manhattan,Midtown,40.74801,-73.98592,Entire home/apt,229,3,0,,,1,65 +13098452,"3-6month SUBLET Sparkling, spacious, Manhattan 3BR",4942450,Sacha,Manhattan,Washington Heights,40.85073,-73.93851,Entire home/apt,126,68,17,2018-11-10,0.47,1,0 +2010971,Gorgeous 1BR brownstone,4803115,Daniel,Manhattan,Harlem,40.8083,-73.9439,Entire home/apt,150,1,5,2015-08-19,0.08,1,0 +26566099,Bedstuy Cove,199740814,Luqman,Brooklyn,Bedford-Stuyvesant,40.68125,-73.92326,Private room,60,1,7,2018-08-23,0.59,1,129 +6909615,Nifty room near Express A train!,36208205,Jakob,Manhattan,Washington Heights,40.84666,-73.9379,Private room,45,1,1,2015-08-25,0.02,1,0 +20873362,Williamsburg Bedroom in a Beautiful Home,5278391,Ashley,Brooklyn,Williamsburg,40.71706,-73.94091,Private room,60,2,3,2018-11-02,0.34,2,1 +16069925,Great location in NYC!,13599766,David,Manhattan,Morningside Heights,40.80325,-73.96174,Private room,80,8,3,2018-06-03,0.1,1,79 +8883032,"Studio Apt, Prospect Park, Brooklyn",46481544,Jose,Brooklyn,Prospect-Lefferts Gardens,40.65874,-73.96108000000001,Entire home/apt,70,1,0,,,1,0 +34186868,Bianchi Soho,150878611,Yuri,Manhattan,Nolita,40.72169,-73.99642,Entire home/apt,150,30,11,2019-06-22,4.65,1,40 +31205946,"Large, Bright Sunny Room in Bushwick near L train",52593429,Xavier,Brooklyn,Bushwick,40.70293,-73.9265,Private room,45,2,14,2019-06-16,2.55,2,40 +21199473,舒适温馨小屋两间,153018041,Feng,Queens,Flushing,40.75602,-73.80241,Private room,95,1,22,2018-11-12,1.12,2,0 +18963479,Studio apt in Midtown East steps to UN,132245692,Stay With US!,Manhattan,Midtown,40.75169,-73.97323,Entire home/apt,70,2,79,2019-06-22,3.21,1,98 +13943523,Spacious Manhattan apartment with amazing view,24461849,Fredrik,Manhattan,Midtown,40.74569,-73.98592,Entire home/apt,280,3,2,2017-01-02,0.07,1,0 +951365,Bushwick/Ridgewood aprtmt w parking,2675998,Alice,Queens,Ridgewood,40.7099,-73.91509,Entire home/apt,115,2,74,2019-05-19,0.96,2,314 +28214075,HK AUTHENTIC TENEMENT UPDATED,213065914,Joshua,Manhattan,Hell's Kitchen,40.76557,-73.99174000000001,Private room,120,1,56,2019-06-30,5.81,1,4 +31322232,Luxury 4 BR Apartment-25 minutes from the city,2930761,Despina,Queens,Fresh Meadows,40.75085,-73.7854,Entire home/apt,114,2,7,2019-07-05,3.23,1,359 +14951904,Bedroom in beautiful apt near Central Park,21679450,Vicky,Manhattan,Harlem,40.80171,-73.95871,Private room,60,7,4,2018-11-02,0.12,2,0 +33242964,"Cozy room in Downtown Manhattan, 2 Bridges, Soho Y",248961864,Lily,Manhattan,Chinatown,40.71309,-73.99625999999999,Private room,85,1,14,2019-06-16,3.93,3,332 +15220,Best Location in NYC! TIMES SQUARE!,59734,Luiz,Manhattan,Hell's Kitchen,40.75531,-73.99293,Private room,69,2,289,2019-06-09,2.49,2,294 +26780660,NEW! HUGE DESIGN LOFT w/ Rooftop in Williamsburg,2127180,Fleur,Brooklyn,Williamsburg,40.71308,-73.94458,Entire home/apt,125,9,5,2019-04-14,0.42,1,59 +17342599,"Stylish, Spacious room Express train to Midtown",5334697,Shane,Manhattan,Washington Heights,40.84114,-73.93639,Private room,69,5,33,2019-07-02,1.17,3,1 +35972171,Vibrant Private Room in Greenwich Village,50724816,Glenn,Manhattan,Greenwich Village,40.72902,-74.00152,Private room,116,1,0,,,1,105 +18662841,Loft Studio in Clinton Hill/Bed-Stuy Brooklyn,30348931,Adriana,Brooklyn,Bedford-Stuyvesant,40.68626,-73.95918,Entire home/apt,125,1,0,,,1,0 +35461013,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69747,-73.97506,Private room,48,30,0,,,25,310 +35577716,Cozy & Super Clean 2 Bedrooms Private,83132880,Alyandry,Queens,Maspeth,40.73877,-73.8946,Private room,129,2,0,,,4,316 +20014534,Minimalist Private Bedroomm - Clean/Spacious/Airy,43010827,Joshua,Brooklyn,Williamsburg,40.71385,-73.93739000000001,Private room,45,3,5,2018-07-24,0.21,1,0 +9736600,Furnished Apartment in Morningside,50235395,Nick,Manhattan,Morningside Heights,40.805690000000006,-73.96333,Private room,75,14,0,,,1,0 +10011009,Charming and bright UWS apartment,8936313,Maurad & Maria,Manhattan,Upper West Side,40.78146,-73.97845,Entire home/apt,120,5,0,,,1,0 +20311253,Sunny Private Room in Bed-Stuy,10373779,Carla,Brooklyn,Bedford-Stuyvesant,40.68883,-73.94821,Private room,55,3,3,2018-09-29,0.3,2,0 +8622987,Huge luxury 1 bedroom apt in Fidi,4228414,Lucy,Manhattan,Financial District,40.7083,-74.00415,Entire home/apt,160,7,1,2016-09-03,0.03,1,0 +29804907,"2 bedroom apartment in Sunset Park, Brooklyn",12235509,Zachary,Brooklyn,Sunset Park,40.65085,-74.0037,Entire home/apt,175,4,12,2019-07-02,1.65,1,142 +13532767,Sunny LES Apt W/ Luxury Bed A/C Views WIFI & More,77811516,Joel,Manhattan,Lower East Side,40.714290000000005,-73.98755,Private room,59,2,14,2017-07-28,0.38,1,0 +12467421,Luxury studio heart of Manhattan,67471774,Grace.EJ,Manhattan,Upper West Side,40.77504,-73.9896,Entire home/apt,150,1,0,,,1,0 +32639119,Classic and Cozy Brooklyn Apartment,161985273,Melody-Lane,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.9499,Private room,45,3,7,2019-07-01,3.13,1,43 +16805869,Windowside Orchard Street Room in Lower East Side!,16664377,D,Manhattan,Lower East Side,40.71863,-73.98958,Private room,100,1,66,2019-06-22,2.19,3,334 +13018125,AMAZING CENTRAL MANHATTAN 1 BED W/BALCONY FITS 4!,10797290,Caroline,Manhattan,Chelsea,40.744690000000006,-73.99858,Entire home/apt,225,1,32,2019-01-01,0.87,1,0 +5738785,Compact cosy studio with separate kitchen,22557949,Ray,Queens,East Elmhurst,40.7583,-73.87679,Entire home/apt,112,2,3,2019-05-19,0.35,1,338 +29518561,Excellent private room!,222288328,Matthew,Brooklyn,Bedford-Stuyvesant,40.69871,-73.94686,Private room,72,1,30,2019-06-24,3.85,2,344 +26774025,Big Apple Slice of History with Breakfast Included,201315040,Carmen,Manhattan,East Village,40.72493,-73.97570999999999,Private room,125,2,26,2019-06-19,2.23,1,118 +36065361,Artist Luxe Loft Prime Williamsburg,271035656,Josh,Brooklyn,Williamsburg,40.70835,-73.95368,Entire home/apt,270,2,1,2019-07-05,1.0,1,308 +26414834,Enjoy this cozy private room near Times Sq. 53E4,190921808,John,Manhattan,Hell's Kitchen,40.75561,-73.99543,Private room,55,30,3,2019-05-30,0.92,47,345 +28410723,Entire Apartment in Greenwood,108902280,Guadalupe,Brooklyn,Sunset Park,40.659290000000006,-73.99441,Entire home/apt,59,2,26,2019-06-23,2.63,1,173 +8826129,Private bedroom Private Living Room,46230558,Joseph,Queens,Glendale,40.70302,-73.89499,Private room,115,2,0,,,1,0 +21312687,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70471,-73.81541999999999,Private room,135,1,3,2018-01-01,0.15,18,319 +19407214,Brooklyn's 3 bdrm Honeycomb,35108251,Belinda,Brooklyn,East New York,40.66929,-73.89079,Entire home/apt,133,2,73,2019-06-23,2.98,2,171 +12337005,Beautiful Fort Greene Loft,2774967,Gabriel,Brooklyn,Fort Greene,40.6921,-73.97279,Entire home/apt,120,3,25,2019-06-19,0.72,1,0 +34453826,Spacious Room near Rockefeller Ctr & Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.7575,-73.98728,Private room,100,1,0,,,7,300 +35196648,"Gigantic room 1 block to train with AC, fast WIFI",264824216,Peter,Manhattan,Harlem,40.822,-73.95581999999999,Private room,59,1,1,2019-06-14,1.0,3,61 +24942569,My new place,182690453,Rafael,Brooklyn,Navy Yard,40.69833,-73.97086999999999,Private room,140,2,37,2019-06-16,2.64,1,157 +33238238,Luxury Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.7643,-73.98199,Entire home/apt,310,1,2,2019-04-21,0.7,8,0 +2467879,"Great, cozy room in Williamsburg!",786862,Cristina,Brooklyn,Williamsburg,40.71841,-73.95992,Private room,90,1,2,2015-04-30,0.03,1,0 +8878172,"Sunny, spacious - 35 mins Times Sq",46399563,Angela,Manhattan,Inwood,40.866890000000005,-73.92224,Private room,57,1,6,2017-01-02,0.13,1,1 +24078552,Spacious 2 bed/ 1bath w/ outdoor space (sleeps 8),36576422,Ivana,Queens,Forest Hills,40.71754,-73.83367,Entire home/apt,150,2,31,2019-06-24,2.04,1,89 +9116734,"Large, fully renovated room in Brooklyn, Bed-Stuy!",20318052,Laura,Brooklyn,Bedford-Stuyvesant,40.69587,-73.9453,Private room,55,2,67,2019-06-23,1.72,2,110 +8845002,Beautiful One Bedroom Chelsea,21172422,Ellie,Manhattan,Chelsea,40.74197,-74.00409,Entire home/apt,240,2,1,2015-11-02,0.02,1,0 +36357591,Harlem lounge,268242223,K,Manhattan,Harlem,40.81954,-73.94277,Private room,40,2,0,,,1,363 +8980303,Serene Brooklyn Apt w/ Terrace,9903826,Robin,Brooklyn,Clinton Hill,40.68713,-73.96226,Shared room,99,3,0,,,1,0 +7754916,Awesome room! 10 min to the city!!,15931768,Teodoro,Brooklyn,Bedford-Stuyvesant,40.69704,-73.94761,Private room,60,5,2,2015-09-29,0.04,1,0 +23312379,UWS Brownstone - Near Central Park/Lincoln Center,8055207,Nate,Manhattan,Upper West Side,40.77839,-73.97613,Private room,165,4,53,2019-06-20,3.24,1,0 +20480983,Unique Exposed Brick Loft Studio in Townhouse,785524,Eric,Bronx,Concourse,40.81941,-73.92761999999999,Entire home/apt,69,2,98,2019-07-01,4.57,2,193 +31624862,Upper East Side Studio on 68th street,10371008,Anna,Manhattan,Upper East Side,40.76455,-73.95645999999999,Entire home/apt,135,4,1,2019-06-13,1.0,2,217 +2043329,Studio in Hell's Kitchen,10478532,Erin,Manhattan,Hell's Kitchen,40.76473,-73.98937,Entire home/apt,100,2,11,2015-05-27,0.16,1,0 +14429513,Sunlit Private Room in Centrally Located Chelsea,69021484,Jocelyn & Jake,Manhattan,Chelsea,40.75066,-73.99944,Private room,139,5,120,2019-07-02,3.91,1,52 +225926,The Notorious B.N.B. { The Erhart },1177497,Jessica,Brooklyn,Clinton Hill,40.68999,-73.96710999999999,Private room,239,1,164,2019-07-01,1.73,11,356 +34997929,Amazing 3bd/2ba Town-Home In Prime Williamsburg,16625273,Richard,Brooklyn,Williamsburg,40.7149,-73.94585,Entire home/apt,295,2,2,2019-06-25,2.0,3,298 +9943776,Walk to the American Museum of Natural History,37441611,Jamie,Manhattan,Upper West Side,40.784690000000005,-73.9738,Entire home/apt,330,2,119,2019-06-19,2.78,1,258 +25370297,Bright & stylish apartment in Greenwich Village,13251813,Nick,Manhattan,West Village,40.73521,-73.99944,Entire home/apt,120,4,6,2019-02-17,0.49,1,1 +19239064,Cozy BedStuy/Bushwick Brownstone Apartment,3452241,Sadé,Brooklyn,Bedford-Stuyvesant,40.68524,-73.92183,Private room,125,2,0,,,1,0 +1123960,Private Rm for 1 in Historic Harlem,6165258,Gita,Manhattan,Harlem,40.80815,-73.94325,Private room,70,28,16,2018-01-01,0.22,3,365 +30956743,1BR Park Slope Apt w/ Private Backyard,87859431,Melysa,Brooklyn,Park Slope,40.68087,-73.97870999999999,Entire home/apt,100,2,2,2019-02-17,0.31,1,1 +24961967,BEAUTIFUL LUX STUDIO -AMAZING ENTERTAINMENT SYSTEM,104684975,Studio,Brooklyn,Canarsie,40.64361,-73.90435,Entire home/apt,140,1,1,2018-06-20,0.08,1,178 +17829947,Big & Sunny Apartment in Williamsburg,81141009,Jason,Brooklyn,Williamsburg,40.71666,-73.94561999999999,Entire home/apt,160,5,10,2017-09-27,0.37,1,0 +22293394,Hippie 1 Bedroom in Chinatown,48086015,Amira,Manhattan,Chinatown,40.71532,-73.99903,Entire home/apt,150,7,2,2017-12-19,0.11,1,0 +22063918,25 minutes to Midtown NYC- Entire large apartment,2323561,Herminia,Queens,Elmhurst,40.74475,-73.88266,Entire home/apt,90,2,8,2019-01-02,0.43,1,0 +19786549,Dungeon heaven. SOHO loft-feel in Bklyn.❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68141,-73.93301,Entire home/apt,68,14,10,2019-04-30,0.43,5,286 +23044937,"MINI COZY Room Close to NYU Langone H/Metro N,R",105640471,Jason,Brooklyn,Sunset Park,40.638000000000005,-74.01619000000001,Private room,39,1,14,2019-05-28,1.0,8,127 +34593987,Manhattan Beach Condo,260997528,Jermaine,Brooklyn,Sheepshead Bay,40.58495,-73.93278000000001,Entire home/apt,150,1,10,2019-07-07,7.89,1,354 +9563873,1 ROOM IN A NEW HOUSE IN QUEENS,49514708,Steve,Queens,Jamaica,40.690090000000005,-73.79555,Private room,37,4,42,2019-07-07,0.98,1,228 +4235620,Elegant furnished 1BR apartment,21979970,Louise & Thomas,Queens,Flushing,40.73303,-73.79736,Entire home/apt,100,7,9,2019-06-28,0.16,1,268 +1185525,Peaceful Brooklyn Flat,6483295,Jason,Brooklyn,Bay Ridge,40.63719,-74.03489,Entire home/apt,80,3,38,2019-05-01,0.53,1,192 +14743469,Bensonhurst Gem,19101984,Tuan-Phi,Brooklyn,Bensonhurst,40.607490000000006,-73.99225,Entire home/apt,49,1,1,2016-08-28,0.03,1,0 +24278899,Fantastic studio in Chinatown/Lower East side,24404900,Nate,Manhattan,Chinatown,40.71371,-73.99355,Entire home/apt,100,2,73,2019-06-30,4.86,1,3 +16965094,*THE ROOM IS PRIVATE. HUNGRY FOR A KITCHEN ?*,48183551,Carlos,Queens,Elmhurst,40.74552,-73.88285,Private room,55,6,69,2019-07-04,2.44,5,253 +27610245,Brand New 1 Bedroom w/Parking-25 Mins to Manhattan,59765638,Philip,Queens,Douglaston,40.76561,-73.7464,Entire home/apt,125,3,16,2019-06-19,1.51,1,123 +28919421,Lovely New Private Bathroom Room,216772639,Ling,Brooklyn,Borough Park,40.63371,-74.00717,Private room,60,1,9,2019-06-24,0.98,7,180 +24656108,Charming 2 Bedroom in the Heart of Williamsburg,4794638,Daniel,Brooklyn,Williamsburg,40.71598,-73.95466,Entire home/apt,134,1,52,2019-07-02,3.59,1,262 +22794719,Habitacion de renta para 2,168429942,Jennifer,Bronx,Norwood,40.88007,-73.87326,Private room,50,5,4,2019-06-17,0.26,2,324 +15659743,Super Cute Garden Apartment in Bed-Stuy!,62256292,Inez,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93648,Entire home/apt,125,3,91,2019-07-01,2.8,1,78 +21156632,Victorian styled long townhouse in NYC,150363476,Eliasz,Bronx,Parkchester,40.83439,-73.8585,Private room,300,2,9,2018-11-23,0.47,1,0 +12063562,Cozy Room,5017724,R,Manhattan,Theater District,40.75827,-73.98825,Private room,200,5,4,2016-10-17,0.1,1,365 +20452330,Frank 'n Dean,24377694,Kori,Brooklyn,Crown Heights,40.67837,-73.95421999999999,Entire home/apt,298,2,0,,,3,189 +19073356,Luxury Coliving Space in Williamsburg,4440278,Emmanuel,Brooklyn,Williamsburg,40.71189,-73.93881,Private room,110,3,3,2017-07-30,0.12,3,179 +9756236,Quiet and large one bedroom,18954539,Tamara,Manhattan,Upper East Side,40.763740000000006,-73.96583000000001,Entire home/apt,200,1,0,,,1,0 +22400856,Hip and cozy LES apartment,50312214,Isabella,Manhattan,Lower East Side,40.71975,-73.98975,Entire home/apt,115,2,1,2017-12-30,0.05,1,0 +2887581,June sublet in Prospect Heights,4119786,Shimrit,Brooklyn,Prospect Heights,40.67353,-73.96505,Private room,45,20,0,,,2,0 +16284453,Cozy Oceanhill Room,43797176,Malcolm,Brooklyn,Cypress Hills,40.67816,-73.90583000000001,Private room,80,2,17,2019-05-27,0.7,1,353 +31226826,Cozy Bedroom 6 mins from JFK. 35mins frm the city,137017288,Khan,Queens,Jamaica,40.68574,-73.79008,Private room,50,1,1,2019-02-07,0.2,2,36 +220563,Lovely HUGE Master Bed + Study,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95088,Private room,75,3,59,2017-01-05,0.62,3,0 +36321453,Your family in NYC,259645305,Daniel,Brooklyn,Crown Heights,40.66531,-73.93887,Private room,35,1,0,,,1,56 +18996738,Sunny big bedroom in lively Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.6721,-73.95363,Private room,40,14,1,2017-07-01,0.04,2,0 +30811876,Quiet Sunny Spacious Room in Charming Vintage Apt,54368503,Alison,Queens,Ridgewood,40.70351,-73.90212,Private room,120,3,0,,,1,0 +9633740,1 Bedroom within Full Apartment,6753765,Austin,Manhattan,East Village,40.72422,-73.98465,Shared room,85,2,2,2017-01-04,0.05,3,0 +11724873,Hell's Kitchen Hideaway,62359474,Brandon,Manhattan,Hell's Kitchen,40.75926,-73.99304000000001,Entire home/apt,125,2,104,2019-07-03,2.63,1,5 +27359696,ACintheroom!35minutes toWALL St. quiet&residential,47782497,Robianddebbie,Brooklyn,East New York,40.66983,-73.87745,Private room,65,7,16,2019-06-23,1.42,3,287 +19677284,Room in Williamsburg,63336737,Juan,Brooklyn,Williamsburg,40.70994,-73.95243,Private room,50,4,3,2018-08-13,0.12,1,0 +27259887,Bedstuy Oasis,4089207,Mondell,Brooklyn,Bedford-Stuyvesant,40.68571,-73.93868,Entire home/apt,250,3,22,2019-07-07,1.94,2,314 +13503536,"Large, Private Room in Bushwick",77076962,Meghan,Brooklyn,Bushwick,40.70286,-73.92271,Private room,50,2,6,2016-08-09,0.16,1,0 +823520,ON HIGHLINE! Private room & bath,4323625,Arthur,Manhattan,Chelsea,40.75284,-74.00138000000001,Private room,179,2,251,2019-07-03,3.15,1,157 +12973819,"Huge 1BR 5 min to Park, Train",71402091,Jeff,Brooklyn,Flatbush,40.65421,-73.95945,Entire home/apt,90,4,7,2019-04-23,0.18,1,0 +35185863,Bright Park Slope 2 Bed (15 Minutes to Manhattan!),264963423,Eleanor,Brooklyn,South Slope,40.66956,-73.98921999999999,Entire home/apt,195,2,4,2019-06-30,4.0,1,345 +5593975,Adorable Private Room w/ backyard!,29005043,Brianna,Brooklyn,Bedford-Stuyvesant,40.67861,-73.9453,Private room,125,14,7,2016-10-03,0.15,1,179 +21867440,"Charming, Cozy Apartment in the Heart of Bushwick!",29599980,Leslie,Brooklyn,Bushwick,40.70636,-73.91935,Entire home/apt,41,3,1,2018-01-01,0.05,1,0 +27389647,Master Bed/Bath near Lincoln Center in high-rise,119531605,Nicole,Manhattan,Upper West Side,40.7737,-73.99027,Private room,99,1,7,2018-08-31,0.61,1,0 +31145829,"Nice, cozy and fresh male room on Manhattan III",39528519,Max,Manhattan,Lower East Side,40.71112,-73.98691,Shared room,32,14,0,,,28,342 +33881201,SoHo + Greenwich Penthouse Escape! Cozy Studio!,254522143,Julie Anne,Manhattan,Greenwich Village,40.7277,-74.00104,Entire home/apt,129,31,7,2019-06-29,2.8,1,167 +31409154,Great Location Cozy Apt. w/ Private Bath,198195140,Lucy,Queens,Long Island City,40.74755,-73.93878000000001,Private room,55,1,11,2019-06-02,2.92,2,7 +34489723,Luxury Room with Two Queen Beds,260639745,Manhattan At Times Square,Manhattan,Theater District,40.761790000000005,-73.98589,Private room,100,1,0,,,15,296 +573795,Spacious Stylish 2 Bedroom Suite,38513,Nkosi,Brooklyn,East Flatbush,40.65204,-73.94938,Entire home/apt,133,4,104,2019-06-06,1.32,1,338 +4249342,Perfect Private Room in Luxury Bldg w/Gym/Rooftop,2495483,Andy,Manhattan,Financial District,40.70948,-74.00654,Private room,98,7,23,2019-06-01,0.55,1,116 +30437498,"LXRY BLDG-next to Central Park, Times Sq,SLEEPS 5!",48572835,Jodi,Manhattan,Hell's Kitchen,40.76552,-73.98498000000001,Entire home/apt,300,6,2,2019-06-06,1.33,1,270 +35387629,The Crown Spacious Apartment,258374626,Beverley,Brooklyn,Crown Heights,40.66397,-73.93353,Entire home/apt,140,2,1,2019-07-07,1.0,1,87 +32527742,Chic Bed-Stuy Hideaway w/ Large Patio,17535511,Celina,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95076,Entire home/apt,150,2,0,,,1,0 +22533666,Upper Manhattan Oasis,103166867,Darcy,Manhattan,Inwood,40.8637,-73.92858000000001,Entire home/apt,160,3,0,,,1,0 +7395202,Big room in Clinton Hil near subway,23425862,Gagandeep,Brooklyn,Bedford-Stuyvesant,40.69172,-73.95862,Private room,90,1,0,,,2,0 +20386575,Makes You Wanna STAY! [BEST RATE],142590597,Joica,Brooklyn,East New York,40.6746,-73.87293000000001,Shared room,159,1,7,2018-10-06,0.31,6,180 +13770680,Flushing Deluxe Room w/ 2 Bed (1FL),65809485,Shirley,Queens,Flushing,40.74875,-73.82775,Private room,50,7,55,2019-01-24,1.57,12,160 +18734320,"Easy, Comfortable and Convenient!",100784323,Kathleen,Manhattan,Washington Heights,40.83543,-73.94372,Private room,50,2,14,2018-09-01,0.54,1,0 +29760512,1 double size bedroom 0.1 mile from Times Square.,214173940,Ali,Manhattan,Theater District,40.75941,-73.98794000000001,Private room,62,1,7,2019-01-01,0.87,1,9 +19837851,Bright 3-bedroom apartment in beautiful Brooklyn,140220933,Yolanda,Brooklyn,East Flatbush,40.65614,-73.91754,Entire home/apt,103,3,35,2019-04-21,1.52,1,291 +4516766,"Large, Luxury Bedroom nr JMZ subway",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93467,Private room,68,5,81,2019-06-07,1.47,6,83 +1438369,True Two Bedroom Apartment in Lower Manhattan,4314535,Arielle,Manhattan,Lower East Side,40.71444,-73.98348,Entire home/apt,160,3,220,2019-06-28,3.19,1,24 +31458781,"Bright and Beautiful, Private Garden",129643632,Benjamin,Brooklyn,Sunset Park,40.66426,-73.99375,Entire home/apt,165,30,0,,,1,337 +867721,Comfortable Modern Room in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68344,-73.92189,Private room,65,3,132,2019-06-30,1.68,3,35 +14629018,1 Bedroom Apt All Yours In Astoria!,59503891,B,Queens,Long Island City,40.74829,-73.93253,Entire home/apt,100,2,1,2016-10-10,0.03,1,0 +4644632,"Brooklyn Life, Easy to Manhattan (30+ Days only)",10992588,Joni,Brooklyn,Bedford-Stuyvesant,40.68797,-73.94696,Entire home/apt,130,200,271,2019-07-03,4.84,2,64 +13782517,Cozy Room in the lovely neighborhood of Bed Stuy,75442218,Loreto,Brooklyn,Bedford-Stuyvesant,40.68155,-73.93639,Private room,45,3,6,2017-12-10,0.18,1,0 +35792068,"Entire Apartment. One block to Bars, Coop, Qtrain.",198020385,Margaret,Brooklyn,Flatbush,40.63704,-73.96693,Entire home/apt,130,3,2,2019-07-06,2.0,1,33 +29216296,Feel at home!,23703328,Dada,Queens,Kew Gardens,40.71163,-73.82751999999999,Private room,59,1,24,2019-06-30,2.76,1,32 +31017536,Spacious Beauty 1 Bedroom Apartment,9891348,Adelle,Manhattan,Kips Bay,40.74098,-73.98331,Entire home/apt,130,2,11,2019-07-06,1.76,1,4 +11315999,Summer in the City,5577926,Lou,Queens,Astoria,40.76821,-73.9125,Private room,60,1,72,2019-06-15,1.82,4,0 +32240186,Sonder | Stock Exchange | Unique 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01218,Entire home/apt,230,2,12,2019-06-16,2.57,327,357 +27351337,Studio sanctuary in Park Slope Brooklyn,10849252,Leslie,Brooklyn,Park Slope,40.6726,-73.98195,Entire home/apt,130,2,24,2019-07-01,3.27,1,2 +17750513,"Private Room with Full Private Bath, cozy&quiet",121109701,Sean,Brooklyn,Williamsburg,40.70961,-73.94635,Private room,45,1,98,2019-06-27,3.53,1,44 +12966974,Flatiron Oasis,71321195,Sonia,Manhattan,Chelsea,40.73737,-73.99475,Entire home/apt,225,1,0,,,1,0 +9825420,Great for Work/Leisure w NYC Views!,1570949,DeAnna,Brooklyn,South Slope,40.66817,-73.98774,Private room,85,2,0,,,1,0 +10546254,Fort Greene Studio-Flat,54378184,Eej,Brooklyn,Fort Greene,40.68706,-73.97065,Entire home/apt,150,30,20,2019-06-09,0.47,3,326 +13346113,"Entire 2 BR apartment, 15 steps from the subway!",16278677,Grant,Brooklyn,Williamsburg,40.71459,-73.93885,Entire home/apt,200,7,0,,,1,146 +2633717,Private room in friendly Brownstone,13486605,Rachael And Christopher,Brooklyn,Bushwick,40.69616,-73.93200999999999,Private room,40,1,25,2018-09-15,0.39,1,0 +33936370,Cozy room with 3 windows.,43676525,Filip,Brooklyn,Bushwick,40.69174,-73.90811,Private room,40,30,0,,,1,365 +21729121,"Beautiful, bright 1BR in Park Slope, Brooklyn",13711192,Whitney,Brooklyn,Park Slope,40.67078,-73.97948000000001,Entire home/apt,105,5,0,,,1,0 +32820849,Beckoning ”Bed-Stay” 2 BR Suite in Bed-Stuy,96311058,Donna,Brooklyn,Bedford-Stuyvesant,40.68343,-73.92746,Entire home/apt,180,2,11,2019-06-29,3.37,1,280 +24630495,"Beautiful, spacious Upper West Side 1Br apartment",24165842,Gal,Manhattan,Upper West Side,40.77127,-73.98841999999999,Entire home/apt,180,5,6,2019-06-16,0.82,1,5 +20016975,Rustic 1 Bedroom with Exposed Brick,55939980,Katy,Manhattan,Midtown,40.75685,-73.96388,Entire home/apt,210,2,4,2018-12-30,0.22,1,0 +22567430,Oasis in East Flatbush,165853174,Jackee,Brooklyn,East Flatbush,40.64322,-73.93745,Entire home/apt,89,2,74,2019-07-05,4.38,1,322 +36007006,Centrally Located 1BDR With Furnished Patio,270906714,Jennifer,Manhattan,Hell's Kitchen,40.75654,-73.99173,Entire home/apt,320,3,0,,,1,341 +29900235,"Cozy Manhattan Room, 15 minutes to Times Square",99511145,Nichole,Manhattan,Harlem,40.80646,-73.94829,Private room,45,4,19,2019-07-06,2.54,2,10 +36029624,Lovely Two Bedroom Next to Central Park,218969291,Danielle,Manhattan,Upper West Side,40.78635,-73.97636,Entire home/apt,279,5,2,2019-07-02,2.0,1,346 +35677349,No Sleep Till Brooklyn!,222069293,Mariela,Brooklyn,Williamsburg,40.71556,-73.94245,Entire home/apt,275,3,0,,,1,362 +26138591,Room with AC - Cozy Manhattan Apt. —Central Park,196088317,Andreas & Bella,Manhattan,Upper East Side,40.76473,-73.95623,Private room,80,2,45,2019-06-13,3.56,2,26 +14196798,Brooklyn (G)reenery,80942071,Warren,Brooklyn,Bedford-Stuyvesant,40.69484,-73.94615999999999,Private room,89,2,1,2017-09-05,0.04,1,365 +35005473,Awesome Renovated Studio in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.6904,-73.93463,Entire home/apt,92,1,9,2019-07-01,6.59,3,21 +24992558,ENTIRE Spacious Brownstone Apartment (UNFURNISHED),12633660,Benjamin,Brooklyn,Carroll Gardens,40.67899,-74.00089,Entire home/apt,50,3,5,2019-05-31,0.63,1,0 +6750178,Brooklyn Comfort w Rooftop View,173938,Vuong,Brooklyn,Bedford-Stuyvesant,40.68491,-73.94919,Private room,55,5,4,2018-02-08,0.08,1,21 +16276294,Rental in a Uptown Cozy Apartment,32625342,Bianca,Bronx,Kingsbridge,40.88467,-73.90575,Private room,30,4,11,2019-05-15,0.35,2,0 +20028865,Beautiful Bright Bushwick Cove,39939372,Parish,Brooklyn,Bushwick,40.69851,-73.9266,Private room,65,20,0,,,1,0 +33473567,Hamilton Heights Full Floor Garden Apt,33388853,Christine,Manhattan,Harlem,40.8309,-73.94308000000001,Entire home/apt,200,60,0,,,1,219 +13532633,Cozy Couch in Wburg,8255157,Chris,Brooklyn,Williamsburg,40.71182,-73.95692,Shared room,130,1,0,,,1,0 +13545656,Perfect 1 Br Apt. to explore the city,6493333,Zahra,Manhattan,Harlem,40.8114,-73.94014,Entire home/apt,140,2,34,2018-09-16,0.93,1,0 +20070549,"Bklyn private room and private bathrm by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64293,-73.98043,Private room,56,1,58,2019-01-01,2.48,11,16 +8522395,Harmony House 1 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68793,-73.92179,Private room,39,2,57,2019-06-24,1.25,3,117 +28660068,Gorgeous Bedroom in the heart of Bushwick Him-2R-3,216235179,Nina,Brooklyn,Bushwick,40.70011,-73.92043000000001,Private room,55,30,0,,,17,336 +9401880,NEW Penthouse UnionSq Wraparound Terrace,24530091,Jt,Manhattan,Greenwich Village,40.73491,-73.99231,Entire home/apt,250,53,2,2018-02-14,0.05,1,365 +20286116,1 Room in Renovated Apt with Private Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70515,-73.92349,Private room,85,2,5,2018-03-26,0.22,2,0 +19158672,Newly Renovated 1 Bedroom in Hell's Kitchen. 58/10,56342503,Matthew,Manhattan,Hell's Kitchen,40.7694,-73.98736,Entire home/apt,280,4,3,2018-01-05,0.13,1,0 +1227528,Modern Williamsburg,3086048,Christine,Brooklyn,Williamsburg,40.71704,-73.95789,Entire home/apt,275,4,27,2019-01-02,0.37,1,197 +12855923,New York Space,33906660,Trevor,Manhattan,Harlem,40.8242,-73.94776999999999,Private room,65,1,154,2019-07-02,4.03,1,361 +25731392,THE JEWEL OF CROWN HEIGHTS,166269959,Mor,Brooklyn,Crown Heights,40.67031,-73.9354,Private room,95,4,0,,,1,0 +5406041,Mod 3 BR duplex-East Village,27974744,Cara,Manhattan,East Village,40.72755,-73.97876,Private room,100,2,156,2019-06-19,3.9,1,197 +10730086,Spacious Brooklyn Room for Travelers,28546873,Justin,Brooklyn,Bedford-Stuyvesant,40.68995,-73.92844000000001,Private room,45,3,9,2019-03-20,0.34,1,80 +22135247,Private Room in Bed-Stuy/Bushwick,161613483,Katelyn,Brooklyn,Bedford-Stuyvesant,40.68594,-73.92394,Private room,55,4,18,2018-10-02,0.99,1,0 +21023888,Almost a Hotel Room // Cozy Private Room,6378149,Laurel,Brooklyn,Bushwick,40.69835,-73.91644000000001,Private room,50,2,57,2019-06-23,2.68,3,18 +5048535,Great Gramercy Share Apt,905563,Courtney,Manhattan,Gramercy,40.73718,-73.98373000000001,Private room,75,5,0,,,1,0 +10067083,Entire apt in the heart of uber hip & cool Nolita,22217087,Gabriela,Manhattan,Nolita,40.72321,-73.99531999999999,Entire home/apt,175,3,12,2019-06-02,0.28,1,0 +18934106,JFK 10 & LGA 15 MINUTES AC BEDROOM ATTCH BATHROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69482,-73.82551,Private room,59,1,123,2018-08-14,4.85,5,0 +19280513,Charming -One bedroom -Williamsburg,18747504,Schimpff,Brooklyn,Williamsburg,40.71886,-73.95695,Private room,100,2,1,2017-06-22,0.04,1,0 +8400115,Brooklyn bohemian haven,43768534,AnnMarie,Brooklyn,Greenpoint,40.72403,-73.94306,Private room,60,7,11,2019-05-31,0.24,1,0 +29152320,Gem of East New York,219347424,Adonna,Brooklyn,East New York,40.66788,-73.87339,Entire home/apt,150,2,6,2019-04-28,0.69,2,171 +24863288,Cozy 1-Bedroom Apartment in Harlem,29026712,Haydenn,Manhattan,Harlem,40.81717,-73.93918000000001,Entire home/apt,70,2,2,2018-06-04,0.15,1,0 +27085643,"Entire apartment in Clinton Hill, minutes from NYC",349596,Marie-Claude,Brooklyn,Clinton Hill,40.68477,-73.96799,Entire home/apt,189,10,3,2019-05-20,0.32,1,14 +33094364,Boho Studio in West Village- PRIME LOCATION,28770493,Haley,Manhattan,West Village,40.73508,-74.00004,Entire home/apt,204,4,3,2019-06-30,1.36,1,6 +20917327,AWESOME APARTMENT mins from JFK and LGA,150304209,Melrose,Queens,St. Albans,40.6959,-73.75159000000001,Entire home/apt,85,2,59,2019-06-17,2.69,1,36 +35760845,Cozy UWS Only two blocks away from Central Park!,261451511,Valeria,Manhattan,Upper West Side,40.78527,-73.97623,Private room,150,2,3,2019-06-30,3.0,1,21 +31926655,SPACIOUS- 3 Bedroom Harlem gem 5 mins from train,115075522,Christian,Manhattan,Harlem,40.82656,-73.94648000000001,Entire home/apt,225,1,13,2019-07-01,3.22,1,83 +26257903,Eco Chic King Size Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68581,-73.99586,Private room,80,7,57,2019-06-16,4.49,2,285 +9944320,Nice Spacious Room for a Month,19878684,Lakshey,Queens,Ozone Park,40.68247,-73.84368,Shared room,25,10,0,,,1,0 +19036361,Ms. Dee Cozy Bedroom you feel like home!! Room 2,97794385,Debra,Queens,Jamaica,40.68347,-73.79460999999999,Private room,60,2,42,2018-11-04,1.65,2,0 +11651980,Updated Midtown East 2 Bedroom 3 Beds,61391963,Corporate Housing,Manhattan,Midtown,40.75605,-73.96503,Entire home/apt,165,30,0,,,91,180 +14499123,Spacious Home 15 Minutes Away From Manhattan,89523770,Ricky & Diana,Queens,Woodside,40.75328,-73.90855,Entire home/apt,300,2,73,2019-06-23,2.14,1,228 +15396328,Private Room in Heart of East Village!,14295824,Josephine,Manhattan,East Village,40.72718,-73.98238,Private room,80,4,7,2019-01-03,0.33,1,0 +13466561,Sunny and light bedroom in Downtown Manhattan,6980995,Dominik,Manhattan,Two Bridges,40.71159,-73.99884,Private room,119,1,3,2016-11-06,0.09,5,0 +31738077,Cozy private room in Williamsburg,50497157,Luca,Brooklyn,Williamsburg,40.71248,-73.94859,Private room,45,3,1,2019-02-21,0.22,1,0 +8650854,Beautiful and Large Private Room 1Block from train,21508828,Nguyen,Manhattan,Washington Heights,40.85289,-73.93508,Private room,64,1,16,2019-01-02,0.36,2,249 +14080022,Beautiful 2B/2B at Central Park and the AMNH,84632856,Brooke,Manhattan,Upper West Side,40.77743,-73.97616,Entire home/apt,325,3,4,2016-10-09,0.11,1,0 +32238391,Sonder | Stock Exchange | Lively 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01077,Entire home/apt,227,2,8,2019-06-11,3.64,327,349 +4620262,Cozy bedroom in heart of Manhattan,1599319,Lakshmi,Manhattan,Little Italy,40.71954,-73.9975,Private room,60,7,5,2016-04-26,0.09,1,0 +33782555,"Cute and cozy, great downtown Manhattan location!",18885469,Leila,Manhattan,Chinatown,40.71483,-73.99801,Shared room,53,1,7,2019-06-26,2.92,1,58 +7095708,NYC Brooklyn Rooftop Full Apartment,37191929,John,Brooklyn,Crown Heights,40.67921,-73.9603,Entire home/apt,125,2,31,2018-03-04,0.67,1,0 +9507521,Beautiful Renovated Brownstone,49268145,James,Brooklyn,South Slope,40.66872,-73.98648,Entire home/apt,275,2,2,2016-01-01,0.05,1,0 +9187221,Sunny room in the heart of Bushwick,36297318,Josh,Brooklyn,Bushwick,40.70269,-73.92626,Private room,60,1,0,,,1,0 +33472677,Spacious room in Brooklyn. Only girls please,57158173,Katerina,Brooklyn,Midwood,40.61186,-73.96955,Private room,38,3,1,2019-06-26,1.0,1,0 +16424642,Skylight loft bed room in large artist house!,3619937,Freddi,Brooklyn,Bushwick,40.69935,-73.92642,Private room,41,7,7,2019-01-16,0.24,2,0 +34743257,"Quiet, Warm Room 47 Buffalo 1F Room#3",260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67792,-73.92347,Private room,50,2,6,2019-07-02,3.91,2,83 +13881020,Courtyard facing private room in Sugar Hill,82148918,Kristen,Manhattan,Harlem,40.82903,-73.94502,Private room,50,2,55,2019-05-18,1.52,1,0 +22605114,Private room in Brooklyn !!!!,70236577,Sara,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94214000000001,Private room,58,1,11,2019-05-18,1.77,1,345 +28330508,East village sanctuary,2244813,Matthew,Manhattan,East Village,40.72778,-73.98747,Entire home/apt,250,31,1,2018-10-07,0.11,1,156 +22051523,Room 1 at Lower Manhattan 18mins from Timesquare,161057073,Stella,Manhattan,Lower East Side,40.71983,-73.9877,Private room,90,2,52,2019-06-23,2.7,4,67 +1847389,Beautiful BK 1 Block From Subway,9371210,Shane,Brooklyn,Carroll Gardens,40.67522,-73.99978,Entire home/apt,180,2,29,2019-06-30,0.63,1,45 +18526162,Gone with the Wind,75360607,Fernando,Queens,Sunnyside,40.74215,-73.92633000000001,Entire home/apt,199,5,91,2019-06-21,3.48,2,57 +23852841,Sun-filled room in a lovely house,9574706,Luis,Brooklyn,Carroll Gardens,40.67873,-73.99564000000001,Private room,45,5,2,2018-10-03,0.14,1,0 +31045451,Windsor Terrace Warm Artist Pad Prospect Park,8822878,Oleg,Brooklyn,Windsor Terrace,40.653290000000005,-73.97986999999999,Entire home/apt,250,2,1,2019-06-25,1.0,1,84 +9469009,Luxury Studio in Artsy Brooklyn,15674613,Masha,Brooklyn,Bushwick,40.69395,-73.92418,Entire home/apt,69,10,11,2017-06-25,0.27,1,226 +3325807,Large 1 BDR Apt on the UWS,3053578,Natalie,Manhattan,Upper West Side,40.79921,-73.96704,Entire home/apt,145,7,6,2016-10-06,0.1,1,0 +19433585,Comfy and private garden bedroom,3130452,Jamba-Djang,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94409,Private room,40,3,0,,,1,0 +19057006,Comfortable room in spacious Brooklyn apartment,85082002,Steven,Brooklyn,Crown Heights,40.66413,-73.95125999999999,Private room,60,3,2,2017-09-09,0.09,1,0 +4464418,Charming 1BD Pre-War Apartment ,6526979,Kim,Manhattan,Upper West Side,40.78962,-73.97718,Entire home/apt,165,2,9,2015-05-19,0.16,1,0 +20171578,Experience the heart of Hell's Kitchen.,126641287,Larry Raul,Manhattan,Hell's Kitchen,40.76505,-73.98756999999999,Private room,140,2,54,2018-05-22,2.36,1,0 +26129270,"Mi casa es su casa, La casa de Pupilos",6724903,Edgard,Queens,Middle Village,40.71293,-73.88401999999999,Private room,70,2,20,2019-05-04,1.82,1,224 +13256322,Comfortable 1BR on quiet street in Upper East Side,6945858,Lydia,Manhattan,Upper East Side,40.76969,-73.95509,Entire home/apt,250,30,0,,,1,0 +1520806,HUGE 2BR+1BA Apt For Group Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92804,Entire home/apt,170,3,134,2019-06-20,2.0,3,209 +32592881,Bushwick Room!,244973445,Shevon,Brooklyn,Bushwick,40.69466,-73.9106,Private room,100,1,0,,,1,35 +35330887,"Large Studio near Time Square, UN, and much more!",23853826,Janee,Manhattan,Midtown,40.75144,-73.9709,Entire home/apt,220,3,1,2019-07-01,1.0,1,334 +6730056,Sunny Studio in Chelsea,7186661,Sabrina,Manhattan,Chelsea,40.74688,-74.00145,Entire home/apt,200,1,4,2017-09-16,0.09,1,0 +20587133,"Spacious, bright room in art-filled apartment!",116758734,Amos,Manhattan,Inwood,40.87085,-73.9183,Private room,59,4,19,2018-10-06,0.84,1,0 +36038012,Delightful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.7122,-73.96667,Private room,90,2,0,,,5,211 +9880664,A TASTE OF BROOKLYN,21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68243,-73.9534,Entire home/apt,150,2,2,2016-10-10,0.06,2,364 +18440017,Uptown Private Bedroom w/ Pvt Entrance & Full Bath,75973505,Jeanette,Manhattan,Washington Heights,40.86027,-73.9264,Private room,40,2,3,2019-01-02,0.42,1,276 +4215595,LowerEastSide apt share shortterm 3,7549,Ben,Manhattan,Lower East Side,40.71329,-73.99047,Shared room,40,1,88,2019-05-19,1.53,4,197 +2297147,Gorgeous 1400 Sq Ft Artist's Loft,10674441,Annie,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.95607,Private room,75,3,5,2019-01-27,0.08,2,334 +24700123,BRIGHT PRIVATE BEDROOM,45416627,Lolita,Queens,Astoria,40.76956,-73.9243,Private room,59,1,48,2019-06-16,3.47,9,351 +34793874,Upper East Side! Studio Near Museum Mile!,256718270,Tara,Manhattan,Upper East Side,40.77932,-73.95343000000001,Entire home/apt,109,30,2,2019-06-01,1.43,1,197 +13490097,Excellent Space for NYC Visit.,9235481,Reynaldo,Manhattan,Washington Heights,40.85413,-73.93172,Private room,45,3,1,2016-07-04,0.03,2,0 +7403613,Spacious NOMAD 1 BR for 4,1405974,Alexander,Manhattan,Midtown,40.74603,-73.98364000000001,Entire home/apt,150,3,1,2015-08-07,0.02,1,0 +28412322,Kozy Klean Kwiet,20161085,Lloyd,Queens,Jamaica,40.68588,-73.76315,Private room,120,2,31,2019-07-04,3.21,1,57 +22206207,Private room with visit to queens #4,158540605,Sonia,Queens,Glendale,40.69916,-73.8892,Private room,25,1,95,2019-07-05,6.18,6,258 +24392740,"Large room 20min time square, fast WiFi, AC, Desk",110088704,Brandon,Manhattan,Harlem,40.82244,-73.95262,Private room,60,1,28,2019-05-28,1.91,1,21 +7194138,Nice Carroll Gardens 2BR by F Train,16782665,Andrew,Brooklyn,Carroll Gardens,40.6748,-74.00005999999999,Entire home/apt,200,2,28,2016-12-20,0.59,1,0 +2274268,Private Rm - Times Sq/Hell'sKitchen,11611239,Sally,Manhattan,Hell's Kitchen,40.7604,-73.9922,Private room,90,1,170,2019-06-10,2.92,1,255 +16353473,Great Bedroom in East Williamsburg (+ ROOFTOP!!),107082851,Brian,Brooklyn,Williamsburg,40.70806,-73.9427,Private room,59,5,1,2017-01-01,0.03,2,0 +8235820,Brand new Williamsburg apt!,13716326,Oran,Brooklyn,Williamsburg,40.70828,-73.95246,Private room,77,7,1,2015-09-18,0.02,1,0 +31438699,WELL LIT 2 BR WILLIAMSBURG APARTMENT,61886746,Charles,Brooklyn,Williamsburg,40.71072,-73.96289,Entire home/apt,200,2,0,,,1,0 +13709910,CUTE & QUIET ROOM IN A BROWNSTONE IN CLINTON HILL,10366292,Lea,Brooklyn,Clinton Hill,40.6854,-73.96395,Private room,45,7,1,2017-10-11,0.05,3,0 +3698241,Your NYC headquarters @ the Upper East Side!,18836774,Jime,Manhattan,Upper East Side,40.77688,-73.95616,Private room,74,3,60,2019-06-27,1.0,5,169 +16053606,Huge Bedroom in the Upper West near Central Park,4372057,Rafael,Manhattan,Upper West Side,40.77815,-73.97574,Private room,88,7,3,2017-05-31,0.1,1,0 +29606105,Le Chateau vacation,22307859,Sharon,Brooklyn,Canarsie,40.63677,-73.89416,Private room,70,3,2,2019-01-02,0.25,5,86 +31013452,Clinton Hill loft,97843035,Lionel,Brooklyn,Bedford-Stuyvesant,40.69209,-73.95868,Entire home/apt,300,3,0,,,1,364 +17937356,Good deal in bohemian East Village,855079,Nicholas,Manhattan,East Village,40.727340000000005,-73.98319000000001,Private room,150,1,16,2019-04-01,1.75,3,0 +29653774,♀ Large Sunny Room in Newly Renovated Apt Popular,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67931,-73.93212,Private room,75,15,0,,,14,0 +23628818,Female Only UWS Apartment,176810211,Paris,Manhattan,Upper West Side,40.79902,-73.96692,Private room,70,1,1,2018-04-17,0.07,1,0 +5697517,"Quiet, Meatpacking/W.Village",93779,Kat,Manhattan,West Village,40.74033,-74.00872,Private room,225,1,17,2017-09-28,0.34,1,365 +8630185,Bedford Ave N. WBurg Room in 2BR-2,28709982,Sidiq,Brooklyn,Greenpoint,40.72014,-73.95496,Private room,89,3,19,2018-05-30,0.42,3,76 +13251558,Beautiful NYC Apartment,74534871,Brennen,Manhattan,Harlem,40.82158,-73.93824000000001,Private room,100,1,0,,,1,0 +2880864,Awesome Apartment in Astoria,14723162,Hugh,Queens,Astoria,40.77162,-73.92626,Private room,149,1,10,2018-10-08,0.17,1,365 +35082713,The Glamper Van,10407935,Meng,Manhattan,SoHo,40.72765,-74.00213000000001,Entire home/apt,89,1,6,2019-06-30,4.74,8,70 +1598785,SUNNY STUDIO MIDTOWN EAST W/DOORMAN,8038118,Maria,Manhattan,Midtown,40.7529,-73.97094,Entire home/apt,175,5,116,2019-05-27,1.65,1,299 +9611372,Bright space in beautiful area,5238157,Jessica,Brooklyn,Carroll Gardens,40.68002,-73.99625999999999,Entire home/apt,125,1,5,2016-09-05,0.12,1,0 +26469342,"Lovely apt heart of manhattan, location location",71404080,César Julio,Manhattan,Hell's Kitchen,40.76117,-73.99169,Private room,80,22,1,2018-08-01,0.09,1,187 +13077370,Modern Private Studio -20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73874,-73.87595,Entire home/apt,89,1,146,2019-06-25,3.85,6,252 +29487347,Beautiful 1.5 bedroom in Bed Stuy Brownstone.,222081034,Vida,Brooklyn,Bedford-Stuyvesant,40.68457,-73.93456,Entire home/apt,150,2,40,2019-06-17,4.86,1,31 +34419094,Lovely LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75314,-73.93644,Private room,89,1,9,2019-06-23,4.5,10,357 +10185955,Blue Magic,14785032,Jake,Queens,St. Albans,40.69112,-73.77761,Private room,48,1,165,2019-07-02,4.64,1,365 +17450196,Charming House!!,4378763,Antonio,Queens,Long Island City,40.75276,-73.93101999999999,Private room,77,3,48,2019-06-22,1.72,3,332 +2864637,Ting Ting's Home in Heart of Brklyn,14641776,Ting,Brooklyn,Fort Greene,40.69053,-73.9791,Entire home/apt,100,5,3,2015-05-01,0.05,1,0 +12169531,3 bedrooms with amazing view of the Big Apple,11218119,James,Brooklyn,Clinton Hill,40.69315,-73.96412,Entire home/apt,117,3,1,2016-04-04,0.03,1,0 +28374327,Brand New Private Room in Heart of Brooklyn,30735525,Lawrence,Brooklyn,Bushwick,40.68467,-73.91341,Private room,55,2,7,2019-06-28,0.96,1,36 +27654829,Spacious Union Square / Greenwich Village Home,113697596,Mitchell,Manhattan,Chelsea,40.73639,-73.99318000000001,Private room,200,4,13,2019-05-20,1.23,1,172 +29012098,Cozy Private Room,24283455,Igam,Brooklyn,Gravesend,40.59075,-73.98359,Private room,40,2,10,2018-12-30,1.11,2,0 +20212025,Cozy Studio in Beautiful Bed-Stuy,7248357,Ashley,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9329,Entire home/apt,75,2,1,2017-08-11,0.04,1,0 +13514680,Quiet 6th floor private room with rooftop views,3401026,Daniel,Brooklyn,Kensington,40.64455,-73.97825999999999,Private room,50,14,1,2016-08-06,0.03,1,0 +9147025,Cozy City Island Cottage,403032,Diane,Bronx,City Island,40.84487,-73.78954,Entire home/apt,110,2,112,2019-07-01,2.6,1,162 +7331201,Sunny and Homie BK Apartment,681331,Wes,Brooklyn,Crown Heights,40.66539,-73.96041,Entire home/apt,120,3,5,2016-10-17,0.11,1,0 +3623158,Private bedroom apartment 5A#1,18212433,Veronique Camille,Manhattan,East Harlem,40.7946,-73.94105,Private room,75,30,2,2018-08-05,0.04,8,352 +6992973,1 Bedroom in Prime Williamsburg,5162530,,Brooklyn,Williamsburg,40.71838,-73.9563,Entire home/apt,145,1,0,,,1,0 +35183442,2 Big Rooms in Brooklyn NY 1 block from Subway!,63866600,David,Brooklyn,Bay Ridge,40.62937,-74.03001,Private room,100,1,6,2019-07-04,6.0,3,365 +1423175,Bright open space in Sunset Park,1403769,Anastasia,Brooklyn,Sunset Park,40.64674,-74.01043,Entire home/apt,80,30,18,2017-09-30,0.31,1,161 +16004758,Cozy studio in the Heart of NYC,15980694,Quentin,Manhattan,Upper East Side,40.76435,-73.95782,Entire home/apt,110,3,2,2017-04-09,0.06,1,0 +11884931,Sunny Room near subway!!,18221107,Darya,Manhattan,Inwood,40.86087,-73.92724,Private room,65,3,36,2018-06-10,0.9,1,249 +32270481,Private Apartment in the Heart of East Village,217521776,Chin,Manhattan,East Village,40.72716,-73.9783,Entire home/apt,211,30,17,2019-07-07,4.18,1,74 +8097567,Giant Sunny Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67811,-73.97126,Private room,85,1,222,2019-06-27,4.98,13,290 +22587700,Private Bedroom in Cozy Williamsburg Apartment!,187912,Erin,Brooklyn,Williamsburg,40.71708,-73.96605,Private room,100,1,35,2019-06-27,2.04,2,17 +4672445,West Village upscale apartment,966461,Jon,Manhattan,West Village,40.73814,-74.00046999999999,Entire home/apt,199,4,108,2019-06-08,1.93,1,162 +21926117,Spacious 1-bedroom flat in LES,42135378,Stavros,Manhattan,Chinatown,40.71601,-73.99171,Entire home/apt,130,4,2,2018-04-09,0.1,1,0 +27677869,Stay comfortably with us. You'll be back again....,208906697,Maxime,Bronx,Longwood,40.82248,-73.89915,Private room,50,1,13,2019-05-29,1.26,1,280 +7224484,Charming Studio on Orchard Street !,1613244,Ariel,Manhattan,Lower East Side,40.71992,-73.98822,Entire home/apt,110,30,10,2018-10-03,0.23,9,263 +3630304,Spacious Bedroom 15 mins from NYC!,18297103,Beatriz,Queens,Sunnyside,40.74269,-73.91518,Private room,80,1,57,2019-06-08,0.97,1,253 +28891434,New & Clean 2 bedrooms Garden Home,217793924,NY Blue House,Brooklyn,Crown Heights,40.67294,-73.93655,Entire home/apt,120,3,33,2019-06-17,3.61,1,73 +2291507,"Large, Sunny Room—in Fun, Trendy Area",11057719,Chloe,Brooklyn,Williamsburg,40.71558,-73.94881,Private room,73,14,0,,,1,0 +35832561,Spacious room in beautiful Manhattan apartment!,20788222,Thirsa,Manhattan,Harlem,40.81216,-73.95036,Private room,150,1,1,2019-06-23,1.0,1,59 +31570962,A home away from home.,81636631,Jermaine,Brooklyn,Bedford-Stuyvesant,40.67893,-73.91014,Entire home/apt,100,3,0,,,1,89 +36095625,Comfortable cosy room,115939890,Ant,Manhattan,Stuyvesant Town,40.73143,-73.97549000000001,Shared room,56,1,0,,,1,3 +987329,ROOM NEAR TIMES SQUARE MANHATTAN,5369117,Rosa,Queens,Astoria,40.76491,-73.9207,Private room,78,4,70,2019-06-12,1.64,2,348 +30031616,Bright UES 1BR w/Doorman 15m walk to Central Park by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77196,-73.95175,Entire home/apt,255,30,0,,,232,157 +17129825,Fully furnished room on 110th St Broadway for rent,39091267,Ankit,Manhattan,Morningside Heights,40.80437,-73.96387,Shared room,35,1,0,,,1,0 +5601147,Spacious 1BR apt - Columbia U,11658596,Lucas,Manhattan,Morningside Heights,40.80469,-73.96381,Entire home/apt,100,1,0,,,1,0 +1089619,"Bright, Huge Room in 3 Bedroom Apt.",5986790,Gen,Manhattan,Washington Heights,40.83535,-73.94334,Private room,40,7,26,2019-06-25,0.67,6,272 +30733474,Flex Chk In Times - NYC Quick Stay,228263278,475,Manhattan,Harlem,40.8241,-73.94682,Private room,95,2,4,2019-06-16,0.93,4,180 +7724865,Gramercy Apartment,36195153,Ben,Manhattan,Kips Bay,40.73999,-73.98122,Private room,175,3,174,2019-06-24,3.66,1,194 +21264686,"Stunning Room, Perfect Location, Premium Bed ❤",14552154,Leslie,Manhattan,Midtown,40.74624,-73.98648,Private room,140,2,76,2019-06-19,3.73,4,148 +2578731,Spacious Modern 2BD Apartment,13207016,Jessica,Queens,Rockaway Beach,40.58451,-73.815,Entire home/apt,140,2,14,2014-10-31,0.22,1,0 +4564695,"Sunny, Quiet Queen Bedroom, Best Block in LES",619991,David,Manhattan,Lower East Side,40.72082,-73.98952,Private room,89,4,91,2019-06-01,1.86,1,16 +6972046,Large Private Upper West Side Room,23574544,Maxwell,Manhattan,Upper West Side,40.78567,-73.97665,Private room,150,1,7,2015-09-26,0.14,1,0 +33612527,Sonder | Theater District | Airy 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76142,-73.98629,Entire home/apt,212,29,0,,,327,349 +15866130,PRIVATE ROOM - BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.696,-73.91303,Private room,57,4,17,2019-05-19,0.66,2,307 +14121640,South Slope Modern 1+ Bedroom with Outdoor Space,16283468,Philip,Brooklyn,Sunset Park,40.66285,-73.9908,Entire home/apt,120,2,12,2018-07-08,0.33,2,27 +24834824,Quiet home,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92329000000001,Entire home/apt,62,30,2,2018-12-15,0.25,6,255 +6302423,Perfectly Located West Village Loft,31913986,Rachel,Manhattan,West Village,40.73318,-74.00745,Entire home/apt,245,3,62,2019-06-23,1.23,1,350 +13762234,Lovely 1BR on the Upper East Side,9251010,Marina,Manhattan,Upper East Side,40.7732,-73.95173,Entire home/apt,175,2,8,2016-12-12,0.23,1,0 +35319394,Luxury Brooklyn apartment private clean,48189481,Ajamu,Brooklyn,Prospect-Lefferts Gardens,40.65877,-73.9447,Entire home/apt,150,2,1,2019-07-02,1.0,1,25 +35970902,Stunning High Ceiling 2 Bedroom Apt!,145210031,Jesus,Brooklyn,Bushwick,40.69965,-73.92837,Entire home/apt,199,6,0,,,1,85 +34257861,2 Bedroom Empire State Building Apartment,258133009,Rovena,Manhattan,Murray Hill,40.74553,-73.97699,Entire home/apt,239,1,8,2019-06-24,4.53,1,140 +9271742,Spacious Private Ground Floor Studio Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.68375,-73.93313,Entire home/apt,110,2,122,2019-07-04,2.76,2,159 +32006626,Blue House on the Hill,222386455,Herman,Brooklyn,Cypress Hills,40.68099,-73.89264,Entire home/apt,165,2,18,2019-07-01,3.78,1,61 +7382982,Bright double room in West Village,19504544,Saga,Manhattan,West Village,40.72911,-74.00338,Private room,106,5,2,2016-01-02,0.04,1,0 +6304002,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68563,-73.94953000000001,Private room,60,30,23,2019-03-29,0.48,8,244 +1841356,Cozy spacious 1 bed in Murray Hill,9622750,Taran Pal,Manhattan,Kips Bay,40.74392,-73.9811,Private room,90,3,12,2016-03-08,0.18,3,0 +7580481,Bright & Stylish Studio in the LES,10622338,Hester,Manhattan,Lower East Side,40.71767,-73.99004000000001,Entire home/apt,160,1,26,2016-12-31,0.54,1,0 +29212737,PrivateRoom2/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.78029,-73.8184,Private room,49,1,50,2019-06-30,5.58,3,87 +17446640,Clean and Comfortable,118084951,Liza,Brooklyn,Greenpoint,40.72214,-73.93725,Entire home/apt,75,1,162,2019-06-24,5.7,1,1 +20435773,East Village 1 bedroom private apartment,61524907,Matthew,Manhattan,East Village,40.725,-73.97711,Entire home/apt,120,8,6,2018-09-12,0.27,1,0 +10684164,Private 1 Bdrm Apt - Prospect Park,19227044,Adam,Brooklyn,Flatbush,40.64945,-73.9624,Entire home/apt,75,7,1,2016-02-13,0.02,1,0 +32919980,CHARMING BEDROOM❤️HEART OF BROOKLYN,247673988,Adrian,Brooklyn,Bushwick,40.699290000000005,-73.93602,Private room,55,1,16,2019-07-02,4.36,2,169 +17544058,Quite and comfortable shared room in UES,94100043,Mohamed,Manhattan,Upper East Side,40.76675,-73.95428000000001,Shared room,35,1,118,2019-01-03,4.21,2,0 +30086057,Spacious Room / ✰ Prime Williamsburg ✰ / NYC,5179523,Max,Brooklyn,Williamsburg,40.71027,-73.95293000000001,Private room,75,1,0,,,3,43 +14026544,Spacious Quiet Room in the East Village,18595434,Amanda,Manhattan,East Village,40.72588,-73.98198000000001,Private room,95,1,7,2016-10-23,0.19,1,0 +30324051,"3 bedrooms, 2 bathrooms, huge open space!",91427536,Yoav,Brooklyn,Bushwick,40.69684,-73.92241,Entire home/apt,100,2,1,2019-01-01,0.16,2,5 +34278223,Luxury for Single Traveler,3577413,Rj,Manhattan,Financial District,40.70599,-74.00515,Entire home/apt,139,7,2,2019-06-11,0.92,1,1 +16630594,Private room with private entrance in Greenpoint!,51024366,Marie,Brooklyn,Greenpoint,40.738240000000005,-73.9537,Private room,99,2,6,2019-05-18,0.27,1,364 +31253484,Nice and quiet Room in Apart in Astoria New York,233834659,Shearyl,Queens,Astoria,40.76976,-73.92627,Private room,50,2,18,2019-07-03,5.14,1,24 +35342701,Cozy Quiet Bedroom 47 Buffalo 3F Room#3,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67816,-73.92368,Private room,60,1,4,2019-06-28,4.0,2,173 +26250832,Sun lit Room in Bushwick,48260592,Lizzy,Brooklyn,Bushwick,40.69922,-73.93762,Private room,40,4,0,,,1,0 +22108932,"Cosy private bedroom in Inwood 4 min to train 1,A",142724947,Yusra,Manhattan,Inwood,40.87328,-73.91458,Entire home/apt,70,21,7,2019-01-15,0.38,1,156 +5806829,"LOVELY APARTMENT, BIG LIVING ROOM",4473420,Sophiane,Brooklyn,Boerum Hill,40.68821,-73.9903,Private room,120,1,0,,,1,0 +888905,"Sunny bedroom, next to subway and Central Park",4714927,Elisa,Manhattan,East Harlem,40.78933,-73.94932,Private room,60,2,53,2019-06-19,0.86,4,0 +1126432,South Slope One-Bedroom with Garden Terrace,5268463,Christy,Brooklyn,Sunset Park,40.66065,-73.98817,Entire home/apt,120,3,13,2018-12-31,0.18,1,201 +15549056,Stay on Madison,53301314,Pascal,Manhattan,East Harlem,40.80832,-73.93889,Entire home/apt,200,3,58,2019-06-26,2.12,1,152 +36154590,Private and Cozy Bedroom.,214483712,Christina,Staten Island,Bull's Head,40.59475,-74.1637,Private room,50,30,0,,,3,364 +16241951,Relax and Tune In,354891,Liz,Brooklyn,Crown Heights,40.67715,-73.94543,Shared room,100,2,0,,,1,364 +36075404,Shared BR for Overnight Sleep,217595343,Jack,Manhattan,East Harlem,40.7982,-73.94422,Shared room,65,1,2,2019-06-30,2.0,2,170 +4181598,"HUGE 1BD, RENOVATED, TIME SQUARE !!",1475015,Mike,Manhattan,Hell's Kitchen,40.76239,-73.99226999999999,Entire home/apt,125,30,0,,,52,331 +9882271,Sunny Greenpoint minimalist rental,4483467,Daniel,Brooklyn,Greenpoint,40.73081,-73.95466,Entire home/apt,89,2,2,2017-05-15,0.07,1,0 +5006927,PRIVATE SUNNY ROOM IN BUSHWICK! ,25821864,Viva,Queens,Ridgewood,40.70739,-73.91498,Private room,65,3,5,2015-10-07,0.09,1,0 +7084130,Large Sunny Private Room,22095455,Danni,Manhattan,Civic Center,40.71674,-74.00334000000001,Private room,100,5,1,2015-08-03,0.02,1,0 +34258883,MIN WALK TO TRAIN/STORES/FOOD PLACES/NEAR HOSPITAL,241676154,Maria,Staten Island,Grant City,40.57801,-74.10869,Private room,29,21,0,,,2,281 +31599484,Entire apartment at the best part of Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.7133,-73.96341,Entire home/apt,120,5,12,2019-06-10,3.5,2,107 +9366053,Sunny and Spacious Room in Bushwick,258409,Stephanie,Brooklyn,Bushwick,40.701,-73.91593,Private room,90,3,6,2019-01-02,0.32,1,0 +26166442,Big bright room near iconic Red Hook hangouts,10448798,Kit,Brooklyn,Red Hook,40.67498,-74.01214,Private room,75,2,6,2018-10-27,0.5,1,0 +9484892,"Cozy, E.Vill room w/ private bath!",13667539,Brian,Manhattan,East Village,40.72145,-73.97881,Private room,75,1,2,2016-01-01,0.05,1,0 +20898536,Bright W.burg 2 bedroom with Giant Private Garden,3002665,Zoe,Brooklyn,Williamsburg,40.71459,-73.94485,Entire home/apt,200,1,17,2019-06-30,0.77,2,87 +769279,Room for rent in East Village,1228080,Sasha,Manhattan,East Village,40.72439,-73.97766999999999,Private room,100,7,1,2016-05-01,0.03,1,0 +20714088,SPACIOUS CLEAN ROOM 15 MINUTES FROM MAIN STREET,90893179,Sandra,Queens,College Point,40.77773,-73.83237,Private room,55,1,51,2019-06-22,2.29,1,65 +4405874,Master room super clean in Prospect Park!!!! :),2770375,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95414,Private room,90,4,12,2019-06-10,0.37,1,365 +9904386,East Village / Alphabety City Apt,10396448,Caroline,Manhattan,East Village,40.72626,-73.97822,Private room,100,1,4,2016-06-27,0.09,1,0 +135393,"Private, spacious room in Brooklyn",663764,Karen,Brooklyn,East Flatbush,40.651,-73.94886,Private room,50,2,263,2019-06-24,2.69,2,136 +31201605,Curated East Village Apt,233315617,Dana,Manhattan,East Village,40.72722,-73.97698000000001,Private room,115,2,12,2019-06-18,2.07,1,33 +13237057,City room 2 min walk from train (4),74179880,Silvia,Brooklyn,East New York,40.67323,-73.8892,Private room,39,3,71,2019-06-10,1.9,8,329 +20506551,Cozy bedroom in a spacious apartment.,111451636,Caleb,Manhattan,Washington Heights,40.84545,-73.94171999999999,Private room,50,2,1,2017-09-11,0.05,1,0 +34490375,Renovated Executive Suite near Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76267,-73.9839,Private room,100,1,0,,,15,328 +2671402,"1BR - gym, laundry in apt, roof ",706191,Rachel,Brooklyn,Williamsburg,40.71639,-73.95271,Entire home/apt,150,4,0,,,1,0 +2144319,"Cheap, furnished private room",10945216,Rebecca,Brooklyn,Crown Heights,40.67177,-73.95221,Private room,40,1,1,2014-01-04,0.01,1,0 +2645558,A bright spacious one-bedroom ,2653156,Lenny,Manhattan,Gramercy,40.73409,-73.98559,Entire home/apt,200,30,38,2019-01-14,0.65,1,170 +18488077,Simple bright room for 1-2 people.,1540270,Ava,Brooklyn,Bushwick,40.69983,-73.91625,Private room,40,3,7,2017-06-01,0.26,1,12 +29680105,1 Private Room in West Harlem,137380710,Bruce,Manhattan,Harlem,40.82723,-73.94216999999999,Private room,40,5,1,2019-02-18,0.21,1,0 +15535864,Sleek 1BR + private bath in beautiful brownstone,59909443,Kobby,Brooklyn,Bedford-Stuyvesant,40.67764,-73.92241,Private room,75,3,5,2018-09-09,0.15,1,145 +14219515,Private Room in Apartment with Balcony,59932595,Nnenna,Manhattan,East Harlem,40.80253,-73.94015999999999,Private room,45,21,0,,,1,0 +25745372,Beautiful Private Room & Bath in East Village Loft,193558362,Christine,Manhattan,East Village,40.72421,-73.97963,Private room,124,2,11,2019-05-20,0.94,1,3 +6860656,Your Cozy NYC Private Room Getaway!,15783878,Steven,Manhattan,Harlem,40.82094,-73.95622,Private room,185,2,14,2019-06-15,0.33,1,155 +8426584,Sunny large apt facing huge park. 20min2Manhattan,5354888,Clifford,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96144,Private room,80,1,169,2019-05-27,4.11,1,233 +795641,Weekend NY getaway? Holiday stay?,3472148,Brian,Queens,Ditmars Steinway,40.77452,-73.90889,Private room,60,1,0,,,1,0 +10119376,Queen Cabin with Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72152,-73.99476,Private room,159,1,9,2019-03-16,0.22,8,0 +36228485,Prospect Park Gem! One Room One Block from Park!,3678447,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65494,-73.9603,Private room,150,2,0,,,1,27 +26190559,Lapp House,196838948,Daniel,Queens,Kew Gardens Hills,40.72079,-73.82263,Entire home/apt,160,3,0,,,1,0 +14935151,Comfortable Bedroom near train.,69711528,Lucia,Bronx,Parkchester,40.83112,-73.87319000000001,Private room,49,3,25,2018-06-15,0.73,2,0 +11211612,Private Room in Williamsburg BK,57069428,Stuart,Brooklyn,Williamsburg,40.715,-73.95,Private room,50,1,0,,,1,0 +21042534,"Light, spacious apartment in trendy neighborhood",2575895,Kathy,Brooklyn,Crown Heights,40.67467,-73.9469,Entire home/apt,100,5,2,2019-04-21,0.66,1,0 +8733620,Lg private room minutes from subway,3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69053,-73.95631999999999,Private room,45,5,32,2017-12-26,0.7,4,0 +13230807,"Charming 1-Bed Apt, Brooklyn - 20 min to Manhattan",20907184,Valerie Lynn-McDonough,Brooklyn,Bay Ridge,40.633590000000005,-74.02301999999999,Entire home/apt,75,30,1,2016-06-12,0.03,1,191 +4137415,Private room overlooking yard in prime Bushwick,7410674,Jess And Josh,Brooklyn,Bushwick,40.70495,-73.9209,Private room,37,1,202,2019-07-01,3.74,1,73 +22389296,Spacious Bright Top Floor Apt w/ Balcony in LIC 2,25944182,Yves,Queens,Sunnyside,40.7387,-73.9283,Private room,76,2,53,2019-07-01,3.15,2,76 +25688649,Brooklyn Bedstuy Beauty,1557774,Nardia,Brooklyn,Bedford-Stuyvesant,40.68425,-73.9567,Entire home/apt,140,5,27,2019-06-16,2.12,1,0 +35712132,NEW MODERN & CLASSIC ENTIRE 2BED PRIVATE ENTRANCE,12549759,Koen,Brooklyn,Bedford-Stuyvesant,40.68656,-73.91920999999999,Entire home/apt,160,4,2,2019-06-20,2.0,2,34 +30695780,Heart of Upper East Side Home w/ washer-dryer,2939479,Danielle,Manhattan,Upper East Side,40.7751,-73.95294,Private room,125,3,2,2019-07-01,0.32,1,23 +169464,Creative Vintage Loft in S. Williamsburg,806774,Ali & SweetPea,Brooklyn,Williamsburg,40.70667,-73.96524000000001,Entire home/apt,85,2,86,2019-05-16,0.89,2,15 +18751261,"Park, Subway & All Conveniences",130452689,Meredith,Brooklyn,Greenpoint,40.72357,-73.95057,Entire home/apt,225,2,2,2018-08-22,0.09,1,34 +31089253,Cozy Sun Drenched Full Apt. 30 mins from City,232283561,Beverline,Bronx,East Morrisania,40.83026,-73.89102,Entire home/apt,200,1,26,2019-06-30,4.06,3,80 +33315595,Bright Top Floor + Private Terrace in Williamsburg,131057988,Brandon & Caitlyn,Brooklyn,Williamsburg,40.71419,-73.94138000000001,Private room,150,2,7,2019-06-29,2.66,1,48 +27543590,Manhattan Home Steps Away from Central Park!,104064206,Faateh,Manhattan,East Harlem,40.79574,-73.94684000000001,Private room,85,1,6,2018-10-08,0.55,1,0 +9842780,Grand apartment on 5th avenue,145616,Lauren,Manhattan,Greenwich Village,40.73238,-73.99517,Entire home/apt,300,3,0,,,1,0 +21022616,1 bedroom completely renovated in Brooklyn,2195090,Thomas And Madalena,Brooklyn,Crown Heights,40.67292,-73.94136999999999,Entire home/apt,75,1,2,2017-10-01,0.09,1,0 +23992091,"Cozy apartment in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.6485,-73.95156999999999,Entire home/apt,159,2,1,2019-01-01,0.16,3,191 +19314589,THE SMALL CHATEAU IN THE TREES,135272642,Stefanie Elizabeth,Manhattan,East Village,40.72408,-73.98297,Entire home/apt,165,1,202,2019-06-22,8.16,1,217 +24772376,Cozy private room in Astoria,16015663,Deniz,Queens,Ditmars Steinway,40.77371,-73.91689000000001,Private room,85,3,10,2019-06-04,0.79,1,88 +9867629,Spacious Apt in East Williamsburg,8013847,Michole,Brooklyn,Williamsburg,40.70774,-73.94139,Entire home/apt,170,2,17,2019-04-28,0.44,2,270 +19891896,Huge space right next to Central Park,125458231,Mohammad,Manhattan,Upper West Side,40.79403,-73.96314,Private room,85,1,0,,,1,363 +9809911,Classic Brooklyn Charm,50537550,Howard,Brooklyn,Bedford-Stuyvesant,40.68441,-73.91625,Entire home/apt,185,2,24,2019-06-24,0.56,1,365 +12099852,Spacious 1 Bedroom with City Views,42905408,Carolyn,Queens,Astoria,40.76856,-73.92591,Entire home/apt,165,1,0,,,1,0 +23630510,Confortable and full furnished private bedroom,101736132,Alex,Brooklyn,Bushwick,40.69051,-73.91557,Private room,50,3,0,,,2,86 +4932714,1 bd Artist Retreat in Brooklyn,25295888,Alanna,Brooklyn,Bedford-Stuyvesant,40.67917,-73.92565,Private room,52,2,16,2017-09-30,0.37,1,0 +3084473,One Bedroom Apartment ,5691429,Patrick,Manhattan,Morningside Heights,40.807390000000005,-73.95918,Entire home/apt,100,1,5,2014-12-22,0.08,1,0 +9843884,Beautiful and Warm Garden Apartment,50686888,Nadine,Brooklyn,East New York,40.6682,-73.88541,Entire home/apt,150,30,16,2018-11-03,0.37,1,365 +8146444,Sunny 1 bedroom in Brooklyn!,12796091,Rebeckah,Brooklyn,Crown Heights,40.67658,-73.95786,Entire home/apt,90,3,14,2017-01-02,0.3,1,0 +20480431,Charming home away from home,146205943,Jacqueline,Brooklyn,East Flatbush,40.66393,-73.9279,Entire home/apt,110,1,80,2019-05-26,3.57,1,81 +35487169,Lavish Private Room with Bathroom/Williamsburg2,248161322,Sergii,Brooklyn,Bushwick,40.70109,-73.93952,Private room,79,30,0,,,14,365 +35195090,"Charming, bright one-bedroom",17151691,Sara,Brooklyn,Clinton Hill,40.69143,-73.968,Entire home/apt,110,4,0,,,1,0 +9185329,"Sunny, Spacious, Botanical Greenpoint 1 Bdrm",17615713,Merrily,Brooklyn,Greenpoint,40.72697,-73.94712,Entire home/apt,108,7,19,2019-06-21,0.43,1,21 +19114715,"Cozy and comfortable bedroom in Astoria, Queens",32219638,Jorge,Queens,Astoria,40.7683,-73.9331,Private room,50,1,28,2019-07-06,1.5,1,175 +21184343,"Lovely, charming and clean bedroom in Manhattan.",54198006,Bel And Camila,Manhattan,East Harlem,40.79567,-73.9366,Private room,150,1,44,2019-06-21,2.07,2,305 +34978133,Spacious 1 bed in the heart of Manhattan,263533090,Vin,Manhattan,East Village,40.7266,-73.9875,Entire home/apt,175,20,2,2019-05-24,1.3,1,27 +31980005,Charming 2BR 1BA in the center of Soho,230165497,Lara,Manhattan,Nolita,40.72157,-73.99432,Entire home/apt,199,30,0,,,4,365 +30374290,Private Bedroom w/ Queen Size bed in Williamsburg,19868844,André,Brooklyn,Williamsburg,40.71115,-73.95825,Private room,60,2,14,2019-06-03,1.99,1,0 +3529500,Gorgeous pre war rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68388,-73.94426999999999,Entire home/apt,151,5,52,2019-06-19,0.91,5,333 +15162388,West 57th Hilton Club in NYC - mid-November,96202421,Dan,Manhattan,Midtown,40.76529,-73.97713,Private room,350,3,0,,,1,0 +45936,Couldn't Be Closer To Columbia Uni,867225,Rahul,Manhattan,Morningside Heights,40.80549,-73.95924000000001,Private room,99,4,122,2019-05-14,1.18,2,233 +16289203,Huge Bedroom - East Village - NYC,42422050,Paula,Manhattan,East Village,40.72709,-73.97459,Private room,79,2,19,2019-03-16,0.67,2,244 +28172195,"Spacious, Bright Duplex Apartment with a Skylight",13415893,Porsha & Jordan,Brooklyn,Crown Heights,40.67,-73.95091,Entire home/apt,89,2,0,,,1,6 +32378301,Charming Studio in Brooklyn Heights,44948759,Caroline,Brooklyn,Brooklyn Heights,40.69757,-73.99335,Entire home/apt,100,1,1,2019-03-13,0.25,1,0 +3840286,"Modern, sunny two bedroom",1482208,Allison,Brooklyn,Williamsburg,40.71159,-73.94043,Entire home/apt,246,2,25,2019-03-31,0.54,2,0 +4867876,Sunny and Spacious Brooklyn Apt,25037051,Ruth,Brooklyn,Crown Heights,40.67006,-73.9553,Private room,70,1,10,2017-01-02,0.18,2,0 +9371173,1 bedroom in Williamsburg,6337128,Tara,Brooklyn,Greenpoint,40.72096,-73.94574,Entire home/apt,120,4,0,,,1,0 +35569130,Spacious Room_2,265057419,Dameon,Brooklyn,East New York,40.67072,-73.86946999999999,Private room,68,3,0,,,2,363 +24379279,Spacious Room,184000316,Ebony,Brooklyn,East New York,40.66972,-73.88393,Private room,55,1,1,2018-08-28,0.09,1,87 +29926001,Room next to Central Park,158970615,Lia,Manhattan,Upper East Side,40.76464,-73.9593,Private room,115,1,54,2019-05-27,7.47,1,0 +35064738,Hudge Appartment in Manhattan,35276933,Mohamed,Manhattan,Washington Heights,40.85638,-73.92921,Entire home/apt,80,70,0,,,1,37 +34209710,Cozy Room for Female Guests/ just 30sec to Subway!,63834320,Minami & Takuya,Brooklyn,Bushwick,40.70058,-73.91123,Private room,65,2,8,2019-07-07,3.93,1,19 +9052018,Near Museum Mile and Central Park,47228873,James,Manhattan,East Harlem,40.78972,-73.9503,Private room,195,1,0,,,1,0 +4821331,Lofty Brownstone Floor-Through,24827643,Danny,Brooklyn,Cobble Hill,40.68617,-73.99632,Entire home/apt,275,10,1,2016-05-06,0.03,1,1 +14779359,"3 BD,2 BTH, Doorman,15 mins to Midtown",47219202,Roy & Rita,Manhattan,Harlem,40.8222,-73.94323,Entire home/apt,199,2,15,2019-07-07,0.58,1,54 +16362150,Bright and Cozy 1BR in Crown Heights,5659683,Morgan,Brooklyn,Crown Heights,40.677690000000005,-73.95309,Entire home/apt,100,3,5,2019-06-25,0.17,1,8 +31142239,Brooklyn Retreat,232749708,Winston,Brooklyn,East Flatbush,40.65546,-73.92031,Entire home/apt,300,2,12,2019-04-14,1.95,1,352 +19738203,"1 Bedroom Apartment +Crown Heights, Brooklyn",34039463,Sini,Brooklyn,Crown Heights,40.67081,-73.92765,Private room,100,1,0,,,1,0 +33400202,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70832,-74.00755,Private room,169,7,1,2019-05-17,0.57,13,358 +19960443,LARGE BEDROOM WITH ROOFTOP/WASHER/DRYER,140821239,Masaki,Manhattan,Upper East Side,40.7817,-73.94731,Private room,100,2,25,2018-05-02,1.09,1,0 +18878260,Dreamy Leafy Tranquility for families + new SUV!,5374369,Chelsea And Alistair,Brooklyn,Carroll Gardens,40.68329,-73.99764,Entire home/apt,245,3,24,2019-07-01,0.97,1,13 +1814010,"Large, Private 1BR in Noho/Nolita/Soho",3257486,Drew,Manhattan,NoHo,40.72644,-73.9923,Entire home/apt,175,2,25,2018-12-29,0.36,1,273 +20389491,Comfortable Stay in Crown Heights :),68011294,Shay & Adam,Brooklyn,Crown Heights,40.66583,-73.93563,Entire home/apt,70,30,4,2018-11-17,0.18,1,61 +22019519,Manhattan New York luxurious hotel,160792280,Dez,Manhattan,Midtown,40.76583,-73.98087,Entire home/apt,200,1,1,2017-12-02,0.05,2,0 +26190809,UWS room perfect for NYC weekend,27474188,Janice,Manhattan,Upper West Side,40.7975,-73.97099,Private room,74,2,2,2018-07-30,0.16,3,0 +2611765,Luxury One Bedroom Upper West Side,10331953,Omar,Manhattan,Upper West Side,40.79071,-73.97408,Entire home/apt,145,3,8,2016-06-13,0.13,1,0 +30688108,NEW - Manhattan - Private room near Central Park,224311652,Adrien,Manhattan,East Harlem,40.79852,-73.93769,Private room,79,1,31,2019-06-22,4.63,1,0 +9125932,Modern and Quaint (long term 3 weeks or more),1519189,Annie,Brooklyn,Bedford-Stuyvesant,40.69342,-73.94322,Entire home/apt,100,15,3,2016-08-01,0.07,2,211 +690349,Full 1BR Apartment in Park Slope,3540041,Peter,Brooklyn,South Slope,40.66481,-73.98366999999999,Entire home/apt,179,2,77,2019-06-24,0.97,1,0 +23304600,T-Square Stylish 1 Bedroom,11789627,Maxime,Manhattan,Hell's Kitchen,40.7623,-73.99096,Entire home/apt,172,4,27,2019-06-16,1.75,1,42 +35892874,3 Bedroom Loft Like Triplex 2.5 Bath with Garden.,269970642,Rita,Manhattan,Harlem,40.80778,-73.94762,Entire home/apt,200,120,0,,,1,365 +7024303,LIGHTFILLED ONE BEDROOM LOFT,2750745,Sarah,Brooklyn,Bedford-Stuyvesant,40.69039,-73.95947,Entire home/apt,120,2,4,2017-10-29,0.08,1,0 +1793411,Union Square/East Village Apartment,2273886,Ki,Manhattan,East Village,40.7312,-73.98857,Entire home/apt,199,5,4,2015-12-01,0.06,1,0 +32676082,Large One Bedroom Suite With Kitchen in Midtown,244559229,Stewart Hotel,Manhattan,Chelsea,40.74913,-73.99128,Private room,100,1,4,2019-06-30,1.85,9,323 +21313668,A Beautiful Studio in Upper West Side,30426158,Bryan,Manhattan,Upper West Side,40.78456,-73.97933,Entire home/apt,150,4,2,2017-12-09,0.1,2,0 +13100305,Spacious 1 bedroom 1 bath,72779585,Vanessa,Brooklyn,Crown Heights,40.67702,-73.95864,Entire home/apt,105,2,7,2019-04-28,0.18,1,32 +26255392,Large one bedroom on the Upper East Side.,64097192,Lisa,Manhattan,Upper East Side,40.77055,-73.95509,Entire home/apt,150,2,28,2019-07-01,2.25,1,0 +23455982,1 SUNNY MASTER BEDROOM LOWER EAST SIDE,4781753,Rhian,Manhattan,Lower East Side,40.721070000000005,-73.9834,Private room,100,7,0,,,1,0 +11521447,Sunny & Spacious 1br Lower East Side Apartment,19249692,Peter,Manhattan,Chinatown,40.71659,-73.98949,Entire home/apt,199,3,92,2019-07-06,2.28,1,48 +30392930,Bright + Mod Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71488,-74.00686999999999,Entire home/apt,332,30,1,2019-02-05,0.19,232,1 +29051841,Amazing Penthouse,213781715,Anting,Brooklyn,Greenpoint,40.73079,-73.95193,Entire home/apt,350,1,1,2018-11-10,0.12,33,0 +7603389,Private Room in Downtown Manhattan,39875363,James,Manhattan,Chelsea,40.7438,-73.99750999999999,Private room,118,2,259,2019-07-01,5.44,1,47 +21108401,Private Large Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71727,-73.95597,Private room,60,4,36,2019-05-03,1.67,4,0 +34937986,(B) Private Single Twin Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72718,-73.86541,Private room,55,1,3,2019-06-19,2.57,10,120 +848718,Spacious & Comfy by Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.6593,-73.95685999999999,Private room,75,3,46,2019-06-06,0.82,3,311 +35899414,"Rise & Shine: Home in Ditmas, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.6392,-73.96499,Entire home/apt,75,2,1,2019-06-30,1.0,2,32 +33989177,Large Private Room in Brownstone (4th fl),897871,Raphael,Brooklyn,Bedford-Stuyvesant,40.68171,-73.93346,Private room,90,4,1,2019-05-30,0.75,1,0 +10958668,Large Cozy Room in Prospect Heights,4269459,Lindsey,Brooklyn,Crown Heights,40.67734,-73.96076,Private room,35,1,2,2016-03-13,0.05,1,0 +34035571,Beautiful Place in the Heart of Williamsburg,457147,Florent,Brooklyn,Williamsburg,40.71191,-73.95598000000001,Private room,75,7,2,2019-06-08,1.58,1,324 +32008192,Brooklyn Bohemian 2 Bedroom Loft,5339839,Jodi,Brooklyn,Bedford-Stuyvesant,40.68357,-73.95449,Entire home/apt,295,7,0,,,1,0 +21161871,Entire apartment in Turtle Bay,3778274,AJ And Freddy,Manhattan,Midtown,40.75643,-73.96847,Entire home/apt,120,2,7,2019-01-01,0.36,2,0 +33719279,UPPER EAST SIDE BEST ROOM,254172441,Adi & Naor,Manhattan,Upper East Side,40.78034,-73.94861,Private room,70,1,4,2019-06-09,2.0,1,0 +17605729,Clean Green Artsy Apartment with Great Kitchen,90731801,Domenica,Manhattan,East Village,40.72833,-73.98118000000001,Private room,70,3,3,2017-06-09,0.11,1,0 +20649922,Sunny room in the heart of WILLIAMSBURG Brooklyn.,21921891,Manuel,Brooklyn,Williamsburg,40.71215,-73.95177,Private room,80,5,1,2017-08-25,0.04,1,0 +7733896,Big Master bedroom with attached Private Bathroom,1036161,Blake,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95016,Private room,220,1,88,2019-06-02,1.84,2,60 +9111561,"East Harlem Cozy, Rustic Apartment!",35905254,Rose,Manhattan,East Harlem,40.79423,-73.94214000000001,Private room,100,1,0,,,1,0 +10209973,GREAT BIG ROOM IN APT. W/ BALCONY,9532490,Alexandra,Manhattan,East Village,40.73008,-73.98996,Private room,91,4,8,2018-04-12,0.19,3,0 +2081394,Apartment-NYC-LES-Lower East Side,2707940,Adrien,Manhattan,Lower East Side,40.71864,-73.98496,Entire home/apt,190,1,2,2015-07-13,0.04,1,0 +29433879,East Village 2Bdrm apt with Rooftop and City Views,43957041,Amy,Manhattan,East Village,40.72726,-73.97934000000001,Entire home/apt,300,4,3,2019-05-27,0.47,1,0 +7801034,"Great, sunny 1 bedroom apartment in prime location",41060870,Dan And Lily,Manhattan,Lower East Side,40.72077,-73.98550999999999,Entire home/apt,160,4,0,,,1,0 +17092,Cool Room in Hell's Kitchen,66243,Enzo,Manhattan,Hell's Kitchen,40.76342,-73.98865,Private room,51,7,23,2019-06-01,0.43,1,88 +33788019,Sun-Filled 3 Bedroom Apartment in Bronx,251704655,Hamza,Bronx,Port Morris,40.80273,-73.91519,Entire home/apt,115,4,9,2019-07-02,3.97,3,124 +32125944,Perfect East Village Loft,238779678,Dustin,Manhattan,East Village,40.72764,-73.9906,Private room,60,30,0,,,9,343 +16719568,Sunny 1 bedroom in the heart of Greenpoint,7857773,Caroline,Brooklyn,Greenpoint,40.72411,-73.94181999999999,Entire home/apt,130,2,21,2018-05-25,0.94,1,0 +27257929,AWESOME SUNNY 2 BEDS C NEAR 3 METROS WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.70757,-73.94466,Private room,86,2,23,2019-07-01,2.18,3,365 +15865251,Manhattan - Upper East Side Lovely Private Bedroom,69406365,Yoko,Manhattan,Upper East Side,40.77097,-73.94861999999999,Private room,60,1,27,2017-06-30,0.88,2,0 +2022958,Elegant 1BR @ Columbus Circle,195168,Raees,Manhattan,Hell's Kitchen,40.76709,-73.98577,Entire home/apt,250,3,16,2016-10-15,0.24,1,0 +6403485,Homey 1 BR apartment in Harlem,33394459,Alana,Manhattan,Harlem,40.80645,-73.95260999999999,Entire home/apt,100,14,2,2016-01-07,0.04,1,0 +14278303,Gorgeous Apartment with Balcony & Terrace,792365,Eytan,Brooklyn,Williamsburg,40.71677,-73.94124000000001,Entire home/apt,200,4,9,2019-06-29,0.26,1,9 +20382522,"Apartment in Harlem on 145th St, next to 3 train.",13246721,Jay,Manhattan,Harlem,40.8216,-73.93679,Private room,86,1,1,2017-12-02,0.05,1,0 +9348941,Spacious 1 BR in Midtown East,7992346,Nikali,Manhattan,Midtown,40.75218,-73.97216999999999,Entire home/apt,149,1,0,,,1,0 +17684828,Amazing Astoria New York 2 bedroom 10 min to NYC,120456470,Nicholas,Queens,Ditmars Steinway,40.77411,-73.90926,Entire home/apt,200,5,42,2018-12-07,1.55,1,77 +33680825,Studio on East Williamsburg,17524733,David,Brooklyn,Bushwick,40.68383,-73.90857,Entire home/apt,65,6,2,2019-05-16,0.8,1,19 +4885240,2BR Entire Floor Apt in Flatiron,210602,Deepen,Manhattan,Chelsea,40.73932,-73.99032,Entire home/apt,300,1,0,,,1,0 +21354164,Bushwick 1Br on Jefferson St.,32941922,Trevor,Brooklyn,Bushwick,40.70442,-73.92553000000001,Entire home/apt,200,2,2,2017-12-03,0.1,1,0 +12472883,Private room in apt,12114372,Kaylin,Manhattan,Gramercy,40.73631,-73.98525,Private room,150,7,0,,,1,0 +31696775,Quiet & Peaceful room in Astoria!,151557263,Sadhya,Queens,Astoria,40.76333,-73.91187,Private room,45,2,13,2019-07-01,2.57,1,53 +24799437,Private Bedroom in Bushwick / Myrtle-Wyckoff L & M,58953152,Dmitry,Brooklyn,Bushwick,40.70065,-73.91135,Private room,49,1,29,2019-05-19,2.03,2,0 +34932465,Bright Bedstuy Bedroom,263228548,Alea,Brooklyn,Bedford-Stuyvesant,40.68716,-73.923,Private room,50,1,3,2019-06-09,2.73,1,0 +1281257,1BR LUXURY PENTHOUSE MODERN CONDO,2577135,Elena,Manhattan,Financial District,40.70735,-74.00971,Entire home/apt,269,5,18,2018-10-13,0.29,1,179 +32573359,Sonder | The Nash | Central 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74921,-73.97395,Entire home/apt,308,2,6,2019-06-09,1.55,327,81 +28424657,Nice Room,214586580,Tina,Queens,Astoria,40.7708,-73.92685999999999,Private room,55,30,19,2019-01-08,1.92,1,184 +25255024,"Lovely, Spacious & Private Garden Apt in Bronx, NY",159495469,Keren J,Bronx,Pelham Gardens,40.86681,-73.84073000000001,Entire home/apt,86,2,41,2019-06-16,3.18,1,111 +36133,Classic Artist Loft Williamsburg,142684,White,Brooklyn,Williamsburg,40.71536,-73.96056999999999,Private room,125,3,155,2019-06-13,1.61,1,1 +3870294,Large 1-Bedroom by Subway with Elevator and Charm!,736815,Irena,Manhattan,East Village,40.72471,-73.98673000000001,Entire home/apt,250,4,28,2019-06-09,0.49,1,4 +9750406,Bushwick studio,3051323,Casey,Brooklyn,Bushwick,40.69917,-73.93178,Entire home/apt,72,20,0,,,1,0 +32135728,⭐Sleeps 10 ⭐ Rare 4 Bedroom ⭐ 30 Mins to NYC ⭐,171646902,Sophie,Queens,Elmhurst,40.73102,-73.87383,Entire home/apt,300,2,20,2019-06-25,6.32,1,298 +20483387,Bed-Stuy top floor room w/ extreme natural light,6824234,Stephan,Brooklyn,Bedford-Stuyvesant,40.6897,-73.93078,Private room,50,4,1,2018-01-03,0.05,1,0 +5646613,Room available in 2 br apartment,9503725,Shane,Queens,Astoria,40.762240000000006,-73.92023,Private room,80,7,0,,,1,0 +31416434,"Upscale Adorbable Room, Amazing",235305665,Dave,Manhattan,East Harlem,40.78953,-73.9432,Private room,65,1,4,2019-06-17,0.7,2,69 +14628409,WINTER PROMO! BKLN - LG 2bd/ modern/comfy/CLEAN!,7978333,Chana & Chike,Brooklyn,Greenpoint,40.72976,-73.95189,Entire home/apt,150,2,154,2019-06-30,4.5,1,271 +27195566,1 BR apartment near Times Square,92772140,Alex,Manhattan,Hell's Kitchen,40.76035,-73.99524,Entire home/apt,200,2,22,2019-05-27,2.06,1,155 +9689477,Large Studio - Lincoln Center,42694270,Thomas,Manhattan,Upper West Side,40.77401,-73.99056,Entire home/apt,155,4,6,2017-08-02,0.14,1,0 +8955506,Large Room in Artist Loft,20627781,Grace,Brooklyn,Greenpoint,40.72569,-73.95515,Private room,56,2,1,2016-01-03,0.02,1,0 +34208237,Entire Magnificent Townhouse,98039499,Luigi,Manhattan,Upper East Side,40.77052,-73.96683,Entire home/apt,249,5,6,2019-06-25,3.27,1,116 +8208285,Cute East Village 2 Bedroom Apt.,22572797,Amy,Manhattan,East Village,40.72504,-73.97905,Entire home/apt,180,1,146,2019-06-19,3.14,1,270 +22448487,Renovated 1 bedroom in Bedstuy Brooklyn brownstone,4823243,Janelle,Brooklyn,Bedford-Stuyvesant,40.68317,-73.92777,Entire home/apt,139,2,9,2019-04-07,1.08,1,57 +15597266,Beautiful home near beach & JFK!,97536353,Chadine,Queens,Arverne,40.59055,-73.79281,Private room,60,1,5,2017-10-17,0.16,2,158 +26420626,Ladies bedroom Bed 4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69299,-73.95675,Shared room,38,1,21,2019-07-04,1.77,34,365 +77765,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73749,-73.95291999999999,Private room,179,3,36,2019-07-01,0.36,28,79 +10827567,Renovated 1 bdrm apt close to city,31411094,Ronit,Brooklyn,Crown Heights,40.6725,-73.93981,Entire home/apt,98,3,128,2019-06-06,3.1,1,342 +34447510,Prime apt in the heart of the LES,16212805,Helee,Manhattan,Lower East Side,40.71967,-73.9853,Entire home/apt,130,5,0,,,1,0 +30759268,Cute 2BR in the middle of West Village,230165497,Lara,Manhattan,West Village,40.73103,-74.00197,Entire home/apt,155,30,0,,,4,0 +341982,"Lincoln Center Studio, Clean&Sunny!",483013,Yj,Manhattan,Upper West Side,40.77577,-73.98258,Entire home/apt,99,2,36,2015-08-23,0.45,1,0 +16487077,"East 29th Street, Luxury 1bd",22541573,Ken,Manhattan,Midtown,40.74593,-73.98687,Entire home/apt,200,30,0,,,87,365 +13101260,Spacious Sun Drenched Brick Encrusted Loft,676499,Abe,Manhattan,East Village,40.72487,-73.98125,Entire home/apt,175,4,3,2017-06-30,0.08,1,0 +27529129,Private bedroom with full sized bed,193502084,Linda,Brooklyn,Borough Park,40.63844,-74.00232,Private room,40,1,9,2019-03-23,0.82,8,0 +16413742,Large Bushwick private bedroom,561033,Neil,Brooklyn,Bushwick,40.6998,-73.93781,Private room,63,3,19,2019-06-20,0.68,1,160 +10847901,"Huge, sunny private room - 1 block from train",38116129,Marissa,Brooklyn,Bensonhurst,40.60729,-74.00117,Private room,68,2,39,2019-01-02,1.1,1,0 +12990172,Furnished 1 Br Near Columbia,37194964,Shutong,Manhattan,Morningside Heights,40.81488,-73.95886,Entire home/apt,110,7,0,,,1,0 +9970995,"Private BR in nice 4BR, Brooklyn",24332919,Gregoire,Brooklyn,Williamsburg,40.72003,-73.94147,Private room,63,7,1,2016-01-05,0.02,1,0 +34755449,A friendly place to stay,57230304,Imanuelly,Queens,Elmhurst,40.73156,-73.88551,Private room,90,7,2,2019-06-30,1.58,3,337 +27578298,Large studio apt in Grammercy,506194,Shivani,Manhattan,Kips Bay,40.73995,-73.98401,Entire home/apt,150,15,1,2018-09-11,0.1,1,5 +6673630,Stylish L.E.S Studio,6591262,Natasha,Manhattan,Lower East Side,40.71661,-73.98916,Entire home/apt,150,3,1,2015-08-01,0.02,1,0 +35461095,Sunny Private BR Apt in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69632,-73.97395999999999,Private room,48,30,0,,,25,68 +14918238,Beautiful Sunny Small Room,93743081,Sharon,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.95528,Private room,60,1,204,2019-07-04,5.92,1,163 +25610763,Large cozy bedroom close to Times Square 43D4,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99674,Private room,62,7,3,2019-06-02,0.52,47,324 +23789480,Queen Charlotte’s in B’klyn (accommodation for 1),37401126,Leah,Brooklyn,East Flatbush,40.64016,-73.94057,Private room,50,2,35,2019-05-27,2.22,4,296 +19531541,Spacious and Modern is this 2 Bedroom Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.63801,-73.89845,Entire home/apt,200,3,7,2018-10-14,0.31,3,363 +3262238,Murray Hill Modern,124345,Ramon,Manhattan,Kips Bay,40.74436,-73.97977,Entire home/apt,250,5,49,2019-06-30,0.83,1,234 +19267834,Rainbow Guesthouse,124399442,Igor,Brooklyn,Midwood,40.61359,-73.95983000000001,Shared room,32,1,8,2019-06-30,0.32,4,21 +2488227,COZY 1 BR IN COOL LOWER EAST SIDE,12732385,Asaf,Manhattan,Lower East Side,40.72005,-73.98609,Entire home/apt,180,6,55,2019-06-15,0.85,1,97 +9679058,Private bedroom in Williamsburg,5731898,Sofia,Brooklyn,Williamsburg,40.70794,-73.9566,Private room,90,3,28,2017-12-10,0.65,2,0 +11767644,2 BEDROOM Apartment - Walk to Train!,62634797,Demetra,Queens,Sunnyside,40.73949,-73.9282,Entire home/apt,95,21,102,2019-01-08,2.9,1,138 +10922889,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.70985,-73.98724,Shared room,35,14,2,2017-10-01,0.08,28,320 +22833434,"UWS Super Host, Spacious Room near Central Park,CU",17848380,Yi Qun,Manhattan,Upper West Side,40.79551,-73.97221,Private room,120,1,14,2018-12-08,0.81,3,360 +29628681,New York Apartment close to many attractions,223027077,Keegan,Manhattan,Upper East Side,40.7631,-73.95866,Entire home/apt,150,1,2,2018-12-30,0.25,1,0 +32239170,FairPlay BNB for alternative life style renters!,241924064,Alice,Staten Island,Shore Acres,40.60525,-74.06745,Entire home/apt,300,1,0,,,1,87 +8354383,Artist 1.5 bedroom WHOLE apartment!,38204730,Kathy,Manhattan,Gramercy,40.735240000000005,-73.98441,Entire home/apt,239,5,2,2019-01-05,0.05,3,30 +3362302,TRENDY LOWER EAST SIDE STUDIO,16962600,Debris,Manhattan,Lower East Side,40.71866,-73.98592,Entire home/apt,125,7,4,2015-01-30,0.07,1,0 +10524983,Midtown West luxury one bedroom,49380531,Autumn,Manhattan,Hell's Kitchen,40.76696,-73.99139,Private room,90,1,0,,,1,0 +1059891,"“L l,x w w. XThank &mftkn. .",11837926,Anthony,Manhattan,Midtown,40.76463,-73.98111999999999,Private room,150,7,44,2019-05-31,0.74,3,365 +26690586,Ionic Room close to NYC,183321912,Iris,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95379,Private room,65,30,30,2019-05-31,2.71,2,361 +13843286,Charming WV 1BR on Historic Street,11791986,Fawn,Manhattan,West Village,40.73511,-74.0037,Entire home/apt,325,3,29,2019-06-17,0.84,1,349 +36282337,Sunny Jr 1 Bed in Clinton Hill,17211451,Jamila,Brooklyn,Clinton Hill,40.68316,-73.96289,Entire home/apt,84,30,0,,,1,39 +27131829,Heart of Bushwick 2 minutes to the L train,23074465,John,Brooklyn,Bushwick,40.70181,-73.91566,Private room,65,1,44,2019-07-01,5.34,3,27 +35545626,Large quite apartment across from beautiful park,7271522,Mordechai,Manhattan,Morningside Heights,40.80695,-73.9654,Entire home/apt,250,7,0,,,1,10 +1072481,Bedroom for two in Chelsea,5479559,Michael,Manhattan,Chelsea,40.74573,-73.99712,Private room,70,1,206,2019-06-19,2.72,1,15 +33572668,Master bedroom in Luxury High Rise,107393843,James,Manhattan,Financial District,40.70824,-74.01403,Private room,125,4,1,2019-05-25,0.67,1,0 +16315491,AWESOME CHARMING ROOM C WITH ROOF DECK ACCESS :),29650513,Katie Graham,Brooklyn,Clinton Hill,40.69307,-73.96183,Private room,97,30,13,2019-05-20,0.41,6,332 +2702351,"Spacious, Safe, and Furnished",13829968,Jonathan,Manhattan,Harlem,40.82907,-73.94939000000001,Entire home/apt,90,5,16,2019-06-08,0.25,1,3 +17223725,"Artistic Room with AC,3 Mins walk to the subway",37163867,Mada,Queens,Long Island City,40.75455,-73.92005999999999,Private room,80,30,18,2019-07-01,0.62,1,92 +20889280,Colorful entire studio with city views by subway!,44707578,Nick,Manhattan,Harlem,40.81953,-73.95665,Entire home/apt,115,5,0,,,1,0 +19114447,Beautiful douplex with garden in crown heights!!,5434236,Andrea,Brooklyn,Crown Heights,40.67615,-73.92935,Entire home/apt,188,3,11,2018-08-24,0.45,1,144 +25541772,Luxurious and Spacious 2 Bedroom Brownstone,192713943,Killian,Brooklyn,Clinton Hill,40.681090000000005,-73.96193000000001,Entire home/apt,350,2,0,,,1,18 +21428231,Adorable room in AMAZING Chelsea apartment!,155318905,Samantha,Manhattan,Chelsea,40.74314,-73.99898,Private room,95,1,2,2017-11-06,0.1,1,0 +13298512,"Large Bedroom in Clinton Hill/Bed-Stuy, Brooklyn!",6444963,Tiffany,Brooklyn,Bedford-Stuyvesant,40.69041,-73.96025999999999,Private room,50,6,3,2019-02-11,0.08,1,3 +20761296,Huge Room in Beautiful New Renovated Apartment,146030957,Bryan,Queens,Astoria,40.77028,-73.92112,Private room,45,5,20,2019-06-19,0.89,1,16 +14668622,Peaceful and Quiet in the heart of TriBeca,4613888,Daniel,Manhattan,Tribeca,40.71705,-74.00935,Entire home/apt,350,1,0,,,1,327 +5766895,Charmingly Rustic Apt in Ft Greene,3448931,Rachel,Brooklyn,Clinton Hill,40.69174,-73.96871999999999,Entire home/apt,195,3,6,2017-05-29,0.12,1,0 +7180015,"private room, cute&cozy apartment",37614545,Linda,Queens,Astoria,40.75871,-73.91112,Private room,85,1,0,,,1,0 +11509497,HUGE LIGHTENED ROOM / APARTMENT BROOKLYN,60639864,Joseph,Brooklyn,Bedford-Stuyvesant,40.68962,-73.95169,Private room,79,1,16,2019-06-19,0.41,1,0 +28625897,"Near A/C/L/3 trains! Two comfy beds, good vibes.",97546900,Regina,Brooklyn,Brownsville,40.6676,-73.90954,Private room,75,2,33,2019-06-23,3.45,1,20 +21738084,"Cozy and Relaxing, An East Williamsburg Getaway",125697192,Hollye,Brooklyn,Williamsburg,40.71417,-73.93767,Private room,60,2,75,2019-06-20,3.78,1,23 +30186632,**Bed-Stuy Studio**,2823246,Paige,Brooklyn,Bedford-Stuyvesant,40.68377,-73.95804,Entire home/apt,70,4,1,2018-11-23,0.13,1,0 +36308658,Room 2: Sunny Queen W Private Bathroom & Breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93345,Private room,75,1,0,,,3,137 +16854141,"Snug, Cozy 1 bedroom Apartment",18595156,Dwane,Brooklyn,East New York,40.65877,-73.89631,Entire home/apt,100,1,68,2019-06-08,2.27,1,364 +15126304,Cozy studio,10209118,Emre,Manhattan,Upper East Side,40.77336,-73.95054,Entire home/apt,105,3,0,,,1,0 +4199411,Greenwich Village Living!,21787420,Mo,Manhattan,East Village,40.73062,-73.99122,Entire home/apt,350,2,0,,,1,0 +82549,Columbia Castle in Brooklyn Heights,448312,Christopher,Brooklyn,Brooklyn Heights,40.6926,-73.99831999999999,Private room,100,3,66,2016-09-16,0.68,2,0 +32356294,Large Bedroom with Private Entrance,2487323,Maddy,Brooklyn,Greenpoint,40.73446,-73.9523,Private room,61,14,0,,,1,157 +9618477,Warm Warm Wooded Quiet City Escape,38284667,Ruth,Manhattan,East Village,40.72888,-73.98193,Entire home/apt,160,160,2,2015-12-14,0.05,2,363 +35233074,Spacious Duplex Family Home | 10 min to Midtown,264142178,Thiago,Queens,Long Island City,40.76383,-73.9297,Entire home/apt,275,1,3,2019-07-01,3.0,1,339 +23131011,Catlandia!,127586030,Daniella,Brooklyn,Prospect-Lefferts Gardens,40.66322,-73.95142,Private room,50,2,58,2019-07-06,3.44,1,52 +690960,Guestroom w/ 2 beds 20 mins to NYC ,3531317,Ingrid,Brooklyn,Bushwick,40.68161,-73.90796,Private room,60,2,295,2019-06-16,3.56,2,210 +23288667,"Great place for 8, 30 min to Manhattan",173373234,Alexander M,Brooklyn,Bensonhurst,40.60859,-73.99331,Entire home/apt,200,30,19,2018-07-15,1.17,2,179 +14135050,,85288337,Jeff,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93234,Private room,70,3,0,,,1,0 +21938508,Ideal Stay in NYC! ☆☆☆☆☆,70562577,Ryan,Queens,Astoria,40.77118,-73.92548000000001,Entire home/apt,125,3,10,2019-04-26,0.54,1,64 +13545453,"West 50th Street, Luxury Svcd Studio Apt",22541573,Ken,Manhattan,Hell's Kitchen,40.76294,-73.98574,Entire home/apt,199,30,1,2018-07-29,0.09,87,329 +34201695,BedStuy Private Room (M2),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6914,-73.9294,Private room,65,1,4,2019-06-18,2.35,8,12 +4567820,Lovely Studio on the edge of the McGolrick Park,5650951,Simon,Brooklyn,Greenpoint,40.7249,-73.94528000000001,Private room,75,8,6,2018-11-05,0.14,1,0 +6209147,Sunny 1 Bedroom Apt in East Harlem!,32197200,Sabrina,Manhattan,East Harlem,40.79614,-73.93786999999999,Entire home/apt,130,2,34,2016-07-31,0.69,1,0 +27530187,Private Bed & Bath in Heart of Downtown Manhattan,16676759,Derek,Manhattan,Financial District,40.70668,-74.00726999999999,Private room,180,3,10,2019-06-06,0.99,1,48 +22164078,Large Modern Chelsea Studio,35509609,Justin,Manhattan,Chelsea,40.7478,-73.99995,Entire home/apt,149,4,3,2019-01-23,0.32,1,0 +27133188,Serene large private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.6417,-73.95251,Private room,55,2,2,2018-10-05,0.19,6,287 +16466733,Spacious light tribeca loft!,25528796,Julia,Manhattan,Tribeca,40.71812,-74.0044,Entire home/apt,190,3,0,,,1,0 +1461814,Zen Supersized Master Suite,3604585,Jenny,Brooklyn,Flatbush,40.64187,-73.9586,Private room,69,4,34,2019-01-01,0.72,3,68 +6328046,Spacious 1BDR apartment Upper West Side,31033526,Natalia,Manhattan,Upper West Side,40.79466,-73.96623000000001,Entire home/apt,141,7,4,2018-06-17,0.16,1,0 +12095636,Sunny Artesian apartment,64846981,Maria,Brooklyn,Bushwick,40.69993,-73.92504,Private room,90,2,6,2017-05-08,0.15,1,358 +34561332,Sun-drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67182,-73.95985,Entire home/apt,275,3,0,,,2,0 +30857971,Luxury apartment in UES,39548500,Silvio,Manhattan,Upper East Side,40.779,-73.95298000000001,Entire home/apt,300,3,4,2019-02-17,0.65,1,0 +22384717,Upper Manhattan Oasis,3076579,Elisabeth,Manhattan,Inwood,40.86489,-73.92902,Private room,50,3,4,2019-05-12,0.66,1,31 +29131447,Upper East Side room with full size bed,216944902,Janna,Manhattan,East Harlem,40.79055,-73.94866999999999,Private room,85,1,6,2018-12-02,0.67,1,0 +15940328,"Free parking, quiet, 5 stops on N/W to Manhattan",78619120,Dominique,Queens,Astoria,40.77145,-73.93008,Entire home/apt,100,4,78,2019-07-07,2.74,1,201 +21883986,Cozy Room with queen size bed for 2,158710682,Cedar,Manhattan,Midtown,40.75298,-73.96911999999999,Private room,90,1,0,,,3,221 +27774442,Huge Industrial Chic Williamsburg 1 Bdrm w/rooftop,24399066,Rachel,Brooklyn,Williamsburg,40.72018,-73.9573,Entire home/apt,185,1,20,2019-06-09,1.89,1,44 +34302031,500 sq ft Studio with Private Bathroom,133588507,Joanne,Queens,Jamaica,40.7084,-73.78882,Entire home/apt,64,3,6,2019-07-05,3.05,1,37 +3175088,SPACIOUS ARTIST LOFT IN CHELSA,16100913,S Anthony,Manhattan,Chelsea,40.74449,-73.99445,Entire home/apt,275,3,63,2019-06-16,1.02,1,323 +20392393,Cozy midtown apt next to metro & Empire State bldg,145398177,Spencer,Manhattan,Kips Bay,40.7433,-73.97919,Entire home/apt,129,2,75,2019-06-13,3.32,1,29 +29822259,Warm Wiliamsburg Retreat,2967674,Lilly,Brooklyn,Williamsburg,40.70686,-73.95538,Private room,48,2,6,2019-02-06,0.87,2,0 +11760308,Cozy Bedroom for 2 in E Harlem,62588398,Daniel,Manhattan,East Harlem,40.79945,-73.9346,Private room,70,3,54,2019-04-23,1.36,1,40 +5871372,Tiny Private Artist's Studio in NYC,5309143,Ayesha,Bronx,Williamsbridge,40.87765,-73.86318,Entire home/apt,63,5,85,2019-07-02,2.24,1,235 +110739,"Very Central, Nomad/Chelsea Loft Studio",568568,Driss,Manhattan,Midtown,40.74503,-73.98876,Entire home/apt,169,18,54,2019-07-03,0.57,1,98 +21879760,Huge Dumbo Loft,1377201,Jon,Brooklyn,Vinegar Hill,40.70152,-73.98406999999999,Entire home/apt,100,30,2,2018-06-30,0.12,1,31 +34687140,Bensonhurst,261651359,Suraye,Brooklyn,Bensonhurst,40.60475,-73.99213,Private room,60,3,0,,,1,178 +7348959,Beautiful Room in Brownstone - Prime Location,4579626,Karen,Brooklyn,Park Slope,40.67618,-73.98122,Private room,58,1,211,2019-07-07,5.13,2,178 +9698905,Cozy private room w/ensuite bathroom!!,2262706,Shabari,Brooklyn,Carroll Gardens,40.68378,-73.992,Private room,95,1,2,2017-04-23,0.06,1,0 +8456825,Bushwick Oasis,44516268,Tom And Claudia,Brooklyn,Bushwick,40.70337,-73.93070999999999,Entire home/apt,70,2,171,2019-06-22,3.74,1,183 +20385260,2 BDRM apt in elevator building,13225047,Lila,Brooklyn,Williamsburg,40.72099,-73.96007,Entire home/apt,211,1,12,2018-04-03,0.53,3,0 +21931557,Bed-Stuy modern one bedroom plus private bathroom,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69687,-73.94111,Private room,50,30,4,2019-03-10,0.2,10,365 +29541353,Quiet sleep share in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67937,-73.91108,Shared room,32,1,17,2019-06-24,2.13,17,87 +33513077,Large Room in Brownstone Townhouse (2nd fl),20555097,Emilie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.92695,Private room,90,5,2,2019-05-11,0.76,2,71 +18695104,Quiet private room in Manhattan Lower east side,40225443,Zhi And Gloria,Manhattan,Lower East Side,40.72008,-73.98268,Private room,104,3,28,2017-11-11,1.07,1,0 +30590361,"Bright, Spacious, & Cheerful! 5min walk to Metro L",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91201,Private room,37,30,1,2019-05-31,0.75,9,45 +28154635,Upper West Side 1 Bedroom Apt near Central Park,212661859,Amita,Manhattan,Upper West Side,40.78333,-73.98089,Entire home/apt,199,4,6,2018-11-18,0.58,1,0 +33093166,Spacious Room in 4 BR!,245637171,Min,Manhattan,East Village,40.72849,-73.98576,Private room,82,30,0,,,8,365 +33943216,"Entire 2BR Modern, Luxurious Apt in East Village",156381151,Karim,Manhattan,East Village,40.72607,-73.98625,Entire home/apt,190,2,2,2019-06-10,1.4,2,0 +35121319,Boho escape in Upper Manhattan,35491006,Lisa,Manhattan,Harlem,40.8305,-73.94824,Entire home/apt,135,4,1,2019-07-07,1.0,1,0 +23184752,Large Sunny Clinton Hill/Bedstuy bedroom,172366460,Aaron,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95883,Private room,70,1,18,2019-06-15,1.07,1,362 +33035865,NEW TOP FLOOR APT. IN BUSHWICK PRIME LOCATION,130279,Alvise,Brooklyn,Bushwick,40.69943,-73.92858000000001,Private room,75,1,3,2019-06-22,2.43,1,0 +17959888,South Bronx-Piano District artist Loft/,123271654,Beatrice,Bronx,Port Morris,40.81034,-73.93166,Shared room,165,2,20,2018-10-14,0.85,1,15 +31023868,"Bright, charming Fort Greene studio",108810117,Jaclyn,Brooklyn,Fort Greene,40.68941,-73.98098,Entire home/apt,175,3,4,2019-07-07,0.63,1,9 +16063885,Spacious 1 Bedroom Apt in the heart of Harlem,83278784,Kennedy,Manhattan,Harlem,40.80761,-73.95416,Entire home/apt,160,1,41,2019-06-16,1.56,1,273 +20691057,Cozy 2 Bedroom Apt in NYC's hippest neighborhood,33899564,Kayla,Manhattan,East Village,40.72405,-73.97747,Entire home/apt,150,4,6,2017-10-01,0.26,1,0 +31354518,Private Room in Brooklyn Loft Oasis,1973165,Rob,Brooklyn,Greenpoint,40.73344,-73.95851,Private room,100,2,3,2019-06-26,0.53,1,100 +28079986,Brooklyn Prospect Park Parade Ground Standard,202837291,Sarahya,Brooklyn,Flatbush,40.64668,-73.9642,Private room,65,1,20,2019-06-22,2.09,2,164 +7679236,Belle Harbor 4 BR 2 bath- 1 bl from Beach,40327248,Sarina,Queens,Neponsit,40.57215,-73.85821999999999,Entire home/apt,350,2,5,2019-07-07,2.88,1,334 +4792705,Elegant Quiet Spacious 2BD Brownstone Brooklyn NYC,3471761,Kevin & Yuan,Brooklyn,Bedford-Stuyvesant,40.68811,-73.92398,Entire home/apt,149,2,145,2019-07-02,2.62,2,305 +10724792,"New, Lux Doorman,U.N. Grand Central",52950465,Gal,Manhattan,Midtown,40.752790000000005,-73.97251,Entire home/apt,129,30,4,2016-09-22,0.11,12,328 +33110021,Big private room,211906172,Sercan,Queens,Rego Park,40.724070000000005,-73.86585,Private room,70,4,0,,,1,365 +32668900,Best apartment in Chelsea for a young couple,11821104,Nicolas,Manhattan,Chelsea,40.74214,-73.99911999999999,Entire home/apt,200,5,0,,,1,9 +19710391,BedStuy Dream-house,28680760,Edwin,Brooklyn,Bedford-Stuyvesant,40.684740000000005,-73.91825,Entire home/apt,250,4,3,2017-09-17,0.13,1,333 +3200522,Brooklyn 3BR Near Subways,1369577,Thomas & Gaby,Brooklyn,Crown Heights,40.67499,-73.92426999999999,Entire home/apt,120,5,175,2019-06-19,2.86,2,56 +12814685,"Great location in NYC, clean, quiet and cozy",69890625,Grace,Brooklyn,Clinton Hill,40.683890000000005,-73.96025999999999,Private room,89,1,15,2019-05-14,0.43,1,179 +17149950,Entire One bedroom Apartment in Midtown Manhattan,7616444,Ramin,Manhattan,Midtown,40.75029,-73.98402,Entire home/apt,350,5,4,2017-10-31,0.15,1,0 +9821359,"Adorable, quiet Astoria apartment",50588693,Robb,Queens,Astoria,40.76125,-73.91008000000001,Private room,30,1,0,,,1,0 +548133,Chic One-Bedroom Apt,2694451,Shontae,Brooklyn,Clinton Hill,40.69073,-73.96762,Entire home/apt,135,3,28,2019-06-01,0.4,1,211 +24226842,Luxury High Floor Studio with stunning view,17477908,Mat,Manhattan,Upper West Side,40.79446,-73.96651,Entire home/apt,195,30,3,2019-06-01,0.21,10,311 +659952,GREAT Studio apartment in Midtown W,3166753,Ben,Manhattan,Hell's Kitchen,40.76287,-73.9957,Entire home/apt,99,3,46,2018-01-04,0.56,1,31 +29806013,NICE BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN 1,221836975,Jon,Queens,Jackson Heights,40.75125,-73.89346,Shared room,58,2,4,2019-05-31,0.64,3,267 +28964166,$ummer $ALE Williamsburg TownHouse -BEST Location!,218319766,Ron And Irit,Brooklyn,Williamsburg,40.71741,-73.95656,Entire home/apt,275,2,45,2019-06-30,5.04,1,249 +23378076,An Oasis in Manhattan,174263749,Shopper,Manhattan,Washington Heights,40.84442,-73.94039000000001,Private room,115,6,2,2018-11-01,0.22,3,90 +33622308,Double Room with Two Double Beds,257565053,The Redford,Manhattan,Lower East Side,40.71943,-73.98753,Private room,159,1,0,,,2,161 +13358265,Full 1 Bedroom Apartment in heart of UWS,60380241,Vanessa,Manhattan,Upper West Side,40.778,-73.97912,Entire home/apt,200,2,117,2019-06-22,3.24,1,34 +7748422,Great 4 Fl walk up studio apt w/den,1353426,Katie,Brooklyn,Clinton Hill,40.68202,-73.96273000000001,Entire home/apt,145,3,2,2018-09-24,0.06,1,0 +34231565,Private bedroom and bathroom 15 mins from the city,2961266,John,Queens,Sunnyside,40.73857,-73.92563,Private room,72,1,4,2019-07-02,4.0,2,25 +18958323,Tranquility,21190402,David,Staten Island,Emerson Hill,40.60577,-74.12819,Private room,85,1,0,,,1,0 +19049402,Downtown Luxury 1 Bedroom 800 sq ft,105642760,Gigi,Manhattan,Battery Park City,40.71222,-74.01566,Entire home/apt,350,7,4,2019-04-27,0.33,1,51 +32466450,Union Square Industrial Loft Apartment - 1 Bedroom,182709,S,Manhattan,East Village,40.73147,-73.98825,Entire home/apt,199,1,8,2019-07-03,6.49,1,65 +10573225,Charming Spacious Park Slope Studio,54539364,Ildiko,Brooklyn,South Slope,40.6651,-73.98307,Entire home/apt,135,3,134,2019-06-16,3.18,1,241 +12830905,Spacious East Village Bedroom,70026602,Kathryn,Manhattan,East Village,40.72817,-73.98040999999999,Private room,150,2,18,2017-03-16,0.47,1,0 +24158816,Cozy Modern Loft with Fireplace in West Village,128610997,Zani,Manhattan,West Village,40.73233,-74.00244,Entire home/apt,264,10,17,2019-06-13,1.19,2,94 +34485284,"King modern room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72174,-74.00354,Private room,100,1,0,,,7,266 +744228,"Entire gorgeous,cozy,light two bed ",192750,Charlotte,Manhattan,Harlem,40.80145,-73.95572,Entire home/apt,150,1,2,2013-01-05,0.03,1,0 +13078166,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73929,-73.9999,Entire home/apt,179,30,0,,,87,273 +21623610,Small Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.63333,-74.08389,Private room,30,3,13,2019-06-08,0.7,3,176 +22151022,10mins to LGA /20 to the city /5 min to N train,139867352,Oscar,Queens,Ditmars Steinway,40.78021,-73.91015,Private room,39,1,43,2019-06-23,2.28,2,351 +36271603,Big Beautiful Apartment on Flatbush ave near Park,272796645,Toby,Brooklyn,Prospect-Lefferts Gardens,40.65567,-73.96125,Entire home/apt,199,2,0,,,1,141 +17892835,"Comfy room seconds from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.67053,-73.94923,Private room,40,5,0,,,2,0 +25370919,"Spacious, Luxury Apartment in Brooklyn",30224403,Peter,Brooklyn,Boerum Hill,40.68773,-73.98778,Entire home/apt,175,5,9,2019-04-11,0.68,1,6 +7216192,Room in classic Harlem brownstone,17464442,Kirsti,Manhattan,Harlem,40.80492,-73.94485999999999,Private room,125,2,3,2016-07-25,0.08,1,0 +15522627,Cozy Quiet Upgraded Prvt Rm in House in the Slope!,90771408,Albert,Brooklyn,South Slope,40.66565,-73.99172,Private room,70,1,30,2019-06-05,0.91,1,297 +9976190,Two Bedroom Apartment,46976876,Carolina,Manhattan,East Village,40.72537,-73.99054,Entire home/apt,250,2,0,,,2,0 +27776337,Apartment for transient guest!,209121939,Linda,Manhattan,Harlem,40.81942,-73.94068,Private room,45,1,14,2019-06-22,1.34,2,128 +2757036,Bayview room,14103991,Ruth,Queens,Flushing,40.75606,-73.81954,Private room,55,1,51,2019-05-26,0.82,4,333 +9652170,Best Location in S. Williamsburg,49898234,Lemuel,Brooklyn,Williamsburg,40.71205,-73.95787,Private room,60,7,0,,,1,0 +7785582,Basement Room with Private Bathroom,11048791,Jarred,Brooklyn,Bushwick,40.70068,-73.91620999999999,Private room,40,7,2,2018-05-22,0.04,1,0 +11212414,"Spacious, Family-Friendly NYC Apt",58405281,Cristina,Manhattan,Harlem,40.82485,-73.93774,Entire home/apt,75,1,1,2016-02-21,0.02,1,0 +18410069,Sunny Brooklyn Limestone,7934771,Antoinette,Brooklyn,Flatbush,40.64246,-73.9538,Entire home/apt,175,7,3,2019-02-18,0.47,1,0 +29990344,Charming Brooklyn Apartment Next to Prospect Park,58069820,Michael,Brooklyn,Crown Heights,40.67244,-73.95992,Private room,75,2,45,2019-07-07,5.74,1,9 +18858761,Private Entrance Astoria Five min walk to subway,131392140,Vik,Queens,Astoria,40.77407,-73.92262,Entire home/apt,125,2,49,2019-03-17,1.99,5,86 +7367913,Brooklyn oasis with breathtaking skyline view!,38606448,Hanna,Brooklyn,Bedford-Stuyvesant,40.68889,-73.95406,Private room,80,2,8,2018-08-27,0.17,1,281 +24808312,"MARTIAL LOFT 3: REDEMPTION (upstairs, 3rd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69501,-73.92296,Private room,40,3,2,2018-10-24,0.14,5,0 +28123818,KING Room w Private Entrance - Times Square,42998647,Prav,Manhattan,Hell's Kitchen,40.75759,-73.99006,Private room,45,3,72,2019-06-23,6.99,3,86 +27675173,"beautiful, converted multi-unit building",18763685,Sabina,Manhattan,East Village,40.7309,-73.98671,Entire home/apt,330,2,8,2019-07-02,0.74,1,5 +22997160,Chill Vibes in Beautiful Fort Greene,170567335,Robert,Brooklyn,Fort Greene,40.690540000000006,-73.97892,Private room,95,2,5,2019-01-25,0.74,1,0 +28073668,Cozy Studio Near ESB,211549023,Studioplus,Manhattan,Midtown,40.747690000000006,-73.9885,Entire home/apt,200,2,13,2019-06-18,1.38,13,358 +26871230,West Chelsea High Line Treasure,2304932,David,Manhattan,Chelsea,40.74443,-74.0029,Entire home/apt,300,5,10,2019-04-29,0.87,1,4 +10138996,Queen Bed/Private Room w/ Backyard,52031734,Edward,Brooklyn,Bedford-Stuyvesant,40.69503,-73.94986,Private room,41,1,1,2016-01-20,0.02,1,0 +68735,Prewar Penthouse w Private Terrace,342054,Violetta,Manhattan,Upper West Side,40.78971,-73.9729,Entire home/apt,195,11,30,2019-06-13,0.32,1,249 +12834386,Awesome spacious room by the park,1216362,Camila,Brooklyn,Flatbush,40.65424,-73.96008,Private room,73,1,43,2018-11-01,1.37,4,188 +24240996,"new-entire condo, terrace, parking D-N-R trains-IC",19707138,Ali,Brooklyn,Sunset Park,40.65604,-74.00032,Entire home/apt,125,15,1,2018-04-08,0.07,1,8 +16478472,Designer 2-BR with Stunning Views in Williamsburg,108160091,Dasha,Brooklyn,Williamsburg,40.71002,-73.96114,Entire home/apt,218,30,25,2019-05-19,0.82,3,342 +34618352,King's Airbnb,261167972,Roger,Brooklyn,Bedford-Stuyvesant,40.68366,-73.92011,Entire home/apt,180,2,9,2019-07-07,5.4,1,330 +10774325,Convenient Studio Apartment!,3068641,Erum,Manhattan,Harlem,40.80806,-73.9435,Entire home/apt,100,4,0,,,1,0 +10114830,Studio on the Upper West Side,49871658,Michelle,Manhattan,Upper West Side,40.78778,-73.97498,Entire home/apt,200,3,0,,,1,0 +16333776,Sun-drenched room in quiet Ridgewood neighborhood,23848987,Norberto,Queens,Ridgewood,40.70723,-73.91107,Private room,40,5,0,,,1,0 +12367315,Large 1 Bdrm in Clinton Hill,5960171,Jackie,Brooklyn,Clinton Hill,40.68809,-73.96027,Entire home/apt,125,3,2,2016-06-29,0.05,1,0 +28488070,Designer 3 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69482,-73.92493,Entire home/apt,140,30,0,,,2,330 +32501820,Queen size bed private room for 2,191011879,Conor,Manhattan,Midtown,40.75449,-73.9677,Private room,250,1,0,,,2,268 +4738946,"Amazing, classy, safe & convenient!",15821855,Tessa,Manhattan,Morningside Heights,40.81615,-73.95921,Private room,65,1,1,2015-09-14,0.02,1,0 +28222827,Sunny bedroom near Times Square 33C2,190921808,John,Manhattan,Hell's Kitchen,40.75534,-73.99668,Private room,75,7,5,2018-10-28,0.51,47,352 +22764944,1 ROOM IN 2 BEDROOM APT DOORMAN BLDG WITH ELEVATOR,119847900,Marie,Manhattan,Washington Heights,40.8485,-73.93509,Private room,52,1,46,2019-06-25,2.73,1,21 +7769946,Lovely House in the Hill/ 2bedrm apt,40863179,Kevin,Brooklyn,Fort Greene,40.68504,-73.9696,Entire home/apt,150,7,43,2019-06-13,1.2,1,53 +35881347,gorgeous bedroom near Yankee Stadium,263317402,Cynthia Vanessa,Bronx,Concourse Village,40.829640000000005,-73.91833000000001,Private room,53,3,0,,,1,162 +34972591,Spectacular 2 Bed 2 Bath on Park Avenue #6112,113723310,Joe,Manhattan,Murray Hill,40.74876,-73.98143,Entire home/apt,300,30,0,,,8,347 +31599106,纽约客民宿,192895513,Vivi,Queens,Flushing,40.75528,-73.83072,Private room,99,3,2,2019-06-21,0.78,3,336 +31127267,"Studio apartment between NYC, JFK and LGA airports",32540806,Maor,Queens,Kew Gardens Hills,40.72927,-73.82469,Entire home/apt,45,3,8,2019-06-02,1.33,1,0 +14371241,Private Room - 15 min to Times Square.,9209911,Oscar,Manhattan,Harlem,40.81853,-73.9472,Private room,54,3,71,2019-07-01,2.01,1,15 +34778953,Cozy and bright room with a spectacular view,136953596,Fabio,Brooklyn,Fort Greene,40.69491,-73.98244,Private room,125,5,1,2019-06-08,0.94,1,172 +28993172,Charming home in Manhattan's most iconic street!,18264569,Jennifer,Manhattan,Chinatown,40.71447,-73.99736999999999,Private room,125,2,35,2019-07-07,3.82,1,315 +22294357,One bed near All transportation step from Park,113805886,Yaacov,Manhattan,Upper East Side,40.77746,-73.95043000000001,Entire home/apt,135,31,2,2018-01-08,0.11,33,338 +7908355,"Loft Bedroom in Clinton Hill, Brooklyn",21657314,Luke,Brooklyn,Clinton Hill,40.69143,-73.96079,Private room,108,4,21,2019-06-15,2.31,1,12 +13164658,Classic NYC Loft in the heart of Tribeca,10578546,Kara,Manhattan,Tribeca,40.71549,-74.00804000000001,Entire home/apt,325,3,6,2018-07-04,0.18,1,333 +36041578,✨Superb Room- 2 Queen Beds and Balcony ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75368,-73.93298,Private room,159,1,0,,,8,318 +20744654,Cozy studio in Park Slope,134264127,Fourth,Brooklyn,Park Slope,40.67454,-73.9841,Entire home/apt,125,2,77,2019-07-01,3.43,1,243 +33772674,Boerum Hill modern duplex with private backyard!,401659,Dd,Brooklyn,Boerum Hill,40.68581,-73.9833,Entire home/apt,140,4,2,2019-05-15,0.97,1,77 +21450636,Exposed brick 1BR apartment in upper Manhattan,21341524,Harold,Manhattan,East Harlem,40.79104,-73.94144,Entire home/apt,180,2,3,2018-06-16,0.16,1,41 +18569422,Private room in beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.67101,-73.94543,Private room,70,2,52,2018-11-05,1.99,2,0 +6867325,Private Cosy Harlem Bedroom,13667779,Miriam,Manhattan,Harlem,40.82443,-73.93843000000001,Private room,40,2,27,2019-06-24,0.55,2,345 +21121438,Royalty room,17766289,Kaila,Bronx,Kingsbridge,40.869240000000005,-73.90651,Private room,40,30,4,2018-06-01,0.19,2,148 +10773150,Upper East Side Little Private Room,55725808,Xin,Manhattan,East Harlem,40.7869,-73.95285,Private room,45,1,2,2016-02-02,0.05,1,0 +31221559,Flatbush Hideaway - Quiet and close to subway!,67345821,Jason,Brooklyn,East Flatbush,40.64445,-73.94943,Entire home/apt,33,1,29,2019-07-01,4.75,1,19 +20653090,"Spacious, private bedroom in Brooklyn",30549225,Spenser,Brooklyn,Bushwick,40.70188,-73.92062,Private room,90,4,17,2019-06-09,0.76,1,0 +33033214,Private Room in Gorgeous Duplex Apartment,2300366,Yosub,Brooklyn,Williamsburg,40.70835,-73.94163,Private room,90,2,1,2019-05-22,0.63,2,9 +24921526,Private Room (Front) In A Beautiful Apartment,79651295,Nkem,Queens,Jamaica,40.67733,-73.78826,Private room,80,2,0,,,4,179 +10919160,Gorgeous 1BR in Prime E. Village!,25498781,Lauren,Manhattan,East Village,40.72931,-73.98222,Entire home/apt,250,2,9,2016-08-24,0.22,1,0 +30691909,Spacious 1 BR Home in Hell's Kitchen,1319214,Nick,Manhattan,Hell's Kitchen,40.76333,-73.98917,Entire home/apt,172,4,3,2019-02-21,0.42,1,0 +14126853,Nini's Art Shack,21544501,Natalie,Brooklyn,Bushwick,40.68798,-73.90677,Private room,80,1,2,2016-11-01,0.06,2,281 +7159258,Forrest and Bogart,292421,Steven,Brooklyn,Bushwick,40.70272,-73.93151,Private room,100,1,14,2018-09-13,0.37,1,0 +6799944,Brooklyn Bright Times,257676,Linda,Brooklyn,Flatbush,40.65348,-73.95978000000001,Private room,148,1,12,2018-06-18,0.24,2,90 +1929186,Modern Bright Loft in Clinton Hill,9990552,Susan,Brooklyn,Bedford-Stuyvesant,40.69135,-73.95859,Entire home/apt,175,2,52,2019-07-04,1.26,1,264 +25870448,Cozy Brooklyn two level apartment with a backyard,5368201,Céline,Brooklyn,Bedford-Stuyvesant,40.68565,-73.92599,Entire home/apt,195,7,0,,,1,20 +13031184,Large & sunny bedroom in Park Slope,923412,Eleanor,Brooklyn,South Slope,40.66573,-73.98947,Private room,50,7,0,,,1,0 +24856606,JFK Queens Home away from Home House of Suedajoy 4,175019394,Suzan,Queens,Jamaica,40.67228,-73.77804,Private room,70,1,81,2019-06-22,5.73,6,85 +12657527,sunny room in NYC!,46047223,Sarah,Brooklyn,Crown Heights,40.66612,-73.93696,Shared room,20,1,0,,,1,0 +25949877,Chic + comfortable 1 BR apt on Upper East Side,195057742,Dale,Manhattan,Upper East Side,40.77772,-73.94821999999999,Entire home/apt,135,2,6,2018-09-17,0.5,1,0 +2305170,Eclectic Studio in Cozy Bay Ridge,11774081,Diana,Brooklyn,Bay Ridge,40.62455,-74.02756,Entire home/apt,86,2,0,,,1,0 +30510365,Cg hosting,228286488,Clara,Manhattan,Washington Heights,40.83644,-73.94230999999999,Private room,40,3,1,2018-12-16,0.15,1,245 +9879556,**Luxury 1 Bedroom Upper East Side NYC Apt,30283594,Kara,Manhattan,Upper East Side,40.76257,-73.95915,Entire home/apt,249,30,1,2018-01-25,0.06,121,273 +1735804,Lovely Suite in Historic Brownstone near Subway,1755097,Jay,Brooklyn,Bedford-Stuyvesant,40.68972,-73.93073000000001,Entire home/apt,115,2,210,2019-06-14,3.58,2,106 +22733533,Duplex w Rooftop Patio,167818456,Anna,Brooklyn,Williamsburg,40.71297,-73.95657,Entire home/apt,345,2,47,2019-06-29,3.24,2,146 +9435931,2Bed/ 2Bath Impeccable Stylish Brooklyn Home,5037211,Mariana,Brooklyn,Greenpoint,40.72104,-73.94805,Entire home/apt,275,5,77,2019-06-29,1.89,2,6 +25380780,Taste of the Old World,48499240,Walter,Manhattan,Harlem,40.81215,-73.95129,Private room,150,2,15,2019-05-21,1.25,1,57 +13963326,Cozy Bedroom,21408053,Tory,Manhattan,Harlem,40.82323,-73.9467,Private room,51,2,9,2016-09-09,0.25,1,0 +15854548,Great Brooklyn location next to subway and cafes,1939376,Audrey,Brooklyn,Clinton Hill,40.68866,-73.96146999999999,Private room,48,20,24,2019-05-01,0.78,1,304 +526923,Come stay in super comfy and cozy!,2589521,Lisbeth,Manhattan,Flatiron District,40.74129,-73.98374,Entire home/apt,265,3,26,2019-06-15,0.32,1,341 +18686817,Large bright friendly bedroom apartment,59407939,Avrora,Brooklyn,Bensonhurst,40.60795,-73.98955,Private room,89,1,5,2017-09-29,0.19,1,364 +4201905,Sunny 1 Bedroom -Financial District,4738242,Meghna,Manhattan,Financial District,40.70956,-74.01341,Entire home/apt,160,7,3,2015-01-03,0.05,1,0 +33060929,"ROOM FOR TWO 15 MINUTES WALL STREET, NO CLEAN FEE",247937619,Jessy,Manhattan,Lower East Side,40.71525,-73.98735,Private room,72,5,17,2019-06-21,5.0,1,49 +12513217,Upper West Side Manhattan Comfort 1,67768251,Felipe,Manhattan,Upper West Side,40.78461,-73.97787,Private room,53,30,4,2019-03-17,0.17,3,185 +30483899,"Sunny, Spacious Apartment on Upper East Side",82189264,Laur,Manhattan,East Harlem,40.78695,-73.94218000000001,Entire home/apt,215,60,0,,,1,365 +12805625,"Sunny, modern apartment in Lower East Side",5826163,Ayesha,Manhattan,Lower East Side,40.71989,-73.98557,Private room,90,4,1,2019-04-28,0.42,1,90 +34569918,Комната на Bay Pway,260844992,Ineza,Brooklyn,Bensonhurst,40.60783,-73.98445,Private room,75,3,0,,,1,89 +21308792,Large NYC APT on the East River for 1 or 2 people,33776141,Lara,Manhattan,Kips Bay,40.73905,-73.97353000000001,Private room,100,2,1,2018-01-02,0.05,1,0 +23667137,"Safe Area Huge Room/ELECTRIC MASSAGE BED QUEENS,NY",115151548,Beethoven,Queens,Hollis,40.714,-73.77787,Private room,72,5,6,2018-07-02,0.38,1,364 +20663644,Elegant Brooklyn Studio in Luxury Amenity Building,77944774,Jacqueline,Brooklyn,Windsor Terrace,40.64931,-73.9733,Entire home/apt,85,3,12,2019-05-20,0.53,1,5 +3215722,Airy Duplex Room with Private Bath,496465,Daniel,Brooklyn,Williamsburg,40.71622,-73.93942,Private room,150,21,0,,,1,0 +23668381,"Luxurious, Sunny Apartment Overlooking Park",1590148,Tom,Brooklyn,Williamsburg,40.71813,-73.94931,Entire home/apt,250,2,2,2019-01-20,0.31,1,0 +2940729,Le Petit Château,4963379,Tamoi,Brooklyn,Flatbush,40.63615,-73.95148,Entire home/apt,86,3,62,2017-11-04,1.07,1,0 +20359408,Beautiful Manhattan private bedroom,144851882,Jane,Manhattan,Kips Bay,40.73972,-73.97839,Private room,58,5,0,,,1,0 +35971885,Private Room + Outdoor Space in Modern Chelsea Apt,261627898,Brett,Manhattan,Chelsea,40.74672,-74.00431,Private room,105,1,2,2019-07-06,2.0,2,31 +3201696,Cozy 5 Bdrm in Historic Harlem NY,13789963,Larry,Manhattan,Harlem,40.82931,-73.94358000000001,Entire home/apt,345,3,141,2019-07-05,2.34,1,273 +17831929,Apartment of Musicians in Ditmas Park,11136995,Gabriel,Brooklyn,Flatbush,40.64807,-73.96625,Private room,22,3,2,2018-03-05,0.08,1,0 +19930489,Traveler/Student Prvt Rm w/ 1/2 Bath (001),137999892,Simranjeet,Staten Island,Concord,40.60613,-74.08906999999999,Private room,35,4,19,2019-06-22,0.84,7,346 +29186254,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.728390000000005,-73.99225,Entire home/apt,225,1,8,2019-06-06,1.62,33,179 +36394726,1 bed available in a 2bd/1ba Bushwick Gem,239638986,Marné,Brooklyn,Bushwick,40.69287,-73.92289,Private room,125,1,0,,,1,175 +1392330,"Verna's Brownstone Suite (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92364,Entire home/apt,120,1,226,2019-07-04,3.22,2,274 +36145317,1910 Original Rockaway Bungalow,63389796,Diana,Queens,Rockaway Beach,40.58947,-73.81435,Entire home/apt,150,1,5,2019-07-07,5.0,1,79 +35582464,Union Square/East Village Flat,267728008,Ross,Manhattan,East Village,40.7316,-73.98576,Entire home/apt,179,5,3,2019-06-17,3.0,1,76 +21656310,"Room available on the Upper East Side, Manhattan",18844442,Rabia,Manhattan,Upper East Side,40.77976,-73.95409000000001,Private room,100,2,16,2018-02-20,0.8,1,0 +28559951,"Small, Cozy room in Central Harlem neighborhood",67395042,Omar,Manhattan,Harlem,40.82306,-73.94046,Private room,70,1,46,2019-06-09,5.54,1,66 +33929577,"Couch(sofácama), only women, near LGA & Manhattan",223087887,Jess & Ana,Queens,Corona,40.74086,-73.86618,Shared room,24,1,3,2019-05-12,1.11,8,332 +35189403,Modern Cozy UES apartment,56341179,Eric,Manhattan,Upper East Side,40.76738,-73.95555999999999,Entire home/apt,125,31,0,,,1,280 +15948069,"4 bdrm/2 bath apt. Central Pk, Columbia U.",5162192,Amy,Manhattan,Upper West Side,40.79835,-73.9616,Entire home/apt,240,30,1,2019-05-08,0.48,12,211 +9542827,BIG room with bath & balcony in BK!,2966628,Mike,Brooklyn,Bedford-Stuyvesant,40.68795,-73.94173,Private room,59,1,2,2016-01-01,0.05,1,0 +8753832,"Bright, airy, private room/shared bath-W Harlem",21180442,Ed,Manhattan,Harlem,40.82219,-73.9448,Private room,100,1,58,2019-06-23,1.27,1,78 +34972355,2 bedroom on Chinatown,263490281,Juan,Manhattan,Chinatown,40.71693,-73.99075,Entire home/apt,200,1,3,2019-06-12,2.43,1,157 +2983952,Williamsburg Oasis of Art ,11018460,Patricia,Brooklyn,Williamsburg,40.71593,-73.95642,Entire home/apt,210,3,4,2016-09-27,0.11,2,0 +18110008,Bright room by the Brooklyn Navy Yard,9193506,Lucy,Brooklyn,Fort Greene,40.69664,-73.97375,Private room,65,2,3,2017-08-14,0.11,1,0 +11845193,Available 23rd-28th March,13318184,Rebecca,Brooklyn,Williamsburg,40.70523,-73.94072,Private room,100,1,0,,,4,0 +12433302,Lovely Brownstone Garden Apartment,425363,Marni,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95231,Entire home/apt,170,5,55,2019-07-03,1.44,1,82 +36223408,Private queen bedroom next to Empire State Bldg,167228202,Sarina,Manhattan,Chelsea,40.74991,-73.98854,Private room,150,3,0,,,1,9 +22705059,Cute room in Manhattan 30 mins to Times Square,1692538,Nuttamon,Manhattan,Washington Heights,40.85411,-73.92952,Private room,99,1,45,2019-06-17,2.7,5,315 +23761707,Large Private Room. Safe area. Near 4 and D trains,178229322,Vas,Bronx,Concourse Village,40.83218,-73.91951,Private room,47,5,61,2019-05-15,3.8,1,130 +19806088,Beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.6715,-73.94426999999999,Entire home/apt,100,2,16,2018-08-20,0.68,2,0 +635662,bedroom in front of prospect park w/2 queens beds,3033622,Jose,Brooklyn,Windsor Terrace,40.65193,-73.97301,Private room,60,2,206,2019-06-15,2.49,2,86 +31805845,Cozy Room - Free Cleaning + WiFi - Quick Walk to L,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91229,Private room,34,30,0,,,9,196 +13926463,Stylish Private Room 3 subway stops to Manhattan,74906838,Priscila,Queens,Long Island City,40.753820000000005,-73.91968,Private room,70,3,90,2019-07-04,2.6,1,24 +4427442,Large Apt. in NYC w/natural light,22984252,Toby,Manhattan,Washington Heights,40.85083,-73.94093000000001,Entire home/apt,290,4,21,2019-01-03,0.37,1,193 +15476467,Large Space and Comfy Couch in New Apartment,13069275,Aleisha,Manhattan,Harlem,40.82245,-73.95675,Private room,75,1,19,2019-06-30,0.57,1,358 +28345804,LES Light Filled Large Bedroom,86274028,Francesca,Manhattan,East Village,40.72803,-73.97961,Private room,100,1,1,2018-09-18,0.1,1,0 +35281795,Cute place,81295676,Vasiliki,Queens,Astoria,40.76411,-73.92076,Private room,55,3,0,,,1,43 +28627384,Times Square True NY Style Home With All Cultures!,216032427,Maneh,Manhattan,Hell's Kitchen,40.76357,-73.98906,Private room,150,2,31,2019-06-23,3.46,1,124 +28941589,"3 bdrm, 2 bth duplex -20 mins to midtown -32B",42226482,Monique,Bronx,Williamsbridge,40.87704,-73.86276,Entire home/apt,80,30,0,,,1,0 +21005576,"Quiet, clean and spacious.",151238818,Peter,Manhattan,Upper West Side,40.77867,-73.97914,Private room,135,7,8,2019-06-16,0.82,1,363 +18647180,Beautiful Dupl Brooklyn Apartment w/ a Big Terrace,7041731,Dee,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95803000000001,Entire home/apt,185,3,1,2017-05-22,0.04,1,0 +4044625,LES Studio with Large Patio,20971414,Tuvia,Manhattan,Chinatown,40.71399,-73.99107,Entire home/apt,300,4,7,2016-04-02,0.12,1,0 +36108811,Bright and Sunny home away from home.,271616449,Raiysa,Bronx,Parkchester,40.8349,-73.85259,Private room,40,3,1,2019-06-28,1.0,1,68 +12534110,Spacious Room in Downtown Brooklyn,6604691,Dhruti,Brooklyn,Downtown Brooklyn,40.69531,-73.98306,Private room,80,5,0,,,1,0 +24445770,Cozy Comfort in the Heart of Greenpoint Brooklyn,89031106,Edyta,Brooklyn,Greenpoint,40.72198,-73.94911,Entire home/apt,210,30,2,2019-06-03,0.13,4,354 +3791244,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73254,-74.00698,Entire home/apt,170,30,12,2018-08-12,0.22,39,252 +5466680,1 BR TSquare balcony great view,18212433,Veronique Camille,Manhattan,Hell's Kitchen,40.766020000000005,-73.99249,Entire home/apt,229,5,5,2018-09-11,0.09,8,43 +32663836,Sunny East Village Room w/ full kitchen,319842,Andy,Manhattan,East Village,40.72681,-73.97955,Private room,185,2,0,,,1,26 +26705460,A+ Location - Cozy Brooklyn Room with Great Access,106609860,Jeremy,Brooklyn,Gowanus,40.67779,-73.98342,Private room,60,2,37,2019-06-20,3.27,1,54 +13638122,Private Room in Bright 2 Bd Greenwich Village Apt,4025420,Karine,Manhattan,Greenwich Village,40.72875,-74.00169,Private room,110,4,1,2016-10-23,0.03,2,0 +33022743,Comfortable room in bushwick,28375704,Ricardo,Brooklyn,Bushwick,40.69679,-73.93405,Private room,80,10,0,,,1,180 +14274809,Amazing Location 2 BR 2 Full Bath East Village,7118541,Jared,Manhattan,East Village,40.727140000000006,-73.98668,Entire home/apt,316,3,74,2019-06-08,2.19,1,348 +19456810,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70454,-73.81549,Private room,93,1,2,2017-07-23,0.08,18,90 +3056451,One Bedroom close to everything!,15559190,Kerry,Manhattan,West Village,40.72916,-74.00433000000001,Entire home/apt,120,3,5,2016-10-28,0.08,1,0 +1127040,spacious PARK SLOPE room available ,835112,Leah,Brooklyn,South Slope,40.668420000000005,-73.98659,Private room,40,90,0,,,2,311 +24776834,Stylish NYC Art Loft #2,34643568,Dave,Manhattan,East Harlem,40.79244,-73.94028,Private room,80,3,18,2019-07-01,1.74,6,88 +8523910,Tompkins Square/East Village Apt.,44882587,Rachel,Manhattan,East Village,40.72613,-73.98062,Entire home/apt,250,1,1,2015-11-29,0.02,1,0 +29516095,Comfortable & Sunny 1 Bdrm – Heart of Fort Greene,37510066,Hayley,Brooklyn,Fort Greene,40.68723,-73.97369,Entire home/apt,128,1,31,2019-07-05,4.23,1,13 +13840253,Private elevator contemporary minimalist Brooklyn,19813391,Summer,Brooklyn,Prospect-Lefferts Gardens,40.65761,-73.94646,Entire home/apt,119,1,4,2017-01-01,0.11,2,0 +11276229,Triplex w/ 2 full bed/bath and high ceilings,47481444,Trace,Manhattan,Gramercy,40.7357,-73.98396,Private room,200,1,0,,,1,0 +30717533,Large Private Room in Crown Heights BK,17598541,Robert,Brooklyn,Crown Heights,40.66708,-73.92968,Private room,45,1,12,2019-06-13,1.89,1,150 +29792553,Stunningly Bright Room with NYC Skyline Views,10928484,Stan,Brooklyn,Williamsburg,40.71843,-73.94199,Private room,299,4,0,,,1,35 +35267761,Casa Luna LGA Airport,265420923,Luna,Queens,East Elmhurst,40.76774,-73.87358,Private room,70,2,2,2019-06-30,1.87,1,266 +18152,Manhattan Room,69942,Victoria,Manhattan,Upper East Side,40.76865,-73.95058,Private room,200,1,142,2019-07-06,1.5,1,322 +22088409,Bronx Native Son Apartment,37260534,Cory,Bronx,Norwood,40.87491,-73.87575,Private room,87,2,1,2017-12-20,0.05,1,0 +22080826,Spacious 1BR in trendy Brooklyn from 12/12-1/12,3770299,Michelle,Brooklyn,Clinton Hill,40.69284,-73.96824000000001,Entire home/apt,150,15,0,,,1,0 +29683262,5 mins from Central Park +Community #1,215540583,OneBaz106,Manhattan,East Harlem,40.79018,-73.94014,Private room,78,10,13,2019-05-20,1.83,1,68 +7715344,1 Bedroom Apart in Spanish Harlem,15581933,Mary,Manhattan,East Harlem,40.79324,-73.94513,Entire home/apt,90,2,4,2016-03-31,0.08,1,0 +27632141,"Cozy BK Home,Near JMZ lines,15-25 min to Manhattan",70997341,Kriti,Brooklyn,Bushwick,40.69768,-73.93511,Private room,59,2,26,2019-06-18,2.39,1,0 +15685669,Private room in Williamsburg. Very close to train!,1314045,Tim,Brooklyn,Williamsburg,40.71326,-73.94946999999999,Private room,99,1,220,2019-06-30,6.71,3,352 +24183293,Queen Twin & Futon Ridgewood/Bushwick w View & Gym,48182426,Emilio,Queens,Ridgewood,40.70077,-73.90793000000001,Private room,58,1,3,2018-04-15,0.2,1,0 +20155864,"New house in Rockaway Beach, NYC!",519720,Anna,Queens,Arverne,40.59425,-73.79505999999999,Entire home/apt,150,2,2,2019-03-11,0.09,1,309 +1063554,bedroom in big sunny loft (& Roof!),2873394,Aurora,Brooklyn,Bushwick,40.69935,-73.93713000000001,Private room,60,2,10,2019-06-23,0.13,2,18 +26000559,Pvt Art-filled Room w/ Pvt Access to Huge Roof Gym,2739367,Heather,Brooklyn,Williamsburg,40.70826,-73.94421,Private room,62,29,70,2019-02-27,5.38,2,64 +5203,Cozy Clean Guest Room - Family Apt,7490,MaryEllen,Manhattan,Upper West Side,40.80178,-73.96723,Private room,79,2,118,2017-07-21,0.99,1,0 +34065052,Spacious & Awesome Room in Brooklyn!,215532980,Isa & Bruno,Queens,Ridgewood,40.70515,-73.9136,Private room,75,1,11,2019-07-01,4.52,3,88 +16296678,Bergen street in Crown Heights - French speaking,75918061,Pascale,Brooklyn,Crown Heights,40.6749,-73.95233,Entire home/apt,140,4,47,2019-06-24,1.66,1,5 +4588678,Gorgeous bohemian Apt. in a Brownstone,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68596,-73.94068,Entire home/apt,100,2,2,2017-08-08,0.05,2,0 +28358666,Private Room,31770868,Tae,Manhattan,Theater District,40.75928,-73.98634,Private room,110,2,46,2019-06-11,4.66,2,38 +6852315,Cozy and ideally located Greenwich village apt,6959884,Josephine,Manhattan,Greenwich Village,40.729,-74.00066,Entire home/apt,245,3,18,2019-07-02,0.38,1,307 +21183975,"Nice & new room, washer/dryer, 5 min to train!",43148410,Lo,Brooklyn,East New York,40.667390000000005,-73.88739,Private room,40,1,7,2018-08-28,0.33,3,364 +14168413,Large Bedroom - Great Location - Grand Central,18981759,Doug,Manhattan,Murray Hill,40.74702,-73.97563000000001,Private room,100,1,11,2016-09-05,0.31,1,0 +17730964,Charming room in a spacious 3/1,41847916,Farah,Brooklyn,Bedford-Stuyvesant,40.68683,-73.94411,Private room,50,2,0,,,1,0 +4699123,Huge Bdr in Loft in Williamsburg,11708876,Paloma,Brooklyn,Williamsburg,40.7114,-73.96293,Private room,90,1,0,,,1,0 +36204465,"Bushwick Central Avenue, between L and J train.",272265146,Alexander,Brooklyn,Bushwick,40.68822,-73.90979,Private room,50,1,0,,,1,19 +31621785,"Great deal! Comfy, brand new, close to subway:)",235073206,Julianna,Manhattan,Harlem,40.81893,-73.94511999999999,Private room,75,1,20,2019-07-05,3.8,4,192 +16829324,✪ Stay Together in Style ✪ 2BR / 3 Bed ✪ Best Area,4094013,Cami,Manhattan,Lower East Side,40.72293,-73.98918,Entire home/apt,200,4,72,2019-06-23,2.94,1,109 +13514387,Spacious Private BR in Chelsea,35590013,Ryan,Manhattan,Chelsea,40.74675,-73.99555,Private room,90,2,6,2016-10-16,0.16,1,0 +26138702,Clean and big bedroom close to manhattan,18260424,Tevfik,Queens,Sunnyside,40.74304,-73.91699,Private room,73,1,1,2018-07-30,0.09,1,0 +11634575,"Sunny, enchanting, spacious bedroom",61382075,Elena,Manhattan,Washington Heights,40.84398,-73.94064,Private room,65,4,2,2017-05-22,0.05,2,0 +5191617,"Cozy Room in Clinton Hill, Bk",3977023,Vaida,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95603,Private room,70,1,1,2015-08-31,0.02,2,0 +19654970,Sunny 1-br UES apartment!,138359867,Dim,Manhattan,Upper East Side,40.7836,-73.9522,Entire home/apt,130,5,109,2019-06-18,4.5,1,202 +2417098,Sunny Studios in Historic Browstone,26640,Sally,Manhattan,Upper West Side,40.78327,-73.97343000000001,Entire home/apt,179,30,14,2015-09-21,0.27,2,365 +15050044,"1 private bdrm in Times Sq NYC, luxury building",4430657,Claudia,Manhattan,Hell's Kitchen,40.75842,-73.99276,Private room,60,2,0,,,1,0 +30247556,Homey Apt - 5min walk to L Train + Free Cleaning!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70115,-73.91105999999999,Private room,37,30,0,,,9,29 +13261922,Spacious artsy apartment near Gramercy/Flatiron,3490622,Calliea,Manhattan,Flatiron District,40.74154,-73.98515,Entire home/apt,200,5,1,2016-08-01,0.03,1,0 +20679565,"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN",1181366,Tristan,Brooklyn,Greenpoint,40.72246,-73.94768,Entire home/apt,210,7,0,,,1,0 +9007767,Spacious Modern Alcove Studio 4,45595980,Tny,Manhattan,Midtown,40.76135,-73.96706999999999,Entire home/apt,135,30,8,2018-09-09,0.19,12,282 +21559273,Large 1 Bedroom Apt in Times Square sleeps 4ppl,132619769,Karlos,Manhattan,Hell's Kitchen,40.75744,-73.99438,Entire home/apt,230,2,21,2019-06-22,1.09,1,120 +20025456,"700sqft Modern, Brand New Studio in Central Harlem",5639390,Sai Mun,Manhattan,Harlem,40.8077,-73.94345,Entire home/apt,130,4,0,,,1,0 +19176222,Beautiful East Village apartment!,90279905,Mariana,Manhattan,East Village,40.72706,-73.98451,Private room,120,1,9,2017-12-10,0.37,1,0 +28209194,Big and lovely apartment in Sunnyside NYC,58234433,Martin,Queens,Sunnyside,40.73707,-73.91866999999999,Entire home/apt,261,1,14,2019-06-23,1.47,8,240 +24893756,Entire suite close to LGA & JFK with free parking,16308032,Christian,Queens,East Elmhurst,40.75891,-73.87819,Entire home/apt,60,1,59,2019-06-03,4.18,1,150 +8583175,Big Bedroom in Manhattan with an Artist,28272799,Este,Manhattan,Harlem,40.82855,-73.94033,Private room,29,3,27,2018-12-19,0.59,1,0 +9945496,Luxury Upscale Apartment in Midtown,12574877,Leroy,Manhattan,Hell's Kitchen,40.76443,-73.98728,Entire home/apt,150,1,65,2019-06-19,1.56,1,186 +16206383,Bright Room in the Heart of Astoria,2568028,Maria,Queens,Astoria,40.76963,-73.92993,Private room,50,1,5,2016-12-17,0.16,1,0 +65834,Beautiful 1 Bedroom Apt Park Slope,321934,Jessica,Brooklyn,Park Slope,40.673190000000005,-73.97323,Entire home/apt,175,2,11,2013-05-02,0.11,1,246 +19693849,Beautiful Brooklyn Studio,21408874,Tal,Brooklyn,Bedford-Stuyvesant,40.68243,-73.93160999999999,Entire home/apt,100,30,9,2018-08-18,0.37,1,0 +1105845,Convenient Location! 1 BR on 1Floor,3630531,Yuko,Manhattan,Chelsea,40.7457,-73.99775,Entire home/apt,160,4,5,2019-01-01,0.07,1,168 +7205668,Sunny room in GPoint/Williamsburg,25712247,Alyssa,Brooklyn,Greenpoint,40.72283,-73.95232,Private room,140,1,0,,,1,0 +36308266,A large bedroom with a king size bed in Queens.,272267421,Darkhan,Queens,Maspeth,40.73452,-73.88795,Private room,70,1,0,,,3,75 +28277480,"Clean, cozy and private room in midtown Manhattan",26045887,Ivy,Manhattan,Murray Hill,40.7483,-73.9736,Private room,105,1,43,2019-06-21,4.24,2,176 +12887457,HUGE AMAZING STUDIO/ FEEL LIKE HOME,1475015,Mike,Manhattan,Midtown,40.757540000000006,-73.96943,Entire home/apt,115,30,0,,,52,343 +35064196,Theater District / Times Sq / Central Park - 1 BDR,228715959,Riki,Manhattan,Hell's Kitchen,40.76284,-73.99003,Entire home/apt,160,1,2,2019-06-23,2.0,1,55 +21305248,Newly Renovated 1 Bedroom Apartment Hell's Kitchen,1710317,Elgin,Manhattan,Hell's Kitchen,40.76197,-73.98961,Entire home/apt,200,1,107,2019-07-05,5.17,1,200 +222054,CBG Helps Haiti Rm #3,22486,Lisel,Brooklyn,Park Slope,40.68012,-73.97847,Private room,120,2,23,2018-09-15,0.24,6,342 +31511086,Private cozy room in Manhattan,144006321,Lethy,Manhattan,Washington Heights,40.84282,-73.94133000000001,Private room,45,1,13,2019-07-07,2.45,1,87 +1475427,Cozy Twin for the NYC Win! [Gay/LGBT Friendly],7896605,Daveyjoe!,Queens,Sunnyside,40.742340000000006,-73.92579,Private room,102,5,8,2018-01-02,0.24,1,0 +8131285,Modern one bed in Alphabet City,17478311,Stephen,Manhattan,East Village,40.72573,-73.97926,Entire home/apt,129,3,5,2018-06-28,0.11,1,0 +3971065,Spacious Modern Apt that feels like HOME,20580437,Adam,Brooklyn,Williamsburg,40.71276,-73.95114000000001,Entire home/apt,140,2,3,2017-09-04,0.12,1,0 +23636223,Upper West Side Manhattan Comfort 2,67768251,Felipe,Manhattan,Upper West Side,40.78353,-73.97802,Private room,45,30,4,2019-04-30,0.36,3,242 +10234437,"Sunny, large 2-bedroom Williamsburg apartment",655234,Julien,Brooklyn,Williamsburg,40.71523,-73.95503000000001,Entire home/apt,199,3,0,,,1,0 +14071802,Serene private room in chic Astoria apartment.,72572525,Samantha,Queens,Astoria,40.76218,-73.92436,Private room,90,3,8,2018-08-04,0.23,2,0 +28561906,Spacious Modern Brooklyn Studio,14904449,Joseph,Brooklyn,Crown Heights,40.67347,-73.95833,Entire home/apt,110,2,9,2019-06-23,0.93,1,15 +8101762,Spacious & sunny 1 bdrm w views,16420179,Natasha,Brooklyn,Columbia St,40.68274,-74.00433000000001,Entire home/apt,125,2,2,2015-09-28,0.04,1,0 +12713863,Private Bedroom #2,66269338,Peggy,Queens,Jackson Heights,40.74776,-73.88826999999999,Private room,50,1,70,2018-07-26,1.82,4,345 +26131873,Stunning 1 Bedroom 2 Bathroom in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76234,-73.98947,Entire home/apt,199,30,1,2018-08-31,0.1,91,0 +26497309,Sun Drenched One Bedroom in the East Village,40594187,Christina,Manhattan,East Village,40.72256,-73.9848,Entire home/apt,150,3,6,2018-11-25,0.48,1,4 +30082832,Cozy 2BD Parlor Level w/ Deck Apt in Brooklyn,226048286,Denise,Brooklyn,Clinton Hill,40.69415,-73.96581,Entire home/apt,250,2,30,2019-07-06,5.29,1,274 +706347,"HISTORIC WILLIAMSBURG, BKLYN #2",839679,Brady,Brooklyn,Williamsburg,40.71796,-73.95439,Private room,69,3,2,2013-05-06,0.03,3,284 +9844805,Bespoke 2 Building Garden Apartment,1761447,Marc,Brooklyn,Williamsburg,40.71032,-73.95345,Entire home/apt,290,6,1,2017-05-05,0.04,2,95 +36174744,an L.E.S. Jewel-in-the-Crown of Chinatown!,2344295,Yoav,Manhattan,Lower East Side,40.71752,-73.99146999999999,Private room,260,2,0,,,1,23 +4691649,New Studio Loft in Williamsburg w/ Private Terrace,8501698,Meghan,Brooklyn,Williamsburg,40.71971,-73.95919,Entire home/apt,140,4,1,2016-06-01,0.03,1,0 +3061106,Private Room in Cozy Downtown Apt!,15581137,Maya,Manhattan,West Village,40.73229,-74.00399999999999,Private room,130,2,0,,,1,0 +35186258,Nice and cozy Studio in Midtown Manhattan,264965107,Adriana,Manhattan,Kips Bay,40.742,-73.98154,Entire home/apt,131,2,2,2019-06-30,2.0,1,11 +33801421,The best building in Bed-Stuy,46430057,Pharohl,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94431,Entire home/apt,60,1,7,2019-07-01,7.0,1,17 +723507,Space! Light! Charm! 1BR close to subways & park,3737582,Ellen,Manhattan,Upper West Side,40.79241,-73.97111,Entire home/apt,195,3,17,2018-09-18,0.43,1,26 +19948618,Amazing studio step away from Time Square/54B,48146336,Irina,Manhattan,Hell's Kitchen,40.763090000000005,-73.99214,Entire home/apt,130,30,7,2019-06-29,0.34,20,311 +15868654,Huge Room next to subway - 15min from Times Square,21503447,Anthony,Manhattan,Washington Heights,40.8451,-73.94100999999999,Private room,65,5,3,2017-05-06,0.1,1,179 +204833,"Great, spacious apt in Williamsburg",903686,Melanie,Brooklyn,Williamsburg,40.7093,-73.9497,Private room,100,6,8,2015-09-17,0.09,1,249 +32670715,Family Friendly 2 Bedroom Apartment with Parking.,105956343,Ali,Brooklyn,Sheepshead Bay,40.58594,-73.93182,Entire home/apt,125,2,13,2019-06-30,3.98,1,0 +22545284,"Private Brooklyn studio, cozy for wintertime",3073721,Jennifer,Brooklyn,East Flatbush,40.65398,-73.94399,Entire home/apt,85,2,52,2019-01-01,3.54,1,0 +17345621,Huge beautiful apartment - entire floor!,12501130,Phuong,Brooklyn,Crown Heights,40.67656,-73.93705,Entire home/apt,100,2,106,2019-06-16,3.72,1,28 +31561805,Pam's cozy 2 bedroom in Brooklyn,236565167,Pamilitta,Brooklyn,East Flatbush,40.6386,-73.93654000000001,Private room,80,1,10,2019-05-26,1.95,1,4 +23433516,The Kingston - A 3BR/2BA Duplex Apartment,174785774,Matthew,Brooklyn,Crown Heights,40.67487,-73.94051,Entire home/apt,162,2,3,2018-07-22,0.24,1,0 +35679614,Private BR in Eco-Friendly East Village Apt,1764739,Bobby,Manhattan,East Village,40.72352,-73.97493,Private room,85,1,0,,,1,23 +13378177,Art-filled Mid-Century Modern Apartment,3686511,Kris,Brooklyn,Prospect-Lefferts Gardens,40.66128,-73.94797,Entire home/apt,163,3,16,2019-05-28,0.52,1,154 +11531744,Charming Upper East Side priv. room + private bath,420399,Gautam,Manhattan,Upper East Side,40.76973,-73.9566,Private room,89,5,16,2019-06-29,0.4,2,80 +22050046,Cozy Corner In Heart of Manhattan,155125855,Vicente,Manhattan,Midtown,40.74669,-73.98311,Shared room,65,1,76,2018-09-12,3.97,3,0 +22374967,Family Studio near Times Square,48088611,Alberto,Manhattan,Midtown,40.74816,-73.98676,Entire home/apt,158,7,2,2018-03-19,0.12,2,0 +27281452,Budget Friendly Private Room in Brooklyn “L”,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.6838,-73.95161,Private room,60,2,25,2019-06-12,2.29,7,349 +1925519,Sublet: $490/Wk,2765870,Amarie2131,Manhattan,Lower East Side,40.7193,-73.98986,Private room,80,1,1,2015-11-01,0.02,1,0 +32234380,Cozy spot in hipster East Williamsburg,241870258,Reesey,Brooklyn,Williamsburg,40.71363,-73.93615,Shared room,75,1,2,2019-04-06,0.63,2,1 +20119649,CROWN HEIGHTS GUESTS HOUSE 3L,74541079,Abraham,Brooklyn,Crown Heights,40.67081,-73.93646,Entire home/apt,129,3,24,2019-07-01,1.04,9,74 +7694064,Quiet Sanctuary right by the Subway,24666317,Keenan,Brooklyn,Clinton Hill,40.68443,-73.96736999999999,Private room,77,2,12,2018-08-19,0.25,1,0 +34101162,Spacious with amazing views 1 bedroom apartment,22553662,Christos,Brooklyn,Clinton Hill,40.69338,-73.96751,Entire home/apt,150,7,3,2019-06-14,2.14,1,0 +1083888,"Verna's Brownstone (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68532,-73.92429,Private room,80,1,14,2019-03-08,0.2,2,283 +30387132,"Bespoke Tribeca Studio, Indoor pool + Great views by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71663,-74.00546,Entire home/apt,276,30,0,,,232,284 +22751906,Metropolitan Brooklyn Oasis in Heart of Bed Stuy,167019780,Derick,Brooklyn,Bedford-Stuyvesant,40.68117,-73.93536999999999,Entire home/apt,105,3,41,2019-06-19,2.46,1,211 +20170372,Spacious room an beautiful view to pedestrian zone,143554049,Leslie,Queens,Ridgewood,40.70061,-73.911,Private room,78,3,60,2019-06-30,2.66,1,291 +33777889,E. WILLIAMSBURG ROOM WITH PRIVATE BALCONY,4204942,Victor,Brooklyn,Williamsburg,40.70403,-73.9428,Private room,69,2,1,2019-07-01,1.0,1,36 +228496,"Spacious, Kid-Friendly 2 BR in West Village",1192424,Gordon,Manhattan,West Village,40.73507,-74.00048000000001,Entire home/apt,225,3,13,2019-05-26,0.15,1,83 +19175288,"Private room for 2ppl, 1 min from Times Square!!",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75528,-73.98312,Private room,135,4,37,2019-06-16,1.53,3,155 +8195335,Cozy room in renovated Harlem apt,43226806,Jacqueline,Manhattan,Harlem,40.80214,-73.95325,Private room,65,6,1,2017-01-31,0.03,1,0 +19531174,Cozy Room With 15 Minute Subway Ride to Manhattan!,31553738,Ian,Brooklyn,Bedford-Stuyvesant,40.6995,-73.93987,Private room,50,21,1,2018-10-23,0.12,1,0 +3993553,North Park Slope Studio,6198638,Carla,Brooklyn,Park Slope,40.67814,-73.9778,Entire home/apt,155,2,2,2015-12-01,0.04,1,0 +13956326,2 Bedroom Duplex with large backyard,18113574,William,Brooklyn,Williamsburg,40.7121,-73.93705,Entire home/apt,200,4,1,2016-08-07,0.03,1,0 +27089896,A Piece of NYC,27333268,Seneca,Manhattan,Upper West Side,40.77159,-73.98215,Entire home/apt,151,5,8,2019-01-06,0.73,1,27 +26559,Beautiful Apartment East Village,112793,Sally,Manhattan,East Village,40.7288,-73.98192,Entire home/apt,140,7,12,2017-12-11,0.13,1,164 +35065615,downtown brooklyn dream stay,90112329,Sandra,Brooklyn,Downtown Brooklyn,40.69791,-73.98380999999999,Entire home/apt,279,4,1,2019-06-24,1.0,1,23 +2214831,LAVISH 2 BR APT by Central Park!!!,11297009,Lex,Manhattan,Upper West Side,40.78605,-73.97354,Entire home/apt,99,1,153,2019-05-26,2.39,4,327 +1892319,Private BR in Chelsea (women or couples only),3416555,Anya,Manhattan,Chelsea,40.74793,-74.00690999999999,Private room,84,2,143,2019-05-04,2.13,1,311 +19242128,2 Large Bedroom Apt in quiet Forest Hills,39641996,Mike,Queens,Forest Hills,40.72428,-73.85155999999999,Entire home/apt,100,2,0,,,1,0 +9330771,East Village Studio Apartment,28396398,Cy,Manhattan,East Village,40.72919,-73.98104000000001,Entire home/apt,99,30,0,,,1,0 +22384915,King Sized Room in Prospect Lefferts Gardens,1512819,Sydney,Brooklyn,Flatbush,40.65278,-73.95392,Private room,45,3,13,2019-04-06,0.7,5,76 +14479761,Charming Studio in Astoria,5760525,Michael,Queens,Long Island City,40.76266,-73.92773000000001,Entire home/apt,105,2,51,2019-06-23,1.48,1,208 +28908658,Small Reasonable stay in NYC 3min Subway Grand Ave,204704622,Momoyo,Queens,Elmhurst,40.74035,-73.87617,Private room,29,29,1,2019-06-20,1.0,7,6 +27833130,Creative Bushwick - Cozy Private Room,210175250,Dr. Jihene,Brooklyn,Bushwick,40.6888,-73.92015,Private room,30,1,18,2019-06-23,3.6,1,93 +14466137,Crown Heights Cozy 2 Bedroom apt.,88001494,Mendy,Brooklyn,Crown Heights,40.66737,-73.93661,Private room,85,3,55,2019-07-06,1.56,3,49 +4711070,RENTING SPACE IN WOODSIDE NYC,24347671,Ioanna,Queens,Sunnyside,40.74607,-73.91415,Shared room,105,1,19,2019-05-26,0.54,1,364 +19743272,Cozy Inn,138628430,Tyeesha,Bronx,Morris Heights,40.85167,-73.92144,Private room,50,1,0,,,1,363 +15971062,Cozy room 5 mn walk to central park,2448006,El Haj,Manhattan,Harlem,40.8036,-73.94603000000001,Private room,80,2,3,2019-06-24,0.28,3,339 +4754646,Room in a great UWS apartment,6649124,Yuval,Manhattan,Upper West Side,40.80149,-73.96458,Private room,70,1,0,,,1,0 +22035507,Tudor City,20513673,Vera,Manhattan,Midtown,40.75417,-73.96556,Entire home/apt,90,6,6,2019-06-02,0.31,1,31 +17218433,ACTOR PHILIP SEYMOUR HOFFMAN LIVED HERE,4554793,Aryn,Manhattan,Chelsea,40.73899,-73.99911999999999,Entire home/apt,239,3,15,2019-02-17,0.65,1,42 +23071191,Simple and clean WaHi living room!,92192182,Alyssa,Manhattan,Washington Heights,40.84697,-73.93776,Shared room,29,1,13,2018-06-18,0.75,2,0 +33558846,Brooklyn sunny room! Short or long term stay,15178683,Acadia,Brooklyn,Flatbush,40.63376,-73.95148,Private room,30,3,0,,,1,0 +20425764,Cozy Bright 3bedroom apt. 10 min from times sq.,145717056,Jamal,Queens,Long Island City,40.75905,-73.93203000000001,Entire home/apt,295,2,106,2019-07-07,4.73,1,188 +4918117,Lovely room!- 15 min to Manhattan!!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68679,-73.92327,Private room,65,2,9,2015-05-20,0.17,4,280 +20309353,Bright private bedroom in prime Williamsburg apt,7344404,Justin,Brooklyn,Williamsburg,40.71237,-73.9598,Private room,75,4,6,2019-05-03,0.27,1,0 +34565485,West 80's Private Bedroom Walk to Central Park,21930989,Mark,Manhattan,Upper West Side,40.78996,-73.97561,Private room,97,1,5,2019-06-23,4.17,2,117 +31956393,Cozy Room in Hamilton Heights R3,158054102,Beverly,Manhattan,Harlem,40.83026,-73.94455,Private room,60,2,1,2019-06-23,1.0,3,71 +19760008,Your Home by the Park,44358777,Peter A.,Manhattan,Upper West Side,40.79874,-73.9599,Private room,67,2,5,2017-09-07,0.21,1,0 +30555709,Spacious Sanctuary -Great Neighborhood/City Center,229255407,Jose,Manhattan,Midtown,40.74551,-73.98744,Entire home/apt,150,1,4,2019-01-20,0.57,1,5 +21449446,The Oasis 2,33106693,Elena,Manhattan,Harlem,40.821670000000005,-73.95006,Entire home/apt,210,5,2,2018-08-11,0.11,3,88 +16301899,Private room in well furnished quintessential 2BR!,5865860,Jeremy,Manhattan,Midtown,40.75524,-73.96755,Private room,120,2,2,2017-06-30,0.08,1,0 +11689818,Spacious Brooklyn Apartment,22808020,Genevieve,Brooklyn,Bushwick,40.69473,-73.91882,Entire home/apt,70,7,1,2016-08-09,0.03,1,0 +2942129,"Bright Large Room near JFK, LGA & Train 2 beds",15009272,Yolanda,Queens,Woodhaven,40.69414,-73.86324,Private room,40,3,136,2019-06-09,2.21,2,291 +34393999,Amazing apartment on Wall Street!,258783968,Baktiar,Manhattan,Financial District,40.70532,-74.00681,Entire home/apt,340,2,1,2019-06-24,1.0,1,302 +25310404,Opal Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9571,Private room,60,2,24,2019-06-12,1.76,34,340 +4208547,Sweet Luxe Bed w/Private Backyard,17462748,Steven,Brooklyn,Crown Heights,40.67417,-73.94028,Private room,73,5,102,2019-07-06,1.88,5,147 +34368927,Full floor of our gorgeous Harlem brownstone,20906077,Jordon,Manhattan,Harlem,40.81155,-73.94339000000001,Entire home/apt,165,4,3,2019-06-01,1.55,1,0 +27903095,5 minutes walking distance to everything you need,16594445,Jasmine,Queens,Flushing,40.76106,-73.8305,Private room,39,1,22,2019-06-22,2.14,1,82 +8467862,Heart of Downtown Tribeca,35302724,Wei,Manhattan,Tribeca,40.71924,-74.01165,Private room,127,2,2,2015-11-02,0.04,1,0 +5285553,Beautiful Views from a Warm Home,2423067,Clara,Manhattan,East Harlem,40.79303,-73.93368000000001,Entire home/apt,175,2,24,2019-03-11,0.56,2,0 +30862301,Pvt entrance lower level apt w/cable-wi-fi pvt bth,22983583,Jannette,Queens,Woodhaven,40.69545,-73.86084,Private room,30,2,8,2019-06-09,1.76,1,0 +25031182,Comfy bedroom in heart of Lower East Side,2830216,Drew,Manhattan,Lower East Side,40.71937,-73.99202,Private room,65,7,9,2018-11-17,0.71,1,0 +15360364,Cozy private room on the UES,51007432,Kristina,Manhattan,Upper East Side,40.7739,-73.94782,Private room,78,1,73,2019-05-17,2.18,1,1 +18606237,Cozy bedroom in historical home.,128338539,Reuben,Staten Island,Stapleton,40.63167,-74.07970999999999,Private room,43,1,37,2019-07-05,1.56,4,89 +12274662,Cozy Bushwick-1br w private bath,5606004,Feather,Brooklyn,Bushwick,40.70062,-73.92785,Private room,80,2,9,2018-05-30,0.23,1,0 +35093378,Exclusive renovated 1bd apt in Hell's Kitchen,68561893,Sean,Manhattan,Hell's Kitchen,40.76568,-73.98635999999999,Entire home/apt,225,3,0,,,1,151 +18517584,Amazing 2-bdrm apartment in Greenpoint with garden,550009,Jenya,Brooklyn,Greenpoint,40.72215,-73.94203,Entire home/apt,137,4,0,,,1,0 +7616651,Cute room in large apartment.,3663218,John Conor,Brooklyn,Williamsburg,40.71405,-73.94129000000001,Private room,60,1,1,2015-08-18,0.02,2,0 +24119328,Charming Brooklyn Gem with Beautiful Views,8612450,Kareem,Brooklyn,Midwood,40.61379,-73.96826,Private room,20,3,4,2018-05-31,0.26,1,18 +32572192,Cali-Retro Duplex w/ HUGE private backyard!,6701890,Jenny,Brooklyn,Greenpoint,40.73297,-73.95466,Entire home/apt,350,2,0,,,2,76 +4098271,"Spacious Bedroom, L.E.S.",20245055,Sade,Manhattan,Lower East Side,40.71273,-73.9882,Private room,72,3,56,2019-06-30,0.96,2,304 +3600496,Large & Spacious **Prime Location ,12485770,Raanan,Manhattan,Midtown,40.74596,-73.98411,Entire home/apt,148,30,9,2019-03-25,0.15,9,329 +14516582,Bright One BR w/ Balcony | Bohemian Brooklyn Apt,89680675,Mateo,Brooklyn,Bedford-Stuyvesant,40.6909,-73.95333000000001,Entire home/apt,185,5,53,2019-06-30,1.53,1,269 +7221446,# sunny skylit sanctuary in the heart of BK! #,1903737,Natalie,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93384,Private room,29,3,30,2019-03-24,0.65,3,0 +33797672,Island Dream,35224817,Nikki,Manhattan,Upper East Side,40.7613,-73.96152,Entire home/apt,220,1,0,,,1,32 +31227033,Cozy Br. 6 mins from JFK/ 35 mins from the city,137017288,Khan,Queens,Jamaica,40.68551,-73.79128,Private room,59,1,3,2019-03-10,0.57,2,37 +23952724,Best Place to stay,121379512,Maria,Bronx,Longwood,40.82434,-73.88705,Private room,44,20,0,,,2,0 +26529593,"Cosy room in Queens, 5 min walk to subway(R/M)",199524563,Bei,Queens,Rego Park,40.72738,-73.86273,Private room,65,2,21,2019-05-28,1.76,3,0 +4396939,Private Room in Midtown Manhattan,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76049,-73.99569,Private room,89,4,56,2019-06-01,0.98,2,301 +26001361,Relaxing and Tranquil Room in Park Slope,4232532,Jenn,Brooklyn,South Slope,40.6611,-73.98109000000001,Private room,112,1,5,2018-11-14,0.39,2,0 +19135548,Hottest building in Williamsburg -private bathroom,7604436,M,Brooklyn,Williamsburg,40.7203,-73.95729,Private room,128,3,22,2019-06-14,1.43,1,305 +14006729,Cozy private bedroom in West Harlem,254650,Brandi,Manhattan,Harlem,40.80431,-73.95245,Private room,75,2,3,2016-08-25,0.08,2,0 +20955493,Welcoming New York,103477264,Orain,Queens,St. Albans,40.70791,-73.75625,Private room,45,1,30,2018-10-20,1.37,1,0 +24428965,Modern & Spacious Apartment in Central Harlem,22460686,Diane & Brice,Manhattan,Harlem,40.81716,-73.94279,Entire home/apt,165,3,33,2019-06-03,2.3,1,192 +95883,Spacious Loft in Clinton Hill,509918,Eduardo,Brooklyn,Bedford-Stuyvesant,40.69465,-73.95458,Entire home/apt,200,5,4,2018-12-26,0.07,1,9 +18728971,Huge Williamsburg Loft (true loft!),10113673,Danni,Brooklyn,Williamsburg,40.71432,-73.95629,Entire home/apt,155,2,2,2017-06-12,0.08,1,0 +24569072,Chateau Le Hamilton Heights,185636316,Benjamin,Manhattan,Harlem,40.82291,-73.94256,Entire home/apt,119,7,6,2019-04-02,0.43,1,201 +24202365,Private room in Manhattan NYC. Train a min away!,182440062,Juan,Manhattan,Harlem,40.82484,-73.93913,Private room,55,1,7,2019-06-22,0.55,2,157 +3368441,Modern rowhouse in prime Ft Greene,5783747,Kathrine,Brooklyn,Fort Greene,40.68981,-73.97768,Entire home/apt,316,3,29,2019-06-23,0.49,1,6 +35793693,Sonder | 116 John | Cozy Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70831,-74.00641999999999,Entire home/apt,180,29,0,,,327,342 +8975201,Great 2BR Apartment,46901221,Sandy,Brooklyn,Sheepshead Bay,40.59629,-73.96367,Entire home/apt,119,2,174,2019-06-30,3.88,2,65 +24970982,Central & Comfortable 1BR Brownstone Apartment,4303181,Veronique,Brooklyn,Carroll Gardens,40.68352,-73.9999,Entire home/apt,150,2,37,2019-06-25,2.93,1,100 +2501809,Parkside Apartment on Prospect Park,12806055,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.6574,-73.96174,Private room,45,2,3,2015-09-21,0.06,1,151 +32338134,Cozy Greenpoint Getaway,13543967,Paulina,Brooklyn,Greenpoint,40.72912,-73.95203000000001,Private room,100,3,4,2019-06-30,1.36,1,53 +10850026,Renovated Hamilton Heights apt,7594757,Chaz,Manhattan,Washington Heights,40.83625,-73.94062,Private room,40,2,18,2017-11-24,0.44,1,0 +30942047,Holiday Get Away,19902999,Jose,Manhattan,Midtown,40.75914,-73.9798,Entire home/apt,150,1,1,2018-12-31,0.16,1,0 +9824042,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74423,-73.97742,Private room,69,4,107,2019-04-15,2.5,2,0 +4295733,Comfortable Room w/access to full apartment,10981052,Talisa,Brooklyn,East Flatbush,40.64768,-73.95138,Private room,45,1,5,2018-07-27,0.27,1,0 +271950,Huge luxury 1BR apt near Central Park South(4 ppl),1362808,Max,Manhattan,Upper East Side,40.76373,-73.96897,Entire home/apt,300,3,5,2018-12-31,0.08,1,27 +23696307,"Lovely 2 bdr loft in Clinton Hill, Brooklyn",3464870,Nina,Brooklyn,Bedford-Stuyvesant,40.69219,-73.95851,Entire home/apt,150,3,11,2019-06-09,0.8,1,2 +2016579,Cozy Private room in Brooklyn,8013034,Kenny And Christine,Brooklyn,Bushwick,40.69641,-73.90994,Private room,79,1,13,2018-12-01,0.49,2,315 +22483942,Home Away from Home: The Cerebral Room,130971031,J-,Brooklyn,Bushwick,40.70093,-73.91864,Private room,69,2,22,2019-06-18,1.21,4,139 +8013498,Huge Studio! Prime Harlem! Clean!,42309351,Lyuba,Manhattan,Harlem,40.82987,-73.94625,Entire home/apt,77,15,2,2015-10-12,0.04,1,0 +27678171,~*PLANT HAVEN*~ Private Room -Charming Garden Apt,94390487,Samantha,Brooklyn,Bedford-Stuyvesant,40.68592,-73.93117,Private room,85,3,11,2019-05-27,1.04,1,170 +20458607,1 BR w/ Private Entrance and Exclusive Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70561,-73.92378000000001,Private room,80,2,0,,,2,0 +13042752,Cozy Spacious Double Bed #1 Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69617,-73.85204,Private room,45,1,235,2019-06-30,6.15,4,278 +19590073,Cozy room in Nolita,137702768,Dorothea,Manhattan,Little Italy,40.71885,-73.99514,Private room,120,7,14,2018-12-13,0.62,1,64 +30913224,"Cozy and Sunny Room Williamsburg, Luxury Building",33771081,Rémy,Brooklyn,Williamsburg,40.709590000000006,-73.94651999999999,Private room,80,3,2,2019-05-08,0.31,1,0 +24746840,Cozy gem in Bushwick/Bed-stuy,63671528,Patricia,Brooklyn,Bedford-Stuyvesant,40.69475,-73.93585999999999,Private room,40,7,1,2018-05-27,0.07,1,0 +13941210,Bright Astoria Apt Near Manhattan,17452232,Lili,Queens,Ditmars Steinway,40.77121,-73.9171,Entire home/apt,70,2,9,2017-10-07,0.26,1,0 +22797190,Large 1 bedroom apartment East Village / Gramercy!,9374496,Svetlana,Manhattan,Gramercy,40.73307,-73.98347,Entire home/apt,150,3,16,2019-06-23,0.9,1,0 +18225813,Pendulum Palace,44785461,William,Brooklyn,Williamsburg,40.70655,-73.95405,Private room,69,15,0,,,1,0 +34698543,Harlem Roots Chic Apt,261728099,Jade,Manhattan,Harlem,40.82639,-73.93894,Entire home/apt,75,28,0,,,1,41 +27928809,The Ultimate W-Burg Experience-Historic Building!,183400278,Jan,Brooklyn,Williamsburg,40.71153,-73.94556999999999,Entire home/apt,104,2,5,2019-06-23,0.54,1,179 +29998952,Large Private Bedroom in Brownstone Apartment,225513415,Tresanna,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93892,Private room,75,2,26,2019-06-27,3.66,2,21 +11973701,2BR Comfy Apt - 15min from MIDTOWN,15789646,Steven,Queens,Sunnyside,40.74518,-73.91704,Entire home/apt,150,30,7,2019-01-04,0.18,2,338 +4178152,"Modern Private Entrance Bedroom, Nr A/C Subways",17462748,Steven,Brooklyn,Crown Heights,40.675990000000006,-73.93995,Private room,77,5,108,2019-06-28,2.14,5,129 +13617449,Morningside Heights: Comfy and Cozy 1 BR,32219748,JacQueline,Manhattan,Morningside Heights,40.81005,-73.9572,Entire home/apt,105,5,2,2016-08-29,0.06,1,0 +34440093,1 bedroom in lovely 2 bdr apartment (Manhattan),73195328,Uta,Manhattan,Harlem,40.8299,-73.94360999999999,Private room,69,7,2,2019-06-26,1.71,1,30 +9113032,Large 1 Bedroom apartment in 1897 landmarked house,15175378,Missy & Julien,Brooklyn,Crown Heights,40.67594,-73.94839,Entire home/apt,145,5,98,2019-06-29,2.26,2,88 +12388091,Diamond in Upper West Side,1704335,Rem,Manhattan,Upper West Side,40.79749,-73.96307,Private room,56,7,1,2016-06-05,0.03,1,0 +660016,"Peaceful with Windows, Brooklyn Apt",270064,Sean - Hygge Stay,Brooklyn,Williamsburg,40.70249,-73.9488,Entire home/apt,139,2,211,2019-07-04,2.57,1,19 +26138643,Sunny Apartment In The Heart of Lower Manhattan,6213880,Chelcie,Manhattan,Lower East Side,40.72202,-73.98921999999999,Entire home/apt,145,2,16,2019-06-09,1.55,1,2 +13445027,Large sunny Bedroom in Brooklyn Loft,66786569,Raphaëlle,Brooklyn,Williamsburg,40.70475,-73.93663000000001,Private room,62,2,5,2017-12-30,0.13,1,0 +4974843,Charming private Studio,25641892,Tonia,Staten Island,West Brighton,40.631820000000005,-74.124,Entire home/apt,70,2,196,2019-06-21,3.63,1,231 +33901138,Location! Room in Bklyn 10 minutes to Manhattan B3,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69765,-73.94715,Private room,81,2,10,2019-07-05,4.17,6,121 +19407360,Greenpoint top floor w/ sun & views,1341922,Blake,Brooklyn,Greenpoint,40.72412,-73.95260999999999,Private room,49,1,0,,,1,0 +13340543,"Bright, Spacious Studio in Upper East Side",75561563,Mindy,Manhattan,Upper East Side,40.76284,-73.96038,Entire home/apt,150,1,25,2018-06-26,0.67,1,0 +11817212,Spacious sun filled private room.,264366,Neil,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94118,Private room,60,2,0,,,1,0 +15720621,2 family home. Top floor with private entrance way,101557399,Lydia,Brooklyn,East Flatbush,40.6418,-73.93947,Entire home/apt,120,2,56,2019-07-07,1.82,1,85 +19138212,Super Sunny & Stylish Soho Loft,9374970,Barrett,Manhattan,SoHo,40.72486,-74.00318,Entire home/apt,250,28,11,2018-09-28,0.48,1,151 +35028223,Cozy Central Park Studio!: 2Min to Train,263641050,Daniel,Manhattan,East Harlem,40.7988,-73.94339000000001,Entire home/apt,200,4,5,2019-06-30,3.95,1,303 +10967026,Quaint Room in Upper Manhattan,4837798,Jayson,Manhattan,Harlem,40.82561,-73.9446,Private room,50,3,107,2019-07-01,2.57,1,209 +31416916,"2 Bedrooms Nearby Free ""Manhattan Ferry""",231352789,Farah,Staten Island,Tompkinsville,40.63515,-74.07929,Private room,85,2,29,2019-07-07,5.0,3,296 +10032285,Charming bedroom in Manhattan,20884486,Luis,Manhattan,Morningside Heights,40.80483,-73.96486,Private room,70,1,0,,,1,0 +39704,"Private, Large & Sunny 1BR w/W&D",170510,Renée,Brooklyn,Bedford-Stuyvesant,40.68306,-73.94659,Entire home/apt,135,2,309,2019-06-22,2.86,2,3 +4936694,PenthousPrivate room & bath w roof,2439175,Gary,Brooklyn,Bedford-Stuyvesant,40.69147,-73.94113,Private room,65,4,180,2019-06-17,3.37,1,6 +7768661,Brand new Manhattan Apartment sleeps 7!,39921605,Rachel,Manhattan,Upper West Side,40.80328,-73.96898,Entire home/apt,238,30,14,2019-04-03,0.31,5,91 +248865,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73787,-73.95385,Entire home/apt,199,3,34,2019-04-22,0.37,28,60 +1891798,The Spencer,3196987,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95366,Entire home/apt,97,5,44,2018-12-31,1.5,1,66 +20755,"Large Parlor Room, Landmark Home 1 block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.96600000000001,Private room,98,7,16,2019-05-31,0.2,6,185 +33528090,Sonder | 21 Chelsea | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.7425,-73.99443000000001,Entire home/apt,260,29,0,,,327,365 +34277091,Entire sunny apartment in Crown Heights,34648989,Sebastián,Brooklyn,Crown Heights,40.67058,-73.95347,Entire home/apt,97,6,0,,,1,101 +13882864,Pre-War 1 BR with Scenic Manhattan Views,82168970,Michael,Staten Island,St. George,40.64475,-74.07811,Private room,50,1,0,,,1,0 +26845312,10 MINUTES FROM MANHATTAN (Big),47015275,Kathy,Queens,Elmhurst,40.74503,-73.88761,Private room,80,1,3,2018-10-07,0.29,2,317 +212178,1 Bedroom Pre War apt,1094178,Jeremy,Manhattan,Theater District,40.75877,-73.98863,Entire home/apt,230,2,179,2019-06-19,1.88,1,44 +21546425,"Cozy, quiet one bedroom in the heart of Bedstuy!",37149695,Angelo,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94339000000001,Entire home/apt,100,3,1,2018-01-02,0.05,1,0 +4016173,Turn of the Century Railroad Flat /4 day Wknd,9639040,Joanne,Brooklyn,Park Slope,40.66723,-73.98043,Entire home/apt,100,2,18,2019-06-24,0.31,1,58 +32634304,Sonder | Stock Exchange | Modern Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70598,-74.01193,Entire home/apt,211,2,15,2019-06-21,4.21,327,325 +30759388,"Convenient, comfy, and bright apartment",7389707,Yael,Manhattan,Washington Heights,40.84658,-73.93979,Entire home/apt,200,2,0,,,2,0 +3425054,Gorgeous 1BR Park Slope Apt/Garden,7398990,Laura,Brooklyn,Park Slope,40.67505,-73.97795,Entire home/apt,100,5,10,2018-01-05,0.17,1,0 +25477608,Bright Private Bedroom Close to Central Park,192290899,Nicholas,Manhattan,Upper West Side,40.77403,-73.98803000000001,Private room,123,3,55,2019-07-04,4.09,1,53 +16893907,Newly renovated modern Apt in heart of Astoria NY,11787695,Charlie,Queens,Astoria,40.76773,-73.91701,Entire home/apt,175,4,12,2019-06-24,0.47,1,42 +10405891,Charming & bright Williamsburg loft,2360150,Simona,Brooklyn,Greenpoint,40.72025,-73.95195,Entire home/apt,190,2,0,,,1,0 +17717799,Neat En-suite room attached PRIVATE full bath,120767920,Jimmy &Cindy,Queens,Flushing,40.75708,-73.81268,Private room,51,2,129,2019-06-23,4.63,10,355 +3090922,"Private Rm in Cozy Wburg Loft, 1 blk fr Bedford L",4936720,Mac,Brooklyn,Williamsburg,40.7152,-73.95445,Private room,75,1,52,2019-06-16,1.29,2,25 +17014341,Spacious Studio in E Flatbush,104122404,Vanessa,Brooklyn,East Flatbush,40.63844,-73.92868,Entire home/apt,91,1,117,2019-06-19,3.99,1,60 +11031059,Private Room in Bedstuy Brownstone,44776542,Danielle,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94898,Private room,66,1,0,,,1,0 +16511493,You Deserve The Royal Treatment.,108433379,Percy,Bronx,Norwood,40.87692,-73.87427,Entire home/apt,130,5,0,,,1,89 +35726476,Queen Sized Bedroom with Frontal Ocean View,26935419,Nikki,Brooklyn,Brighton Beach,40.5771,-73.96499,Private room,120,1,0,,,1,252 +6421429,Dominique's LowerLevel 1 bdrm pad*video projects,310670,Vie,Bronx,Eastchester,40.88241,-73.83422,Entire home/apt,115,1,6,2019-06-30,0.18,13,364 +29364202,Modern + colorful 2-BR in lively Clinton Hill,5120616,Amenee,Brooklyn,Clinton Hill,40.68634,-73.96117,Entire home/apt,150,3,0,,,1,0 +158955,PRIVATE and SUNNY Williamsburg Apt!,465589,Amia,Brooklyn,Williamsburg,40.70867,-73.94284,Entire home/apt,139,2,385,2019-06-29,4.0,1,222 +9733227,Huge Modern Apartment Williamsburg,4396337,Nicolo,Brooklyn,Williamsburg,40.719640000000005,-73.95538,Entire home/apt,159,28,4,2018-04-30,0.1,1,0 +350525,Spacious 2BR near Botanic Garden,74777,Niki & Colin,Brooklyn,Crown Heights,40.66888,-73.95291999999999,Entire home/apt,145,14,46,2018-06-19,0.52,1,38 +15100883,New york Multi-unit building,95623284,Pablo,Bronx,Fordham,40.86533,-73.89713,Private room,40,3,1,2018-09-24,0.1,1,179 +9788141,Bedroom in UWS,50448556,Miguel,Manhattan,Harlem,40.80518,-73.95099,Private room,100,1,1,2015-12-03,0.02,5,0 +20150874,Modern and artsy bedroom on top floor of Duplex,30933708,Emmanuel,Brooklyn,Bushwick,40.69711,-73.91519,Private room,75,2,8,2018-07-16,0.35,1,0 +18194429,Adorable Upper West Side Apt steps to Central Park,125565839,Kim,Manhattan,Upper West Side,40.79345,-73.97191,Entire home/apt,50,5,12,2017-10-01,0.44,1,0 +35943602,$79.00 per night in the safest neighborhood in NYC,267710728,James,Bronx,Pelham Gardens,40.86143,-73.84555999999999,Entire home/apt,79,2,2,2019-07-06,2.0,2,169 +26358309,Beautiful & Quiet Room in Astoria Ditmars New York,198084744,Sabine,Queens,Ditmars Steinway,40.77685,-73.90824,Private room,50,2,58,2019-05-29,4.69,1,13 +1091582,Two Comfy Rooms in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66326,-73.98805,Private room,89,1,49,2019-06-24,0.66,4,24 +34986604,Apartment near JFK and Manhattan,150285098,Ahsan,Queens,Howard Beach,40.66238,-73.83628,Private room,150,1,0,,,1,89 +13490372,Sunny one-bedroom with terrace in Park Slope,39177865,Alicia,Brooklyn,South Slope,40.6612,-73.98568,Entire home/apt,70,70,3,2018-04-08,0.08,1,0 +19867655,Williamsburg Brooklyn,5244814,Gina,Brooklyn,Williamsburg,40.71949,-73.95827,Entire home/apt,200,3,1,2019-01-02,0.16,1,0 +18649105,Large 1 Bedroom in Astoria/Long Island City!,44838931,Andrea,Queens,Astoria,40.76843,-73.93257,Private room,90,3,17,2019-04-23,0.65,2,334 +28409399,Affordable Studio for First-Time Travelers to NYC,88982022,Timothy,Manhattan,Upper East Side,40.77878,-73.95694,Private room,130,1,15,2018-12-30,1.56,1,0 +19364266,"Private room in charming, eclectic Flushing home",135732224,Laura,Queens,Flushing,40.754740000000005,-73.82166,Private room,44,1,0,,,1,0 +7663730,Private room in Brooklyn,33007145,Daphne,Brooklyn,Bushwick,40.695890000000006,-73.93231999999999,Private room,65,1,3,2016-05-25,0.06,1,0 +26811414,Charming House near Prospect Park,9296262,MIchele,Brooklyn,Windsor Terrace,40.65251,-73.97598,Entire home/apt,145,3,3,2018-08-02,0.26,1,69 +2191612,Full apartment - perfect location,6959160,Craig,Manhattan,Hell's Kitchen,40.76293,-73.98980999999999,Entire home/apt,150,5,9,2018-09-04,0.15,1,6 +34907584,Nice 1 Bedroom in Washington Heights,232410,Lynne,Manhattan,Washington Heights,40.83903,-73.94588,Entire home/apt,125,2,2,2019-06-02,1.4,1,321 +19264368,Relaxing Room in a Spacious Artist Apartment,314115,Gigi,Bronx,Morrisania,40.8329,-73.89608,Private room,60,5,4,2018-07-29,0.16,1,175 +33448532,Tribeca Apt w/ Rooftop Views,251986333,Juliet,Manhattan,Civic Center,40.71626,-74.00256999999999,Private room,200,4,5,2019-06-06,1.97,1,327 +28014495,Modern Sunlit Brooklyn Apartment,111284635,Kevin,Brooklyn,Bedford-Stuyvesant,40.67856,-73.94483000000001,Private room,55,2,11,2019-05-05,1.15,1,4 +4117134,Beautiful Room in the heart of NYC. Hell's Kitchen,4934489,Jessica,Manhattan,Hell's Kitchen,40.76032,-73.99076,Private room,100,2,8,2018-12-09,0.97,3,0 +9178165,Great Space.. Central Park Area!,527811,D. Christopher,Manhattan,Harlem,40.79724,-73.94968,Private room,80,1,200,2019-06-23,4.51,1,58 +504322,Sunny 1BD in Greenwich Village,471928,Mahalia,Manhattan,Greenwich Village,40.72903,-74.00028,Entire home/apt,180,3,18,2017-07-01,0.21,1,0 +36100102,"Central Harlem Lux, near to all major restaurants.",271432195,Mohamed,Manhattan,East Harlem,40.80605,-73.94208,Entire home/apt,175,1,1,2019-07-05,1.0,1,307 +23763367,Astoria Prime,178237936,Jay,Queens,Astoria,40.77451,-73.92712,Entire home/apt,89,2,68,2019-06-29,4.33,1,64 +15069131,Walk to Yankee Stadium; revel in the atmosphere.,8815256,Thomas,Bronx,Concourse Village,40.82974,-73.92092,Entire home/apt,159,1,0,,,1,89 +20280692,"2 bedroom New York, Queens",46407533,Alba,Queens,Ditmars Steinway,40.78182,-73.91248,Entire home/apt,160,5,2,2018-09-02,0.09,1,0 +3258196,"Big sunny room, prime location!",169843,Goran,Brooklyn,Williamsburg,40.71601,-73.9587,Private room,89,3,73,2019-01-07,1.19,1,359 +20787735,"The Schoolhouse, Garden Floor",44459590,Ian,Brooklyn,Bushwick,40.70015,-73.93951,Shared room,85,1,0,,,1,0 +35682665,Big sunny room for women only,267912902,Shira,Brooklyn,Borough Park,40.62434,-73.98821,Private room,80,3,1,2019-06-25,1.0,2,179 +7851219,- A - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71631,-73.96353,Private room,60,2,121,2019-06-18,2.55,8,69 +11452,Clean and Quiet in Brooklyn,7355,Vt,Brooklyn,Bedford-Stuyvesant,40.68876,-73.94312,Private room,35,60,0,,,1,365 +18924446,Peaceful cozy place in the middle of the crowds.,57230304,Imanuelly,Queens,Elmhurst,40.73218,-73.88461,Private room,75,1,1,2019-05-05,0.46,3,364 +24287062,Sally's hideaway,180289633,Aleksej,Queens,Woodside,40.7466,-73.89175999999999,Entire home/apt,150,4,27,2019-06-23,2.0,1,321 +35883107,Unbeatable & Massive Midtown 3 Bedroom Apt,269215864,Shivam,Manhattan,Hell's Kitchen,40.76405,-73.99004000000001,Entire home/apt,299,4,0,,,1,95 +21588023,Seasonal Beautiful Exposed Brick Brownstone,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68471,-73.93885,Private room,50,2,12,2019-06-21,0.61,5,10 +27628480,Great room#1,208136645,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.94351999999999,Private room,49,2,9,2019-06-02,0.83,4,132 +34926055,New Studio in the UES with Gym and Pool #6126,130270076,Keren,Manhattan,East Harlem,40.78645,-73.94873,Entire home/apt,150,30,0,,,2,311 +23896110,Charming one bedroom / West village,175315624,Shelby,Manhattan,West Village,40.7317,-74.00708,Entire home/apt,163,7,7,2018-07-18,0.48,1,0 +6259989,Large room in Prospect Heights,11131161,Tina,Brooklyn,Crown Heights,40.67822,-73.96069,Private room,60,7,0,,,1,0 +4753639,Heaven On Riverside,24530713,Byron,Manhattan,Harlem,40.82332,-73.95470999999999,Private room,90,2,16,2019-04-30,0.3,3,235 +34213482,Sonder | The Nash | Relaxed 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74883,-73.9752,Entire home/apt,200,29,0,,,327,365 +23306531,55 Blue Room Star Studio Apt merged Quiet Cave,173535994,Tyni,Manhattan,East Harlem,40.79497,-73.9477,Entire home/apt,118,1,7,2018-05-27,0.42,1,0 +14180414,Private room in 2bedroom apartment @ East Village,85898729,Maxime,Manhattan,East Village,40.73178,-73.98613,Private room,100,3,12,2018-03-18,0.34,1,0 +35650240,1 Private bedroom in a spacious Wburg Apartment,8518298,Sanket,Brooklyn,Williamsburg,40.70924,-73.95208000000001,Private room,57,2,3,2019-07-04,3.0,1,29 +8662997,2 BEDROOM IN WILLIAMSBURG MINUTES FROM MANHATTAN,45468039,Kevin,Brooklyn,Williamsburg,40.71871,-73.95862,Entire home/apt,285,2,53,2019-05-26,1.2,1,13 +6688119,Cozy Apartement,35005938,Carole,Brooklyn,South Slope,40.66136,-73.98437,Entire home/apt,199,1,1,2015-06-06,0.02,1,0 +25188064,Beautiful Cozy Apt near Subway - Historic Brooklyn,11501956,Karine,Brooklyn,Bedford-Stuyvesant,40.68273,-73.91651,Entire home/apt,150,3,28,2019-06-29,2.04,1,316 +1446483,Cozy 1BD in Vibrant East Village,5283769,Donna,Manhattan,East Village,40.7223,-73.9821,Entire home/apt,140,2,149,2019-06-16,2.41,1,16 +17738174,Bayside Room w/ 1 Bed,116746802,Christine,Queens,Bayside,40.74924,-73.75654,Private room,49,3,29,2019-06-16,1.07,5,96 +13355711,Private room in Washington Heights,39644709,Adriana,Manhattan,Washington Heights,40.851,-73.93141,Private room,35,3,1,2016-07-31,0.03,1,0 +35082227,The aqua roon or the peach room,264267484,Natasha,Brooklyn,East New York,40.6613,-73.88756,Private room,100,2,1,2019-06-24,1.0,1,270 +33908098,Cozy Room near Prospect Park!,42483494,Chris,Brooklyn,Windsor Terrace,40.64807,-73.9789,Private room,40,7,0,,,1,102 +11959854,Affordable Private Cozy Room!,45990565,Alba & Genesis,Bronx,Morris Heights,40.8522,-73.91014,Private room,26,3,21,2019-06-08,0.64,2,127 +22176542,Modern Comfort in West Village,162001851,Erica,Manhattan,West Village,40.73696,-74.00397,Entire home/apt,170,1,12,2018-05-11,0.65,1,0 +34993569,Amazing 2 Bed in Luxury Building with Gym #6105,116305897,Laura,Manhattan,Upper West Side,40.78948,-73.97228,Entire home/apt,290,30,0,,,9,338 +20785435,Rest Assured Private room/Ensuite bath nearJFK,94713722,Joy,Queens,St. Albans,40.68998,-73.75477,Private room,60,2,23,2018-11-11,1.23,4,0 +2169106,Huge Sunny Room In Awesome Apt/Neighborhood,11066377,Brett,Brooklyn,Prospect-Lefferts Gardens,40.6591,-73.96115999999999,Private room,100,2,13,2019-05-19,0.36,1,365 +20194342,Two private bedrooms; feet from subway (6),70418696,Brady,Manhattan,East Harlem,40.78757,-73.95089,Private room,185,2,98,2019-06-26,5.19,1,103 +8241378,West Village: the best part of town,43461780,Andrew,Manhattan,West Village,40.73618,-74.00201,Private room,109,1,0,,,1,0 +5121,BlissArtsSpace!,7356,Garon,Brooklyn,Bedford-Stuyvesant,40.68688,-73.95596,Private room,60,45,49,2017-10-05,0.4,1,0 +16528098,Cozy apartment in the heart of West Village,7244288,Eric,Manhattan,West Village,40.7326,-74.00824,Entire home/apt,180,3,46,2018-09-22,1.51,1,0 +4717440,"Bright, art-filled elevator apt, LES/Chinatown",3237577,Eddie,Manhattan,Chinatown,40.71585,-73.98982,Entire home/apt,170,3,94,2019-06-23,1.71,1,7 +28600950,Wonderful and bright 1BR steps from Central Park,4166822,Kay,Manhattan,Upper West Side,40.79012,-73.96896,Entire home/apt,127,3,14,2019-06-04,1.78,1,0 +4615631,Charming Bedroom in Cozy NYC Apt.,22350590,Veronica,Manhattan,Harlem,40.82351,-73.94046999999999,Private room,85,10,57,2019-06-10,1.03,1,6 +17434977,1B Large studio in Williamsburg with terrace,49704571,Krzysztof,Brooklyn,Williamsburg,40.71942,-73.94272,Entire home/apt,80,30,6,2019-01-19,0.22,8,156 +5309460,Spacious Room in Uptown Manhattan,7989115,Nikki,Manhattan,Washington Heights,40.83299,-73.94527,Private room,150,2,8,2018-06-23,0.16,1,364 +23683049,Luxurious Three Bedroom,80344984,Alexis,Manhattan,Harlem,40.82733,-73.94937,Entire home/apt,245,3,28,2019-06-26,1.74,1,272 +19814107,"COMFY “Twin bed"" NEXT-LGA AIRPORT/Pre Book-US OPEN",32446721,Veronica,Queens,Corona,40.74825,-73.86395999999999,Shared room,37,1,18,2019-07-03,0.75,6,365 +15845669,Beautiful Renovated Apartment NYC.,21444167,Rony,Bronx,Kingsbridge,40.88297,-73.90727,Entire home/apt,105,3,54,2019-06-24,1.68,2,278 +34485739,Midtown Manhattan Private Alcove Suite,261632622,Royalton,Manhattan,Theater District,40.75481,-73.9856,Private room,100,1,0,,,9,317 +24305252,"The Architect’s Suite w/ Private Bath, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.87997,-73.90035,Private room,65,3,54,2019-06-19,3.69,4,64 +10811548,Historic Greenwich Village apt.,19408191,Julien,Manhattan,Greenwich Village,40.72891,-74.00109,Entire home/apt,149,5,0,,,1,0 +14141050,Two bedrooms available in a cozy apartment.,1715674,Shriya,Brooklyn,Windsor Terrace,40.655440000000006,-73.97491,Private room,130,2,4,2018-01-01,0.11,1,0 +24034853,Spacious Bedroom in Prime Brooklyn Location,18168381,Jessica,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93235,Private room,45,3,7,2019-06-22,0.46,1,0 +15563563,NEW- Bright 2 Bed Williamsburg Loft w/Private Roof,40991179,Justin,Brooklyn,Williamsburg,40.72022,-73.95814,Entire home/apt,345,3,13,2019-05-27,0.41,2,9 +22122354,3 Minutes to Central Park ❤︎ of NYC!,161616186,Santiago,Manhattan,Upper West Side,40.78233,-73.98415,Entire home/apt,150,3,20,2019-06-22,1.08,1,36 +26923831,▲Cozy Apartment at Union Square▲,202587266,Matt,Manhattan,Gramercy,40.73502,-73.986,Entire home/apt,125,2,34,2019-06-02,3.11,1,12 +10708300,Beautiful Garden Apartment Close to Train,55334250,Kara & Tyler,Brooklyn,Crown Heights,40.6643,-73.95196,Private room,97,1,209,2019-06-24,5.02,1,9 +21325362,Charming bedroom (few blocks from the subway),154220885,Benny,Queens,Ridgewood,40.70516,-73.90496999999999,Private room,55,1,72,2019-07-01,3.52,2,171 +20991910,Beautifully Designed Green Point in Greenpoint,4774053,Rinat,Brooklyn,Greenpoint,40.72588,-73.94530999999999,Entire home/apt,145,3,23,2019-06-04,1.06,1,13 +35153334,Apartment in Centre of New York City,36938850,Luke,Manhattan,Hell's Kitchen,40.76591,-73.99155,Entire home/apt,150,30,1,2019-06-21,1.0,1,15 +18522547,Stunning And Stylishly Furnished Apt In Bushwick,128424841,Oscar,Brooklyn,Bushwick,40.69364,-73.91499,Entire home/apt,149,1,30,2019-06-17,1.13,1,284 +14139651,Centrally Located Private Midtown Studio,19134246,Brendan,Manhattan,Kips Bay,40.74506,-73.97934000000001,Entire home/apt,150,3,10,2019-06-15,0.37,1,8 +30200487,Upper east private bedroom,78971832,Yue,Manhattan,Upper East Side,40.76804,-73.95951,Private room,73,3,0,,,1,0 +26560264,"❤️ Beautiful, Bright Room - Late Self Check-In ❤️",191338162,William,Bronx,Allerton,40.86013,-73.86339,Private room,142,1,30,2019-07-02,2.56,5,57 +18671835,Private Room with Skyline View. Near LGA airport,129743937,Win,Queens,East Elmhurst,40.75885,-73.86959,Private room,44,1,141,2019-07-05,10.19,2,47 +14024257,1 Room in 2 Bed Apt in the heart of Nolita/Soho,14399467,Caroline,Manhattan,Nolita,40.72203,-73.99498,Private room,320,4,6,2017-10-30,0.18,2,0 +21711085,Chill modern garden apartment in Crown Heights,135204393,Robert,Brooklyn,Crown Heights,40.67034,-73.92777,Entire home/apt,90,2,31,2019-06-30,1.63,1,45 +21106395,"Cozy, tranquil bedroom steps from Central Park A",152195388,Rachel,Manhattan,Upper West Side,40.78489,-73.97345,Private room,99,20,7,2019-03-31,0.42,2,125 +34501274,Cute Bushwick One-Bedroom with Great Backyard,1486824,Samantha,Brooklyn,Bushwick,40.69402,-73.92378000000001,Entire home/apt,154,2,2,2019-06-02,1.4,1,0 +30348712,"Huge, modern apt 20 mins from Manhattan JMZ metro",40004714,Ruth,Brooklyn,Bushwick,40.69657,-73.93274,Entire home/apt,190,2,0,,,2,11 +3827311,Cozy & Sunny Hamilton Heights Apt ,19693124,Maia,Manhattan,Harlem,40.82654,-73.9462,Entire home/apt,125,1,10,2019-06-12,0.17,1,297 +29828654,Luxury high ceiling penthouse apartment,62014501,Guangnan,Queens,Long Island City,40.74781,-73.93890999999999,Entire home/apt,133,20,9,2018-12-16,1.27,1,21 +27256404,Beautiful Bushwick 3br on the subway,14487073,Jeremy,Brooklyn,Bushwick,40.70382,-73.91456,Entire home/apt,250,2,25,2019-07-01,2.37,2,260 +31124852,Totally Renovated Plush loft apartment,232618610,Hugo,Brooklyn,Cypress Hills,40.68392,-73.8693,Entire home/apt,195,4,7,2019-06-29,2.47,1,136 +13911835,Peaceful Private Space in Astoria,17927023,Rob,Queens,Astoria,40.76963,-73.93041,Entire home/apt,115,2,64,2019-07-01,1.77,1,89 +11317209,Modern Apartment in Williamsburg,20527254,Eddy,Brooklyn,Williamsburg,40.70821,-73.94719,Private room,65,2,9,2016-12-05,0.25,1,0 +12664893,Sunny Private room Central Harlem,657869,J,Manhattan,Harlem,40.80991,-73.94273000000001,Private room,73,4,69,2019-06-08,1.77,2,122 +21490787,A walk away from the best in Williamsburg,56391145,Eric,Brooklyn,Greenpoint,40.72468,-73.9523,Entire home/apt,150,3,0,,,2,0 +25126089,Beautiful Spacious Artist’s Home! * close to train,13964451,Monica,Brooklyn,Bedford-Stuyvesant,40.68316,-73.91637,Entire home/apt,120,2,34,2019-06-23,2.49,1,23 +30502914,Family Suite Beautiful Brooklyn Home,208955733,Candace,Brooklyn,East Flatbush,40.65441,-73.91995,Private room,95,1,6,2019-07-01,0.87,4,350 +9725232,"LUX Prospect Park Historic 1BR near 2,5,Q&B trains",290908,Claudia,Brooklyn,Prospect-Lefferts Gardens,40.66195,-73.95275,Entire home/apt,125,6,155,2019-06-24,3.54,1,155 +413775,Midtown East Sutton Area Entire Apt,2058589,Cary,Manhattan,Midtown,40.75816,-73.96457,Entire home/apt,275,2,16,2019-05-09,0.24,1,167 +3236301,Private room in Harlem,5164854,Lilia,Manhattan,Harlem,40.82075,-73.9379,Private room,52,7,17,2018-10-07,0.28,8,17 +26926704,Beautiful Bedroom & Bathroom in Brooklyn Oasis,23542079,Teres,Brooklyn,East Flatbush,40.6442,-73.93266,Private room,45,3,35,2019-06-30,3.01,2,30 +13084346,Sunny 1 Bedroom in Park Slope near Prospect Park,22423754,Priyanka,Brooklyn,Park Slope,40.66936,-73.97724000000001,Entire home/apt,65,8,1,2016-05-30,0.03,1,0 +35971244,Cobble Hill 2 Bedroom Garden Apartment Near Subway,76783729,Danny,Brooklyn,Cobble Hill,40.68732,-73.99096,Entire home/apt,289,30,0,,,1,105 +11891948,Lovely home located by pier,63291733,Carlyne,Brooklyn,Canarsie,40.63672,-73.88814,Entire home/apt,81,2,43,2019-06-29,1.18,1,309 +15328237,"One Room in Luxury Apartment, 5min to Midtown",47617616,Joanna,Queens,Long Island City,40.74569,-73.94684000000001,Private room,105,4,10,2019-05-29,0.33,1,70 +18527437,Spacious One bedroom in Hip Bushwick Brooklyn,2266961,Florian,Queens,Ridgewood,40.69942,-73.90968000000001,Entire home/apt,120,3,3,2018-01-03,0.12,1,0 +32309292,Cozy room with private entrance in Harlem.,6105036,George,Manhattan,Harlem,40.80521,-73.95137,Private room,145,1,14,2019-06-19,2.98,3,113 +13770759,Cozy Room w/ Queen Bed (1FL),65809485,Shirley,Queens,Flushing,40.75026,-73.82873000000001,Private room,40,7,59,2019-06-12,1.67,12,120 +19209710,"Sunny, 2BR apartment in the heart of Bushwick",19785181,Robert & Bianca,Brooklyn,Bushwick,40.70166,-73.92673,Entire home/apt,136,3,10,2018-08-25,0.4,1,0 +13486680,Large room in Sugar Hill,16685925,Douglas,Manhattan,Harlem,40.82882,-73.94148,Private room,49,7,1,2016-08-30,0.03,2,0 +17500539,"HUGE 1BR Apt, Varrazano promenade,night life& More",37519641,Ahmed,Brooklyn,Fort Hamilton,40.61364,-74.0354,Entire home/apt,160,2,4,2019-04-11,0.42,1,313 +32017624,COZY ROOM,204926318,Bibi,Brooklyn,East Flatbush,40.65351,-73.94999,Private room,40,30,0,,,1,300 +34253217,Fantastic 2 Bedroom Apartment,258599553,Matt,Manhattan,Kips Bay,40.7432,-73.97703,Entire home/apt,190,1,4,2019-06-17,2.14,1,144 +9839017,The new MBnb: No Breakfast. All Business.,3510997,Joe,Manhattan,Harlem,40.82545,-73.94969,Entire home/apt,149,31,24,2019-06-30,0.58,1,149 +19474652,Views on the hudson,136638556,Felicia,Manhattan,Harlem,40.82716,-73.93953,Private room,85,1,29,2018-12-31,1.22,1,359 +19054683,Fully-furnished modern apartment,97907084,Kim,Bronx,Wakefield,40.90281,-73.85200999999999,Entire home/apt,28,1,0,,,1,0 +29495710,Amazing One Bedroom Apartment in Prime Brooklyn,220060177,Alan,Brooklyn,Bushwick,40.69327,-73.90773,Private room,70,3,8,2019-05-19,0.95,2,362 +16377899,90 Washington St Luxury apartment,53179388,Raymond,Manhattan,Financial District,40.70742,-74.01544,Entire home/apt,200,30,1,2017-02-04,0.03,10,342 +2459587,Upper East Side Large 2 Bedroom,12575621,Daniel,Manhattan,Upper East Side,40.78474,-73.94974,Entire home/apt,180,1,0,,,1,0 +20228284,"Harlem 1 BR apartment w/ washer&dryer, near subway",132342343,Yve,Manhattan,Harlem,40.81246,-73.94906,Entire home/apt,147,2,64,2019-06-20,2.85,1,72 +12001650,"Stunning, Waterfront Views! Williamsburg Brooklyn",2295610,Rebecca,Brooklyn,Williamsburg,40.712140000000005,-73.96866,Entire home/apt,170,3,21,2019-06-02,0.53,1,0 +6542929,Clean & Cozy East Village Home Steps From Park,6789992,L,Manhattan,East Village,40.72496,-73.98289,Entire home/apt,194,2,36,2016-11-16,0.74,1,0 +29876453,"In Riverdale, a most unusual apartment to enjoy.",124867390,Karel,Bronx,Spuyten Duyvil,40.88071,-73.92074000000001,Private room,60,3,8,2019-06-16,1.11,1,326 +3670659,"Bright & New Reno, Quiet Block",16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68337,-73.95819,Entire home/apt,172,30,9,2019-03-27,0.16,21,342 +5990045,"As seen on Netflix! Bright, 3-bedroom in Red Hook",12411178,Brandon,Brooklyn,Red Hook,40.67477,-74.01046,Entire home/apt,350,2,71,2019-06-13,1.45,1,287 +32514722,"Relaxed home, middle of Lower East! Side!",165725362,Janey,Manhattan,Chinatown,40.71358,-73.99091,Entire home/apt,150,30,7,2019-06-03,1.84,2,88 +19710855,Cozy Ground Floor Apartment-SUBWAY ONE BLOCK AWAY,49764808,Danielle,Brooklyn,Bedford-Stuyvesant,40.67848,-73.91543,Entire home/apt,85,2,67,2019-06-23,2.85,2,171 +9713594,Cozy roof top apartment,11575335,Alejandro,Brooklyn,Crown Heights,40.677620000000005,-73.95764,Private room,95,2,9,2017-09-09,0.21,1,342 +6171211,Room in Prospect Heights,32018795,Ciara,Brooklyn,Crown Heights,40.66746,-73.96073,Private room,32,7,0,,,1,0 +22294102,"Chic, Cozy Gramercy Apartment",9893943,Nicole,Manhattan,Gramercy,40.73445,-73.98423000000001,Entire home/apt,220,3,12,2019-01-01,0.81,1,0 +20085006,Bright & Beautiful Brooklyn Boudoir and more! ☺,142590597,Joica,Brooklyn,East New York,40.67296,-73.87435,Entire home/apt,249,1,7,2019-05-21,0.38,6,177 +24525356,Cozy Brooklyn Greenpoint Apt.15 min to Manhattan,185267820,Alfredo,Brooklyn,Greenpoint,40.72339,-73.94322,Entire home/apt,295,1,52,2019-07-06,3.83,1,161 +19155632,Scenic & quiet Apt - Windsor Terrace/Prospect Park,114146085,Sophia,Brooklyn,Windsor Terrace,40.65013,-73.97863000000001,Entire home/apt,115,3,30,2019-04-04,1.23,1,3 +22483776,THE COOL HOUSE,55197894,Erick,Queens,Woodside,40.74907,-73.90083,Private room,30,5,7,2019-02-12,0.38,1,0 +30065616,"Bright Room, next to subway, 15 mins to NYC",737641,Sasha,Brooklyn,Bushwick,40.69874,-73.93589,Private room,50,2,30,2019-06-25,3.98,1,0 +6200613,"BIG PRIVATE ROOM, UPSCALE LOCATION",10418386,Tatiana,Manhattan,Upper West Side,40.79422,-73.97565,Private room,90,7,0,,,1,0 +1872838,Clean & Cozy 1BD,4693453,Natalie,Brooklyn,Crown Heights,40.67593,-73.95885,Entire home/apt,94,20,46,2019-02-26,0.72,1,0 +12365206,"Large Brooklyn Room, close to train",24038764,Nataly,Brooklyn,Cypress Hills,40.67708,-73.89236,Private room,60,3,2,2016-07-13,0.05,1,0 +15713028,Artsy Bedroom for Solo Traveler,101113595,Chloe,Brooklyn,Bedford-Stuyvesant,40.68012,-73.93862,Private room,89,2,2,2017-01-01,0.07,1,0 +35948933,"Lovely Private Room, 5 mins to Yankee Stadium!",270414511,Christopher,Manhattan,Washington Heights,40.83325,-73.94034,Private room,84,1,0,,,1,39 +21222809,Bed-stuY GeM !,140862658,Carmen,Brooklyn,Bedford-Stuyvesant,40.689040000000006,-73.9428,Private room,68,1,37,2019-01-20,1.84,1,0 +19242821,1 bedroom apt,134438985,Andrea,Queens,Astoria,40.76473,-73.91183000000001,Entire home/apt,199,1,5,2017-12-17,0.23,1,0 +23581183,Bright Williamsburg Condo,52763343,Marie,Brooklyn,Williamsburg,40.70794,-73.94404,Entire home/apt,250,4,0,,,1,0 +2739884,Lovely Time Square/Theater District,3417714,Cong,Manhattan,Hell's Kitchen,40.75927,-73.99223,Entire home/apt,189,5,14,2016-06-02,0.25,1,0 +2201491,BEST LOCATION! On the border of Chelsea/W Village,3579337,Nina,Manhattan,West Village,40.73776,-73.99996,Entire home/apt,156,1,8,2019-02-09,0.15,3,300 +8486828,Architect's Room in Large apt w/ rooftop deck,44697034,Kevin,Brooklyn,Bedford-Stuyvesant,40.695040000000006,-73.94807,Private room,55,1,14,2017-08-31,0.3,1,0 +30483778,Manhattan Christmas holiday room at discount!!,221285123,Serena,Manhattan,Hell's Kitchen,40.7589,-73.99165,Private room,69,10,0,,,1,0 +12916138,2 Bedrooms by Central Park & Trains,70828773,Nick,Manhattan,East Harlem,40.79617,-73.94735,Entire home/apt,179,1,1,2016-05-23,0.03,1,0 +35526,Sun Filled Classic West Village Apt,120291,Karen,Manhattan,West Village,40.73474,-74.00101,Private room,156,4,79,2019-06-22,0.74,1,307 +17437772,Private room in Harlem,200243,Laetitia,Manhattan,Harlem,40.8255,-73.9435,Private room,55,1,8,2019-05-14,0.28,2,293 +13308629,Quiet Cozy Chinatown Room,41408521,David,Manhattan,Chinatown,40.71385,-73.99710999999999,Private room,75,1,3,2017-08-12,0.08,1,0 +12670883,Entire private # in a privately own brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93495,Private room,105,10,2,2018-08-17,0.11,3,31 +20622747,Midtown East Studio,2409706,Christopher,Manhattan,Murray Hill,40.74969,-73.97936999999999,Entire home/apt,135,2,5,2018-12-07,0.23,1,0 +12684394,LUXURIOUS APT in MANHATTAN w TERRACE and GYM,49902290,Nikkita,Manhattan,Harlem,40.82469,-73.94029,Private room,115,1,2,2016-12-06,0.05,1,0 +1847261,AUTHENTIC TRIBECA LOFT NEAR SOHO,315654,Genevieve,Manhattan,Tribeca,40.71417,-74.00678,Entire home/apt,240,3,60,2019-05-04,0.91,1,348 +32241284,Sonder | Stock Exchange | Lovely 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70582,-74.01111,Entire home/apt,248,2,9,2019-06-23,2.48,327,284 +33688029,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.667840000000005,-73.95798,Private room,68,30,1,2019-05-01,0.43,7,251 +18508959,Lovely 2 bdr apartment Williamsburg w private yard,18280205,Anthony,Brooklyn,Williamsburg,40.71463,-73.95501,Entire home/apt,200,2,32,2019-06-16,1.25,1,8 +16056111,A Touch of Modern,36420662,Marc,Brooklyn,Williamsburg,40.70775,-73.94611,Private room,75,3,3,2017-04-29,0.11,1,0 +14423010,Convenient and Modern Midtown West Apartment,15978364,Kayleen,Manhattan,Hell's Kitchen,40.76395,-73.99006999999999,Private room,64,2,1,2016-08-08,0.03,1,0 +30006781,Sunlit double story studio escape in Bed-Stuy!,225558132,Dana,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95483,Entire home/apt,135,2,5,2019-04-14,0.68,1,45 +33474092,"1 Bedroom, Pvt Living Space & Bath- Till May 30th",13206448,Ruchi,Manhattan,Upper West Side,40.79908,-73.96465,Private room,50,7,2,2019-05-24,0.6,1,283 +22631779,Room Private Entrance Close to Subway/Bus/Airport,44782054,Jennifer,Queens,Ditmars Steinway,40.77317,-73.91508,Private room,55,2,58,2019-06-27,3.81,1,9 +15913986,2 Room/1 Bath Entire Apt! Next to Colleges/Train!,2270624,Ny,Manhattan,Harlem,40.81462,-73.95248000000001,Entire home/apt,203,3,13,2018-11-25,0.42,2,0 +13208233,Spacious 1st floor apartment in fantastic location,6357668,Ragi,Queens,Astoria,40.76279,-73.91767,Entire home/apt,69,4,0,,,1,0 +23185690,"Manhattan, West Side, Hudson River View",155618754,Monica,Manhattan,Washington Heights,40.84857,-73.94193,Private room,85,3,0,,,1,0 +67299,Cozy Garden Apartment in Williamsburg,330347,Adrienne,Brooklyn,Williamsburg,40.71492,-73.96282,Entire home/apt,135,30,56,2019-05-06,0.56,1,42 +21667658,Spacious Williamsburg 1BR with designer ammenities,8471197,Taya,Brooklyn,Williamsburg,40.70981,-73.95343000000001,Entire home/apt,175,3,28,2018-06-24,1.43,1,0 +17496320,Cozy sunny room 35 min to Time Square,47735494,Iris,Queens,Rego Park,40.72701,-73.87021999999999,Private room,31,1,37,2018-04-22,1.3,4,0 +24103912,⭐︎⭐︎PRIVATE Bathroom⭐︎⭐︎2min to subway+huge living,19303369,Hiroki,Queens,Woodside,40.74267,-73.90354,Private room,41,30,1,2018-09-16,0.1,37,1 +15374796,Large UWS Apt close to Central Park,7610841,Jenny,Manhattan,Upper West Side,40.80088,-73.96194,Private room,115,2,72,2019-05-19,2.55,2,275 +2030736,Room B,10384906,Susan,Brooklyn,Sunset Park,40.64532,-74.02063000000001,Private room,32,1,111,2019-04-20,1.7,5,208 +14756273,"Large private room in Astoria, 20 mins to mid-town",68276808,Summer,Queens,Ditmars Steinway,40.77392,-73.91678,Private room,50,2,10,2018-08-08,0.46,1,0 +32461960,Riverdale Pad,163737392,K,Bronx,Fieldston,40.896,-73.89964,Private room,64,1,11,2019-06-27,3.47,2,358 +2927005,Charming 2 Bedroom by Prospect Park,17930,Seryn,Brooklyn,Windsor Terrace,40.65541,-73.9761,Entire home/apt,200,5,37,2019-05-27,0.78,2,78 +20286743,New convenience room w/ major subway lines near,140057330,Joey,Queens,Elmhurst,40.74247,-73.88949000000001,Private room,55,1,61,2019-05-31,2.66,7,57 +20968536,Cute room in Bushwick,65302026,Enrique,Brooklyn,Bushwick,40.69686,-73.91431,Private room,35,1,0,,,1,0 +2695469,W50's Sunny Studio in a 24/7 DM BL,3038687,Karen,Manhattan,Hell's Kitchen,40.764790000000005,-73.98455,Entire home/apt,99,30,8,2019-05-01,0.14,8,107 +13006002,Cozy room in a beautiful and quite apartment,31996442,Annalisa,Brooklyn,Clinton Hill,40.69475,-73.96848,Private room,70,1,3,2016-07-18,0.08,1,0 +24524252,Private Modern Studio in heart of Flatbush,296491,Ely,Brooklyn,Midwood,40.61673,-73.96491,Entire home/apt,75,2,23,2019-05-27,1.55,2,49 +5102006,Quaint Sunny Cobble Hill Brownstone,26360956,Jen,Brooklyn,Cobble Hill,40.68854,-73.99533000000001,Entire home/apt,160,4,16,2016-11-21,0.3,1,0 +19887405,Elegant Arty Studio In Brooklyn,83061189,Stephen,Brooklyn,Boerum Hill,40.6859,-73.98959,Entire home/apt,150,1,8,2019-07-04,0.34,1,158 +25113126,Panda Pod,6801469,Kelly,Queens,College Point,40.78824,-73.84056,Entire home/apt,65,3,28,2019-06-25,2.13,1,26 +1102942,"1BR, 1BTH Duplex W/ LRG OUTD SPACE",6057624,Scooter,Manhattan,Kips Bay,40.74268,-73.97853,Entire home/apt,240,1,67,2019-06-15,0.89,1,321 +19717572,Large NYC Apartment!,45726938,Daulton,Manhattan,East Harlem,40.79368,-73.94131999999999,Private room,100,3,0,,,1,0 +28227271,Private Room in Fort Greene Gem,33522184,May,Brooklyn,Fort Greene,40.68629,-73.97589,Private room,75,5,6,2019-05-27,0.63,1,167 +33853876,Middle of Manhattan,62289627,Braulio,Manhattan,Hell's Kitchen,40.75939,-73.99501,Private room,100,1,1,2019-04-24,0.39,1,23 +27391028,2BR WITH PRIVATE PATIO EAST VILLAGE,200380610,Pranjal,Manhattan,East Village,40.73223,-73.98658,Entire home/apt,253,30,0,,,65,332 +6688617,"Quiet, Spacious, Safe Studio in BK",35008385,Abe,Brooklyn,Williamsburg,40.71366,-73.94021,Entire home/apt,49,7,1,2015-06-09,0.02,1,0 +36268101,Adorable apartment decorated with local art.,95143048,Jeffree,Manhattan,East Village,40.72384,-73.98791,Entire home/apt,200,2,0,,,2,314 +24380794,Trendy Williamsburg! 1 block to subway (L).,184009385,Artem,Brooklyn,Williamsburg,40.71434,-73.94275,Entire home/apt,150,2,48,2019-06-21,3.27,2,53 +33578217,"Gorgeous Gramercy Park 2BR w/ Large private terrace, Gym + Doorman",107434423,Blueground,Manhattan,Gramercy,40.73823,-73.98343,Entire home/apt,348,30,0,,,232,331 +17494449,Bright and Sunny Room in Amazing Bushwick Apt,27522582,Gabriele,Brooklyn,Bushwick,40.70105,-73.91547,Private room,50,1,0,,,3,0 +35197207,Spacious bedroom w/ private bathroom! TRULY LOVELY,257586719,Marilena,Brooklyn,Bath Beach,40.60551,-74.00129,Private room,100,1,2,2019-06-26,2.0,1,90 +36235186,Walk to Times SQ! Simple room in heart of NYC,62241191,Jonathan,Manhattan,Hell's Kitchen,40.75512,-73.99436999999999,Private room,85,1,0,,,1,6 +16814803,Cozy Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.86925,-73.89534,Private room,60,3,101,2019-06-23,3.43,10,83 +21407514,"Spacious, well-lit, with modern decor apartment!",154842298,Jessica,Manhattan,East Village,40.7266,-73.984,Entire home/apt,195,3,2,2018-05-20,0.11,1,0 +5028478,Spacious and welcoming 1 bedroom apt,3116461,Kyala,Brooklyn,East Flatbush,40.65308,-73.95109000000001,Entire home/apt,100,2,67,2019-06-14,1.27,1,153 +7134550,LES Bowery FULL 1 BDRM APARTMENT,36715249,Abdur,Manhattan,Chinatown,40.71706,-73.99285,Entire home/apt,110,3,0,,,1,0 +33309213,Room in a Stylish & Dreamy Brooklyn loft,2236212,Iva,Brooklyn,Bedford-Stuyvesant,40.67867,-73.93723,Private room,100,2,0,,,2,89 +29095217,Charming Brooklyn 2 Bedroom w/Character,24738407,Matthew,Brooklyn,East Flatbush,40.63853,-73.94869,Entire home/apt,140,3,33,2019-07-02,4.01,2,116 +19567629,East Village. Best Space/Location 1 Bdrm 1 Person,137337835,Steven,Manhattan,East Village,40.727140000000006,-73.98279000000001,Private room,70,1,129,2019-06-23,5.39,1,28 +794496,Bright Quiet Room in N. Manhattan,4185984,Greer,Manhattan,Inwood,40.8678,-73.92619,Private room,65,2,93,2018-08-03,1.16,1,0 +16753723,"Centrally Located, Large, Clean, Private Bedroom",5944004,Donna,Manhattan,West Village,40.73702,-73.99739,Private room,68,1,0,,,1,0 +10205011,Entire 1 Bedroom Apt Available In Ditmas Park,43192686,Naudia,Brooklyn,Borough Park,40.62586,-73.98079,Entire home/apt,70,5,33,2018-05-29,0.81,1,27 +30284324,Central park cheap sofa bed,214135354,Min,Manhattan,Upper East Side,40.77754,-73.95114000000001,Shared room,55,1,66,2019-07-01,9.12,2,309 +28250130,Gorgeous 1 bedroom with 300 sqf patio and balcony,3768359,Piret,Manhattan,Lower East Side,40.72177,-73.98898,Entire home/apt,300,3,7,2019-02-21,0.71,1,12 +24021725,Deluxe East Village Apartment: 2 Bed - 2 Bath,16962957,Nick,Manhattan,East Village,40.72845,-73.97927,Entire home/apt,215,1,52,2019-04-21,3.34,4,51 +6760295,"Sunny, couple-friendly MasterBedroom in Greenpoint",12432739,Monica,Brooklyn,Greenpoint,40.73511,-73.95551,Private room,75,7,1,2016-11-15,0.03,1,0 +21682816,Large Furnished Bedroom in Prime Chelsea,102685703,Lauren,Manhattan,Chelsea,40.74394,-73.99923000000001,Private room,120,4,0,,,1,0 +21369060,L.A.J Laughter & Joy Rest Spot. Room # 2,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.94226,Private room,70,2,32,2019-05-12,1.53,3,358 +34082442,Beautiful Clean & Quiet Room! Rm#3,11674837,Christopher,Queens,Ridgewood,40.70477,-73.90943,Private room,69,1,6,2019-06-24,3.1,3,179 +29635732,Newly Renovated Spacious 2 Bedroom Apartment!,63227531,Marwa,Staten Island,Randall Manor,40.62743,-74.12261,Entire home/apt,140,2,12,2019-07-05,1.57,2,340 +9412522,City living without all the noise.,48249473,Marisol,Bronx,Kingsbridge,40.879,-73.90061999999999,Entire home/apt,189,1,8,2019-04-26,0.22,2,354 +16393191,Interfaith Retreat Guest Rooms (Bhakti),16677326,Alex And Zeena,Manhattan,Chelsea,40.74786,-73.99651999999999,Private room,85,1,84,2019-06-23,2.71,12,359 +27890556,Beautiful Historic Brooklyn!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69652,-73.94821,Private room,45,2,46,2019-06-23,4.68,4,36 +32237811,Sonder | Stock Exchange | Design Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70797,-74.01227,Entire home/apt,205,2,10,2019-06-24,2.54,327,338 +8760775,Lexington Avenue Luxury Condominium,45941254,Tianyou,Manhattan,Murray Hill,40.7494,-73.97823000000001,Private room,111,1,4,2015-10-30,0.09,1,0 +35189906,Unique Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68777,-73.93066999999999,Private room,42,30,0,,,27,250 +19102698,Amazing Private Bedroom-15min from the Manhattan!,133460613,Ed,Queens,Astoria,40.76169,-73.90819,Private room,49,1,6,2019-05-06,0.24,2,359 +34425422,★ ❤ 1 Sunny apartment for family and friends ★ ❤ ♛,259880452,Malik,Queens,Flushing,40.75502,-73.81582,Entire home/apt,119,2,4,2019-06-24,2.35,2,311 +20994196,"East Village, Spacious Private Room w Backyard",109371945,Zach,Manhattan,East Village,40.7212,-73.98045,Private room,70,3,2,2017-09-24,0.09,1,0 +35935711,Spacious room near Bed- Stuy,270293762,Ruben,Brooklyn,Bedford-Stuyvesant,40.68789,-73.95596,Private room,55,1,0,,,1,312 +31055254,In the heart of midtown manhattan - CONVENIENCE,69446035,Michael,Manhattan,Midtown,40.75094,-73.98100000000001,Entire home/apt,100,1,0,,,1,365 +18676837,"Private Room & Entrance, Two Blocks from Times Sq!",64177548,David,Manhattan,Hell's Kitchen,40.76,-73.98915,Private room,135,3,65,2019-06-30,2.92,1,25 +12078997,Spacious Studio Apartment,5749328,Beth,Manhattan,Upper West Side,40.7771,-73.97729,Entire home/apt,160,3,36,2019-06-23,0.93,1,318 +7697256,Room in a lovely UWS Apartement,17326743,Antoine,Manhattan,Upper West Side,40.78506,-73.97723,Private room,130,1,9,2016-03-30,0.19,1,0 +17475107,Partitioned (shared) Cozy Studio in Pelham Bay,86108833,Jonathan,Bronx,Schuylerville,40.840340000000005,-73.83006999999999,Shared room,20,1,116,2019-01-28,4.09,1,5 +25909161,New York Oasis,32605338,Aliesha,Manhattan,Upper East Side,40.76917,-73.9516,Entire home/apt,150,4,11,2019-05-23,1.13,1,3 +22088180,"Comfy Private Bedroom, Patio + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.82908,-73.94671,Private room,49,3,19,2019-06-28,0.99,2,211 +15133972,Friendly and kind!Clean and safe!Best hostel ever!,95958773,Maryna,Brooklyn,Brighton Beach,40.57608,-73.9614,Shared room,35,1,34,2019-06-01,1.01,3,343 +7574757,"Family-friendly, cozy guest room",39713675,Quami,Brooklyn,Bedford-Stuyvesant,40.68366,-73.9247,Private room,69,2,186,2019-06-05,3.89,1,6 +36072301,Large private room in the heart of Williamsburg,271350187,Elena,Brooklyn,Williamsburg,40.718140000000005,-73.95040999999999,Private room,109,1,0,,,3,304 +21965948,Room in the heart of Bushwick,50577859,Zoe,Brooklyn,Bushwick,40.704240000000006,-73.9199,Private room,75,2,3,2019-04-09,0.48,1,0 +11861349,Nice BR in Luxury Williamsburg Apt,12440590,Thu Anh,Brooklyn,Williamsburg,40.71079,-73.95428000000001,Private room,85,6,12,2017-11-17,0.3,1,0 +12833187,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76297,-73.96252,Entire home/apt,225,30,1,2017-12-27,0.05,87,365 +33571420,"DEMETRIO’S ROOM +Close to JFK and LGA Airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.72997,-73.87183,Private room,51,1,20,2019-06-25,6.38,4,365 +1704560,Beautiful/Spacious 1 Bedroom in LES,5693756,Daniel,Manhattan,Lower East Side,40.7189,-73.99176999999999,Entire home/apt,120,4,182,2019-07-05,2.6,1,72 +24940447,"Charming Harlem Nook /Coin Charmant de Harlem, NYC",62026191,Olivier,Manhattan,Harlem,40.81585,-73.94272,Private room,79,1,67,2019-06-29,4.82,1,78 +29503231,Charming Studio in an EXCELLENT LOCATION,7339399,Julio,Manhattan,Hell's Kitchen,40.76614,-73.98484,Entire home/apt,180,4,13,2019-06-29,1.81,1,55 +35884299,Waterside Studio,193256713,Katharine,Manhattan,Kips Bay,40.73763,-73.97368,Entire home/apt,80,1,0,,,1,1 +27250336,Cozy Private Full Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77248,-73.89263000000001,Private room,52,1,32,2019-07-05,2.83,4,355 +22210721,East Village Getaway,29035593,Rachel,Manhattan,East Village,40.72339,-73.98911,Entire home/apt,115,3,0,,,1,0 +29370077,"Large, Bright & Cozy Retreat in Bklyn.",221275418,Rufina,Brooklyn,Crown Heights,40.67685,-73.93653,Private room,55,2,18,2019-07-02,2.18,3,251 +24806529,"Private Room In Brooklyn,",113890236,Nessim,Brooklyn,Bensonhurst,40.60997,-73.98021999999999,Private room,40,2,2,2018-07-02,0.14,1,0 +30659261,Quiet and Spacious South Williamsburg One Bedroom,2199778,Emily,Brooklyn,Williamsburg,40.70839,-73.9547,Entire home/apt,150,3,6,2019-07-03,0.95,1,4 +21738176,Spend the holidays in your OWN APT in South Harlem,20287472,David,Manhattan,Harlem,40.80275,-73.95116999999999,Entire home/apt,125,20,0,,,1,0 +21683672,Prime UWS location bedroom available!,2179407,Edgar,Manhattan,Upper West Side,40.7872,-73.97639000000001,Private room,80,2,0,,,1,0 +32186503,Spacious two bedroom in Hell's Kitchen,241366983,Jack,Manhattan,Hell's Kitchen,40.7647,-73.99516,Entire home/apt,250,2,0,,,1,0 +21803004,Modern Room in the heart of Manhattan(just female),156246842,Sandra,Manhattan,Theater District,40.76069,-73.9863,Private room,99,3,46,2019-06-20,2.49,3,25 +14064701,"Courtyard duplex with piano, E Village / Union Sq",84441066,Elizabeth,Manhattan,East Village,40.73038,-73.98458000000001,Private room,170,5,22,2019-06-19,0.61,1,143 +31189979,Park Slope Brownstone Garden Apartment,40231738,Thatcher,Brooklyn,Park Slope,40.67071,-73.9792,Entire home/apt,205,2,4,2019-06-22,1.3,1,203 +637504,Private bedroom in a 2-fam house for solo traveler,3179968,Tony,Queens,Sunnyside,40.73607,-73.92439,Private room,52,3,1,2018-06-04,0.08,1,0 +22230294,"Large, Bright, Open 1-BR Oasis in Gramercy Park",1391186,Adam,Manhattan,Flatiron District,40.73962,-73.98491999999999,Entire home/apt,221,5,7,2019-03-29,0.38,1,1 +536578,Nice and clean private space in Bklyn loft.,2635819,Fabrizio,Brooklyn,Bushwick,40.7014,-73.91333,Private room,59,10,19,2019-06-20,0.27,1,0 +27697402,Sunny and Bright Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93686,Private room,86,2,2,2019-05-18,0.97,5,342 +31935427,Cozy Studio in East Village,1919392,Demi,Manhattan,East Village,40.72998,-73.98071,Entire home/apt,100,1,11,2019-06-24,2.13,1,0 +4766284,Large queen size bedroom in huge loft apt,420111,Angie,Manhattan,East Harlem,40.79796,-73.93856,Private room,73,2,15,2019-06-29,0.33,2,250 +31125496,Cozy Room 1 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69088,-73.92983000000001,Private room,65,3,11,2019-06-13,2.73,4,164 +24265177,Bright Renewed Apartment 1 minute from A express train,182945752,Carol&Emerson,Manhattan,Washington Heights,40.84104,-73.93838000000001,Private room,55,2,71,2019-07-06,4.89,1,135 +32643993,XL Private 3 bedroom Full floor E. Village Apt!,160356,Joseph,Manhattan,East Village,40.7253,-73.98401,Entire home/apt,250,1,5,2019-06-20,1.47,4,233 +22877744,Nice extra room in Bushwick,1164515,Chris,Brooklyn,Bushwick,40.70332,-73.92766,Private room,38,2,13,2019-05-31,0.93,2,141 +14968436,Gorgeous room in Historic Harlem street,16686968,Ricardo,Manhattan,Harlem,40.81041,-73.94337,Private room,55,2,114,2019-05-27,3.34,1,270 +20066576,1 Bedroom in the heart of the Lower East Side,56256469,Steven,Manhattan,Lower East Side,40.7191,-73.98431,Entire home/apt,140,3,4,2017-09-04,0.17,1,0 +26392206,Quaint One-Bedroom close to the UN !,47475970,Jenya,Manhattan,Midtown,40.75468,-73.96563,Entire home/apt,180,4,11,2019-06-23,0.93,1,1 +23668745,Family Apartment One Bedroom beside Empire State #62,177174475,Alberto,Manhattan,Midtown,40.74653,-73.98716999999999,Entire home/apt,208,1,4,2019-05-18,0.3,17,215 +36265557,"Lovely 2 bedroom on Prospect Park, near subway",23905369,Shadi,Brooklyn,Prospect-Lefferts Gardens,40.66148,-73.96248,Entire home/apt,100,3,0,,,1,165 +27169644,"Bright, Simple, Cozy 1br. Apt in East Williamsburg",204577752,Lilia & Gaby,Brooklyn,Williamsburg,40.7154,-73.93926,Entire home/apt,135,2,44,2019-06-24,4.11,1,7 +3634361,3 Bedroom Duplex,740032,Dexter,Brooklyn,Windsor Terrace,40.65413,-73.97684,Entire home/apt,140,5,28,2019-07-07,0.6,1,192 +203901,Beautiful UES apartment,1000477,Elizabeth,Manhattan,Upper East Side,40.7694,-73.9572,Entire home/apt,190,1,8,2016-09-18,0.08,1,0 +4206034,Clean and Huge Studio in Safe Area,18382740,Takao & Aiko,Staten Island,Tompkinsville,40.63481,-74.09591,Entire home/apt,99,7,35,2019-05-30,0.61,1,326 +31069988,Beautiful Apartment on the Upper West Side,17494958,Katy,Manhattan,Upper West Side,40.77391,-73.98874,Entire home/apt,200,3,0,,,3,0 +5806803,White private room with 0min to bus stop,17997408,Nancy,Brooklyn,Clinton Hill,40.694390000000006,-73.96484,Private room,65,1,136,2019-06-24,5.72,2,11 +26693195,Modern Bedroom in Townhouse. Close to subway.,200697707,Carles,Brooklyn,Bushwick,40.68764,-73.91445,Private room,65,1,57,2019-06-24,4.76,1,48 +24139165,"Best Williamsburg, Brooklyn NY- 30 days or more",8072802,John,Brooklyn,Williamsburg,40.71032,-73.94806,Entire home/apt,199,30,15,2019-07-01,1.03,2,55 +9778583,Private room in HUGE Apartment!,34351124,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68768,-73.92069000000001,Private room,75,1,1,2016-01-03,0.02,1,0 +27341122,Williamsburg Loft,206040990,Alejandro,Brooklyn,Williamsburg,40.71425,-73.9623,Entire home/apt,290,5,0,,,1,0 +24678015,"A place to sleep the night near NYC,RUMC, Brooklyn",32162495,Mostafa,Staten Island,Tompkinsville,40.63126,-74.0921,Entire home/apt,48,3,1,2018-07-16,0.08,3,0 +3236385,Cute and Cozy Two Bedroom in Sunset Park,16376419,Brooke,Brooklyn,Sunset Park,40.64811,-74.01366,Entire home/apt,88,30,2,2019-01-07,0.09,1,101 +6077354,Cozy attic with private bath,31545214,Paul & Hana,Queens,Middle Village,40.72399,-73.87088,Private room,100,2,49,2019-06-08,0.96,1,365 +686696,duplex with backyard upper eastside,3502638,Daniel,Manhattan,Upper East Side,40.78002,-73.95211,Private room,250,1,60,2019-05-16,0.93,1,148 +27186509,Lovely apartment with a balcony,9598256,Raphaël,Brooklyn,Prospect Heights,40.67329,-73.96627,Entire home/apt,160,5,6,2019-06-30,0.55,1,28 +33011581,Clean and warm place,139705987,Luz,Queens,East Elmhurst,40.76247,-73.86092,Private room,55,2,16,2019-07-01,4.36,1,158 +11971334,Your cozy and cute space 7 train,17638424,Sophie,Queens,Elmhurst,40.74561,-73.87344,Private room,34,1,89,2019-07-03,2.35,8,164 +29312347,6MinTrainsCozySmallRMaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65047,-74.00403,Private room,50,1,23,2019-06-30,2.63,4,327 +12950979,1BR Apt. in Inwood (Manhattan),71152156,Max,Manhattan,Inwood,40.86612,-73.9189,Entire home/apt,77,6,1,2016-05-18,0.03,1,0 +4760107,"Tall Ceilings, Large Windows",16437254,Benjamin,Brooklyn,Boerum Hill,40.68902,-73.98631999999999,Entire home/apt,127,30,7,2019-01-08,0.15,21,342 +26550322,Modern duplex 30 minutes to Times Square,179483216,Marvin,Manhattan,Washington Heights,40.85515,-73.93297,Entire home/apt,250,4,20,2019-06-22,1.94,1,228 +8045421,NYC Chelsea Luxury 1BR Apt,30283594,Kara,Manhattan,Chelsea,40.74465,-73.99253,Entire home/apt,129,30,3,2017-12-31,0.07,121,161 +34017530,*** HEART OF MANHATTAN (Herald Square) ***,150879430,Michael,Manhattan,Midtown,40.74944,-73.98338000000001,Private room,99,14,0,,,1,25 +28761735,New york Multi-unit building,65827591,Nubia,Queens,Maspeth,40.73616,-73.89926,Shared room,55,1,0,,,3,47 +20227428,Douglaston Apartment Room A,18996093,Leonard,Queens,Little Neck,40.757940000000005,-73.72955999999999,Private room,45,1,12,2019-06-22,0.55,5,133 +16330110,Stylish & Spacious Apartment,105075484,Bertus,Brooklyn,Canarsie,40.6315,-73.90760999999999,Entire home/apt,117,2,88,2019-06-21,2.85,1,349 +10032487,Soho Old School,51504193,Hans,Manhattan,SoHo,40.72515,-73.99919,Entire home/apt,115,28,12,2018-12-21,0.31,1,77 +35318634,Boho Chic Apartment short walk from Central Park!,7933261,Angie,Manhattan,Upper East Side,40.76786,-73.95639,Entire home/apt,260,7,1,2019-06-21,1.0,1,43 +21540035,"Cozy Quiet Clean 1BR APT in Hudson Heights, NYC!",110553561,Mitchell,Manhattan,Washington Heights,40.85561,-73.93306,Entire home/apt,99,2,12,2019-06-21,0.61,1,0 +32696766,Cozy East Village Apartment,228235742,Amber,Manhattan,East Village,40.72412,-73.98891,Private room,100,1,0,,,1,0 +35729594,Rose's Brooklyn Oasis - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.6456,-73.95065,Private room,40,1,1,2019-06-30,1.0,2,151 +32444517,Sunny Spacious Parkside Pad,24979823,Jen,Brooklyn,Prospect-Lefferts Gardens,40.65504,-73.96113000000001,Private room,70,3,0,,,1,50 +272738,Guest Room in Authentic Williamsburg Factory Loft,1427381,Elizabeth,Brooklyn,Williamsburg,40.70513,-73.95505,Private room,60,2,35,2019-06-30,0.38,2,161 +17463059,Spacious Three Bedroom Dream in Manhattan,116889152,BeautifulHarlem,Manhattan,Harlem,40.81968,-73.9458,Entire home/apt,135,2,138,2019-06-25,4.83,2,45 +13668941,Hamilton Heights Apartment,79492070,Reylyn,Manhattan,Harlem,40.82022,-73.95358,Entire home/apt,125,1,7,2016-08-28,0.19,1,0 +11716677,Private East village Studio NO roommates Full bath,23902914,John,Manhattan,East Village,40.73082,-73.98445,Entire home/apt,70,1,144,2019-06-25,3.55,1,49 +4218067,Central One Bedroom Manhattan Apt,20448670,Crystal,Manhattan,Harlem,40.81422,-73.94844,Entire home/apt,109,2,11,2016-10-03,0.19,1,0 +33254187,Room in Washingtom Heights (Manhattan),83114146,Inbar,Manhattan,Washington Heights,40.84232,-73.93772,Private room,60,2,8,2019-06-30,2.53,1,26 +31589769,Beautiful Duplex Apartment for Rent,214623686,Earlene,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95184,Entire home/apt,80,2,19,2019-07-07,4.67,1,81 +26785149,Bright Spacious Private room in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.641,-74.00925,Private room,65,2,12,2019-06-10,1.02,5,262 +31748955,Comfy Private bedroom in shared APT - Wyckoff Hosp,200927536,Manu,Brooklyn,Bushwick,40.70535,-73.91816999999999,Private room,65,7,0,,,3,329 +34207635,Midtown West - Comfort Twin Single Hotel,252604696,Erin,Manhattan,Chelsea,40.74942,-73.99535999999999,Private room,149,1,0,,,20,359 +22337162,Comfortable and clean room,861330,Joseph,Brooklyn,Williamsburg,40.70232,-73.94587,Private room,40,10,0,,,3,0 +4553528,Brownstone Williamsburg room with skylight Create,2480939,Charles,Brooklyn,Williamsburg,40.71839,-73.95996,Private room,58,1,210,2019-07-02,3.8,3,217 +16526927,Charming cozy Studio - Discounted !!,71490429,Corrado,Brooklyn,Flatbush,40.64972,-73.96363000000001,Entire home/apt,56,20,3,2018-07-15,0.1,1,0 +8501589,ENTIRE APARTMENT in L.E.S. (-30% exceptional deal),28783846,Fleur,Manhattan,Lower East Side,40.71435,-73.98924,Entire home/apt,90,6,7,2018-07-28,0.23,1,0 +12115597,Convenient Apt w/ private bathroom!,53282710,Weiyi,Manhattan,Upper West Side,40.79546,-73.96452,Private room,98,3,2,2016-08-06,0.05,1,0 +16879258,Gorgeous and sunny 1 br in Little Italy/Nolita,11050811,Dianna,Manhattan,Little Italy,40.71867,-73.99709,Entire home/apt,200,5,0,,,1,45 +1613110,Sunny Studio Loft @ Habitat 101,7503643,Vida,Brooklyn,Greenpoint,40.7257,-73.94181,Entire home/apt,129,30,8,2019-01-30,0.12,52,344 +30712682,A whimsical stay in the heart of Bushwick,133972014,Nana,Brooklyn,Bushwick,40.69979,-73.93158000000001,Entire home/apt,130,3,4,2019-06-09,0.63,1,6 +12167857,Sunny & quiet family apartment in BK,6520757,Jeen,Brooklyn,Bedford-Stuyvesant,40.69574,-73.9515,Entire home/apt,150,4,11,2019-06-11,0.29,1,0 +34085766,211 east 34 Room 7,255431206,Mohammed,Brooklyn,East Flatbush,40.65226,-73.94521,Private room,35,7,2,2019-05-18,0.98,9,131 +27402244,Charming and Spacious East Village apartment!,205772141,Jorge,Manhattan,East Village,40.72935,-73.99054,Entire home/apt,250,2,10,2018-11-25,0.97,1,188 +4907861,Huge Brooklyn Oasis only 1 block from subway!,25268900,Jessica,Brooklyn,Bushwick,40.70083,-73.91679,Entire home/apt,126,3,98,2019-06-13,1.95,1,180 +21772083,Comfortable 1 Bedroom Apartment,26744799,Chris,Brooklyn,Bath Beach,40.60674,-74.00428000000001,Entire home/apt,99,3,39,2019-07-01,2.37,1,306 +1900616,nice furnished room ground floor,5097458,Nes,Brooklyn,Williamsburg,40.71863,-73.94575,Private room,70,3,30,2018-11-07,0.6,1,364 +32113817,Private Essex Street Bedroom in the LowerEast Side,231819451,Timothy,Manhattan,Lower East Side,40.719840000000005,-73.98625,Private room,100,3,19,2019-07-01,4.01,1,48 +20954729,Beautiful apt. in Upper West Side close to subway,132158770,Leva,Manhattan,Morningside Heights,40.814,-73.96228,Entire home/apt,150,2,3,2017-10-29,0.14,1,0 +31824097,Large Private Room with office space,193725343,Manon,Brooklyn,Bedford-Stuyvesant,40.68809,-73.95855,Private room,63,1,3,2019-06-28,0.74,1,44 +16856193,Hotel Room at Wyndham Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75373,-73.97287,Private room,325,2,0,,,3,268 +14858190,Brand New Luxury Apartment with Breathtaking Views,17540607,Floor,Manhattan,East Village,40.72088,-73.97825,Entire home/apt,295,4,2,2018-03-09,0.09,1,0 +27901243,Sunny 3rd floor huge Master Bedroom,78379915,Joanne,Brooklyn,Bedford-Stuyvesant,40.68392,-73.95265,Private room,40,30,1,2019-05-25,0.65,1,282 +10055548,Modern 1-Bedroom Downtown,14852867,Jason,Manhattan,Financial District,40.70938,-74.01371,Entire home/apt,117,2,0,,,1,0 +9766922,Spacious Uptown bedroom,19874128,Jennifer,Manhattan,Harlem,40.82083,-73.95407,Private room,88,2,0,,,1,0 +7318332,Our lovely nest in the West Village,38337856,Antoine,Manhattan,Greenwich Village,40.73378,-73.99714,Entire home/apt,159,5,22,2018-12-27,0.46,1,22 +2751311,Beautiful Large Williamsburg Studio,2153455,Rachel,Brooklyn,Williamsburg,40.71813,-73.95869,Entire home/apt,135,5,33,2019-07-06,0.53,1,76 +7143587,Quiet 1-BR in SoHo; Private Rooftop,37410263,David,Manhattan,SoHo,40.721790000000006,-73.99829,Entire home/apt,159,31,8,2016-09-04,0.17,1,0 +34334524,Gorgeous room near the heart of Times Square,236425271,Shanae,Manhattan,Hell's Kitchen,40.76343,-73.99134000000001,Entire home/apt,190,1,6,2019-06-29,2.95,1,299 +30009701,Fast Commute - SUNNY PRIVATE ROOM in luxury BK,188949327,Criselis,Brooklyn,Bedford-Stuyvesant,40.68986,-73.9249,Private room,50,1,6,2019-04-29,1.0,1,0 +2888088,Private space in Brooklyn,14759766,Jerry,Brooklyn,Flatbush,40.6435,-73.96208,Entire home/apt,87,2,132,2019-06-14,3.31,2,233 +22099135,Comfy & Cozy Private Room in Bushwick,109852649,Eva,Brooklyn,Bushwick,40.69984,-73.93899,Private room,65,5,0,,,1,0 +31710037,Beautiful airy apartment with private backyard.,47664369,Raizy,Brooklyn,Sunset Park,40.66123,-73.9971,Entire home/apt,100,1,9,2019-05-22,2.03,1,35 +394026,ArtistLoft-MccarenPark-Williamsburg,1651591,Todd,Brooklyn,Greenpoint,40.720490000000005,-73.95221,Private room,90,2,2,2018-10-08,0.02,2,89 +19965684,Lovely 1st floor studio,141557712,Isa,Queens,Astoria,40.76531,-73.92413,Entire home/apt,135,2,19,2019-07-01,0.81,1,310 +407469,BROWNSTONE TWO IN BROOKLYN in NYC,2015914,Majar,Brooklyn,Bushwick,40.68979,-73.91660999999999,Private room,75,3,112,2019-05-26,1.28,8,330 +35058541,"Clean, Cozy, Private Bath & Bedroom Apartment",264088176,Cecilia,Bronx,Throgs Neck,40.81869,-73.82233000000001,Entire home/apt,99,2,3,2019-07-05,3.0,1,120 +27788826,Upper East Side 2 Room Studio Retreat,11376647,Nicholas,Manhattan,Upper East Side,40.76856,-73.95366999999999,Entire home/apt,150,10,3,2018-09-16,0.29,1,17 +18110654,Bright and Sunny Brooklyn Sanctuary,9630989,Ernesto,Brooklyn,Bushwick,40.70091,-73.92215,Private room,60,2,113,2019-06-17,4.15,2,3 +6291371,Brooklyn Zen Gem Restful Retreat,31675601,Sophie,Brooklyn,Bay Ridge,40.62449,-74.02977,Private room,65,30,57,2019-05-02,1.13,4,307 +1129105,Quiet and Cozy Brooklyn Brownstone Apartment,131014,Serge,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94434,Entire home/apt,90,2,4,2018-05-28,0.05,1,0 +9678112,Entire 2 bed apartment in Prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71462,-73.94641,Entire home/apt,150,40,4,2018-07-21,0.16,2,0 +19623614,"Comfortable,3 bedroom, 2bath home away from home",138033394,Michael & Sharon,Queens,Jamaica,40.69934,-73.78325,Entire home/apt,150,2,85,2019-06-30,3.52,1,132 +15952702,Cozy Studio in West Village,1499220,Melanie,Manhattan,West Village,40.73316,-74.00476,Entire home/apt,147,1,42,2019-06-23,1.32,1,4 +24970249,Peaceful&Sun filled 2BR&private bathroom near NYC,12931469,Margarita,Staten Island,Great Kills,40.54901,-74.142,Private room,120,2,4,2018-11-19,0.29,3,86 +176135,Cosy Sunny 1brm in Prospect Heights,842125,Jennifer,Brooklyn,Crown Heights,40.67505,-73.95969000000001,Entire home/apt,97,3,31,2018-10-23,0.32,1,193 +6910072,Sunny Room in Bushwick & central AC,36211685,Vienna,Queens,Ridgewood,40.70588,-73.91464,Private room,85,1,1,2015-08-17,0.02,1,0 +25786994,Manhanton high rising apartment next to the subway,183033408,Jill,Manhattan,Harlem,40.8129,-73.94084000000001,Entire home/apt,99,5,7,2019-03-09,0.63,1,0 +6871600,Cozy room in Nolita/SoHo,4271676,Nat,Manhattan,Nolita,40.7214,-73.99635,Private room,100,1,18,2017-06-06,0.38,3,0 +3860899,Huge room in East Williamsburg,12749383,Joseph,Brooklyn,Williamsburg,40.70684,-73.94227,Private room,60,1,0,,,1,0 +17889021,Charming 1 Br apartment minutes from the train,17739345,Boris,Queens,Ditmars Steinway,40.77872,-73.90943,Entire home/apt,89,1,0,,,1,0 +33096377,"Classy apartment in downtown +Everything you need",8661986,Eugene,Manhattan,Stuyvesant Town,40.73223,-73.98134,Entire home/apt,279,2,26,2019-07-05,7.22,1,229 +891117,Private Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82264,-73.94041,Private room,49,1,594,2019-06-15,7.57,3,339 +20450185,Sunny Greenpoint Room,3656083,Juan,Brooklyn,Greenpoint,40.73237,-73.95952,Private room,61,10,2,2018-07-13,0.09,2,0 +12003048,Sleek 1 bedroom apt. near Times Square!,30283594,Kara,Manhattan,Hell's Kitchen,40.76685,-73.98363,Entire home/apt,239,30,0,,,121,352 +5728502,Hand Crafted Williamsburg Sanctuary,26955105,Danny,Brooklyn,Williamsburg,40.70835,-73.95226,Entire home/apt,180,4,67,2019-06-30,1.32,1,304 +16569554,Bright room Williamsburg off Bedford,1535167,Danielle,Brooklyn,Williamsburg,40.71681,-73.96296,Private room,69,2,10,2019-01-01,0.34,1,0 +28271289,Queens BLVD House NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73005,-73.8576,Entire home/apt,268,3,1,2019-06-24,1.0,3,173 +24627128,Little Secret,186111724,Thomas,Manhattan,Upper West Side,40.77705,-73.98118000000001,Private room,112,2,81,2019-07-07,5.63,1,6 +35606381,The City Horizon,221200420,Adam,Manhattan,Murray Hill,40.74422,-73.97261,Entire home/apt,350,30,0,,,23,331 +9839906,Beautiful sunny room in Brooklyn,14018666,Laura,Brooklyn,Sheepshead Bay,40.587,-73.95588000000001,Private room,45,1,9,2016-10-01,0.22,1,0 +21844377,In the heart of Chelsea and downtown,1317913,Lauren,Manhattan,Chelsea,40.74116,-74.00053,Private room,200,3,0,,,2,158 +13766690,Shady Listing - Authentic NY'r,13408910,Tmc,Bronx,Concourse,40.82948,-73.92364,Private room,82,4,0,,,2,0 +1245479,Private Room In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.7084,-73.94153,Private room,99,6,148,2019-06-26,2.09,3,252 +16394193,Cozy & Affordable,59338077,Nash,Queens,Ridgewood,40.70443,-73.90656,Private room,45,1,2,2017-01-02,0.07,1,0 +16111812,One Bedroom Apt. Private House close to Citi Field,105049322,Celeste,Queens,Corona,40.75094,-73.85244,Entire home/apt,125,1,16,2017-11-12,0.52,1,157 +11574674,"Bright 2 bedroom aparment, Bushwick",61175876,Raquel,Brooklyn,Bushwick,40.69531,-73.92248000000001,Entire home/apt,148,5,77,2019-06-30,1.96,2,275 +36345151,Home Away from Home,273316025,Cristian,Queens,Rego Park,40.72614,-73.8594,Private room,80,1,0,,,1,123 +1347847,3 bedroom duplex Brooklyn townhouse,2061760,Lise,Brooklyn,Bedford-Stuyvesant,40.69376,-73.93776,Entire home/apt,225,3,230,2019-07-01,3.31,1,259 +22176831,JFK 2 Comfort 5 Mins from JFK Private Bedroom,156684502,Nalicia,Queens,Springfield Gardens,40.66158,-73.7705,Private room,50,1,341,2019-07-08,17.82,3,25 +18768741,Furnished Studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74819,-73.976,Entire home/apt,150,30,3,2018-10-30,0.14,50,180 +32671362,bedroom in a cozy apartment in Brooklyn,44513798,William,Brooklyn,Bedford-Stuyvesant,40.68122,-73.91018000000001,Private room,40,2,0,,,1,0 +35121742,"Sunny, roomy one-bedroom across from Prospect Park",13583451,K,Brooklyn,Prospect-Lefferts Gardens,40.6573,-73.96134,Entire home/apt,94,4,1,2019-06-05,0.88,1,7 +4059037,Light Filled Studio,20441343,Lilah,Brooklyn,Bedford-Stuyvesant,40.69587,-73.95114000000001,Private room,100,3,0,,,1,352 +13955139,Heart of Willimsburg- 1 block from bedford L stop,83101296,Ariana,Brooklyn,Williamsburg,40.71675,-73.95725,Private room,60,4,0,,,1,0 +29896132,"Spacious 1 bedroom in Flatbush, Brooklyn, NY.",107090465,Linwood,Brooklyn,East Flatbush,40.63835,-73.94621,Entire home/apt,125,3,2,2019-05-10,0.61,1,170 +33493942,Mid Century modern room 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68913,-73.95639,Private room,72,2,6,2019-06-23,4.74,4,316 +21434285,Marriott Vacation Club Pulse - King Room,19809273,Susan,Manhattan,Midtown,40.75092,-73.98409000000001,Entire home/apt,350,2,0,,,1,178 +22327622,Teranga (Hospitality) in Brooklyn,25188010,Liz,Brooklyn,Bedford-Stuyvesant,40.68556,-73.95416999999999,Private room,55,3,15,2019-07-01,0.81,1,66 +13880742,Center of the Action,30498797,Kate,Manhattan,Financial District,40.71052,-74.01135,Entire home/apt,315,3,0,,,1,0 +20920048,Cozy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80508,-73.94941999999999,Private room,125,2,70,2019-01-09,3.24,2,0 +5892693,"Large, sunny, private studio Apt 2F",29739883,Adam & Allen,Brooklyn,Greenpoint,40.72232,-73.9434,Entire home/apt,110,2,248,2019-06-13,4.82,2,1 +19068469,Hamilton Heights room,69211977,Taylor,Manhattan,Harlem,40.82088,-73.9523,Private room,36,25,0,,,1,0 +2346335,Spacious and bright 2 or 3 bedroom,10672341,Emily,Brooklyn,Crown Heights,40.66732,-73.95794000000001,Entire home/apt,145,2,0,,,2,0 +18309354,"Spacious Private Room In New York, Manhattan",55778523,Lydia,Manhattan,Morningside Heights,40.80456,-73.96521,Private room,125,1,4,2017-05-22,0.15,1,0 +34116613,Sonder | 116 John | Restful Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70845,-74.00471999999999,Entire home/apt,164,29,0,,,327,327 +17887871,Charming Greenpoint Gem,122513490,Dorothy,Brooklyn,Greenpoint,40.72158,-73.94578,Entire home/apt,175,3,71,2019-06-21,2.67,1,20 +21243952,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70288,-73.81531,Private room,135,1,1,2018-01-02,0.05,18,365 +11791673,Quiet 2 Bedrm w 3 Beds-ProspectPark,62787599,Ro,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.94791,Entire home/apt,109,4,25,2019-04-29,0.65,2,324 +13532901,1 Bedroom Apartment Close To Subway,4518002,Arthur,Brooklyn,Flatbush,40.63736,-73.95669000000001,Entire home/apt,75,30,46,2018-11-06,1.25,1,89 +3510929,Apartment in beautiful Brooklyn Heights,130216,Maria,Brooklyn,Brooklyn Heights,40.69088,-73.99416,Entire home/apt,155,5,7,2018-07-17,0.12,1,17 +18822687,Amazing apt at Financial District Manhattan,98038838,Raviv,Manhattan,Financial District,40.70833,-74.01068000000001,Private room,70,3,18,2018-12-16,0.69,1,0 +335819,Bklyn 4 Beds 1 Bathroom Rental 3,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63759,-73.9459,Entire home/apt,115,3,51,2019-04-27,0.58,4,327 +9820533,1 BR Artist's Haven in Bed-Stuy,4400935,V,Brooklyn,Bedford-Stuyvesant,40.682590000000005,-73.92358,Entire home/apt,90,2,5,2016-10-15,0.12,1,0 +31043873,Modern cheap huge 1bd apt next to Central Pk & sub,30600933,Helene,Manhattan,Harlem,40.79931,-73.95238,Entire home/apt,149,1,15,2019-06-22,2.43,1,35 +629774,East Village perch!,834185,Zachary,Manhattan,East Village,40.73082,-73.98501999999999,Entire home/apt,175,1,17,2015-10-13,0.2,1,0 +34629692,Lower East Side Gem,778213,Jessica,Manhattan,Lower East Side,40.71761,-73.98233,Entire home/apt,250,2,0,,,1,107 +28615793,Private bedroom in 4 bedroom apt. in Tribeca,9299046,Frederik,Manhattan,Civic Center,40.71638,-74.00419000000001,Private room,120,5,5,2019-06-24,0.6,1,25 +24537860,Sonder | Hanover Square | Modern 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70563,-74.0078,Entire home/apt,209,29,3,2019-04-30,0.26,96,328 +9767424,Brooklyn's Finest - ML,50364039,Cathy,Brooklyn,Williamsburg,40.71602,-73.96248,Entire home/apt,130,2,67,2019-07-07,1.57,3,252 +14961122,Spacious studio with private garden in Brooklyn,16586817,Giorgia,Brooklyn,Bedford-Stuyvesant,40.68381,-73.91776,Entire home/apt,86,4,55,2019-05-31,1.62,1,17 +14108671,Clean & Cozy Close to Macy's,27165264,Elena,Manhattan,Chelsea,40.74767,-73.99003,Private room,90,1,9,2017-09-29,0.28,1,0 +34981344,Bowery Loft with Private Deck,263563066,Dan,Manhattan,Lower East Side,40.720490000000005,-73.99348,Private room,100,3,0,,,1,23 +12810452,Charming 1BR in heart of Chinatown,15867885,Marielle,Manhattan,Two Bridges,40.71114,-73.99874,Private room,99,2,3,2016-06-26,0.08,1,0 +21965717,Spacious South Slope Apt in Perfect Location!,8331436,Jesse,Brooklyn,South Slope,40.66724,-73.99023000000001,Private room,109,2,4,2018-01-14,0.21,1,0 +12192216,Artsy Spot in Spanish Harlem,3104581,Andrea,Manhattan,East Harlem,40.79073,-73.94669,Entire home/apt,115,2,18,2019-07-06,0.48,1,3 +99085,Sunny Bklyn Jewel Fort Greene JULY - AUG 2019,522164,Wanda,Brooklyn,Fort Greene,40.68795,-73.97332,Entire home/apt,123,30,15,2019-05-01,0.15,1,189 +32043013,2 JFK Layover - Express train to Manhattan-30 mins,67746251,Gasminee,Queens,Ozone Park,40.68237,-73.84874,Private room,45,1,40,2019-07-08,7.79,4,30 +17738717,Clean Cosy Bedroom w/Desk 10min to JFK & Big Mall,6166708,Christine & Einstein,Queens,Rosedale,40.65252,-73.73425,Private room,22,1,59,2019-05-17,2.1,1,0 +15702021,Large Room in Trendy Bushwick - 2,9864136,Anthony,Brooklyn,Bushwick,40.68602,-73.91521999999999,Private room,45,1,2,2017-10-01,0.06,26,250 +33523404,Bedroom in Soho for working professional,29952888,Noah,Manhattan,SoHo,40.720290000000006,-74.00033,Private room,67,30,0,,,1,50 +14185610,GORGEOUS STUDIO ON MIDTOWN,22860550,Oliver,Manhattan,Midtown,40.75601,-73.96625,Entire home/apt,115,8,24,2019-06-20,0.69,1,196 +31099999,SIMPLEHOME,137302318,Alona,Queens,Long Island City,40.75606,-73.93234,Entire home/apt,93,1,16,2019-06-26,2.45,2,181 +34356642,Hamilton Heights is fancy!,259380331,Rene,Manhattan,Harlem,40.83052,-73.95014,Private room,100,3,8,2019-06-25,3.87,1,359 +9765276,Private Room Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6518,-73.95894,Private room,39,7,13,2018-07-27,0.3,4,346 +1598012,"Close to the city, Astoria",3360223,Rosemary,Queens,Astoria,40.76792,-73.92228,Private room,45,4,68,2019-01-01,0.96,1,0 +8081037,Lavish Studio with Great Amenities in FiDi,30283594,Kara,Manhattan,Financial District,40.7055,-74.00811999999999,Entire home/apt,189,30,4,2019-01-28,0.11,121,365 +31379967,Sunny Long Island City 2bed close to manhattan,235008186,Luz,Queens,Astoria,40.7548,-73.91364,Entire home/apt,170,4,10,2019-06-15,2.07,1,97 +851784,Designer's spacious Manhattan apt.,4446767,Ks & Eli,Manhattan,Washington Heights,40.85016,-73.93178,Entire home/apt,99,3,106,2019-07-04,1.43,1,331 +4518242,Zen MiniPalace Astoria,23424461,Alex,Queens,Astoria,40.76369,-73.91601,Entire home/apt,80,1,3,2016-01-02,0.05,1,0 +27612876,Spotless room w/attached bath. Center of Flushing,205745676,Liqin,Queens,Flushing,40.7594,-73.81971,Private room,80,1,21,2019-05-19,1.9,9,362 +13656529,Bushwick Music Mansion,57340330,Janeth,Brooklyn,Bushwick,40.68936,-73.90814,Private room,55,1,5,2018-09-15,0.14,1,89 +36040924,Cozy entire apt in Queens near St. John's Univ,271146927,Chooyou,Queens,Jamaica Estates,40.72124,-73.80072,Entire home/apt,68,2,2,2019-07-07,2.0,1,43 +30442333,"Lovely colonial house in Queens, New York.",228567385,Clarabel,Queens,College Point,40.79118,-73.84766,Entire home/apt,150,2,6,2019-06-03,0.95,1,336 +29923537,Beautiful Deluxe King Room in NYC,220229838,Chamber Hotel,Manhattan,Midtown,40.76232,-73.97511999999999,Private room,233,2,0,,,11,213 +30557569,Convenient East Village Apartment,9047774,Katrina,Manhattan,East Village,40.73009,-73.98884,Entire home/apt,150,4,0,,,1,0 +11738831,Spacious 1 BDRM near Central Park,25116430,Michael,Manhattan,Upper East Side,40.77559,-73.95263,Entire home/apt,140,1,183,2019-06-05,4.56,1,63 +4759906,Cute & Charming Studio W/ Private Outdoor Space NY,15310997,Mor,Manhattan,Upper East Side,40.78032,-73.95249,Entire home/apt,200,30,9,2019-03-04,0.21,9,332 +8549497,My GREENPOINT apt just for you!,45003774,Fernando,Brooklyn,Greenpoint,40.73248,-73.95237,Entire home/apt,122,5,3,2016-08-24,0.07,1,189 +1552242,Single family home 2 bedrooms 2 bathrooms,8126811,Jessica,Queens,Long Island City,40.75676,-73.93463,Entire home/apt,250,3,184,2019-06-26,2.65,1,84 +22436287,Clinton Hill – Brooklyn’s Best Nest,655450,Tara,Brooklyn,Clinton Hill,40.68299,-73.96258,Entire home/apt,108,29,5,2018-12-21,0.31,1,98 +30799727,Cozy and clean room. Easy transportation,160923266,Mario,Brooklyn,Greenpoint,40.73324,-73.95101,Private room,70,5,0,,,1,0 +12899112,BR in large 2BR.,70651602,Aj,Manhattan,East Harlem,40.78576,-73.94211,Private room,50,1,4,2016-05-16,0.1,1,0 +34037737,Ash’s Place in Hell’s Kitchen,159281143,Ash,Manhattan,Hell's Kitchen,40.76255,-73.99025999999999,Entire home/apt,200,7,4,2019-05-26,2.07,1,216 +26164204,Lovely 1BR Apartment in the heart of Park Slope,45062059,Akriti,Brooklyn,Park Slope,40.67259,-73.98324000000001,Entire home/apt,130,2,15,2019-06-16,2.02,1,174 +7095426,Stunning studio on Wall street,2252859,Anne-Sophie,Manhattan,Financial District,40.70668,-74.00913,Entire home/apt,160,200,0,,,1,365 +6969011,"BIG Beautiful private bedroom, 5 minutes to subway",107016,Grace,Brooklyn,Crown Heights,40.67618,-73.95133,Private room,47,14,9,2019-04-04,0.19,1,8 +1420559,Great 1BR apartment in a convenient location,3349838,Tom,Queens,Long Island City,40.74449,-73.95201,Entire home/apt,138,1,4,2016-07-05,0.06,1,41 +3291286,Private Room in great neighborhood,16628226,Rachel,Queens,Long Island City,40.7593,-73.92884000000001,Private room,100,1,0,,,1,0 +3608353,Prospect Park South,18183144,Timothy,Brooklyn,Flatbush,40.64802,-73.97095,Private room,91,3,33,2019-07-01,0.65,1,90 +34948476,Stylish and Modern basement near LaGuardia Airport,194673800,Jonathan,Queens,East Elmhurst,40.7655,-73.88217,Entire home/apt,80,1,8,2019-07-02,5.45,1,49 +22164005,COZY Private 1 Bedroom in Brooklyn !,116881616,June,Brooklyn,Bath Beach,40.605540000000005,-74.01044,Private room,33,6,29,2019-05-27,1.53,2,32 +16289476,Cozy Brooklyn Home in Crown Heights!,16214285,Melinda,Brooklyn,Crown Heights,40.66837,-73.95836,Entire home/apt,85,3,7,2019-06-18,0.38,1,20 +9393610,Big room in Williamsburg Penthouse,48723117,Gaute,Brooklyn,Williamsburg,40.7116,-73.9521,Private room,79,4,0,,,1,0 +29153170,Nicely decorated apt with amazing private rooftop!,219678120,Jean,Brooklyn,Crown Heights,40.67419,-73.92173000000001,Entire home/apt,200,3,21,2019-06-10,2.79,1,327 +29614580,⚡ 3 APT in 1--Large groups Travel & stay together⚡,129222253,Andy,Bronx,Williamsbridge,40.87831,-73.86511,Entire home/apt,350,2,3,2019-06-09,0.41,3,323 +22714571,Amazing Private Room @Madison Square Garden,167270001,Piero,Manhattan,Hell's Kitchen,40.7559,-73.99324,Private room,109,1,91,2019-06-25,5.11,2,304 +3200728,Sunlit Room near Prospect Park!,727114,Anthony,Brooklyn,Flatbush,40.64677,-73.96946,Private room,54,10,11,2015-07-03,0.19,1,0 +13563973,"Visiting Brooklyn, stay here!",41913683,Aris,Brooklyn,Flatbush,40.65074,-73.96072,Entire home/apt,115,3,4,2017-09-15,0.11,1,0 +4440611,Bright Spacious Bushwick Home,14546480,Irena,Brooklyn,Bushwick,40.7026,-73.92787,Entire home/apt,100,3,4,2016-06-04,0.08,1,0 +33855990,Master Bedroom in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.6897,-73.91145999999999,Private room,70,2,8,2019-06-04,3.08,3,61 +11030761,Amazing 1BR Heart of East Village!,57242530,Jack,Manhattan,East Village,40.72794,-73.98731,Entire home/apt,189,2,9,2018-12-30,0.23,1,23 +21899473,Minimalist Union Square Studio Apartment,60632753,Jared,Manhattan,Greenwich Village,40.73616,-73.99614,Private room,80,5,4,2018-08-19,0.22,1,0 +18194450,Gorgeous Brooklyn Bedroom with Luxury Decor,54289696,Monica,Brooklyn,Crown Heights,40.67038,-73.93214,Private room,27,2,81,2019-06-09,2.99,1,84 +23781939,Upper West Side 2 Bedroom,22866437,Eliana,Manhattan,Upper West Side,40.77907,-73.97887,Entire home/apt,300,2,2,2018-05-29,0.13,2,0 +22267217,City Living with a Home Town Feel.,105061915,Darlene,Manhattan,East Harlem,40.80279,-73.9445,Private room,43,1,13,2019-07-02,0.72,2,6 +25033384,Cozy and renovated one bedroom apartment,99556266,Mariano,Manhattan,East Harlem,40.79725,-73.93311,Entire home/apt,150,2,33,2019-06-14,2.63,2,304 +35001433,High End One Bed One Bath Murry Hill,221200420,Adam,Manhattan,Kips Bay,40.7431,-73.9719,Entire home/apt,200,30,0,,,23,342 +26521015,Brooklyn Oasis,74911937,Alwyn,Brooklyn,Flatbush,40.63338,-73.95074,Entire home/apt,110,4,18,2019-06-30,1.6,1,46 +259946,"Budget stay, near transportation",1360198,Marina,Staten Island,Arrochar,40.59262,-74.06659,Entire home/apt,125,2,8,2019-05-19,0.09,4,353 +22195324,"Private Floor (3 Bedrooms, 6 Beds) E. Williamsburg",4396760,Bulent,Brooklyn,Williamsburg,40.71436,-73.93812,Entire home/apt,189,2,21,2019-06-10,1.14,1,70 +13927957,Charming Manhattan-Midtown Studio,82740724,Roman,Manhattan,Midtown,40.752590000000005,-73.97061,Entire home/apt,129,1,159,2019-06-12,4.39,1,193 +27857163,"Studio near times grand central, Times Square, UN",19664260,Viswanadha,Manhattan,Midtown,40.75216,-73.97171999999999,Entire home/apt,300,1,2,2018-09-23,0.2,1,0 +34836661,Become a New Yorker in Bushwick!,6605565,Samantha,Brooklyn,Bushwick,40.69941,-73.91186,Private room,70,3,3,2019-07-01,3.0,1,27 +5631916,One Bedroom Upper East Side,14358525,Pierre-Hubert,Manhattan,Upper East Side,40.76873,-73.95487,Entire home/apt,202,1,0,,,1,0 +22368370,Bedstuy Luxe Condo,139329404,Dmitriy,Brooklyn,Bedford-Stuyvesant,40.68995,-73.95167,Entire home/apt,126,1,9,2018-03-02,0.49,1,0 +15050192,Private w/Backyard in Heart of Brooklyn,95117581,Michael,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95553000000001,Entire home/apt,150,30,6,2016-12-31,0.18,1,0 +14168274,1 Bedroom in shared 2 bedroom NYC walkup apartment,20448276,A.R.,Manhattan,Hell's Kitchen,40.76367,-73.98912,Private room,98,5,0,,,1,0 +31714168,5 min away from LGA,213014559,Kam,Queens,East Elmhurst,40.76893,-73.87711999999999,Entire home/apt,135,1,17,2019-07-08,3.57,2,0 +31685548,"Little cozy, clean, homy gem in the hearth of LIC.",11914604,Maurizio,Queens,Long Island City,40.74649,-73.9525,Private room,70,15,3,2019-06-25,1.32,1,135 +14768563,Large 1 Bedroom near Prospect Park,19918057,Sogol,Brooklyn,Prospect-Lefferts Gardens,40.66028,-73.961,Entire home/apt,100,2,1,2016-09-05,0.03,1,0 +9562872,"Close to subway, all shops, restaurants!",49509847,Abhilasha Ashiv,Queens,Rego Park,40.72478,-73.85579,Entire home/apt,109,3,88,2019-07-01,2.49,1,357 +4460838,The Elizabeth,14758012,Stéphane,Manhattan,Nolita,40.72421,-73.99304000000001,Entire home/apt,195,3,66,2018-04-15,1.24,1,0 +23166224,Cozy Respite in the HeART of Bushwick,842091,Megwyn,Brooklyn,Bushwick,40.69874,-73.92496,Private room,40,3,51,2019-07-01,3.0,2,51 +34222823,Spacious + beautiful Garden apt in brick townhouse,831185,Andrew,Brooklyn,Crown Heights,40.67978,-73.96231,Entire home/apt,335,2,1,2019-07-01,1.0,3,365 +25140787,COUSY PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.77002,-73.92331999999999,Private room,50,1,27,2019-06-23,2.02,9,363 +25317793,Awesome Cozy Room in The Heart of Sunnyside!,136406167,Kara,Queens,Sunnyside,40.7409,-73.92696,Private room,65,2,22,2019-06-11,1.63,1,131 +20505979,L.E.S ROOM Simple Beautiful Clean Apt. 3 Bdr,6725061,Zyanya,Manhattan,Lower East Side,40.71856,-73.98753,Private room,69,4,0,,,1,0 +4892675,20 min from Union Square,25175433,Pablo,Queens,Ridgewood,40.69958,-73.90825,Private room,40,3,0,,,1,0 +24155415,Light Filled Room in Bedstuy!,26315450,Sacha,Brooklyn,Bedford-Stuyvesant,40.67941,-73.908,Private room,56,2,8,2018-12-18,0.67,1,0 +17541761,Quiet Private Room in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6896,-73.90624,Private room,36,2,83,2019-06-22,2.95,4,155 +145188,Parisian apartment in Chelsea,703156,Kristin,Manhattan,Chelsea,40.74249,-74.00329,Entire home/apt,200,4,0,,,1,0 +5593725,Large/comfy/beautiful BR near ABCD Manhattan..!!!,29003805,Akemi,Manhattan,Harlem,40.82753,-73.94601999999999,Private room,60,3,18,2019-07-01,1.17,2,0 +850338,Authentic Luxury Designed Loft,4440548,Thomas,Brooklyn,Williamsburg,40.71427,-73.94671,Entire home/apt,145,3,166,2019-06-20,2.15,2,151 +4493526,"Amazing Location, Incredible Space",23308381,Priya,Manhattan,West Village,40.73647,-73.99814,Private room,150,1,0,,,1,0 +30084221,"Live in the heart of East Village, Manhatan",44642799,Judith,Manhattan,East Village,40.72818,-73.98075,Entire home/apt,225,3,2,2019-01-03,0.31,1,0 +34184923,Cozy 2 Bedroom in Luxury Building,258057196,Linda,Manhattan,Murray Hill,40.74624,-73.9725,Entire home/apt,299,1,8,2019-06-26,4.44,1,93 +12250653,Small Cozy Room in Artsy Apartment,20043119,Anita,Brooklyn,Clinton Hill,40.6881,-73.96281,Private room,50,1,3,2017-05-17,0.1,1,0 +19190179,Private Room in Williamsburg Loft,36460338,Janine,Brooklyn,Williamsburg,40.71233,-73.9586,Private room,80,5,6,2019-04-24,0.46,1,64 +25635162,LARGE SUNNY 1BD 10 MIN TO MANHATTAN,193126561,Adelina,Queens,Astoria,40.758590000000005,-73.91334,Entire home/apt,90,3,37,2019-06-22,3.22,1,127 +2818471,Sunny Bedford Stuyvesant Townhouse,7850260,Raymond,Brooklyn,Bedford-Stuyvesant,40.68576,-73.92211,Entire home/apt,150,1,197,2019-07-01,3.19,3,209 +9051763,"Room in 3BR Condo, FREE WASHER/DRYER",1283476,Mark,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94572,Private room,57,5,14,2019-05-29,0.37,2,216 +9395128,"LGA/TimeSqaure/Private BDroom+Bath, Queens",36577517,Nan,Queens,Elmhurst,40.74449,-73.88096,Private room,49,2,21,2019-06-15,0.48,2,311 +9313758,Spacious Room in Greenpoint Duplex,1516920,Jonathan,Brooklyn,Greenpoint,40.73274,-73.95505,Private room,57,1,10,2016-03-17,0.22,2,0 +7780335,Sunny studio in Williamsburg,7285322,Allie,Brooklyn,Williamsburg,40.71607,-73.95352,Entire home/apt,150,3,9,2017-12-29,0.2,1,0 +24387440,Midtown East Prime UN Location,184065290,Keren,Manhattan,Midtown,40.75418,-73.9664,Entire home/apt,180,30,16,2018-12-12,1.08,1,3 +34093093,Private entrance with views. 25 mins to Manhattan,20087667,Mike,Queens,Astoria,40.76962,-73.93146,Private room,55,1,15,2019-06-29,6.0,1,17 +29188542,SUN DRENCHED 1 BEDROOM IN THE LOWER EAST SIDE,8053333,Stefanie,Manhattan,Chinatown,40.717220000000005,-73.99242,Entire home/apt,105,2,15,2019-06-18,1.67,1,160 +981410,Sunny Studio in the West Village,5374768,Maria,Manhattan,West Village,40.73331,-74.00471,Entire home/apt,170,4,1,2013-04-09,0.01,1,273 +77936,Hells Kitchen Garden of Eden,134355,Moss Owen,Manhattan,Hell's Kitchen,40.76248,-73.9913,Private room,150,3,36,2019-06-14,0.36,1,49 +33236002,Sunny and Bright Brooklyn Duplex,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68609,-73.92931999999999,Entire home/apt,195,2,5,2019-06-23,2.42,2,20 +20661577,Columbia Neighborhood 1 bedroom apartment,72938614,Ned,Manhattan,Morningside Heights,40.80627,-73.96354000000001,Shared room,125,4,0,,,1,0 +26668703,Red Hook Loft,6354758,Molly,Brooklyn,Red Hook,40.67966,-74.00641,Private room,125,7,1,2018-09-01,0.1,1,45 +28364513,baynefamilywithlove,206459807,Evelyn,Brooklyn,Cypress Hills,40.68382,-73.8796,Entire home/apt,110,2,29,2019-07-01,3.04,1,63 +1145288,5 STARS***MIDTOWN EAST-BRAND NEW!!!,1475015,Mike,Manhattan,Midtown,40.75274,-73.97026,Entire home/apt,110,30,3,2016-07-04,0.06,52,365 +34060973,"Roomy, sun-drenched, one-bedroom apartment",18811278,Anna Lien,Queens,Ridgewood,40.70741,-73.91534,Entire home/apt,150,7,0,,,1,0 +24911227,1-Bed Apt on East River - 1 stop from Manhattan!,17005953,Cassondra,Queens,Long Island City,40.74462,-73.94913000000001,Entire home/apt,110,1,3,2018-07-03,0.23,1,0 +33614872,Charming 1BR next to subway & walk to Central Park,140272,Fé,Manhattan,East Harlem,40.79013,-73.94958000000001,Entire home/apt,174,3,9,2019-06-23,3.55,1,85 +10447691,Sunny room in Lower East Side Apt!,183151,Lynh,Manhattan,Lower East Side,40.71578,-73.98201,Private room,47,1,0,,,1,0 +1217046,Sunny Williamsburg Apt w/ Deck,645887,Dave & Theresa,Brooklyn,Williamsburg,40.71317,-73.94851,Entire home/apt,179,3,146,2019-06-26,2.08,2,282 +11910257,Cozy Nest 15 Minutes From Midtown,50661711,Cory,Manhattan,Washington Heights,40.83288,-73.94306,Private room,70,1,0,,,1,0 +32225184,Sonder | Wall Street | Calming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.01226,Private room,258,2,6,2019-05-12,1.27,327,332 +10069174,Spacious Family Apartment near Prospect Park,2436599,Rachel,Brooklyn,Flatbush,40.65132,-73.95691,Entire home/apt,128,3,2,2017-04-30,0.07,1,0 +31885991,Full size bed suite.,105762561,Kim,Queens,Jamaica,40.69102,-73.78438,Private room,65,2,2,2019-04-29,0.75,3,319 +12333601,"Cozy room in Carroll Gardens, Brooklyn",9632055,Daniel,Brooklyn,Carroll Gardens,40.68378,-74.00046,Entire home/apt,55,2,0,,,1,0 +20874350,"Söderläge - 3 bedrooms in Williamsburg, Brooklyn",13262918,Glenn,Brooklyn,Williamsburg,40.71075,-73.9564,Entire home/apt,225,2,124,2019-07-07,5.71,3,106 +22282419,The real New York experience,80824522,Nat,Brooklyn,Bushwick,40.70208,-73.93259,Private room,55,1,19,2019-06-16,1.03,2,74 +15360220,Bohemian Brooklyn Pad with Rooftop Garden Oasis,10109204,Alexandra,Brooklyn,Bushwick,40.70378,-73.91311,Private room,65,2,3,2018-02-10,0.09,1,0 +34853099,Private Roof with Great View of NYC,67046604,Jackie,Brooklyn,Park Slope,40.66713,-73.98196,Private room,60,15,0,,,1,53 +24868956,新一处客居(Newplace2),187908645,Jimmy,Queens,Flushing,40.75686,-73.83279,Private room,60,1,33,2019-06-22,2.36,4,49 +34839277,Cozy & Comfortable Private Room,40085320,Alaa,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94399,Private room,55,2,11,2019-07-07,9.17,2,44 +19547068,"SIMPLEHOME +Nothing fancy just quiet Place",137302318,Alona,Queens,Long Island City,40.75381,-73.92559,Entire home/apt,93,1,185,2019-06-23,7.64,2,73 +7348509,Modern 1BR in Heart of Williamsburg,38497438,Don,Brooklyn,Williamsburg,40.71969,-73.9562,Entire home/apt,215,1,1,2015-08-02,0.02,1,0 +7742889,"Cozy, parkside room in Inwood",8692598,Jen,Manhattan,Inwood,40.86363,-73.93002,Private room,48,1,5,2015-09-27,0.11,1,0 +25725858,Comfortable friendly atmosphere,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69449,-73.93726,Private room,87,2,4,2019-05-26,0.32,5,330 +14800184,Spacious Bedroom in Gorgeous Renovated Apartment,82715129,Carlos,Brooklyn,Bedford-Stuyvesant,40.69063,-73.93947,Private room,67,2,87,2019-06-30,2.51,1,60 +30948183,One bedroom in 2 bedroom apartment,4333342,Megan,Manhattan,East Village,40.72712,-73.97803,Private room,75,1,15,2019-06-29,2.88,2,0 +253623,Chez Carine - Privacy in Manhattan,1332108,Cici,Manhattan,Harlem,40.81512,-73.94691999999999,Private room,81,2,72,2018-11-26,0.77,1,0 +34444939,Luxurious Apartment in Brooklyn,260021770,Mariana,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92335,Entire home/apt,150,2,7,2019-07-04,4.12,1,4 +12082737,Location Chambre,47954479,Erwan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.95084,Private room,51,1,0,,,1,0 +16506579,Interfaith Retreats (Kirtan),16677326,Alex And Zeena,Manhattan,Chelsea,40.74788,-73.99615,Private room,85,1,108,2019-06-15,3.53,12,356 +32718064,Artist Designed Garden Floor With Sunny Back Yard,15538629,Brigitte,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94253,Entire home/apt,175,3,12,2019-07-05,4.0,1,301 +328693,Spacious Manhattan Apartment near Central Park,1013131,Joseph,Manhattan,Upper West Side,40.78867,-73.96809,Entire home/apt,179,3,297,2019-06-24,3.37,1,205 +22307248,Cool & Calm 3 Bed Apartment in Beautiful Bedstuy,18146050,Joseph,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94693000000001,Entire home/apt,38,4,5,2018-06-11,0.27,1,0 +35873124,Bright and Spacious Apartment in East Williamsburg,269818165,Michael,Brooklyn,Williamsburg,40.71171,-73.9454,Private room,60,3,0,,,1,0 +17587833,Penthouse Luxury Apt with Amazing Views near GCT,119483929,Ryan,Manhattan,Murray Hill,40.7481,-73.97771,Entire home/apt,148,14,0,,,1,0 +28406352,Mikey's,7963207,Michael,Manhattan,West Village,40.73659,-74.00495,Entire home/apt,325,3,8,2019-06-26,0.83,1,83 +9355498,Amazing Brownstone,10909829,Richelle And Pela,Brooklyn,Bedford-Stuyvesant,40.68346,-73.93121,Entire home/apt,150,4,76,2019-06-25,1.78,2,274 +35482487,"Private studio and backyard, 12 mins drive to JFK",55450195,Francis,Brooklyn,Cypress Hills,40.68224,-73.86806,Entire home/apt,60,3,6,2019-07-08,6.0,1,21 +13230556,BRIGHT & COZY STUDIO FOR 2~EAST 60TH STREET,2856748,Ruchi,Manhattan,Upper East Side,40.761390000000006,-73.96208,Entire home/apt,138,30,0,,,49,365 +28510048,NYC Spacious 6 Br Victorian Home w/ parking,57812046,Dave + Suzanne,Brooklyn,Flatbush,40.63848,-73.96571999999999,Entire home/apt,330,3,2,2019-07-03,1.05,2,18 +18340599,Your cozy home away from home.,66064924,Griffith,Brooklyn,East New York,40.65372,-73.8828,Private room,99,2,50,2019-05-27,1.92,1,180 +1439162,Cozy & Private 1 Bedroom Garden Level Apartment,7460181,Geraldine,Brooklyn,Bedford-Stuyvesant,40.68238,-73.93795,Entire home/apt,99,3,208,2019-06-25,2.89,1,206 +20432888,Spacious area close to Gramercy park,9475138,Jastine,Manhattan,Gramercy,40.73894,-73.98651,Entire home/apt,340,2,0,,,1,0 +14111254,"NYC Chelsea Neighborhood, Studio Apartment",3730998,Chelsea,Manhattan,Chelsea,40.74011,-73.99829,Entire home/apt,250,2,45,2019-06-19,1.9,1,90 +18371333,Beautiful and Sunny Private Room in Brooklyn,7496038,Sebastian,Brooklyn,Bushwick,40.69306,-73.91918000000001,Private room,49,2,24,2019-06-09,0.91,1,0 +10452737,"Large Room, High Floor w/ Views - Times Square",6158370,David,Manhattan,Chelsea,40.75126,-73.99498,Private room,139,3,0,,,1,0 +4808065,Midtown East Lovely Nice Studio,23982388,Jolie,Manhattan,Midtown,40.75244,-73.96619,Entire home/apt,125,30,5,2017-04-15,0.1,5,331 +21962437,$850 up to 3 month female only,130149223,Laurene,Brooklyn,Crown Heights,40.67163,-73.93399000000001,Private room,31,30,7,2019-06-23,0.36,1,302 +4252172,Williamsburg Penthouse w/ Balcony,13949526,Fran,Brooklyn,Williamsburg,40.70028,-73.95439,Private room,99,1,0,,,1,0 +3801701,Private Studio Near Union Square,12090062,Annie,Manhattan,Chelsea,40.73996,-73.99919,Entire home/apt,195,2,31,2018-12-09,0.52,1,10 +14705209,Cozy Studio in Midtown,7104133,Shruti,Manhattan,Murray Hill,40.74993,-73.977,Entire home/apt,125,2,32,2019-06-19,0.91,1,0 +25894924,A Hidden Gem in Queens,106304833,Amah Justin,Queens,Jamaica,40.68257,-73.77949,Entire home/apt,75,2,25,2019-06-24,2.06,1,62 +19011610,Geometric Getaway,19544315,Cal,Manhattan,Washington Heights,40.83318,-73.94081,Private room,35,1,0,,,2,0 +1970915,Private Backyard! Beautiful 1BR apartment.,10176907,Maria,Brooklyn,Bushwick,40.70022,-73.91441,Entire home/apt,80,7,6,2016-11-14,0.12,1,3 +13028533,1 BD Suite W/ Kitchen 550 SQFT Wyn Midtown 45 NYC,57574248,Christine,Manhattan,Midtown,40.75303,-73.97327,Entire home/apt,170,2,9,2017-12-15,0.26,3,0 +14683956,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,2856748,Ruchi,Manhattan,Upper East Side,40.7608,-73.96136,Entire home/apt,175,30,0,,,49,365 +2862900,Charming & Bright Studio @ W 50's,3716641,Ofer,Manhattan,Hell's Kitchen,40.76634,-73.98719,Entire home/apt,99,30,8,2018-07-09,0.19,8,139 +30352717,Basic room in Williamsburg,45773187,Jakub,Brooklyn,Williamsburg,40.71038,-73.94779,Private room,49,7,0,,,1,0 +14353077,Beautiful room in newly renovated aptartment,39726129,Jacob,Manhattan,Stuyvesant Town,40.7294,-73.97751,Private room,60,2,2,2016-08-25,0.06,1,0 +9668,front room/double bed,32294,Ssameer Or Trip,Manhattan,Harlem,40.82245,-73.95104,Private room,50,3,242,2019-06-01,2.04,3,355 +6883096,Brand NEW built luxury Apartment,14510607,Gregory,Queens,Astoria,40.76257,-73.92634,Entire home/apt,300,2,13,2016-10-12,0.27,1,365 +10242095,Huge Room w/ Amazing Queen Bed in S. Williamsburg!,4209540,Aaron,Brooklyn,Williamsburg,40.70154,-73.94759,Private room,55,3,26,2019-05-16,0.68,1,1 +31876724,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79887,-73.95968,Private room,60,30,1,2019-06-21,1.0,32,342 +18561618,Comfy & Cozy Space in the Upper West Side,128860627,Chris,Manhattan,Upper West Side,40.77557,-73.98099,Shared room,65,3,68,2019-06-22,2.6,1,138 +32355251,PRIVATE bath & entrance in hip Greenpoint,56470374,Jacqueline,Brooklyn,Greenpoint,40.7293,-73.95075,Private room,145,21,1,2019-07-01,1.0,1,343 +30425766,Bed in a shared male room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69218,-73.9439,Shared room,30,2,14,2019-05-20,1.92,4,224 +15888227,"Spacious, bright room, prime Williamsburg location",11917115,Claudia,Brooklyn,Williamsburg,40.71497,-73.96145,Private room,110,3,0,,,1,0 +8342200,"Upper West Side, Close to Park",37131217,Rowdy,Manhattan,Upper West Side,40.7816,-73.97638,Entire home/apt,125,5,0,,,1,0 +24019172,"XL Ensuite 5m to Ferry, RUMC, Snug Harbor",9263105,Wj,Staten Island,New Brighton,40.64393,-74.09312,Private room,40,30,1,2019-06-29,1.0,2,71 +18215065,NEW 2 twin beds and private bathroom in Flushing!!,10366837,Jia,Queens,Flushing,40.757670000000005,-73.83094,Entire home/apt,65,2,84,2019-06-15,3.19,3,119 +736187,Private Room in lovely Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72661,-73.94586,Private room,52,5,35,2019-01-03,0.44,3,1 +18790004,Large 1 bed w/big kitchen & exposed brick,95786,Vincent,Manhattan,East Village,40.72791,-73.98929,Entire home/apt,150,10,5,2019-01-06,0.24,1,0 +4047638,NYC-Great Cost x Benefit-Huge Room-Next to Subway.,20987432,Valeria,Queens,Astoria,40.7653,-73.92661,Private room,69,4,22,2019-06-04,0.38,1,311 +5084887,Clean & Warm East Village Escape!,26265097,Nancy,Manhattan,East Village,40.7295,-73.98398,Entire home/apt,100,5,1,2015-02-06,0.02,1,0 +29736250,Elegant 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70898,-73.96596,Entire home/apt,120,29,2,2019-03-24,0.38,7,0 +22251910,Williamsburg Penthouse with 3 Private Terraces!,83091890,Andrei,Brooklyn,Williamsburg,40.71815,-73.94189,Entire home/apt,190,2,46,2019-07-01,2.97,1,239 +17881234,Garden level private room + your own bathroom,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91701,Private room,50,4,10,2019-05-18,1.06,2,7 +21386105,Quiet & clean 1br haven with balcony near the park,154256662,Danielle,Queens,Astoria,40.77134,-73.92424,Entire home/apt,250,3,1,2018-01-02,0.05,1,180 +5195568,private room,26877037,Catherine,Brooklyn,Sheepshead Bay,40.60059,-73.95899,Private room,139,1,3,2015-10-14,0.06,2,0 +6269517,Tailored Studio in Williamsburg BK,9524360,Michael,Brooklyn,Williamsburg,40.7137,-73.93734,Entire home/apt,150,3,139,2019-06-27,2.74,2,238 +22923314,Semiprivate room Forest Hills (female only),9110062,Claudia,Queens,Forest Hills,40.724540000000005,-73.84103,Private room,72,1,5,2018-12-31,0.4,1,35 +24122836,Cozy Private Room in Flushing 法拉盛中心單人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76562,-73.8299,Private room,45,1,96,2019-07-07,6.56,3,44 +33552714,Heaven,22388020,Lùis,Brooklyn,Bushwick,40.7023,-73.91911,Private room,59,1,8,2019-06-25,2.73,1,56 +4756297,Perfect 1BD in Gramercy/Union Sq,840590,Ben,Manhattan,Gramercy,40.73348,-73.98562,Entire home/apt,199,2,3,2019-06-30,0.07,1,19 +34393891,Sunny Private Sanctuary w High Ceilings,234270791,April G,Brooklyn,Bushwick,40.6961,-73.9307,Private room,64,3,1,2019-05-22,0.63,3,178 +4550015,Greenwich/West Village Private Room,15778416,Courtney,Manhattan,West Village,40.73033,-74.00284,Private room,110,1,0,,,2,0 +13616940,MODERN & SPACIOUS NEAR CENTRAL PARK / HARLEM,3683612,Cynthia,Manhattan,Harlem,40.8018,-73.95166,Entire home/apt,125,3,26,2018-09-03,0.7,1,67 +9315567,I am Minutes from it All.,48351548,Kandisann,Manhattan,Harlem,40.80157,-73.95407,Private room,65,1,11,2016-07-04,0.25,1,0 +19161964,A Private and Cozy room near Columbia University,107704855,Mohammad,Manhattan,Morningside Heights,40.8107,-73.95841999999999,Private room,60,1,1,2017-11-15,0.05,1,0 +30406899,Private room (Paris Room) in Bushwick Brownstone,40305031,Rob,Brooklyn,Bushwick,40.68583,-73.90985,Private room,55,1,10,2019-05-06,1.36,2,365 +33546854,LAVISH 3 Bedroom in Williamsburg!!,252642141,Inez,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93834,Entire home/apt,250,2,3,2019-07-07,1.5,1,117 +14301951,A beautiful cozy room with balcony,87370616,Francisca,Bronx,Longwood,40.81998,-73.90325,Private room,75,2,110,2019-06-17,3.18,2,350 +30772697,"Relaxing Private Bedroom~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83024,-73.94715,Private room,90,1,1,2019-03-09,0.25,6,40 +9412276,UWS Railroad Apartment,7683847,David,Manhattan,Upper West Side,40.79632,-73.96879,Entire home/apt,110,1,0,,,1,0 +35240782,1-3 months term NEW 1BR in a great bldg w rooftop,9224491,Tamara,Manhattan,East Village,40.72685,-73.98349,Entire home/apt,110,30,0,,,1,0 +23088623,Stylish Modern Garden Bedroom w/ensuite bathroom,47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9331,Private room,99,3,16,2019-06-18,1.24,3,360 +14949923,Luxury Apartment one block from Central Park,94087334,Aimee,Manhattan,Upper West Side,40.77718,-73.98023,Private room,120,1,20,2019-06-24,0.59,1,81 +999984,Greenwich Village Townhouse Apt,5468033,Linda,Manhattan,West Village,40.73303,-74.00237,Entire home/apt,300,3,108,2019-07-01,1.44,1,318 +7462019,LAKOU LAKAY- A HOME AWAY FROM HOME,39085295,Guerline,Brooklyn,Flatbush,40.63968,-73.95215,Entire home/apt,125,3,105,2019-06-25,2.67,1,195 +6247466,Comfy Room in E Williamsburg Loft,4336757,Geoff,Brooklyn,Williamsburg,40.71905,-73.93905,Private room,55,3,4,2015-08-26,0.08,1,0 +26552340,*NYC Flat Cold Cozy Private Room w/ Blazin' WiFi*,191338162,William,Bronx,Allerton,40.85978,-73.8619,Private room,142,1,29,2019-06-25,2.47,5,48 +2683455,4BR Family apt 15 min to Manhattan,1273385,Cecile,Queens,Long Island City,40.74749,-73.92089,Entire home/apt,155,3,4,2015-10-13,0.07,1,0 +7500228,"Charming cozy bedroom, Downtown",16960158,Monte,Manhattan,Battery Park City,40.71011,-74.01456999999999,Private room,99,2,31,2016-06-26,0.65,1,0 +32102590,Cute Studio in Central of Midtown,211549023,Studioplus,Manhattan,Midtown,40.7467,-73.98706,Entire home/apt,220,2,4,2019-06-18,1.09,13,283 +34743708,New Studio on Historic Street,220762164,Sherley,Brooklyn,Bushwick,40.68937,-73.90903,Private room,95,2,1,2019-05-27,0.68,4,354 +32574801,Home away from home.,244808289,Ann,Queens,Jamaica,40.67931,-73.80149,Private room,50,3,0,,,1,74 +883209,World Travelers to Couchcrash in BK,4158086,Vivian,Brooklyn,Bedford-Stuyvesant,40.691320000000005,-73.94205,Shared room,50,3,15,2017-09-16,0.2,1,365 +33618626,Highland Park 2 bedroom share,2099273,Eric,Brooklyn,Cypress Hills,40.68176,-73.89402,Private room,85,30,0,,,1,98 +29159920,Suite East Side - FREE street parking & wifi,219738858,Joe,Manhattan,Lower East Side,40.72074,-73.98487,Entire home/apt,195,30,21,2019-06-21,2.43,5,117 +11547077,Beautiful with private terrace,8200984,Emilie,Brooklyn,Park Slope,40.67764,-73.97835,Entire home/apt,200,3,4,2018-01-02,0.1,1,0 +20090389,Studio at Central Park North with fast/easy travel everywhere in NYC!,142855897,Lydia,Manhattan,East Harlem,40.79496,-73.94882,Entire home/apt,150,4,7,2018-09-30,0.56,1,0 +16273510,Cozy Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76518,-73.9929,Entire home/apt,98,30,8,2019-04-05,0.32,31,145 +8485529,Central Park/UES,30376992,Chloé,Manhattan,Upper East Side,40.77964,-73.95474,Entire home/apt,130,2,5,2018-06-16,0.11,1,0 +34840050,金城发双人房 suit2 queens size bed,255641440,Li,Queens,Flushing,40.75,-73.81489,Private room,43,1,0,,,7,339 +30853505,"Clean, spacious 1BR, 1BA in heart of NYC",23746969,Mike,Manhattan,Kips Bay,40.74175,-73.98135,Entire home/apt,300,2,5,2019-04-14,0.78,1,193 +21892706,Great Apartment In Prospect Lefferts Garden,159735335,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.96014,Private room,80,1,29,2018-10-14,1.51,1,0 +5939328,Modern Clean Loft in Prime Brooklyn,14152383,Scott,Brooklyn,Gowanus,40.6777,-73.99126,Entire home/apt,246,4,0,,,1,0 +16120533,Room for Either One of Two (Has Two Beds),56878925,Joyce,Brooklyn,Canarsie,40.63485,-73.92055,Shared room,40,2,4,2017-12-27,0.13,2,3 +32678720,Great Room in the heart of Times Square!,244361589,Row NYC,Manhattan,Theater District,40.75828,-73.98876,Private room,199,1,82,2019-07-07,27.95,9,299 +33715755,Private Bedroom in a Prewar Gramercy Building!,46714344,Manuel Alex,Manhattan,Gramercy,40.73568,-73.98188,Private room,95,2,4,2019-06-15,1.43,1,0 +24555741,"New York Room, Beautiful Upper West Side",185514817,Allison,Manhattan,Upper West Side,40.79856,-73.97174,Private room,55,5,2,2018-05-21,0.14,1,0 +21311520,"Amazing ,Steps From Time Square,Perfect Location.",52950465,Gal,Manhattan,Hell's Kitchen,40.76168,-73.99061,Entire home/apt,99,30,12,2018-02-27,0.57,12,251 +31806593,High ceilings private room with record player,191084919,Brian,Brooklyn,Bedford-Stuyvesant,40.68434,-73.93712,Private room,70,1,5,2019-06-30,1.97,1,0 +1824808,LOCATION LOCATION LOCATION Abigail,1146958,Liz,Manhattan,Gramercy,40.73679,-73.98177,Entire home/apt,195,30,104,2019-04-06,1.51,4,333 +33833887,Sonder | Stock Exchange | Vintage 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01116999999999,Entire home/apt,228,2,1,2019-05-26,0.68,327,357 +33999874,BRIGHT ROOM CLOSE TO MIDTOWN MANHATTAN,32167398,Meela,Queens,Long Island City,40.75894,-73.92864,Private room,60,1,4,2019-05-12,1.52,5,355 +22107368,Entire Apartment Available in Astoria,103170539,Lalit,Queens,Astoria,40.768240000000006,-73.91135,Private room,29,5,11,2018-06-15,0.59,1,156 +6226794,1 bedroom in a 2 bedroom apartment,32295605,Yana,Manhattan,Upper East Side,40.76449,-73.96169,Private room,105,3,75,2019-06-12,1.57,1,338 +30395433,Gorgeous NYC apt. near everything! (Women only),27698539,Roberta,Manhattan,Midtown,40.74985,-73.98151999999999,Private room,90,2,13,2019-07-07,1.88,1,24 +3765095,Sunny Private Room Facing Beautiful Prospect Park,5242693,Neysa,Brooklyn,Flatbush,40.65441,-73.96257,Private room,45,10,9,2018-05-16,0.26,1,90 +16123133,Sun dappled 2 bedroom brownstone apt on FG park!,1628075,Zoe,Brooklyn,Fort Greene,40.69015,-73.97264,Entire home/apt,265,31,33,2018-11-17,1.2,1,281 +673248,Secret Garden Big and Comfortable,3317183,Claire,Brooklyn,Bedford-Stuyvesant,40.68773,-73.95631,Entire home/apt,80,3,162,2019-06-24,1.97,2,249 +24539732,Sharp 1BR in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70544,-74.00641,Entire home/apt,222,29,0,,,96,333 +33666721,ALEX SPACE #5,252819295,Alex,Queens,Richmond Hill,40.694390000000006,-73.83243,Shared room,58,1,12,2019-07-02,4.14,1,180 +23464702,Private bedroom in large Chelsea apartment,3656871,Holman,Manhattan,Chelsea,40.74233,-74.0002,Private room,99,3,3,2018-04-23,0.19,1,0 +23644901,"Modern, lux BDR breakfast airport pickup included!",51088192,Sama,Brooklyn,Bedford-Stuyvesant,40.69028,-73.94163,Private room,100,3,0,,,1,364 +16353485,"Private 1 BR in 4 BR apartment, by L Train",32545798,Sasha,Brooklyn,Williamsburg,40.71443,-73.96154,Private room,45,1,4,2017-06-24,0.13,5,0 +29827781,NYC WARM CLEAN COZY CLOSET EXPERIENCE ROOM 3 PPL,4233057,Hajah,Manhattan,East Harlem,40.79829,-73.93601,Private room,68,3,4,2019-05-29,0.64,3,95 +9676482,Sunny Loft Apartment 5 min. Walk to Pratt! #01401,9966670,Gene,Brooklyn,Bedford-Stuyvesant,40.68986,-73.95891999999999,Entire home/apt,125,3,42,2019-07-02,0.98,1,226 +3694441,"Modern, Bright, Airy Brooklyn Apt",1010344,Ian & Sady,Brooklyn,Bedford-Stuyvesant,40.68592,-73.95501999999999,Entire home/apt,200,3,6,2016-01-01,0.1,1,0 +15797728,"Modern, Ambient 1-Bedroom Apartment",28189446,Michella,Staten Island,Eltingville,40.54106,-74.14666,Entire home/apt,70,5,83,2019-07-01,2.56,1,291 +33627195,East Village Bedroom,192956786,Brian,Manhattan,East Village,40.72585,-73.98831,Private room,50,4,9,2019-06-16,3.14,1,48 +31268431,Prime Location Private Room in Queens,233755743,Jany,Queens,Elmhurst,40.735040000000005,-73.87406999999999,Private room,80,2,8,2019-06-03,1.54,2,125 +16133543,Beautiful room in a Private House in Brooklyn,105239473,Joseph,Brooklyn,Cypress Hills,40.682390000000005,-73.89319,Private room,65,3,22,2019-01-01,0.7,1,89 +20306472,Big sunny bedroom Clinton Hill $50/day,442106,Bobby,Brooklyn,Bedford-Stuyvesant,40.69256,-73.96058000000001,Private room,35,1,5,2017-09-13,0.22,1,0 +7128293,Room With a View – Minimalist Respite in Bed-Stuy,1574618,Alyson,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94501,Private room,95,4,47,2019-05-28,1.01,1,3 +29511905,CozyStudio /Briarwood Van Wyck station F to city,153141476,Franz,Queens,Briarwood,40.70626,-73.81463000000001,Entire home/apt,44,1,17,2019-06-24,2.23,3,44 +2763206,COZY PRIVATE BR AT59TH ST MANHATTAN,14133008,Lisa,Manhattan,Midtown,40.75967,-73.96595,Private room,78,12,43,2019-04-29,0.74,1,49 +24430667,Spacious bedroom in Beautiful Prospect Lefferts,111938058,James,Brooklyn,Prospect-Lefferts Gardens,40.65926,-73.96252,Private room,100,3,14,2019-06-23,0.98,1,364 +35190467,Decent room for rent,253969143,Kelly,Queens,Elmhurst,40.74283,-73.88899,Private room,110,2,0,,,1,179 +31929849,Your own entire private place in BROOKLYN NY :),7958766,Sammy,Brooklyn,Bath Beach,40.59988,-74.00415,Entire home/apt,99,2,17,2019-06-30,3.78,1,20 +27366041,Sham’s home,80543188,Shamira,Bronx,Fordham,40.86299,-73.89088000000001,Private room,75,2,14,2019-05-01,1.26,1,210 +3383382,Modern 1 BR + terrace in Gramercy,908514,David,Manhattan,Kips Bay,40.73873,-73.98100000000001,Entire home/apt,165,2,25,2019-05-27,0.41,1,0 +34015258,E & J private stay.,155961583,Jeanette,Brooklyn,Bushwick,40.7007,-73.93401,Private room,69,2,8,2019-06-26,3.75,1,131 +18778024,Modern Bright Bedroom 30 seconds to Subway!,779551,Lana,Queens,Long Island City,40.75607,-73.93021999999999,Private room,100,2,91,2019-06-23,3.54,2,21 +21786958,Slice of Heaven @ 811,105130665,Sharon,Brooklyn,Crown Heights,40.6703,-73.94181999999999,Entire home/apt,250,3,44,2019-07-04,2.33,1,52 +22464295,Lower East Side Newly renovated! #7,158969505,Karen,Manhattan,Lower East Side,40.72268,-73.99205,Entire home/apt,250,30,3,2019-04-30,0.37,9,264 +33988271,"Cute, Convenient Bushwick 1-Bedroom (sleeps 6)",256634850,Barbara,Brooklyn,Bushwick,40.68773,-73.90589,Entire home/apt,149,2,1,2019-06-23,1.0,1,0 +27203985,Awesome room in BK great for two friends sharing!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92815999999999,Private room,43,30,1,2019-05-01,0.43,5,140 +33240958,COZY Room @Williamsburg (10 mins to Manhattan),1104166,Mala,Brooklyn,Williamsburg,40.71362,-73.95343000000001,Private room,65,2,9,2019-06-23,3.42,4,43 +35451637,Amazing private room near central park and subway2,266726110,Sergii,Manhattan,Harlem,40.80445,-73.9567,Private room,88,30,0,,,7,360 +19385941,Spotless Clean room private entrance paid parking,124860677,Jim&Lisa,Queens,Flushing,40.75712,-73.8122,Private room,120,2,45,2019-07-01,1.87,6,365 +23059611,"Modern, hip, light drenched apartment.",12502207,Micah,Brooklyn,Vinegar Hill,40.70312,-73.98416,Entire home/apt,130,30,3,2019-01-05,0.24,1,339 +1123934,Sunny 1BR Apt in N. Williasmburg,6164428,Bjarke And Holly,Brooklyn,Williamsburg,40.72065,-73.959,Entire home/apt,130,14,1,2015-01-09,0.02,1,296 +9152965,Spacious Duplex w/ additional loft.,4313126,Andy,Brooklyn,Bushwick,40.69885,-73.93370999999999,Entire home/apt,200,10,1,2016-01-07,0.02,2,0 +13346741,Great location big one bedroom on the UWS,3256433,Ira,Manhattan,Upper West Side,40.79426,-73.96914,Entire home/apt,200,10,4,2019-06-08,0.12,7,154 +17583732,Bright and Cosy Room in Williamsburg,1750299,Julie,Brooklyn,Williamsburg,40.7115,-73.9429,Private room,69,23,12,2019-06-19,0.44,2,189 +20279672,Serene queen sized bedroom,2514859,Meghan,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95137,Private room,70,2,2,2019-01-01,0.2,2,0 +27026175,Brooklyn home away from home,203339760,Sofiya,Brooklyn,Sunset Park,40.66153,-73.99297,Private room,65,1,6,2019-06-23,0.65,1,0 +10148955,Gorgeous 2BDRM Apartment,7342535,Chris,Brooklyn,Clinton Hill,40.68142,-73.95889,Entire home/apt,210,1,3,2016-02-14,0.07,1,0 +29333400,1 bedroom apartment,331328,Amir,Manhattan,East Harlem,40.807590000000005,-73.94103,Entire home/apt,99,5,13,2019-06-17,2.48,3,8 +9121896,1 RED BEDROOM IN 3 BEDROOMS APT,7858210,Maxime,Manhattan,Harlem,40.81614,-73.94116,Private room,50,2,66,2019-05-29,1.51,4,180 +25340844,"Cozy Room in a Historic, Beautiful Apartment",9523229,Dennis,Manhattan,Chelsea,40.74249,-73.99996999999999,Private room,68,4,33,2019-06-16,2.56,1,0 +19403704,Private bathroom and bedroom for 1 -2 people,10262363,Hangi,Manhattan,Hell's Kitchen,40.75548,-73.9951,Private room,100,4,1,2017-07-03,0.04,1,0 +30038245,Spacious Room In The Heart Of Harlem,6480134,Johanna,Manhattan,Harlem,40.82414,-73.93911999999999,Private room,60,4,11,2019-06-18,1.53,2,161 +25580283,Bright room in beautiful Park Slope apartment,20867842,Sarah,Brooklyn,Sunset Park,40.65877,-73.98974,Private room,60,3,3,2018-06-23,0.23,1,0 +5659417,Charming East Village Nook,29332408,William,Manhattan,East Village,40.72866,-73.9806,Entire home/apt,125,3,51,2019-06-13,1.06,1,67 +19176390,"TIMES SQUARE NYC, COZY Jr 1 BR w Private Patio",134114121,Jay,Manhattan,Hell's Kitchen,40.7598,-73.99033,Entire home/apt,219,3,12,2019-06-28,1.33,1,59 +20499040,Beautiful room at the heart of Bushwick,146345538,Sergii,Brooklyn,Bushwick,40.69349,-73.91173,Shared room,34,30,2,2018-05-23,0.11,5,365 +17026435,"Artist room in the heart of Bushwick, Brooklyn NY",114209467,Prashant,Brooklyn,Bushwick,40.69482,-73.91165,Private room,30,1,1,2017-02-09,0.03,1,0 +3488989,"Sunny, Quiet Apt. in Manhattan",17568735,William,Manhattan,Harlem,40.82639,-73.94185999999999,Entire home/apt,135,3,3,2015-09-08,0.05,1,0 +6601606,Large Lower East Side Room with a View,6864230,Danica,Manhattan,Lower East Side,40.71343,-73.98826,Private room,125,1,0,,,1,0 +10133195,Private room 20mins from the city!,15640532,Kelly,Queens,Elmhurst,40.74157,-73.88389000000001,Private room,65,4,1,2016-01-02,0.02,1,0 +5954466,Sunny Elegant Parkside Apartment,30909882,Peter,Brooklyn,Greenpoint,40.72102,-73.94808,Entire home/apt,175,5,21,2019-04-16,0.41,1,0 +21414167,Recently renovated 2 bedroom apartment in midtown,42784981,Santiago,Manhattan,Midtown,40.7447,-73.98255,Entire home/apt,350,2,1,2017-11-26,0.05,1,0 +15419574,Historic Cottage-Style Garden Home in LIC,98810918,Robin,Queens,Long Island City,40.74629,-73.95199000000001,Private room,95,3,56,2019-05-08,1.71,1,50 +23170592,Quiet and spacious room for 2,40317143,Zsofia,Queens,Maspeth,40.71937,-73.90442,Private room,40,1,2,2018-12-30,0.13,2,169 +33804063,"Bushwick apartment, thoughtful details",1200192,Christine,Brooklyn,Bushwick,40.69767,-73.93096,Private room,99,2,0,,,1,1 +12355067,Highline view,31502455,Jonathan,Manhattan,Chelsea,40.74553,-73.99784,Private room,200,1,1,2016-05-21,0.03,1,0 +1739847,Welcome to a beautiful Quiet Bronx.,8989844,Ronald,Bronx,Soundview,40.82138,-73.87603,Private room,45,3,53,2018-08-18,0.82,1,249 +35735657,A Stylist's entire apt (2BDs) in heart of NYC!!,28580275,Sommy,Manhattan,Midtown,40.75823,-73.96509,Entire home/apt,290,1,0,,,4,286 +17189799,Spacious Studio - Midtown East,4316106,George,Manhattan,Midtown,40.7544,-73.96721,Entire home/apt,200,2,43,2019-04-10,1.48,1,0 +5679557,Charming Brooklyn Brownstone Home - GREAT LOCATION,14513121,C.,Brooklyn,Park Slope,40.67731,-73.97475,Entire home/apt,180,3,21,2019-07-07,0.4,1,125 +19294702,Williamsburg Modern Two-Floor 1 bedroom 1.5 baths,14157243,Leidy,Brooklyn,Williamsburg,40.71617,-73.95283,Entire home/apt,250,2,3,2017-11-05,0.14,1,0 +30407308,La Greka,109843377,Rubi,Brooklyn,Bedford-Stuyvesant,40.67992,-73.90943,Private room,60,14,0,,,2,156 +1475084,"Fun LES 1br, close to everything!",7895068,Ana,Manhattan,Chinatown,40.71608,-73.98962,Entire home/apt,179,3,201,2019-06-14,2.84,1,256 +20881198,Cozy private room in Midtown with private bathroom,85016972,Trinh,Manhattan,Hell's Kitchen,40.76495,-73.9853,Private room,160,3,6,2018-05-10,0.27,1,0 +23488098,Cozy room close to subway,41326856,Jeerathinan,Queens,Elmhurst,40.74505,-73.88148000000001,Private room,49,1,3,2019-01-01,0.19,5,35 +13184939,East Village Studio,11296515,Robert,Manhattan,East Village,40.72926,-73.98915,Entire home/apt,99,1,0,,,1,0 +21174772,Sun-filled Boho Bedroom in the Heart of Astoria!,56184689,Emily,Queens,Astoria,40.76705,-73.9169,Private room,95,2,13,2018-07-07,0.61,2,0 +7677595,"Bright, one-bedroom in Brooklyn",326952,Ingrid,Brooklyn,Prospect Heights,40.67309,-73.96354000000001,Entire home/apt,95,3,4,2015-11-25,0.09,1,0 +14092808,Great apt right by Grand Central!!,70671555,Summar,Manhattan,Midtown,40.75043,-73.97243,Private room,86,14,0,,,1,346 +33072804,34th and 6th Ave - Doorman Gym Roofdeck 1 bed 5234,16098958,Jeremy & Laura,Manhattan,Midtown,40.74909,-73.98657,Entire home/apt,170,30,1,2019-05-12,0.51,96,345 +6064471,Big Manhattan Apartment 3 bedrooms big Living Room,31477675,Jango,Manhattan,Lower East Side,40.7208,-73.9867,Entire home/apt,341,3,138,2019-06-08,2.87,1,58 +26747248,Red Hook studio space with private entrance,3830753,Roberto,Brooklyn,Red Hook,40.675,-74.01127,Entire home/apt,90,4,32,2019-06-24,2.75,1,107 +32441428,Bright Private Bedroom in Classic Harlem Apt,17578498,Adrienne,Manhattan,East Harlem,40.79876,-73.93802,Private room,77,2,9,2019-05-28,2.5,1,0 +18253938,Large Uptown Manhattan Studio,23168773,Brett,Manhattan,Inwood,40.865120000000005,-73.92172,Entire home/apt,70,20,17,2018-01-03,0.72,1,0 +33993225,Private small room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.72613,-73.98447,Private room,99,1,9,2019-06-13,3.42,5,30 +1965712,Lovely large 1-bdrm apt UWS,10153235,Tammie,Manhattan,Upper West Side,40.781220000000005,-73.98473,Entire home/apt,235,1,0,,,1,0 +19986637,Lovely City Retreat,33527075,Brooke,Queens,Elmhurst,40.745470000000005,-73.87746,Private room,57,2,103,2019-07-02,4.34,2,3 +27529564,Queen size bedroom,207651513,Nour,Manhattan,Harlem,40.80907,-73.94444,Private room,60,1,49,2019-05-27,4.85,3,0 +13607904,Cozy Loft Right Off the Morgan L,42994195,Sean,Brooklyn,Williamsburg,40.70524,-73.93305,Private room,49,5,0,,,1,0 +2863223,Cozy Room with Private Entrance,14586041,Louie,Brooklyn,Williamsburg,40.70665,-73.95067,Private room,75,7,18,2015-08-12,0.31,1,87 +19563669,Chelsea luxury apartment,41680155,Ze,Manhattan,Chelsea,40.74794,-73.98926999999999,Private room,140,2,2,2019-07-05,0.21,1,22 +13765918,Eclectic Artist's Apartment in PRIME East Village,22069376,Alyssa,Manhattan,East Village,40.7257,-73.98635,Entire home/apt,200,1,38,2019-06-27,3.41,1,123 +20667572,Artist's Room in Prime Bushwick,83948710,Lux,Brooklyn,Bushwick,40.701,-73.91986,Private room,69,1,77,2019-07-07,3.45,2,178 +18823516,PRIME LOCATION/SUNLIT ROOM 2,129927411,Andrea,Manhattan,Chinatown,40.71682,-73.99843,Private room,130,1,141,2019-06-24,5.44,2,76 +34124949,"Apartment for rent in EV, ten min from WSP",257668187,Noah,Manhattan,East Village,40.727540000000005,-73.99025,Private room,63,30,1,2019-05-15,0.55,1,18 +20826700,Suite Di CLASSE East village-free Str.parking+wifi,116839989,Ez,Manhattan,East Village,40.73105,-73.98195,Entire home/apt,150,30,48,2019-06-24,3.03,5,199 +14549226,"Charming & Cozy Private Apt near Prospect Park, BK",89954209,A.J.,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95036,Entire home/apt,107,3,82,2019-06-20,2.34,1,284 +32718483,3 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74123,-73.98058,Private room,94,1,23,2019-07-03,5.9,3,55 +35842576,"Sunny, quiet 2 BR apt in the heart of Manhattan",200782217,Tara,Manhattan,Chelsea,40.74325,-73.99528000000001,Entire home/apt,223,3,0,,,1,169 +6106142,Studio Apartment/ 3 blocks from Central park,2077383,Tatiana,Manhattan,Upper East Side,40.77724,-73.95883,Entire home/apt,75,3,3,2016-06-14,0.06,1,0 +505029,SPACIOUS Fabulous Sunny Loft for 2 wks in Fall,2490471,Ann,Manhattan,East Village,40.724540000000005,-73.97944,Entire home/apt,175,4,13,2018-11-16,0.17,1,0 +16269989,Charming Room in Brooklyn Townhome,20645317,Cortney,Brooklyn,Clinton Hill,40.6886,-73.96197,Private room,80,2,4,2018-08-30,0.13,1,10 +15421279,comfortable private room in Hamilton Heights,21600813,Sajad,Manhattan,Harlem,40.82991,-73.94848,Private room,50,2,28,2018-08-26,0.85,1,0 +13135904,"Cozy Studio in Times Square, NYC",10234636,Kunal,Manhattan,Hell's Kitchen,40.75855,-73.98931,Entire home/apt,99,30,19,2018-07-19,0.54,1,2 +18762619,Cozy East Village Room,103265024,Maureen,Manhattan,East Village,40.72681,-73.98963,Shared room,58,1,0,,,1,0 +22580951,Private Huge 4 Bedroom Apartment,21593637,Pat And Shelly,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92656,Entire home/apt,179,3,30,2019-06-14,1.68,2,285 +4777166,"Super Clean, Quiet & Spacious Room",24636847,Troy,Queens,Woodhaven,40.69634,-73.8563,Private room,31,3,3,2018-07-11,0.23,1,0 +36196038,Room in Artsy Loft in the Upper West Side,73056987,Oscar,Manhattan,Upper West Side,40.7988,-73.97277,Private room,200,3,0,,,1,114 +18362628,Sunny Lower East Side bedroom,22866591,Caroline,Manhattan,Lower East Side,40.7183,-73.98639,Private room,75,2,4,2017-07-19,0.16,1,0 +32865372,Casa Linda on Linden - 8 minutes to JFK Airport,3179866,Gonzalo And Nora,Queens,Jamaica,40.68816,-73.78974000000001,Entire home/apt,170,3,8,2019-06-17,2.79,2,336 +18076816,Beautiful Island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76213,-73.94971,Private room,100,2,97,2019-06-21,3.57,2,142 +21444943,BIG Sunny Space by Prospect Park,50903933,Shea,Brooklyn,Flatbush,40.651140000000005,-73.96246,Private room,60,2,2,2017-10-26,0.1,1,0 +21804666,Luxury room at Hudson Yards,158731650,Jamal,Manhattan,Hell's Kitchen,40.75605,-73.99797,Private room,139,1,0,,,1,0 +12497438,"Large, beautiful 1 bedroom downtown Manhattan",67674810,Cristina,Manhattan,Chinatown,40.7164,-73.99743000000001,Entire home/apt,175,30,4,2018-06-24,0.11,1,0 +9464137,Elegant High Rise Condo w/ Doorman,42956813,Naomi,Manhattan,Upper East Side,40.7713,-73.95443,Entire home/apt,175,1,15,2016-09-05,0.35,1,0 +21804600,The garden apartment,158781381,Samuel,Brooklyn,East New York,40.662040000000005,-73.88946,Entire home/apt,90,2,54,2019-06-25,2.84,2,255 +7748044,Neat room with private bath $60,40140854,Soojeong,Queens,Elmhurst,40.73607,-73.87980999999999,Private room,60,1,1,2015-08-08,0.02,1,0 +4662584,Best value single room in New York B5,20559017,Yohan,Manhattan,East Harlem,40.78644,-73.9438,Private room,45,30,4,2018-02-14,0.08,9,311 +19247305,Midcentury Minimalist 1BR in Prime Williamsburg,22176151,Lianne,Brooklyn,Williamsburg,40.71576,-73.96084,Entire home/apt,225,2,5,2017-12-18,0.21,1,0 +30219534,The Cozy Studio Midtown Manhattan,226958612,Maria,Manhattan,Midtown,40.74741,-73.98732,Entire home/apt,227,3,16,2019-06-30,2.44,1,321 +32748646,曼岛中城 切尔西区CHESEA 21街 闹市中静怡如家的空间,230745945,Hong,Manhattan,Chelsea,40.74278,-73.99765,Private room,80,1,3,2019-06-15,2.5,1,0 +29514909,Modern and cozy apt in Manhattan,222261103,Brenda And Tim,Manhattan,East Harlem,40.78661,-73.94349,Entire home/apt,240,2,44,2019-06-27,5.22,1,93 +30587740,Mogul Hideout 2: Modern Lifestyle 4 min from JFK,221204634,Faith,Queens,Laurelton,40.67156,-73.74383,Entire home/apt,125,2,26,2019-06-30,3.79,1,21 +5495026,Home 4 Medical Professionals-Kngbr5,26377263,Stat,Brooklyn,East Flatbush,40.65881,-73.93375999999999,Private room,48,30,2,2016-05-07,0.04,43,306 +18326156,"Beautiful modern Brooklyn room, 20mins to city",42928837,Reuben,Brooklyn,Williamsburg,40.70733,-73.92996,Private room,50,4,6,2018-10-08,0.23,1,0 +9167889,A Unique studio apartment,17943391,Michael,Manhattan,Harlem,40.80843,-73.94125,Entire home/apt,130,2,210,2019-07-04,4.73,2,237 +31145652,"Great Manhattan Apartment, Near ALL! Quiet!",23155661,David,Manhattan,Upper East Side,40.77711,-73.95059,Entire home/apt,219,6,1,2018-12-31,0.16,1,39 +35606542,Nicely Orgonized Three Bedrrom Apartment,221200420,Adam,Manhattan,Murray Hill,40.74336,-73.97143,Entire home/apt,350,30,0,,,23,327 +30489379,Calm bed. perfect for students and travelers.,111542307,Imoy,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92639,Shared room,19,30,1,2019-01-09,0.17,2,339 +13578642,Medium size room in great location (88th & York),10737943,David,Manhattan,Upper East Side,40.77989,-73.94763,Private room,49,19,6,2018-08-31,0.17,10,285 +21633621,Charming Harlem studio,1679545,Ishai,Manhattan,Harlem,40.81272,-73.9517,Entire home/apt,111,7,5,2018-12-30,0.28,1,8 +4276618,"Great location, great value",1405217,James,Manhattan,Chelsea,40.75238,-73.9945,Entire home/apt,120,3,18,2018-01-03,0.31,1,0 +6505898,Riverside and 160th--Long Stay,34009194,Seán,Manhattan,Washington Heights,40.83771,-73.94638,Entire home/apt,200,2,1,2015-06-30,0.02,1,0 +34061253,"Better Than A Hotel Room, Times Sq. Hell's Kitchen",257204612,Adolfo,Manhattan,Hell's Kitchen,40.76461,-73.98997,Entire home/apt,150,3,1,2019-06-23,1.0,1,138 +13915699,Good Deal! Large Clean and Stylish 1Bedroom!,1279152,Alison,Brooklyn,Midwood,40.62803,-73.9675,Entire home/apt,75,3,6,2018-12-31,0.17,1,0 +24179803,One of a Kind Chinatown 2BR Home w/ HUGE patio,72882190,Angie,Manhattan,Chinatown,40.7147,-73.99868000000001,Entire home/apt,300,7,2,2018-10-15,0.2,1,178 +4863176,Large room in Uptown Manhattan near Cloisters,25015010,Irina,Manhattan,Inwood,40.86648,-73.92754000000001,Entire home/apt,75,1,5,2016-09-01,0.11,1,31 +2745620,Small Room Astoria20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.77138,-73.90895,Private room,55,1,115,2019-06-23,1.82,5,30 +9613626,Clean & Simple Brooklyn Bedroom,7371085,Alisha,Brooklyn,Williamsburg,40.70436,-73.93225,Private room,55,7,2,2016-01-02,0.05,1,0 +36201233,Comfortable Main Bedroom in Brooklyn,48018277,Alejandro,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94089,Private room,95,2,0,,,2,47 +9876335,No Sleep 'Till Brooklyn! 2 Train (accommodates 1),37401126,Leah,Brooklyn,East Flatbush,40.64165,-73.94062,Private room,50,2,32,2019-07-04,0.74,4,362 +36142853,Bright and cozy room in Greenpoint with loft,6900478,Rebecca,Brooklyn,Greenpoint,40.73201,-73.95299,Private room,85,1,0,,,2,83 +25127198,Travellers delight #3,104812805,Amarjit S,Staten Island,Arrochar,40.59644,-74.08279,Private room,32,4,10,2019-05-01,0.73,8,340 +10138784,Room near LGA airport and 35 mins to Times Square,52031360,Cheer,Queens,Jackson Heights,40.74953,-73.88025,Private room,46,3,137,2019-07-05,3.21,1,286 +28785322,Beautiful and Convenient Location in Lower NYC,140983856,Nini,Manhattan,Financial District,40.710640000000005,-74.00754,Entire home/apt,185,15,11,2019-05-29,1.23,2,331 +393094,Designer studio in Luxury Building,1965972,Alayna,Manhattan,Financial District,40.70621,-74.01525,Entire home/apt,225,4,27,2019-05-25,0.31,1,169 +34930138,"Stylish, Spacious Cobble Hill 1-bedroom, nr trains",5761174,Sally,Brooklyn,Boerum Hill,40.68993,-73.99204,Entire home/apt,151,7,1,2019-06-03,0.81,1,14 +35603965,Charming Sunny and Quiet Designer Suite,267651337,Leo,Manhattan,Midtown,40.7569,-73.96623000000001,Entire home/apt,170,30,0,,,1,332 +29422942,12 mins to Times Square; 10 mins to LGA!,221635816,Topu,Queens,Sunnyside,40.73986,-73.91996,Entire home/apt,185,2,55,2019-07-03,6.45,1,99 +15736079,King Sized Serenity,17043144,Kat,Brooklyn,Bushwick,40.70018,-73.93858,Private room,55,3,1,2016-11-15,0.03,1,0 +16122082,Manhattan Landmark Sunny South facing Quiet Studio,7245581,Michael,Manhattan,Washington Heights,40.83493,-73.93859,Entire home/apt,68,150,4,2019-03-04,0.25,19,338 +9394266,Chelsea studio,48726094,Antonia,Manhattan,Chelsea,40.75088,-73.99951,Private room,100,2,151,2019-06-17,3.46,1,0 +22690837,"Architect's Haven-- Light, Books and Plants!",26856426,Nicholas,Brooklyn,Gowanus,40.66824,-73.99271999999999,Entire home/apt,189,5,8,2018-06-25,0.52,1,0 +30153101,2BR - Great Deal in the Trendy East Village,855079,Nicholas,Manhattan,East Village,40.72829,-73.98451999999999,Entire home/apt,92,1,2,2018-12-29,0.29,3,0 +35600877,7MinutesSubway.Maimonides&IndustryCityRoom,163625145,Steven,Brooklyn,Borough Park,40.64468,-73.99025999999999,Private room,46,2,2,2019-06-23,2.0,3,180 +18648243,Contemporary Room Close to Columbia & Central Park,128531725,Shia,Manhattan,Harlem,40.8042,-73.95669000000001,Private room,75,2,41,2019-04-01,1.57,2,1 +30937756,Sonder | The Nash | Creative 1BR + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97446,Entire home/apt,265,2,5,2019-06-12,1.21,327,83 +33711101,Spacious private room in the heart of Astoria,10606171,Nicholas,Queens,Astoria,40.76257,-73.92161999999999,Private room,90,1,12,2019-05-13,4.04,1,104 +27663407,Reader’s Nook,23884430,Yuting,Brooklyn,Bushwick,40.69372,-73.92801,Private room,55,1,47,2019-07-07,4.31,3,0 +35196057,Beautiful Renovated Duplex in Historic Townhouse,187671321,Alan,Manhattan,Harlem,40.81868,-73.94417,Entire home/apt,295,2,1,2019-06-26,1.0,1,123 +3839364,"Fabulous Large 1 Bed in Riverdale, Bronx NYC",9332835,Karen,Bronx,Fieldston,40.89022,-73.9039,Entire home/apt,95,14,3,2019-07-05,0.13,1,0 +12190495,"1 BD in stylish renovated 2BDs, Clinton Hill",66127,Aurélien,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95604,Private room,49,7,13,2019-05-21,0.36,1,0 +14485877,I call my place Susan's Villa,39158104,Susan,Brooklyn,Canarsie,40.64562,-73.90961,Private room,75,1,10,2019-06-23,0.29,1,162 +10539341,"Sunny, one bedroom apartment UES",54120025,Emma,Manhattan,Upper East Side,40.78271,-73.9451,Entire home/apt,300,31,1,2017-09-04,0.04,1,358 +9391509,"Lovely, Serene Brooklyn (NYC) Charm with ACs.",48712266,Eka,Brooklyn,Greenpoint,40.72528,-73.94488,Entire home/apt,165,5,201,2019-06-27,4.7,2,212 +3288496,Entire Cozy One Bed #Manhattan #LES,3716641,Ofer,Manhattan,Lower East Side,40.717690000000005,-73.98953,Entire home/apt,99,30,8,2018-02-27,0.13,8,170 +14497153,Private bedroom in Crown Heights BK w/ central AC!,19922104,Divya,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.95189,Private room,50,2,0,,,1,0 +10058944,Private Master Bedroom & Full Bath,9050420,Anton,Manhattan,East Village,40.7278,-73.98040999999999,Private room,190,1,0,,,1,0 +30392909,Smart Midtown East Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.748000000000005,-73.97943000000001,Entire home/apt,252,30,0,,,232,315 +20649522,"Bushwick, Spacious Private Room with Balcony",21227711,Merrill,Brooklyn,Bushwick,40.69543,-73.92324,Private room,75,4,4,2017-09-25,0.18,1,0 +10509662,Spacious bedroom available in SoHo,8255336,Darren,Manhattan,SoHo,40.72302,-74.00487,Private room,82,5,12,2018-12-17,0.3,2,0 +32163798,"BEST LOCATION! Flatiron! Large 2 Bedroom, Terrace",3280640,Seth,Manhattan,Midtown,40.74437,-73.98848000000001,Entire home/apt,250,3,18,2019-07-01,3.83,1,26 +31085028,Village/soho | 2Br + Skylights,4399103,James,Manhattan,Greenwich Village,40.72785,-73.99933,Entire home/apt,310,31,18,2019-06-28,2.87,2,7 +29371373,Heart of nyc. Harlem.,39301747,Takeis,Manhattan,Harlem,40.81801,-73.93855,Entire home/apt,78,1,27,2019-07-01,3.86,1,33 +23166697,Cozy bedroom in Clinton Hill,21485411,Brittany,Brooklyn,Bedford-Stuyvesant,40.68706,-73.95636999999999,Private room,95,1,22,2019-06-30,1.33,1,36 +4742842,Cozy Harlem Escape 20 mins to Times Square,7111318,Morgan Marie,Manhattan,Harlem,40.82784,-73.93704,Entire home/apt,100,3,111,2019-06-23,3.15,1,9 +33913682,Cozy room with turquoise accent in historic Harlem,27277379,Karina,Manhattan,Harlem,40.814820000000005,-73.94476999999999,Private room,75,2,9,2019-07-03,3.75,1,227 +2096968,*Upper East Side Cozy 1 Bedroom*,1461630,Ro,Manhattan,Upper East Side,40.76352,-73.95548000000001,Entire home/apt,135,4,105,2019-06-29,1.56,1,267 +7679094,Bright and Airy Astoria Loft,3130040,Ana María,Queens,Ditmars Steinway,40.776790000000005,-73.9212,Entire home/apt,175,2,7,2018-10-07,0.15,1,0 +19013218,Large Private 1 Bedroom Apt in Hell's Kitchen Area,10903067,Justin,Manhattan,Hell's Kitchen,40.76619,-73.98987,Entire home/apt,179,3,17,2019-05-11,0.67,1,5 +9838920,1 bedroom in Morningside Apartment,12745771,Amanda,Manhattan,Washington Heights,40.85509,-73.93236,Private room,28,1,1,2015-12-31,0.02,1,0 +2545184,Great room! Good for med students!,4096786,Nicolas,Bronx,Norwood,40.87605,-73.88046999999999,Private room,70,6,40,2019-03-01,0.73,1,313 +19475198,Private Bedroom in Beautiful Astoria Apt,3228795,Jonathan,Queens,Astoria,40.76386,-73.91475,Private room,60,2,3,2017-08-18,0.13,1,0 +32816486,Cozy UES Apartment,65098342,Lacey,Manhattan,Upper East Side,40.76494,-73.95808000000001,Entire home/apt,225,2,4,2019-05-31,1.24,1,1 +22107142,Your NYC HOME! LRG 1 BED APT 20min from Manhattan,161497828,Matias,Brooklyn,Prospect-Lefferts Gardens,40.65534,-73.95644,Entire home/apt,100,2,2,2018-01-02,0.11,1,95 +30439783,The Halsey Treehouse,138573840,Helen,Brooklyn,Bushwick,40.69453,-73.90666999999999,Private room,90,1,2,2019-01-01,0.31,1,0 +31499524,Stylish cozy room in prime area of Upper East,34915339,Michael,Manhattan,Upper East Side,40.78001,-73.9518,Private room,99,1,38,2019-06-30,6.44,4,142 +4520941,"SPACIOUS, 2 bedrooms, sleeps 4, private bath",23439479,Victoria,Manhattan,Inwood,40.86644,-73.92676999999999,Private room,250,3,18,2018-10-29,0.35,2,336 +24842392,Private Room in a Two bedroom apartment,3090750,Laura,Manhattan,Upper East Side,40.77106,-73.95013,Private room,59,2,4,2018-05-25,0.28,2,0 +16086320,"Brand New Modern Luxury Apt, Room B",104835356,Jerry,Brooklyn,Sunset Park,40.65477,-74.001,Private room,69,1,32,2019-06-16,1.14,3,292 +21769981,Private room w/ bathroom near Prospect Park,157262166,Sweden,Brooklyn,Prospect-Lefferts Gardens,40.65662,-73.95344,Private room,59,2,102,2019-07-07,5.2,2,347 +29609668,Le Chateau Vacation,22307859,Sharon,Brooklyn,Canarsie,40.63784,-73.89406,Private room,98,3,0,,,5,361 +29704955,Huge Room Right by the Myrtle JMZ,63966927,Hope,Brooklyn,Bedford-Stuyvesant,40.6956,-73.93739000000001,Private room,50,1,5,2019-06-22,0.65,1,188 +21353639,"Private Master Bedroom- Updated, Clean and Lovely!",44379772,Serena,Manhattan,Inwood,40.87312,-73.9179,Private room,85,1,0,,,1,317 +20916679,Oversized Studio Flat,9215509,Jj,Brooklyn,Clinton Hill,40.69072,-73.96539,Entire home/apt,165,14,4,2018-07-27,0.19,2,179 +33635292,Sonder | Stock Exchange | Sunny 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70642,-74.01255,Entire home/apt,230,2,2,2019-06-24,1.5,327,319 +30710341,Zohar’s Apartment,229872448,Zohar,Manhattan,Upper West Side,40.78791,-73.97404,Entire home/apt,180,5,1,2018-12-26,0.15,1,0 +34980912,Cosy room in the heart of Bushwick!,10787323,Natalie,Brooklyn,Bushwick,40.70113,-73.92175,Private room,80,3,3,2019-06-08,2.14,1,0 +518576,3 bedroom duplex apt with backyard,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94627,Entire home/apt,250,30,62,2019-07-02,0.73,3,292 +33966122,"Relaxing, comfy, and stress-free apartment.",138962369,Eugenia,Bronx,Edenwald,40.89039,-73.83185999999999,Entire home/apt,50,3,8,2019-07-07,3.04,1,34 +2422991,Trendy Apt by Chelsea Market with High Line Views,12384418,Daniel,Manhattan,Chelsea,40.7453,-74.00704,Entire home/apt,159,2,43,2019-06-23,1.1,1,25 +30792493,Luxury 2BR 2BA with washer/dryer in Soho/Tribeca,230165497,Lara,Manhattan,SoHo,40.72129,-74.0019,Entire home/apt,250,30,0,,,4,364 +32241096,Sonder | Stock Exchange | Sunny 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01094,Entire home/apt,228,2,8,2019-05-29,2.12,327,343 +29213401,PrivateRoom/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.77945,-73.82029,Private room,35,1,35,2019-07-06,3.87,3,86 +8358047,Nice Bedroom in Harlem (Sugar Hill),44050884,Amaurys,Manhattan,Harlem,40.8272,-73.94136999999999,Private room,80,1,0,,,1,0 +15733438,MASTER BR/ SUITE ( PRIVATE BATHROOM ),2908180,Simone,Manhattan,East Harlem,40.7898,-73.94213,Private room,125,5,59,2019-07-02,2.03,1,110 +13620412,"Cozy, private bed & private bath",77765017,Isabelle,Brooklyn,Bedford-Stuyvesant,40.68499,-73.94433000000001,Private room,65,3,124,2019-06-20,3.45,1,199 +19227532,"Amazing Harlem Apartment on 5th Avenue +3 bedrooms",134601877,Steven,Manhattan,East Harlem,40.79929,-73.94605,Entire home/apt,350,3,81,2019-06-29,3.46,2,27 +10289124,"2 BR Brownstone Retreat, 3rd Fl.",31919780,Neil,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93888000000001,Entire home/apt,99,3,88,2019-06-05,2.19,2,47 +18203651,Comfortable Rest Stop,649374,Jeremy,Brooklyn,East Flatbush,40.6536,-73.92643000000001,Private room,60,2,16,2017-11-15,0.71,1,0 +4982699,Two Bedroom Apartment,25686141,Linden,Queens,Ozone Park,40.67924,-73.84770999999999,Entire home/apt,99,3,66,2018-07-21,1.29,1,189 +32238387,Sonder | Stock Exchange | Central 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01114,Entire home/apt,244,2,1,2019-05-27,0.7,327,258 +1461721,3B. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.807590000000005,-73.93839,Private room,55,1,167,2019-05-07,2.78,10,363 +34717211,Mott Haven Dorm BB,30509656,Orit,Bronx,Port Morris,40.808690000000006,-73.9317,Shared room,28,1,1,2019-05-25,0.67,8,73 +27405874,Neat and quiet space for you.,206538133,Gayle,Manhattan,Financial District,40.70522,-74.00728000000001,Entire home/apt,175,2,1,2018-08-26,0.09,1,0 +24260244,NYC BEAUTIFUL APARTMENT IN MANHATTAN,58023108,Nicole,Manhattan,Kips Bay,40.74077,-73.97977,Private room,102,20,2,2018-04-11,0.13,1,0 +4422017,"Private Spacious Rm, Prospect Park",22954228,Cassandra,Brooklyn,Flatbush,40.65339,-73.962,Private room,49,3,7,2016-01-06,0.12,2,0 +4588689,One Bedroom East Village New York,5926785,Cynthia,Manhattan,East Village,40.72556,-73.98504,Entire home/apt,205,1,0,,,1,0 +9851704,Beautiful 1 bedroom apt in Bedstuy,12871485,Chris,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.94628,Entire home/apt,120,2,9,2016-12-31,0.21,1,0 +582272,Privet Room in Greenpoint +Backyard *location,2712129,Raziel,Brooklyn,Greenpoint,40.72437,-73.94847,Private room,75,5,1,2018-11-13,0.13,1,0 +3628328,2BR Apartment in Doorman Building,1279211,Aldo,Bronx,Concourse Village,40.82603,-73.92312,Entire home/apt,87,6,11,2019-06-04,0.28,1,0 +36319154,Nice and large room to rent in a 2 beds apt,221179834,Uri,Brooklyn,Sheepshead Bay,40.60146,-73.94673,Private room,40,2,0,,,1,89 +21240926,Cozy studio in Upper East Side,11005274,Vanessa,Manhattan,Upper East Side,40.77179,-73.95585,Entire home/apt,125,5,48,2019-07-03,2.3,1,2 +4282998,Spacious 1 BR & terrace on 19th floor viewing NYC,9471525,Chris,Manhattan,Kips Bay,40.74092,-73.97816999999999,Entire home/apt,200,7,9,2019-01-05,0.16,1,291 +29190199,"Quick walk to L Train, Free Cleaning & WiFi!",105506002,Martin & Steve,Brooklyn,Williamsburg,40.7126,-73.93982,Private room,44,30,1,2019-06-09,1.0,1,84 +11334160,Sunny New Apartment in Artsy Area!,41616878,Melissa,Brooklyn,Bushwick,40.69033,-73.9083,Private room,50,30,12,2019-05-31,0.31,4,326 +9479348,Penthouse Duplex & Roof Top Terrace,369154,Michael,Manhattan,Harlem,40.813190000000006,-73.94423,Entire home/apt,345,4,16,2019-04-30,0.37,1,206 +19764868,"UWS Townhouse 1BR Modern, Bright 3A",106837455,Lisa,Manhattan,Upper West Side,40.78443,-73.98255999999999,Entire home/apt,135,90,0,,,8,125 +5736925,Park Slope center Garden Studio ,16621177,Susan,Brooklyn,Park Slope,40.66812,-73.98303,Entire home/apt,140,2,232,2019-07-04,4.46,1,326 +21987828,Sunny Private Room in 3-Bedroom Apt.,14535843,Luna,Brooklyn,Flatbush,40.64215,-73.95685,Private room,38,4,1,2018-01-01,0.05,1,0 +1644133,Large Spacious Apt For Sublet,8726014,ELouise,Brooklyn,East Flatbush,40.63205,-73.94587,Entire home/apt,90,1,5,2019-05-03,0.08,1,361 +29880528,"Private Suite: Brooklyn, NY - 40 min to Manhattan",211895243,Lili,Brooklyn,Midwood,40.62541,-73.96293,Entire home/apt,105,3,1,2018-11-11,0.12,2,46 +21605900,Only 25 min to Times Square,6690551,Victor,Manhattan,Washington Heights,40.8556,-73.93245,Private room,35,4,67,2019-07-03,3.61,1,2 +7095534,Private BR in ABC,37191710,Kevin,Manhattan,East Village,40.72474,-73.98273,Private room,110,1,1,2015-07-23,0.02,1,0 +20645320,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,76104209,Rated,Manhattan,Upper West Side,40.77068,-73.98674,Entire home/apt,229,30,0,,,33,364 +16190902,Your point in Chelsea,32084117,Fernando,Manhattan,Chelsea,40.74183,-73.99996999999999,Entire home/apt,330,2,124,2019-05-27,3.94,1,317 +14366054,"Beautiful, large bedroom",5120169,Jason,Brooklyn,Bedford-Stuyvesant,40.68172,-73.95118000000001,Private room,85,2,8,2017-11-12,0.23,2,0 +8940685,Central Park Time SQ Chic Studio,7918948,Elle,Manhattan,Hell's Kitchen,40.76263,-73.98909,Entire home/apt,180,1,1,2015-12-13,0.02,1,0 +35170961,Mott Haven Private Dorm AA,30509656,Orit,Bronx,Port Morris,40.80844,-73.9316,Shared room,60,1,0,,,8,89 +29853088,Cute & convenient garden apartment in Astoria/LIC,137194766,Maria,Queens,Astoria,40.75491,-73.91445,Entire home/apt,98,3,32,2019-06-21,4.02,2,131 +33807644,Williamsburg 30 days min. 2bath/en suite 2bedroom,10951481,Ann,Brooklyn,Williamsburg,40.71092,-73.96717,Entire home/apt,249,30,0,,,5,222 +3420223,Sunny Bushwick Apartment / Morgan L,17241205,Abigail,Brooklyn,Williamsburg,40.70791,-73.93396,Entire home/apt,129,1,21,2016-09-05,0.36,1,0 +1343532,Room2 in a Good Vibe Apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67275,-73.95144,Private room,40,7,14,2019-03-02,0.2,2,221 +29964470,2 Bedroom Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70328,-73.92474,Entire home/apt,100,5,1,2018-12-28,0.16,3,0 +19699241,MJ house,138782186,Hannah M,Queens,Rosedale,40.65531,-73.7274,Private room,70,1,0,,,2,365 +14446960,"Cozy 3 Bedroom, 20 Minutes to Times Square!",88960729,Chin,Queens,Woodside,40.74321,-73.89988000000001,Entire home/apt,199,3,169,2019-06-24,4.8,1,302 +21431963,Magical Space w/Incredible Cozy Energy,122374980,Matt,Manhattan,Upper West Side,40.78428,-73.97665,Shared room,60,1,90,2019-06-13,4.35,4,77 +36407969,"1 BDRM SPACIOUS ,QUIET, EAST VILLAGE ARTIST OASIS",273741577,Lynn,Manhattan,East Village,40.72388,-73.98354,Entire home/apt,178,1,0,,,1,35 +8505,Sunny Bedroom Across Prospect Park,25326,Gregory,Brooklyn,Windsor Terrace,40.65599,-73.97519,Private room,60,1,19,2019-06-23,1.37,2,85 +34999688,Modern Home 3 bed/1 bath 10 minutes to Manhattan,99410435,Joshua,Brooklyn,Williamsburg,40.713440000000006,-73.94612,Entire home/apt,295,2,1,2019-06-16,1.0,3,321 +34417476,Gorgeous LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.7546,-73.93506,Private room,99,1,9,2019-06-20,4.15,10,360 +25186915,Charming Room by the Pier,5608167,Rhianna,Brooklyn,Red Hook,40.67835,-74.01394,Private room,100,1,12,2018-11-02,0.88,1,8 +21524324,Manhattan Club - New Years Eve,33910461,Colleen,Manhattan,Midtown,40.76391,-73.98238,Private room,300,3,0,,,1,0 +21921707,Sunny Minimal Bushwick: longterms encouraged!,100424005,Dewey,Brooklyn,Bushwick,40.69386,-73.91897,Private room,39,5,9,2018-09-24,0.46,1,0 +35805474,Industrial artsy loft in Williamsburg,269297229,Юлия,Brooklyn,Williamsburg,40.71394,-73.96301,Entire home/apt,199,5,0,,,1,213 +29457851,New Luxury Williamsburg 2 Bedroom 2 Bath,53223410,Rachael,Brooklyn,Williamsburg,40.71047,-73.95529,Entire home/apt,200,5,2,2019-01-01,0.26,1,0 +24855248,"1st Fl Studio on Upper East, close to Central Park",37421312,Nikki,Manhattan,Upper East Side,40.77096,-73.95334,Entire home/apt,125,7,3,2018-05-31,0.21,1,0 +13231399,Beautiful garden 1 bed 7/8-7/18,4316938,Skye,Manhattan,East Harlem,40.80735,-73.94064,Entire home/apt,175,9,0,,,1,365 +34491871,Perfect Suite Retreat in Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76245,-73.98339,Private room,100,1,0,,,7,320 +20291879,Photography Bedroom in Modern Brooklyn Flat,33028687,Robert,Brooklyn,Bedford-Stuyvesant,40.691320000000005,-73.94494,Private room,150,2,6,2019-05-19,0.26,1,0 +27785327,Bushwick Art collective bedroom A,3635302,Adam,Brooklyn,Bushwick,40.70563,-73.91853,Private room,90,2,6,2019-05-31,0.58,3,89 +28202752,Cozy cove,156505456,John,Brooklyn,East New York,40.66265,-73.88735,Private room,85,3,10,2019-06-10,1.04,13,90 +595321,Williamsburg Peace for the Solo Traveler,898980,Kelly,Brooklyn,Williamsburg,40.71316,-73.94532,Private room,77,3,5,2018-10-21,0.08,1,0 +4016069,1C. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80732,-73.93775,Private room,55,1,163,2019-05-14,2.76,10,359 +21185183,Luxury 1BR in NYC + Great Amenities & Rooftop Ter.,30283594,Kara,Manhattan,Chelsea,40.75121,-73.99812,Entire home/apt,169,30,1,2017-11-20,0.05,121,282 +4720326,Gramercy/Kips Bay 1BR- the best! ,5279180,Jane,Manhattan,Kips Bay,40.73951,-73.9827,Entire home/apt,170,3,0,,,1,0 +33543641,Home away from home!! (4A),246272839,Northern Star Realty,Queens,Flushing,40.76671,-73.81935,Entire home/apt,85,1,8,2019-07-01,2.82,4,150 +20211737,Spacious room in beautiful apartment,61649734,Giulliana,Brooklyn,Bushwick,40.6902,-73.91515,Private room,50,1,61,2019-06-23,2.6,2,9 +6347729,Modern& Pretty Bedroom UpperBest!!!!,33064599,Yukee,Manhattan,Upper West Side,40.80168,-73.96543,Private room,59,3,68,2019-04-19,1.42,6,319 +11775483,Sunny little Nook in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.66898,-73.94209000000001,Private room,35,3,165,2019-04-10,4.09,5,272 +20804083,Sun Drenched Master Bedroom in Brooklyn Apartment,28341776,Josh,Brooklyn,Park Slope,40.68265,-73.97754,Private room,120,3,5,2018-07-29,0.23,2,0 +33578821,Cozy bedroom with patio in townhouse in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9277,Private room,50,4,1,2019-06-16,1.0,3,23 +25165611,New Yorker Room - 10 mins to Williamsburg/LES/City,1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69317,-73.93003,Private room,45,1,42,2019-07-01,3.19,3,106 +33477284,Spacious NEW studio in Brooklyn near NYC subway!,72855892,Melvis,Brooklyn,Bedford-Stuyvesant,40.68171,-73.92858000000001,Entire home/apt,115,1,19,2019-06-30,6.55,1,74 +5894720,Bright Lux 1BR in Williamsburg,8201914,Faye,Brooklyn,Williamsburg,40.71124,-73.95255999999999,Entire home/apt,234,4,11,2018-08-26,0.23,1,0 +9563529,Clean and spacious apartment,48937383,Sophia,Manhattan,Inwood,40.86458,-73.92883,Private room,90,1,0,,,1,0 +12084009,Cozy Upper East Side 1 Bedroom,64765550,Stefano,Manhattan,Upper East Side,40.77924,-73.94924,Entire home/apt,140,1,4,2016-07-01,0.1,1,0 +35314884,Modern Family Home w/ Patio | 10 min to Manhattan,263440435,Lucas,Queens,Astoria,40.7592,-73.92155,Entire home/apt,300,3,3,2019-06-30,3.0,1,320 +28157869,Brooklyn Guest Suite,68927337,Jean,Brooklyn,East Flatbush,40.653290000000005,-73.92756,Shared room,50,7,1,2018-09-28,0.11,1,179 +31379248,"Cozy, Sunny Franklin Ave 1-Bedroom with a Piano",10032762,Kristina,Brooklyn,Crown Heights,40.67612,-73.95855999999999,Entire home/apt,85,2,2,2019-06-23,0.85,1,6 +6988793,"Perfect for Cat, Book, Park Lovers!",13857446,Laura,Brooklyn,Flatbush,40.65371,-73.95623,Entire home/apt,90,2,12,2015-12-19,0.25,1,0 +7919803,Comfy & Charming 2 Bedroom Home,4549552,Jill,Brooklyn,Bedford-Stuyvesant,40.69118,-73.95928,Entire home/apt,160,2,14,2016-05-21,0.3,1,0 +8388864,Quiet Bedroom in Cobble Hill,36688169,Sloan,Brooklyn,Boerum Hill,40.68863,-73.98935,Private room,59,1,151,2019-06-29,3.37,1,325 +12113879,"Sunny, Large West Village 1 BR Near Everything",5300585,,Manhattan,Chelsea,40.73949,-73.99801,Entire home/apt,220,4,81,2019-07-02,2.11,1,217 +4839932,"Super spacious cozy one-bedroom apartment, Astoria",24907501,Milena,Queens,Astoria,40.769740000000006,-73.91819,Entire home/apt,124,14,8,2019-01-03,0.15,1,0 +29987867,Quietly cool uptown 1BD apartment,3874544,Justine,Manhattan,Harlem,40.82484,-73.95271,Entire home/apt,115,4,8,2019-06-01,1.06,1,0 +13459841,Sunny Williamsburg w Balcony - Long Term Rental,4841046,Jesse,Brooklyn,Williamsburg,40.71216,-73.95853000000001,Entire home/apt,105,15,30,2019-05-26,0.84,1,85 +9674453,ENTIRE Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76923,-73.91203,Entire home/apt,239,3,8,2019-01-02,0.19,4,274 +21772258,Beautiful Home in Park Slope!,41118093,Brittany,Brooklyn,Park Slope,40.67329,-73.98311,Entire home/apt,125,3,2,2018-03-13,0.1,1,0 +22879903,Private room & bathroom in luxury building at LIC,22040625,Juanjo,Queens,Long Island City,40.75561,-73.93596,Private room,59,2,1,2018-02-07,0.06,1,0 +1699934,SAFE BUDGET IN Brooklyn NYC,2015914,Majar,Brooklyn,East New York,40.66874,-73.88548,Private room,75,3,34,2019-04-06,0.49,8,341 +30628768,Affordable room near airport - LGA - and subway!,137358866,Kazuya,Queens,Elmhurst,40.73501,-73.87989,Private room,36,30,1,2019-03-01,0.23,103,234 +16429863,Sunny Private Bedroom in an apartment Sunnyside,44269300,Franklyn,Queens,Sunnyside,40.7396,-73.92324,Private room,115,2,24,2019-04-20,0.78,1,19 +36076335,★ Premier Room with 2 Queen Beds ★,270874051,Hotel Vetiver,Queens,Long Island City,40.75258,-73.93475,Private room,119,1,0,,,8,333 +15758553,Luxurious Williamsburg Loft with Private Patio,14258860,Alvaro,Brooklyn,Williamsburg,40.71809,-73.95283,Entire home/apt,200,5,1,2016-11-13,0.03,1,0 +5720569,NYC 1-Bedroom Apt in the Heights,29661897,Eric,Manhattan,Washington Heights,40.8558,-73.93025,Entire home/apt,100,5,15,2017-10-23,0.29,1,30 +31936078,Midtown sleep space,86078176,Nicole,Manhattan,Hell's Kitchen,40.76243,-73.98621,Private room,120,2,0,,,1,0 +144148,1 Bdrm in 4 Bdrm dupelx/roof deck,299755,Jonathan,Manhattan,East Village,40.72217,-73.98419,Private room,96,1,34,2016-01-05,0.58,1,0 +14039239,Spacious Room in Park Slope Apartment,78870551,Christina,Brooklyn,South Slope,40.66562,-73.98935999999999,Private room,80,1,0,,,1,0 +13164444,Luxury Loft in Renovated Warehouse with 2 terraces,15221605,Elizabeth,Brooklyn,Williamsburg,40.71102,-73.95123000000001,Entire home/apt,269,7,1,2016-07-20,0.03,1,0 +21568341,"Charming, cozy, clean, affordable & spacious room",156843123,IndraRisma,Queens,Flushing,40.73858,-73.80809,Private room,65,2,4,2018-10-07,0.28,1,364 +1979506,Cozy duplex on the Upper East side!,10071119,Nora,Manhattan,Upper East Side,40.76838,-73.95481,Private room,100,1,1,2014-01-02,0.01,1,0 +932277,Fabulous Industrial Dumbo Loft,2902266,Kate,Brooklyn,DUMBO,40.70434,-73.98989,Private room,125,20,35,2015-01-05,0.45,1,311 +622410,"Great room in 2BR, Bright + Cozy!",1563352,Evelina,Brooklyn,Crown Heights,40.66839,-73.96001,Private room,85,2,0,,,1,0 +31382878,Private Studio apartment in the west village,226960918,Pamela,Manhattan,Chelsea,40.739340000000006,-74.00146,Entire home/apt,180,3,2,2019-06-21,2.0,1,173 +2410200,"Heart of Williamsburg, Brooklyn!",11982812,Georgia,Brooklyn,Williamsburg,40.71023,-73.94657,Private room,89,1,99,2017-11-18,1.55,1,0 +13920801,Beautiful 2 bedroom private suite,10312167,Razia,Manhattan,Harlem,40.80297,-73.9505,Entire home/apt,99,28,76,2019-03-04,2.16,2,296 +33932433,"Room w/Loft & Private Bathroom, Private Entrance",55143966,Jason,Brooklyn,Bushwick,40.69764,-73.91585,Private room,62,17,2,2019-07-02,0.78,1,21 +11046443,MANHATTAN Studio 10 SECONDS Walk to Subway,17171841,Bond,Manhattan,East Harlem,40.79736,-73.94203,Entire home/apt,79,1,149,2019-06-23,3.63,1,290 +36115183,Cozy warm,271667012,Dilenny,Bronx,Pelham Bay,40.852340000000005,-73.82969,Entire home/apt,55,7,0,,,1,179 +34467399,Sunny Quiet Bedroom Two Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.64836,-74.00076,Private room,70,1,2,2019-07-02,1.3,2,361 +1223755,"Cozy, friendly, 3 min from subway.",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69122,-73.95648,Shared room,35,5,110,2018-01-03,1.49,4,0 +32420737,"Classic UWS doorman 3 BR. River, elevator, dogs",231704,Judith,Manhattan,Upper West Side,40.7897,-73.97909,Entire home/apt,317,30,0,,,3,358 +17073231,RE - Budget Friendly room in the Greenpoint Area!,83717038,Max,Brooklyn,Greenpoint,40.73714,-73.95333000000001,Private room,55,2,62,2019-06-24,2.11,3,0 +14665418,Spacious light drenched 3 bedroom,22935573,Matias,Brooklyn,Williamsburg,40.71433,-73.95857,Entire home/apt,295,2,78,2019-06-27,2.27,1,309 +36424129,Bright & Cheerful! Modern w/ Laundry + Fast WiFi,107407045,Brett & Megan,Brooklyn,Bedford-Stuyvesant,40.69217,-73.93191,Private room,35,30,0,,,1,44 +33002617,Room for 2 Per diem $50 rental up to 30 days max,248385708,Alexander,Brooklyn,Sheepshead Bay,40.60331,-73.95082,Private room,21,1,2,2019-05-26,1.02,1,90 +1217670,"BK Rest - Williamsburg, Brooklyn",4532557,Joshua,Brooklyn,Williamsburg,40.70653,-73.9462,Entire home/apt,84,45,45,2019-06-04,0.61,1,244 +35713130,Private 2BR apartment in Historic Hell’s Kitchen,268276813,Andy,Manhattan,Hell's Kitchen,40.7645,-73.99434000000001,Entire home/apt,300,1,0,,,3,362 +24559347,Spacious and bright bedroom,73079322,Guilda,Manhattan,Washington Heights,40.84365,-73.93982,Private room,45,3,1,2019-01-09,0.17,1,5 +4502339,Centrak Park North cozy apartment,23349530,Yely,Manhattan,Harlem,40.802040000000005,-73.95656,Shared room,80,1,0,,,1,59 +12421102,"Sunny Floor-thru, Prospect Heights",3518697,Donnell,Brooklyn,Crown Heights,40.67634,-73.96177,Entire home/apt,150,1,1,2016-07-06,0.03,1,188 +22706343,Bright-Spacious Private Room /30 min NYC,165257273,Soon,Queens,Flushing,40.77053,-73.80067,Private room,54,30,5,2019-06-27,0.39,3,335 +20881375,Cute little room,104300362,Cristina,Queens,East Elmhurst,40.75596,-73.89702,Private room,45,4,17,2019-06-10,0.79,1,314 +4517177,1 bedroom apt 1 stop from Manhattan,23419852,Gazelle,Queens,Long Island City,40.74236,-73.95640999999999,Entire home/apt,170,2,84,2019-05-28,1.51,1,178 +36254789,Huge 3 bdrm apartment on the beach paradise,105620188,Michail,Queens,Belle Harbor,40.57762,-73.84461999999999,Entire home/apt,350,3,0,,,1,41 +13750084,Spacious room in heart of Williamsburg,8035063,Mathew,Brooklyn,Williamsburg,40.70861,-73.95414,Private room,85,1,0,,,1,0 +32548384,Anny's Place,244581878,Ana,Manhattan,Washington Heights,40.850190000000005,-73.93004,Entire home/apt,50,2,16,2019-06-29,4.25,1,51 +22337426,Quaint NYC One Bedroom,57818788,Morgan,Manhattan,East Harlem,40.81038,-73.93809,Entire home/apt,100,3,3,2018-01-21,0.16,1,0 +7867890,UWS Apartment and Garden Terrace,17714726,Craig,Manhattan,Upper West Side,40.80268,-73.969,Entire home/apt,140,4,11,2018-07-24,0.23,1,10 +7636986,Cozy studio close to seven subway lines,1723544,Alessandro,Queens,Long Island City,40.75215,-73.93913,Entire home/apt,150,7,9,2018-05-25,0.19,1,9 +35522946,Stylish 1BR by East River,18550483,Emily,Manhattan,Murray Hill,40.744,-73.97364,Entire home/apt,197,30,0,,,1,158 +30577164,Comfort zone,156505456,John,Brooklyn,East New York,40.66682,-73.87351,Private room,57,3,1,2019-05-03,0.44,13,90 +10192593,"Cozy Room in LIC, 7 min to TimesSq",1589909,Alosha,Queens,Long Island City,40.74392,-73.95147,Private room,79,15,9,2019-01-03,0.26,2,259 +16241833,One bedroom available with great access to trains!,71147912,Rachel,Brooklyn,Bushwick,40.7046,-73.92538,Private room,49,4,3,2018-01-01,0.1,1,0 +587554,Warm&Cozy Studio West Village,2897329,Josefina,Manhattan,West Village,40.73041,-74.00326,Entire home/apt,200,7,34,2019-06-30,0.41,1,217 +35112957,Modern 2BR Apartment in Financial District,264447713,Louis,Manhattan,Financial District,40.70624,-74.01006,Entire home/apt,225,3,3,2019-06-23,2.5,1,68 +10881164,Sunny Clinton Hill Brownstone Apt w/ 600sq.ft Deck,56376946,Cory,Brooklyn,Clinton Hill,40.68683,-73.96177,Entire home/apt,350,4,1,2018-01-01,0.05,1,86 +34438417,Beautiful Apartment in Hamilton Heights,145319773,Angel,Manhattan,Harlem,40.8212,-73.95479,Entire home/apt,115,6,3,2019-06-20,3.0,1,279 +16614389,Newly Renovated Bedroom in Bushwick/Ridgewood,18151522,Venice,Queens,Ridgewood,40.70538,-73.91322,Private room,73,1,0,,,1,0 +10034817,Spacious 1 bed near TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76343,-73.99381,Entire home/apt,150,30,1,2016-06-14,0.03,31,339 +25745458,Huge and beautiful 2BR in Greenpoint Brooklyn,2483350,Avital,Brooklyn,Greenpoint,40.73503,-73.9547,Entire home/apt,114,10,1,2019-02-07,0.2,1,0 +34933559,R4 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.7258,-73.86715,Private room,70,1,2,2019-06-27,2.0,10,127 +32189706,Private Room in Chill Brooklyn Apartment,53300414,Monica,Brooklyn,Gowanus,40.67024,-73.99349000000001,Private room,55,1,0,,,2,20 +32349835,NYC - PRIVATE room in Bay Ridge.,78258843,Jim,Brooklyn,Bay Ridge,40.62955,-74.02429000000001,Private room,40,6,3,2019-04-21,0.82,1,62 +29160599,Private bedroom in Washington Heights,219746152,Sonia And Lissette,Manhattan,Washington Heights,40.83788,-73.9402,Private room,60,3,8,2019-06-10,1.15,1,2 +24604281,THE COOLEST BEDROOM/APARTMENT IN HARLEM.,185683441,Maxime C And Winie C,Manhattan,Harlem,40.816390000000006,-73.94223000000001,Private room,80,2,49,2019-06-13,3.37,3,178 +13466842,"3bd apt w/yard in Astoria, 10 mins from Manhattan.",77011788,Dayne,Queens,Long Island City,40.75903,-73.92943000000001,Entire home/apt,255,2,111,2019-07-06,3.18,1,268 +18358644,Cozy room in the heart of Bushwick,127082964,Christopher,Brooklyn,Bushwick,40.70426,-73.92489,Private room,72,3,12,2018-04-22,0.47,2,0 +29827109,Modern 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71081,-73.96695,Entire home/apt,120,29,5,2019-06-03,0.75,7,0 +28985543,Modern Sunny 3bdrm Apt,389924,Patty,Bronx,Morris Park,40.84605,-73.8493,Entire home/apt,39,5,0,,,2,0 +6386823,Cozy Manhattan room ★ 3 mins to subway,21361229,Vivian Yuen Ting,Manhattan,Washington Heights,40.83998,-73.94295,Private room,70,1,88,2019-06-30,3.66,1,0 +35493162,Luxury Apartment in Amazing Williamsburg! Sleeps 7,259662705,Elay,Brooklyn,Williamsburg,40.71324,-73.94270999999999,Entire home/apt,184,3,1,2019-06-11,1.0,1,217 +4807899,Complete 1 bedroom near Columbia U,3422859,Martin,Manhattan,Harlem,40.80434,-73.95476,Entire home/apt,95,3,9,2016-07-16,0.16,1,0 +4993422,A Beautiful and Sunny Artist's Home,25744379,Sonia,Queens,Astoria,40.76958,-73.92223,Entire home/apt,72,3,36,2019-06-28,0.71,1,10 +29381358,Spacious 1 Bed (FURNISHED!) Hudson Yards Sublet,221343982,Christina,Manhattan,Chelsea,40.75358,-73.99707,Private room,165,45,0,,,1,83 +30034260,Bright Ultimate View with Balcony + Roof Access,225730907,Theo,Brooklyn,Bushwick,40.69936,-73.9242,Entire home/apt,170,2,36,2019-07-02,5.24,1,191 +23179415,Spacious Pre-War Apt - 1 Block Off Prospect Park,169851445,Mary,Brooklyn,Flatbush,40.654,-73.96209,Private room,47,1,0,,,1,0 +9457270,COMFY East Village w loft sleep 6 Coffee included,48320077,Michael,Manhattan,East Village,40.72443,-73.98289,Entire home/apt,199,1,81,2019-07-06,1.91,2,318 +4464508,Flatbush Gardens,23162890,Terrance,Brooklyn,Flatbush,40.6489,-73.96374,Private room,79,3,35,2018-10-28,0.62,2,336 +22077632,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70483,-73.91433,Private room,40,3,6,2018-08-29,0.32,2,0 +4667148,1 Bdrm in Greenwich Village,2312420,Marie-Claire,Manhattan,West Village,40.73317,-74.00118,Entire home/apt,125,30,31,2019-05-12,0.83,2,346 +8863320,Brooklyn Museum at your window,46397067,Nia & David,Brooklyn,Prospect Heights,40.67381,-73.96495999999999,Private room,115,2,2,2019-06-23,0.92,1,362 +16912472,Private East Village Bedroom &Roof Deck(manhattan),51850937,Joe,Manhattan,East Village,40.72951,-73.98239000000001,Private room,90,1,200,2019-06-22,6.79,3,272 +16324410,Private cozy room near LGA airport,58391491,Juel,Queens,East Elmhurst,40.76432,-73.87227,Private room,33,1,333,2019-06-24,10.64,5,139 +81739,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73842,-73.95312,Private room,249,3,2,2011-05-12,0.02,28,60 +23374229,Big Private Room in the Hudson Yards Area,36291511,Arturo,Manhattan,Chelsea,40.75272,-73.99682,Private room,98,1,19,2018-12-09,1.25,1,0 +8877466,"Spacious Apt, 15min from the city",46458011,Emma,Brooklyn,Bushwick,40.69497,-73.92598000000001,Private room,65,2,28,2019-03-19,0.7,1,204 +18034890,"Quiet, tranquil room in the middle of everything!",3660702,Greg,Manhattan,Chelsea,40.74701,-73.9914,Private room,105,1,132,2019-06-22,4.81,4,103 +33389926,"Cozy Private Room, Walking Distance From LGA, Rm 6",187822288,Zahir,Queens,East Elmhurst,40.77102,-73.87286999999999,Private room,55,1,42,2019-06-24,12.12,5,153 +30908416,Sunny Greenpoint Apartment 5 Min Walk To Nassau G,25812202,Leah,Brooklyn,Greenpoint,40.72554,-73.94781,Private room,45,14,2,2019-06-25,0.32,1,21 +16442568,Big room near the park,107830761,Jonathan,Brooklyn,Flatbush,40.65203,-73.9628,Private room,36,6,1,2017-01-05,0.03,1,0 +26845317,Bear (C)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74686,-73.82191999999999,Private room,59,1,49,2019-07-04,4.31,4,72 +22713353,Large Brooklyn Rm- Prospect Park & F/G Train!,133545456,Casey,Brooklyn,South Slope,40.66085,-73.98178,Shared room,55,2,1,2018-03-18,0.06,1,0 +3792246,private bedroom in NYC apartment,7508547,Pamela,Queens,Ridgewood,40.7012,-73.90008,Private room,49,2,77,2019-06-22,1.53,1,1 +34688096,BEAUTIFUL 4BEDS / 2 BATHS - ROOF & GYM,261669663,Brenda,Brooklyn,Bushwick,40.69854,-73.92642,Entire home/apt,275,3,7,2019-07-05,4.04,1,339 +4946624,Stylish Apartment in post-war walk-up Building,25494876,Vivienne,Manhattan,Lower East Side,40.71959,-73.9919,Entire home/apt,149,2,14,2018-09-09,0.28,1,0 +26330526,"Sugar Hill House w/ 2 bdrms, den rm & 2 bathrms",198018391,Mich,Manhattan,Harlem,40.82235,-73.94846,Entire home/apt,250,2,27,2019-06-21,2.26,2,180 +303462,Fully Furnished 1B/1BTH UWS GEM 1 YR Sublease,1562045,Antonio,Manhattan,Upper West Side,40.78012,-73.98439,Entire home/apt,295,1,0,,,1,146 +15178955,Large 1 bedroom-Private Bath in 2 bed apartment,50860659,James,Queens,Ridgewood,40.70703,-73.90907,Private room,80,7,5,2019-01-04,0.15,1,188 +30225205,Relax De Dios,180311428,Every,Bronx,Allerton,40.86757,-73.8649,Private room,60,2,1,2019-01-01,0.16,1,363 +29126587,QUEEN BED - GREAT LOCATION NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69558,-73.94697,Private room,65,30,21,2019-05-13,2.31,3,365 +8687556,NYC Garden apartment next to trains/restaurants,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97418,Entire home/apt,90,4,68,2019-07-01,1.78,2,267 +27699052,Cozy Brooklyn Room with private bathroom,8855004,Peach,Brooklyn,Bedford-Stuyvesant,40.68891,-73.95164,Private room,65,1,1,2018-08-20,0.09,1,0 +765569,"Brand New, Boutique Brooklyn Condo",4036700,Anna,Brooklyn,Downtown Brooklyn,40.69594,-73.98375,Entire home/apt,175,13,64,2019-03-31,0.8,1,116 +19001879,SPRING FORWARD GREENPOINT STUDIO W/YARD,132576479,Evelyn,Brooklyn,Greenpoint,40.722570000000005,-73.94544,Entire home/apt,115,30,8,2019-05-17,0.37,1,183 +4742068,Spacious 1 Bedroom Apartment,22616989,Don,Brooklyn,Bensonhurst,40.61957,-73.9936,Entire home/apt,93,3,52,2019-06-22,0.99,1,325 +20346887,The Heights,68598597,Jazmin,Manhattan,Washington Heights,40.84684,-73.93252,Private room,55,1,22,2019-06-24,0.95,2,91 +975990,Brooklyn Heights Brownstone - Private Bdrm Avail.,5339881,Gerard,Brooklyn,Brooklyn Heights,40.69293,-73.99679,Entire home/apt,325,1,11,2018-12-09,0.19,1,363 +34203595,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74455,-73.97162,Entire home/apt,162,29,0,,,327,341 +21512977,Private Bushwick Room in Great Location!,26804769,Andrea,Brooklyn,Bushwick,40.69881,-73.91278,Private room,32,1,3,2017-11-20,0.15,1,0 +22324649,Stylish Apartment with Stunning Roof,33714151,Rory,Brooklyn,Bushwick,40.69348,-73.92497,Private room,100,2,0,,,1,89 +11391101,Hip Bushwick right on the L train!,59756933,Magdalena,Brooklyn,Bushwick,40.70223,-73.9148,Private room,60,2,1,2016-03-19,0.02,1,0 +1476484,Spacious Sunny SoHo-Awesome Locale!,7901999,Steven,Manhattan,Nolita,40.7245,-73.99419,Entire home/apt,299,2,26,2017-09-30,0.37,1,88 +33165620,Sunny studio in great location,249708372,Gabriel,Queens,Long Island City,40.75817,-73.92949,Entire home/apt,100,3,11,2019-07-01,3.3,1,296 +19019325,HUGE ROOM WITH PRIVATE KITCHEN- Manhattan -,132711675,Yifat,Manhattan,Murray Hill,40.74736,-73.97838,Private room,60,10,0,,,1,19 +24868754,Inexpensive Private Rm w/ NYC/SIUH/RUMC Access 3,104812805,Amarjit S,Staten Island,Arrochar,40.596790000000006,-74.08444,Private room,33,4,17,2019-07-06,1.2,8,316 +16843605,"Comfortable, eclectic and private apartment",109865937,Philip,Brooklyn,Clinton Hill,40.68976,-73.96533000000001,Entire home/apt,280,2,41,2019-06-27,1.51,1,343 +18136478,"Sunny, Quiet top-floor 2 bedroom in Cobble Hill",22511613,James,Brooklyn,Carroll Gardens,40.68572,-73.99286,Entire home/apt,199,1,6,2018-05-28,0.23,2,0 +10811681,Madison Square Park Luxury Apt,6044561,John,Manhattan,Midtown,40.74662,-73.98965,Entire home/apt,295,1,0,,,1,0 +5849386,Delightful Lighthouse -Direct Train To JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68638,-73.91368,Private room,69,2,148,2019-06-27,2.86,5,112 +23803334,Cozy private room in the Heart of Williamsurg!,16158622,Sarah,Brooklyn,Williamsburg,40.71725,-73.95704,Private room,86,2,34,2019-06-23,2.34,1,156 +31651359,Huge Private Room Near Brooklyn Museum,181382109,Jacob,Brooklyn,Crown Heights,40.66911,-73.95982,Private room,68,1,1,2019-05-13,0.52,1,59 +19892112,Lovely Park Slope 1BR / 2BA with outdoor space,52535342,Darren,Brooklyn,Park Slope,40.66711,-73.97691,Entire home/apt,175,3,0,,,1,0 +432090,Only 5 Min. to Manhattan!,2148881,Grace,Queens,Long Island City,40.74826,-73.94633,Private room,50,180,69,2016-09-28,0.79,1,0 +33897702,Privacy in a shared Space!! Males Only Plz,27260699,J,Brooklyn,Bushwick,40.69541,-73.90785,Shared room,28,1,8,2019-06-17,3.2,4,41 +8275676,LOVELY Clean&Safe 2 BR NYC Suburban,43637999,Martha,Staten Island,Great Kills,40.5455,-74.14829,Private room,99,1,82,2019-06-30,1.78,1,325 +27195600,Reign in your castle,204773816,Marisa,Queens,Flushing,40.75785,-73.81948,Entire home/apt,120,3,21,2019-06-13,2.09,1,152 +728764,AMAZING COLUMBUS CIRCLE LOCATION :),1475015,Mike,Manhattan,Hell's Kitchen,40.76761,-73.98619000000001,Entire home/apt,100,30,3,2018-11-01,0.12,52,365 +34504407,"Large UES studio Central Park close, 1 bk to Q sub",9910595,Deep,Manhattan,Upper East Side,40.76703,-73.95555999999999,Entire home/apt,155,2,0,,,1,113 +10612564,Apartment share near Lincoln Center,54763152,Mary Sue,Manhattan,Upper West Side,40.77929,-73.98513,Private room,99,4,68,2019-06-06,1.62,1,57 +32636654,Jamaica Queens Apartment,160618190,Melissa,Queens,Jamaica,40.70225,-73.81546,Entire home/apt,129,30,0,,,1,348 +15349655,1 room in a 3 room LOFT,9271620,Arthur,Brooklyn,Williamsburg,40.71671,-73.94592,Private room,77,28,10,2018-12-30,0.3,1,315 +21205810,Elegant 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74817,-73.97665,Entire home/apt,222,30,1,2019-02-17,0.21,50,364 +34501531,Sun-Drenched Williamsburg Artist Loft,11389064,Talia,Brooklyn,Williamsburg,40.71369,-73.96625999999999,Entire home/apt,109,3,2,2019-07-01,0.98,1,5 +33589352,B-comfortable queen size bed try it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.57882,-74.09196999999999,Private room,49,1,8,2019-06-09,2.53,3,342 +13309409,Nolita/Soho - Quiet 1 Bedroom in Great Location!,75205085,Owen,Manhattan,Nolita,40.72271,-73.99518,Entire home/apt,250,4,11,2018-05-19,0.29,1,0 +28567040,Bronx House #4_3,203266238,Steve,Bronx,Morris Park,40.85362,-73.85011,Private room,65,5,0,,,5,365 +9435315,Beautiful Duplex with Patio!!!,35539248,Ashish,Manhattan,East Village,40.72117,-73.98125999999999,Private room,78,25,0,,,1,0 +19606247,Cozy Private Room in Chinatown/ Lower East Side,48035228,Chen,Manhattan,Two Bridges,40.71253,-73.99586,Private room,50,7,3,2017-08-27,0.12,1,0 +8564804,Luxury Studio Apartment with private outdoor space,24632224,Kendra,Brooklyn,Crown Heights,40.67902,-73.96101,Entire home/apt,97,5,2,2016-10-31,0.04,1,0 +20451532,"Greenpoint private room w/back yard, dishwasher",37050812,Stephanie,Brooklyn,Greenpoint,40.73547,-73.95495,Private room,55,2,4,2017-10-23,0.18,1,0 +26532770,Gorgeous private room in a luxury condo by Time Sq,4823737,Evgeny,Manhattan,Hell's Kitchen,40.75945,-73.99344,Private room,250,4,0,,,1,0 +23608727,Room in Cozy Apartment,15956611,Jay R.,Manhattan,East Harlem,40.80373,-73.93594,Private room,53,21,2,2019-05-19,0.46,2,61 +35005526,Exceptional 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Theater District,40.75708,-73.98283,Entire home/apt,177,29,0,,,327,343 +32206003,Spacious Rm for 1 near Hospital1 min Walk to Train,241676154,Maria,Staten Island,Grant City,40.57974,-74.10989000000001,Private room,30,7,1,2019-06-29,1.0,2,188 +15071519,Sunlight + Space on Eastern Parkway,73046105,Yosef And Chava,Brooklyn,Crown Heights,40.67046,-73.94156,Entire home/apt,105,2,4,2016-12-05,0.12,1,0 +27292944,"Cozy duplex in Redhook, Brooklyn +(entire basement)",8593113,Salem,Brooklyn,Red Hook,40.67349,-74.00589000000001,Private room,81,1,7,2019-05-17,0.66,2,48 +16689593,Private room in Williamsburg 15 mins from city,2600209,Ed,Brooklyn,Williamsburg,40.71708,-73.94278,Private room,60,7,0,,,1,0 +5442054,Chef's Kitchen and private garden,16437254,Benjamin,Brooklyn,Fort Greene,40.68969,-73.97797,Entire home/apt,193,30,1,2018-11-16,0.13,21,311 +16465524,Shared Room in Brooklyn,40871485,Ajay,Brooklyn,Bay Ridge,40.63821,-74.0273,Shared room,22,5,1,2017-01-14,0.03,1,0 +30370564,LINCOLN CENTER / LUXURY 2BED 2BATH,131647128,Emily,Manhattan,Upper West Side,40.77396,-73.98925,Entire home/apt,260,30,3,2019-05-12,0.45,25,274 +19644363,Spacious 2 bedroom railroad apartment,114621718,Hope,Brooklyn,Gowanus,40.67718,-73.98513,Entire home/apt,225,1,67,2019-06-29,2.98,2,350 +7901928,Cozy Room in the Heart of Astoria,4646764,Amanda,Queens,Astoria,40.76281,-73.91554000000001,Private room,60,1,2,2015-11-09,0.04,1,0 +13949732,Big 4 bedroom house with garden by the Park in PLG,1857899,Audrey,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95468000000001,Entire home/apt,225,2,10,2017-05-30,0.29,1,0 +1053523,Beautiful Ground Level Townhouse Ap,4128399,Jose,Manhattan,Lower East Side,40.71886,-73.98496999999999,Entire home/apt,350,3,7,2017-12-10,0.1,1,364 +35461209,Freshly furnished private room - GREAT Location!,230192510,Zach,Brooklyn,Fort Greene,40.69696,-73.97496,Private room,48,30,0,,,25,219 +11564960,1BR Walkup on Upper East Side,61088024,John,Manhattan,Upper East Side,40.77697,-73.95371999999999,Entire home/apt,75,1,0,,,1,0 +9674142,1 bed in Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76768,-73.90986,Private room,59,1,156,2019-07-02,3.59,4,208 +34389896,Sumptin' Simple on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.68079,-73.91893,Private room,48,1,14,2019-06-30,6.36,2,249 +9183131,Private room in unique Chelsea loft,872654,Adam,Manhattan,Chelsea,40.74406,-73.99287,Private room,139,1,3,2015-12-20,0.07,1,0 +30914075,Room in big and light Prospect Heights apartment,16333280,Hanna,Brooklyn,Prospect Heights,40.67452,-73.96618000000001,Private room,55,2,4,2019-05-12,0.65,1,0 +35220992,"Lovely Fam hse, one lg quest private BR on 2nd fl",161906388,Imelda,Queens,Woodhaven,40.687940000000005,-73.85566,Private room,45,1,4,2019-06-30,4.0,1,3 +18893669,"Master Bedroom w/ TV, AC, King Sized Bed",31314659,Muneer,Manhattan,East Harlem,40.79439,-73.94129000000001,Private room,75,7,0,,,1,0 +18390143,"Huge Room, Top Floor Of Brownestone",91167002,Alyson,Manhattan,Hell's Kitchen,40.76537,-73.98855,Private room,120,2,32,2019-06-13,1.25,3,90 +28671495,"Home For Medical Professionals - ""The Xenon""",26377263,Stat,Brooklyn,East Flatbush,40.65245,-73.93751999999999,Private room,53,30,0,,,43,346 +35162122,Clean and Cozy,264811416,Tasia,Queens,St. Albans,40.69464,-73.75184,Entire home/apt,47,3,0,,,1,3 +21504803,Modern Industrial Williamsburg 1br Apt on Bedford,156249849,Nicole,Brooklyn,Williamsburg,40.71873,-73.95535,Entire home/apt,80,2,18,2019-05-19,0.88,1,12 +16350431,Cozy room Williamsburg,1260413,Helena,Brooklyn,Williamsburg,40.71292,-73.94136999999999,Private room,105,3,4,2018-05-28,0.13,3,0 +9935509,Bright Bedroom in Lower East Side,12838834,Tania,Manhattan,Lower East Side,40.72143,-73.98434,Private room,90,5,5,2018-01-01,0.12,2,0 +36427098,Downtown NYC Convenient Private Room,105447387,Xiao,Manhattan,Lower East Side,40.71466,-73.98676,Private room,80,1,0,,,1,323 +14126303,Huge Sunny Apartment in Heart of Harlem NYC,85191443,Evelyn,Manhattan,Harlem,40.82228,-73.93894,Private room,90,1,30,2018-01-04,0.84,1,0 +22078828,Bushwick Brooklyn En Suite in Artist Loft Bldg,61989330,Zanni,Brooklyn,Williamsburg,40.70683,-73.93312,Private room,51,2,2,2018-01-01,0.1,1,0 +33428552,Suite Houston - Free Street Parking & WIFI,219738858,Joe,Manhattan,Lower East Side,40.7204,-73.98371,Entire home/apt,180,30,5,2019-05-08,1.76,5,193 +30495063,Chic & Bright Brooklyn Bungalow,33988719,Fenice,Brooklyn,Bushwick,40.69056,-73.91596,Private room,90,3,0,,,1,176 +31121213,Studio with Historic Charm in South Harlem,8630543,Olga,Manhattan,Harlem,40.80456,-73.95033000000001,Entire home/apt,115,3,15,2019-06-28,3.21,2,116 +15037461,Williamsburg Couch on a Budget,1207773,Trista,Brooklyn,Williamsburg,40.70719,-73.95926999999999,Shared room,37,1,12,2018-09-18,0.35,2,362 +34928299,"Great views, great location, great apartment!",1668747,Guido,Manhattan,Hell's Kitchen,40.76022,-74.00117,Entire home/apt,194,3,2,2019-07-02,2.0,1,44 +5443581,Bright New Mod 1bd+RoofDeck/WBurg,28234750,Ashley,Brooklyn,Williamsburg,40.70892,-73.94981999999999,Entire home/apt,200,14,14,2017-08-28,0.28,1,0 +564751,Artist space for creative nomads.,2777672,Kalae,Manhattan,Upper West Side,40.80165,-73.96287,Shared room,76,2,158,2019-05-05,1.91,3,324 +22983227,Spacious Modern Apartment in Prospect Park South,170413197,Rebecca,Brooklyn,Flatbush,40.64786,-73.96125,Entire home/apt,100,2,1,2018-02-25,0.06,1,0 +34834620,Fully Renovated 1 Bedroom- Washer Dryer,61396454,Ash,Manhattan,Midtown,40.7554,-73.96474,Entire home/apt,200,30,1,2019-06-14,1.0,14,289 +4453233,Cozy Hells Kitchen/Times Sq 2BR,5827529,Ariel,Manhattan,Hell's Kitchen,40.76221,-73.99028,Entire home/apt,160,1,8,2015-10-18,0.14,1,0 +1415738,Private bedroom and bathroom in Brooklyn,7628445,Rosa,Brooklyn,Park Slope,40.67317,-73.97676,Private room,160,30,25,2018-08-22,0.35,1,363 +35667738,Fully equipped room that's 3 mins from L train!2,101970559,Sergii,Brooklyn,Bushwick,40.6922,-73.90563,Shared room,31,30,0,,,6,333 +30338113,Wonderful and sunny 2 bedroom in Brooklyn,226833844,Ev,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94094,Entire home/apt,225,2,4,2019-01-02,0.62,1,0 +17512553,MAGNIFICENT apartment in Williamsburg with Balcony,57050977,Gaël-Etienne,Brooklyn,Williamsburg,40.71397,-73.94873,Entire home/apt,68,2,22,2018-09-09,0.78,1,0 +7634327,Spacious 2BR Duplex in East Village,9584747,Aaron,Manhattan,East Village,40.72178,-73.98212,Entire home/apt,250,2,11,2017-01-03,0.24,1,0 +14312186,Classic NYC: ENTIRE 1-BR in Spacious Chelsea Apt,87487508,Adam,Manhattan,Chelsea,40.74029,-74.00233,Entire home/apt,185,1,2,2016-08-22,0.06,1,0 +14892623,Cozy Space w/ Separate Entrance,93441980,Tanya,Staten Island,South Beach,40.59385,-74.08825,Private room,80,1,38,2019-05-05,1.1,1,308 +5624616,Master w/ private bath and sleeping loft. 2 beds,20469855,Kate,Manhattan,Upper West Side,40.78913,-73.97021,Private room,125,2,7,2016-05-17,0.14,1,248 +20532190,Brooklyn Garden Apartment,166634,Lou,Brooklyn,Brownsville,40.66114,-73.91258,Entire home/apt,300,2,11,2019-06-02,0.57,5,51 +21458865,Bright bedroom. Easy access to Manhattan,62888101,Yoshi,Brooklyn,Red Hook,40.67634,-74.00293,Private room,69,1,32,2019-06-20,1.73,1,86 +9885866,,37306329,Juliette,Manhattan,Chinatown,40.71632,-73.99328,Private room,67,4,0,,,1,0 +7140625,Cosy apartment West Harlem close to Central Park,37396328,Cécile,Manhattan,Harlem,40.80712,-73.95323,Private room,51,7,0,,,1,4 +22545840,Habitación comoda,165386495,Maria,Bronx,Fordham,40.85419,-73.89827,Private room,40,2,15,2018-12-16,0.83,1,220 +27849339,~Flatiron 2 Bedroom~Amazing Location~Sleeps 6~,209556739,Ryan,Manhattan,Midtown,40.74478,-73.98442,Entire home/apt,349,4,32,2019-06-21,3.04,1,255 +19000161,Super Chill Studio,132559939,Xavier,Brooklyn,Williamsburg,40.71893,-73.96231999999999,Entire home/apt,180,2,20,2019-01-01,1.17,1,0 +24119086,Private clean room complementary coffee Manhattan,6636052,Renat,Manhattan,East Harlem,40.79805,-73.93526999999999,Private room,65,2,62,2019-07-06,4.14,1,9 +13572767,Heart of Williamsburg 2 bedroom sleeps 5,69541888,Edward,Brooklyn,Williamsburg,40.71758,-73.95015,Entire home/apt,250,1,1,2016-07-21,0.03,1,0 +7750,Huge 2 BR Upper East Cental Park,17985,Sing,Manhattan,East Harlem,40.79685,-73.94872,Entire home/apt,190,7,0,,,2,249 +24372235,Newly Renovated Cozy studio in lower east side #9,158969505,Karen,Manhattan,Lower East Side,40.72192,-73.9928,Entire home/apt,150,30,3,2018-12-29,0.24,9,310 +9151490,Wdful 2 br/2bth apt in Williamsbug,8133069,Maria,Brooklyn,Williamsburg,40.70919,-73.94804,Entire home/apt,240,1,1,2017-10-09,0.05,1,0 +27899019,Affordable quite private room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73821,-73.81006,Private room,64,1,7,2019-06-09,0.73,5,90 +25802893,Cozy Artist Apartment,5772223,Stephanie,Brooklyn,Borough Park,40.64512,-73.99839,Entire home/apt,100,14,8,2019-06-28,0.63,1,69 +18175675,2400 Sq Ft Tribeca Loft w/Private Elevator,2834168,Jessica,Manhattan,Tribeca,40.71893,-74.0033,Entire home/apt,350,6,20,2019-06-30,0.74,1,25 +36072357,Charming suite on Historic block,271354975,Frances,Brooklyn,Bedford-Stuyvesant,40.68323,-73.94694,Private room,170,2,0,,,1,164 +15840527,Bedroom in shared apt next to Grand Central,2719866,Dora,Manhattan,Murray Hill,40.7487,-73.97842,Private room,40,5,0,,,1,0 +9920941,Jewel On Parkside,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95934,Private room,65,28,11,2019-06-01,0.26,3,320 +10824421,"Large Apartment in Greenpoint, BK",7911103,David,Brooklyn,Greenpoint,40.72639,-73.94764,Entire home/apt,205,2,0,,,1,0 +21851570,Studio In A New Building in Bedstuy,159379318,Heini,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94360999999999,Entire home/apt,95,7,4,2019-01-01,0.21,1,1 +17284471,Modern Apt on Best Location in Brooklyn !,1409823,Fernando,Brooklyn,Bedford-Stuyvesant,40.688590000000005,-73.94998000000001,Entire home/apt,75,5,16,2019-05-28,0.58,1,15 +14608127,"Vibey Apartment, Empire State Bldg & Times Square!",90646927,Nicole,Manhattan,Kips Bay,40.74496,-73.97867,Private room,100,2,11,2019-06-23,2.02,1,20 +804246,"HUGE, PRIVATE, SUNLIT ROOM IN DOWNTOWN NYC LOFT!",4233030,Michael,Manhattan,Chinatown,40.71786,-73.99518,Private room,195,3,61,2019-06-30,0.77,1,134 +2465962,1 BEDROOM ENTIRE HOME/APT❤ ASTORIA,1000014,Amy,Queens,Astoria,40.76122,-73.91163,Entire home/apt,125,1,13,2015-09-28,0.22,1,0 +690553,Modern Lofted Williamsburg 3bd,743742,Ethan And Wray,Brooklyn,Williamsburg,40.7056,-73.94202,Entire home/apt,198,1,294,2019-07-04,3.59,1,233 +31122836,Luxury Union Square Loft (3000 sq ft),22997536,Kyle,Manhattan,Chelsea,40.73732,-73.99033,Private room,200,1,2,2019-03-11,0.32,1,0 +15341726,Lovely Large Bedroom in West Harlem,42325192,Lauren,Manhattan,Harlem,40.81463,-73.95106,Private room,75,3,11,2018-12-31,0.35,1,14 +11229663,"Joyce and Donovan's, Room for One",56878925,Joyce,Queens,Forest Hills,40.72282,-73.85571,Private room,37,25,15,2018-08-18,0.45,2,330 +13716080,"Cute, Vintage UWS Private Room/Bath",41067998,Andrea,Manhattan,Upper West Side,40.78817,-73.98068,Private room,175,2,0,,,1,0 +9227929,Manhattan Townhome Garden Apartment,2807798,Sean,Manhattan,Harlem,40.82993,-73.9435,Entire home/apt,201,1,162,2019-07-05,4.46,2,73 +36105765,"Bright, spacious 1br in Harlem | Near 4/5/6 train",13231566,Jordan,Manhattan,East Harlem,40.8019,-73.93829000000001,Entire home/apt,100,14,0,,,1,52 +13100373,Incredible 3 BR Union Square Loft,38331104,Anna,Manhattan,Gramercy,40.736270000000005,-73.98986,Private room,100,7,0,,,1,0 +29675631,Gorgeous Modern + Sunny Room in Prime Williamsburg,198395530,Carla,Brooklyn,Williamsburg,40.71217,-73.95888000000001,Private room,68,5,1,2018-11-02,0.12,1,0 +24151078,Cozy 1 bedroom apartment near JFK,83231755,Alisha,Queens,Jamaica,40.68055,-73.791,Entire home/apt,55,2,4,2018-05-06,0.26,1,0 +30081034,Greenpoint Brooklyn,226035811,Samantha,Brooklyn,Greenpoint,40.72778,-73.94781,Private room,200,7,0,,,1,0 +2687606,Spacious Gramercy 1bdrm. Clean!,3016371,Daniel,Manhattan,Gramercy,40.73701,-73.98241999999999,Entire home/apt,180,3,7,2018-12-30,0.11,1,0 +17569080,"2BR/2BATH,CENTRALPARK,COLUMBIA,JACUZZI,FIREPLACE",42555896,Yolanda,Manhattan,Harlem,40.80063,-73.95223,Entire home/apt,200,30,3,2019-06-05,0.27,1,327 +35974526,A Private Room in a Unique Apartment in Bushwick!,133138724,Stephanie,Brooklyn,Bushwick,40.68726,-73.91421,Private room,60,1,0,,,1,179 +16489175,"Spacious LIC apartment, 10 min to Grand Central",108275969,John,Queens,Long Island City,40.74902,-73.9472,Private room,57,5,0,,,1,0 +18330346,Entire private top floor 3 bedroom apartment,327033,Marc,Brooklyn,Bushwick,40.69408,-73.92307,Entire home/apt,160,3,7,2017-08-29,0.26,2,23 +32713924,Bnb n Spa 30 minutes from Manhattan,22125997,Lilly Rose,Bronx,Westchester Square,40.84077,-73.8487,Private room,50,3,6,2019-06-03,1.62,2,27 +13911123,1 bedroom in 3 bedroom/2bath Bushwick Apt.,82512085,Hattie,Brooklyn,Bushwick,40.68987,-73.91548,Private room,35,1,1,2016-08-10,0.03,1,0 +2803981,Room in Duplex Apartment!!,11330223,Ger,Brooklyn,Williamsburg,40.71389,-73.9657,Private room,80,5,11,2016-05-22,0.18,1,0 +34199783,Modern One Bedroom - Greenpoint,9583320,Raine & Andrew,Brooklyn,Greenpoint,40.72336,-73.94651999999999,Entire home/apt,150,7,1,2019-06-11,1.0,1,0 +22635815,Stylish Bedroom In Washington Heights Manhattan.,26101123,Ken,Manhattan,Washington Heights,40.83558,-73.9404,Private room,38,2,23,2019-06-30,1.43,1,30 +10208954,Cozy & Elegant Private 1 Bedroom,52445657,Christopher,Queens,Flushing,40.72946,-73.8075,Private room,55,2,16,2018-03-12,0.46,1,0 +506575,Bronx Room Near Yankees + Harlem,2001830,Jose And Ysaira,Bronx,Morris Heights,40.84937,-73.91328,Private room,45,3,190,2019-06-06,2.21,2,329 +33785477,Sunny Private Room close to Manhattan(Green),254771644,Jianren,Brooklyn,Bushwick,40.69682,-73.93066999999999,Private room,66,2,8,2019-07-05,3.08,1,159 +20103452,Upper East Side Apartment,95734400,Jack,Manhattan,Upper East Side,40.77042,-73.94918,Entire home/apt,122,1,4,2017-08-28,0.17,1,0 +33334269,SPACIOUS ROOMS FOR RENT,13480762,Shana,Brooklyn,Williamsburg,40.7185,-73.93964,Private room,40,1,14,2019-06-02,4.57,2,26 +31264500,Lovely Chinatown Apartment,115506821,Emmett,Manhattan,Chinatown,40.71367,-73.99313000000001,Entire home/apt,175,2,4,2019-02-09,0.71,1,0 +12382140,Luxury 2BR Midtown East-Near the UN,26521212,Laura,Manhattan,Midtown,40.75322,-73.97321,Entire home/apt,299,2,14,2019-05-03,0.36,3,0 +6169172,Relaxing Brooklyn Getaway,3598306,Afaliah,Brooklyn,Fort Greene,40.69677,-73.97622,Private room,90,1,2,2016-12-16,0.06,2,364 +7856476,"Private floor with private half-bath, living area",24629261,Natalie,Staten Island,Randall Manor,40.63878,-74.10636,Private room,69,3,23,2019-06-07,0.52,1,172 +24278511,Sunny Room - Inn Your Element,19866189,Natasha,Queens,Arverne,40.58906,-73.79503000000001,Private room,95,1,0,,,5,364 +1001447,Comfy twin bed/Cosy apartment/East Harlem / Subway,214794,Pete & Marcos,Manhattan,East Harlem,40.79307,-73.95138,Shared room,56,2,117,2019-06-24,1.53,1,303 +8431626,Lovely bedroom/private full bath in Brooklyn,44398705,Victoria,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92805,Private room,52,4,3,2019-05-06,0.35,2,157 +6246559,"Quiet, Sunny Studio in Downtown NYC",519483,Ashley,Manhattan,East Village,40.72587,-73.98244,Entire home/apt,125,2,3,2015-10-30,0.06,1,0 +2670522,Zen Bedroom in Artist Loft in Williamsburg,13670148,Michelle,Brooklyn,Williamsburg,40.71209,-73.95196,Private room,40,2,32,2018-08-12,0.5,1,0 +26635476,Newly Renovated Apartment in Upper Manhattan!,57322447,Matthew,Manhattan,Inwood,40.86159,-73.92616,Entire home/apt,100,4,3,2018-10-31,0.26,1,0 +21219137,Nice room in LES,22617181,Leonardo,Manhattan,Lower East Side,40.71686,-73.98458000000001,Private room,85,1,1,2018-01-01,0.05,1,0 +28644822,Home of the artists,162974717,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95926999999999,Private room,60,1,15,2019-05-22,1.62,1,0 +35844386,Brooklyn.,67302443,Madina,Brooklyn,Crown Heights,40.66603,-73.92925,Shared room,50,1,0,,,1,314 +18599296,Comfy Entire Studio Apartment Near Central Park,1692538,Nuttamon,Manhattan,Upper East Side,40.772940000000006,-73.95351,Entire home/apt,168,1,126,2019-04-02,4.78,5,287 +7255577,Cool room Manhattan - Sleeps up to 3 guests,37579015,Ana,Manhattan,Hell's Kitchen,40.75834,-73.99277,Private room,98,1,147,2019-06-13,3.03,5,149 +29435698,"Prime Williamsburg Loft, close to the water!",3583973,Lauren,Brooklyn,Williamsburg,40.71247,-73.96295,Entire home/apt,190,2,17,2019-04-15,1.99,1,0 +4243533,Private Bedroom in Large Apartment,8732038,Lorna,Queens,Woodside,40.74808,-73.90404000000001,Private room,100,1,0,,,1,0 +29096185,Welcome to Woodside!,56177749,Zumunta,Queens,Woodside,40.74218,-73.90403,Private room,31,1,1,2018-10-14,0.11,1,0 +32384354,Shared Room - All Female - Great Roommates!,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67652,-73.94015999999999,Shared room,26,15,2,2019-05-31,0.59,2,23 +26182768,Cozy NYC apartment in Little Italy,21146326,Olga,Manhattan,Chinatown,40.71826,-73.99671,Entire home/apt,156,2,9,2019-05-31,0.74,2,1 +30728947,Brooklyn Home with a View,5358010,Mansi,Brooklyn,South Slope,40.66358,-73.98997,Entire home/apt,145,4,1,2019-06-11,1.0,1,12 +35370678,Cozy Spacious Near TIMES SQUARE,141778215,Sandy,Manhattan,Chelsea,40.74814,-73.99416,Entire home/apt,269,1,2,2019-06-12,2.0,1,238 +13820083,Beautiful Cozy Garden Apt- Historic Clinton Hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68421,-73.96631,Entire home/apt,95,30,11,2019-06-21,0.31,2,43 +35651376,Bright & Peaceful Loft in Park Slope/Greenwood,15200548,Maria Fernanda,Brooklyn,Sunset Park,40.66008,-73.99684,Entire home/apt,180,4,0,,,1,12 +7246159,Charming apt on UWS 8/3-8/7,31245915,Jenna,Manhattan,Upper West Side,40.79024,-73.97910999999999,Entire home/apt,200,1,0,,,1,0 +21469568,Sunny & Gorgeous master bedroom by central park,115228513,Aly,Manhattan,Upper West Side,40.80272,-73.96629,Private room,129,1,83,2019-06-09,4.0,2,365 +30361847,"One bedroom apartment in Brooklyn, NY",40480205,Owen,Brooklyn,Park Slope,40.6828,-73.97738000000001,Entire home/apt,110,60,2,2019-06-29,0.81,1,83 +24169179,NEW!! Private room in the heart of Brooklyn,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.68853,-73.95982,Private room,70,2,33,2019-03-06,2.33,2,17 +30745232,Park Slope Cozy Bedroom,3016566,Yukako,Brooklyn,Park Slope,40.67371,-73.9769,Private room,200,1,1,2019-04-19,0.37,1,351 +7839972,Manhattan Penthouse 1 Bdrm Apt,2905589,Phong,Manhattan,Midtown,40.74645,-73.9853,Entire home/apt,239,4,4,2015-10-26,0.09,1,0 +36387416,"Incredibly large room, excellent location!",6570630,Marisol,Brooklyn,Bushwick,40.7018,-73.93281999999999,Private room,60,4,0,,,2,47 +26813190,Bushwick House,11982558,Giorgi,Brooklyn,Bushwick,40.70313,-73.91450999999999,Private room,37,21,1,2019-05-03,0.44,1,36 +31795059,Loft on the Best Block of the Lower East Side,1533007,Sivan,Manhattan,Chinatown,40.71683,-73.99172,Entire home/apt,130,3,15,2019-06-19,3.04,1,15 +21517530,GSG Inn - A totally private historic landmark inn,136214003,Gary,Staten Island,St. George,40.64591,-74.08399,Entire home/apt,125,1,108,2019-07-06,5.41,1,319 +1030780,NYC Brooklyn Sunset Park- Great Bed. Great House.,1113080,Audrey,Brooklyn,Sunset Park,40.64871,-74.00774,Private room,70,2,45,2018-01-01,0.6,3,0 +19192149,"Walk to Central Park + Columbia, Morningside",27694509,Jen,Manhattan,Harlem,40.80302,-73.95605,Private room,100,6,98,2019-06-22,4.07,1,28 +4499976,Large Sunny 2 Bedroom + den - UWS,23338742,Aneela,Manhattan,Upper West Side,40.78878,-73.97386,Entire home/apt,225,30,17,2018-06-15,0.31,1,179 +17044038,Big exposed brick room in The East Village,20481502,Emily,Manhattan,East Village,40.72429,-73.98784,Private room,80,90,0,,,1,173 +11554224,Upper West Side 1BD with terrace,56043282,Emily,Manhattan,Upper West Side,40.77872,-73.98025,Entire home/apt,140,1,8,2017-07-01,0.2,1,0 +21267975,Big room @ independent Eco-friendly aprtmnt.,1272997,Ariadna,Brooklyn,Greenpoint,40.72868,-73.95248000000001,Private room,52,2,68,2019-06-03,3.25,1,9 +13780778,Upper West Side,59788392,Abie,Manhattan,Upper West Side,40.78573,-73.97686,Private room,80,1,0,,,1,0 +5022,Entire Apt: Spacious Studio/Loft by central park,7192,Laura,Manhattan,East Harlem,40.79851,-73.94399,Entire home/apt,80,10,9,2018-11-19,0.1,1,0 +32607488,"2nd Floor, Room # 2 (12'x14')",244817841,Aminul,Brooklyn,East New York,40.669540000000005,-73.89575,Private room,35,180,0,,,13,189 +6759264,Cozy private bedroom & bathroom,35386618,Andrea,Queens,Astoria,40.75706,-73.91834,Private room,70,1,7,2016-05-25,0.15,1,325 +6717607,Spacious Private Room/Bath in Bushwick!,4130512,Tanni,Brooklyn,Bushwick,40.69093,-73.91291,Private room,45,30,1,2016-11-25,0.03,1,0 +30798396,Spacious room near airport LGA Manhattan & Gym :),137358866,Kazuya,Queens,Jackson Heights,40.74878,-73.8799,Private room,24,30,0,,,103,244 +34367165,"Stylish, Dog-friendly Williamsburg One-Bedroom",259459612,Egle,Brooklyn,Williamsburg,40.708090000000006,-73.9661,Entire home/apt,240,2,2,2019-06-19,1.4,1,0 +24893488,Huge master bedroom W/ private bath in Brooklyn,48418910,Lydia,Queens,Ridgewood,40.70289,-73.91156,Private room,120,2,0,,,2,0 +35875685,"Harlem Hidden Gem,Clean, Affordable and Convenient",269838822,Asya,Manhattan,Harlem,40.80549,-73.95136,Private room,80,2,0,,,1,352 +30505350,A place to crash in historical Bed-Stuy,141359886,Yuli,Brooklyn,Bedford-Stuyvesant,40.68763,-73.95683000000001,Entire home/apt,100,2,22,2019-06-24,3.32,1,286 +3513960,AMAZING ROOM ARTSY BKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64246,-73.95443,Private room,38,3,76,2019-06-03,1.3,3,253 +13331393,1BR Luxurious Furnished NY Apt - Times Square!,30283594,Kara,Manhattan,Theater District,40.75956,-73.98512,Entire home/apt,239,30,0,,,121,363 +19172071,Cosy One bedroom apartment close to Central Park,14271995,Pierre,Manhattan,Upper East Side,40.76767,-73.9558,Entire home/apt,110,3,8,2018-08-28,0.32,1,0 +8410347,"Haven In The Heights - Huge, Bright Bedroom!",44303500,Bruce & Suzanne,Manhattan,Washington Heights,40.8484,-73.93972,Private room,70,2,1,2019-01-02,0.16,2,0 +26571135,Private Bedroom in Manhattan,167621521,Emma,Manhattan,Inwood,40.86411,-73.92241,Private room,35,3,1,2018-07-31,0.09,1,0 +33497845,Brooklyn Brownstone — BedStuy Garden Apartment,6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69081,-73.93025,Entire home/apt,155,2,10,2019-07-04,4.92,8,270 +13453023,"King Bed, Super Host, Near Central/Riverside Parks",17848380,Yi Qun,Manhattan,Upper West Side,40.79875,-73.97128000000001,Private room,120,1,19,2019-05-10,0.57,3,360 +22985419,Exquisite English Tudor with a touch of class,170445076,Sean,Queens,Queens Village,40.72249,-73.75486,Entire home/apt,200,2,58,2019-07-07,3.6,1,152 +21550720,"Sunny, Peaceful Room in Southern Harlem",91747804,Gigi,Manhattan,Harlem,40.80169,-73.95154000000001,Private room,80,3,33,2019-06-10,1.64,1,39 +25811825,A Perfect Match! The NYC All-Rounder Apartment,74374901,Suzanne,Manhattan,Hell's Kitchen,40.75652,-73.99069,Entire home/apt,250,3,44,2019-06-07,3.53,1,48 +20556539,"Privet guest unit, great location Next to subway!",23262657,Maayan,Queens,Forest Hills,40.71645,-73.85035,Private room,99,1,3,2018-04-29,0.14,2,0 +8680417,Sunny beautiful home Audubon Distr,12190039,Lyndell,Manhattan,Washington Heights,40.83591,-73.94776999999999,Entire home/apt,155,5,3,2016-05-23,0.08,2,0 +35635711,Clean & Modern 3BR - Incredible Midtown Location !,263550606,Justin,Manhattan,Kips Bay,40.745090000000005,-73.97894000000001,Entire home/apt,300,4,0,,,1,77 +29517691,Beautiful private room in townhouse!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69712,-73.94731999999999,Private room,52,2,13,2019-04-27,1.72,3,320 +11374387,Beautiful home close to CentralPark,4275336,Andy,Manhattan,Upper West Side,40.77271,-73.98810999999999,Entire home/apt,190,1,2,2016-09-20,0.05,1,0 +373618,Authentic designer loft/roof deck best Williamsbrg,1879389,Christina,Brooklyn,Williamsburg,40.72212,-73.95696,Private room,129,3,63,2019-06-30,0.71,2,87 +723709,Large room 2blks from central Park,297176,Bethania,Manhattan,Harlem,40.80351,-73.95648,Private room,95,10,6,2019-05-11,0.07,2,63 +30429970,TIME SQ WEST- COZY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75523,-73.99709,Private room,199,1,17,2019-06-16,2.32,30,347 +4821218,A Mini Home Away From Home,24827152,Wendy,Brooklyn,Bedford-Stuyvesant,40.68383,-73.95298000000001,Private room,45,3,5,2016-01-06,0.09,1,0 +11326009,Cozy SunLit Room Next To TimeSquare,13125944,Calvin,Manhattan,Hell's Kitchen,40.7651,-73.98854,Private room,79,1,2,2016-05-21,0.05,2,0 +20467141,Private Bed and Bath by Morningside/Central Park!,22822259,Kellie,Manhattan,Harlem,40.80666,-73.95703,Private room,90,2,67,2019-07-06,2.99,1,63 +20616864,Private 1 Bedroom Apartment Manhattan,105462484,Leo,Manhattan,East Harlem,40.78784,-73.94931,Entire home/apt,130,1,4,2017-10-25,0.18,1,0 +21732716,Small Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6602,-73.98244,Private room,42,1,88,2019-06-24,4.44,7,248 +23520803,Spacious one-bedroom apartment in Cobble Hill,16110255,Jennifer,Brooklyn,Gowanus,40.68084,-73.98964000000001,Entire home/apt,130,7,11,2019-06-30,1.3,1,1 +4909438,New Year's in the East Village,24127267,Arnell,Manhattan,East Village,40.73037,-73.98268,Entire home/apt,175,1,1,2015-01-02,0.02,1,0 +31360817,Cozy Space in Bay Ridge,767346,Celeste,Brooklyn,Fort Hamilton,40.61693,-74.03135999999999,Private room,90,2,6,2019-06-03,2.77,1,0 +36143087,"Beautiful, Spacious room in prime Williamsburg!",226520484,Mika,Brooklyn,Williamsburg,40.7154,-73.95438,Private room,70,5,1,2019-07-01,1.0,1,7 +12022098,Charming Park Slope Apartment,8303104,Christen,Brooklyn,South Slope,40.66801,-73.98773,Private room,89,1,102,2019-07-03,2.56,1,269 +27506443,Modern loft in the best part of Bushwick.,52190465,Sobe,Brooklyn,Bushwick,40.70474,-73.9162,Entire home/apt,100,2,1,2018-08-14,0.09,1,0 +17158871,"19th Cent. Brooklyn Hts, Moments from Manhattan",17727305,Stephen,Brooklyn,Brooklyn Heights,40.69754,-73.99298,Entire home/apt,270,4,48,2019-07-01,1.73,1,172 +32239033,Sonder | Stock Exchange | Smart 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70583,-74.01089,Entire home/apt,221,2,4,2019-06-24,1.97,327,333 +15052971,"East 12th street, Lux 1bd in Greenwich Village**",22541573,Ken,Manhattan,East Village,40.73193,-73.99126,Entire home/apt,267,30,1,2017-07-30,0.04,87,356 +20539089,Sunny Greenwich Village 1 br in best location!,24530399,Delia,Manhattan,West Village,40.73453,-74.00238,Entire home/apt,250,2,2,2017-10-01,0.09,1,0 +7769782,Beautiful Room in Bushwick.,40867860,Patricia,Brooklyn,Bedford-Stuyvesant,40.68053,-73.90879,Private room,63,1,4,2019-06-28,2.18,1,240 +20886923,Private bed & bath by JFK & LGA; Easy NYC access!,150019486,David,Queens,Kew Gardens,40.70874,-73.82616999999999,Private room,60,2,137,2019-06-23,6.27,1,32 +30595611,Home away from Home! 2 Bedroom Apartment.,229503748,Jamal,Manhattan,Hell's Kitchen,40.76323,-73.98893000000001,Entire home/apt,250,2,26,2019-06-29,3.8,1,60 +23254023,Grand Concourse Gem,170942459,Edwin,Bronx,Concourse,40.8315,-73.92047,Private room,54,1,16,2018-10-08,0.99,1,69 +25841637,"Two double beds, New York, Chinatown, #2",33867639,Amiee,Manhattan,Chinatown,40.714,-73.99571,Private room,90,1,82,2019-06-18,6.24,3,77 +21739035,NEWLY RENOVATED STUDIO APARTMENT IN HARLEM,158335126,Jonathan,Manhattan,Harlem,40.81702,-73.93881999999999,Entire home/apt,130,3,11,2018-05-03,0.56,1,89 +2197725,Luxury 1BD 1.5 Bath In UES in NYC,7181895,Yumi,Manhattan,Upper East Side,40.7759,-73.94921,Entire home/apt,325,2,3,2016-01-02,0.05,1,0 +6226327,Midtown EAST 1 BDR APT - BEST area of Manhattan,29167335,Yedda,Manhattan,Midtown,40.75531,-73.96600000000001,Entire home/apt,182,4,51,2019-05-31,1.03,2,317 +3251901,Huge Room in Manhattan's Upper West,6726808,Eve,Manhattan,Upper West Side,40.80131,-73.9675,Private room,69,5,2,2017-03-08,0.03,1,0 +19634230,Taste of the Suburbs in Greenpoint,41945908,Caleb,Brooklyn,Greenpoint,40.72785,-73.95452,Private room,60,3,4,2018-01-03,0.16,1,0 +33783359,Sunny Modern Studio Near Columbus Circle,20235361,Cynthia,Manhattan,Upper West Side,40.77123,-73.98782,Entire home/apt,140,7,0,,,1,24 +14981522,Peaceful room in Artsy W'burg 3br,94404356,Jonathan,Brooklyn,Greenpoint,40.72151,-73.94141,Private room,70,1,39,2019-07-05,1.66,2,15 +13039849,"Peaceful, cozy, artistic studio.",283116,Lorie,Queens,Sunnyside,40.74625,-73.91643,Entire home/apt,75,5,0,,,1,0 +29308471,Linden Estates Luxurious 2 bedroom suite,220762164,Sherley,Queens,St. Albans,40.69272,-73.76264,Entire home/apt,105,2,2,2019-01-01,0.24,4,89 +26943028,PRIVATE ROOM WITH EVERYTHING INCLUDED!!,201757076,Soledad,Queens,Briarwood,40.71251,-73.81674,Private room,70,1,22,2019-06-26,1.89,3,0 +33254547,安静 干净 温暖的小屋,140630987,Jiali,Queens,Flushing,40.7603,-73.81428000000001,Private room,75,1,9,2019-06-15,2.52,6,204 +1994398,Spring and Summer in New York - Near Central Park,2719126,Nadia,Manhattan,Midtown,40.76663,-73.98069,Entire home/apt,345,5,19,2019-06-12,0.33,1,192 +5414911,“纽约之家 ”独立洗手间PrivateBathroom,27673980,Amy,Queens,Flushing,40.74428,-73.8333,Private room,65,1,76,2019-04-08,1.46,8,25 +16027312,"Upper Eastside Studio, Walk to Central Park",46627258,Travis,Manhattan,Upper East Side,40.7806,-73.95178,Entire home/apt,155,21,9,2018-07-26,0.28,1,0 +28126994,Sonder | 180 Water | Sophisticated 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70611,-74.00626,Entire home/apt,299,29,0,,,96,311 +36267023,Humble Hutch in the Heights,10002937,Cameron,Manhattan,Washington Heights,40.84267,-73.93816,Entire home/apt,85,1,0,,,1,1 +5717355,Private 1 BR Apt in Exciting Bushwick,29641189,Joseph,Brooklyn,Williamsburg,40.703140000000005,-73.93656,Private room,90,2,3,2019-06-02,1.73,1,18 +6360224,"Sunny, Private room in Bushwick",33134899,,Brooklyn,Bushwick,40.70146,-73.92792,Private room,37,1,1,2015-07-01,0.02,1,0 +27392814,2BR ON MIDTOWN EAST~EAST 34TH STREET,200380610,Pranjal,Manhattan,Murray Hill,40.7444,-73.97284,Entire home/apt,350,30,0,,,65,364 +6103273,Chic 2bed-2bath Manhattan Dream,4562182,Florence,Manhattan,Harlem,40.81128,-73.94646999999999,Entire home/apt,285,30,104,2019-06-30,2.07,4,249 +7321054,"Great room, 7 min from Manhattan!",38352423,Ashley,Queens,Long Island City,40.75508,-73.92918,Private room,45,1,1,2015-07-20,0.02,1,0 +34971337,Spacious 2 Bed on Park with Washer/Dryer #6113,113723310,Joe,Manhattan,Murray Hill,40.74751,-73.98051,Entire home/apt,300,30,0,,,8,355 +17817203,Room rent for close to Manhattan,121802962,Sandra,Queens,Astoria,40.77411,-73.92730999999999,Private room,53,5,47,2019-06-23,1.76,1,5 +7837952,Excellent Location Gramercy Studio,2610233,Julia,Manhattan,Flatiron District,40.73947,-73.98593000000001,Entire home/apt,221,3,99,2019-06-17,2.26,1,110 +7798542,Cozy and Homey Brooklyn Apartment,21150000,Tamar,Brooklyn,Flatbush,40.65474,-73.95448,Entire home/apt,80,3,10,2019-05-27,1.53,1,124 +6636389,perfect west village location!,27439632,Brian,Manhattan,West Village,40.732040000000005,-74.00399,Entire home/apt,160,4,0,,,1,0 +6827028,ROOMY 2BA/3BD - Parking Included,10630723,Nancy,Brooklyn,Bedford-Stuyvesant,40.6888,-73.93545,Entire home/apt,177,3,144,2019-07-02,3.02,2,260 +9074702,Private Room Downtown,260958,Aura,Manhattan,Lower East Side,40.71334,-73.99025,Private room,75,1,91,2018-10-08,2.07,3,0 +36142219,Beautiful 2 bedroom Apartment on Prime Upper East!,47785320,Cristina,Manhattan,Upper East Side,40.77352,-73.94693000000001,Entire home/apt,150,30,0,,,1,66 +22419249,SPACIOUS BROOKLYN STUDIO NEAR MUSEUM,10556923,Chris,Brooklyn,Crown Heights,40.67719,-73.95470999999999,Entire home/apt,110,4,15,2019-05-28,0.83,1,13 +6804319,"Big, sunny garden apt in Brooklyn",20279153,Matthew,Brooklyn,Crown Heights,40.67702,-73.96261,Entire home/apt,250,5,3,2017-07-01,0.06,1,0 +26816883,"Tour NYC, US Open - clean, comfort, close to all",201667999,Lily2R,Queens,Elmhurst,40.73965,-73.86796,Entire home/apt,60,1,23,2019-06-23,2.0,2,144 +29939030,Monthly One bedroom apt in Astoria,42213050,Jack,Queens,Long Island City,40.76243,-73.93044,Entire home/apt,113,25,0,,,1,177 +17225037,Private Room20-102,115993835,Shimin,Brooklyn,Sunset Park,40.63929,-74.00669,Private room,30,1,27,2019-04-01,1.64,5,168 +4218098,"Sunny, small apartment near Central Park-Columbia",21892444,Francesca,Manhattan,Harlem,40.80653,-73.95194000000001,Entire home/apt,110,4,26,2019-06-24,0.45,1,14 +19302761,"Cozy and Artsy Bedrooms in Prime BedStuy, BK",68579384,Julie,Brooklyn,Bedford-Stuyvesant,40.68274,-73.9261,Private room,42,3,3,2017-07-09,0.12,2,0 +15262831,THE PRIVACY DEN ~ 5 MINUTES TO JFK,97086824,Miss Dy,Queens,Springfield Gardens,40.66735,-73.76647,Entire home/apt,49,1,434,2019-06-19,12.84,1,102 +19779749,Private Room in Sunny South Harlem Apt,1877402,Anna,Manhattan,Harlem,40.8114,-73.95237,Private room,50,1,15,2018-06-07,0.62,2,0 +13192965,"Best neighborhood in NYC, East Village apartment",32707981,Ben,Manhattan,East Village,40.72312,-73.98795,Private room,100,2,11,2017-06-04,0.29,4,0 +29704561,Huge Designer Soho Loft (Elevator) Private Terrace,54377368,Alexander,Manhattan,Lower East Side,40.721,-73.99218,Entire home/apt,350,2,5,2019-06-28,0.74,1,326 +32593295,"Summer! UES, 3-bed a block from Central Park!",244977552,Patty,Manhattan,Upper East Side,40.78609,-73.95340999999999,Entire home/apt,225,3,0,,,1,166 +34416741,Gorgeous 3-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75334,-73.93630999999999,Entire home/apt,299,1,3,2019-06-10,2.05,10,357 +546383,My Little Guest Room in Flushing,2680820,Linda,Queens,Flushing,40.75578,-73.81948,Private room,55,1,474,2019-05-25,5.53,3,332 +29827671,Private bedroom in large apartment in East Harlem,26000391,Yvette,Manhattan,East Harlem,40.7906,-73.94594000000001,Private room,40,7,2,2019-01-01,0.27,1,188 +11006134,Chelsea Apt w/ Private Rooftop Deck,24625891,T,Manhattan,Chelsea,40.74815,-74.00493,Entire home/apt,125,3,0,,,1,0 +28919516,3-P Room/Private Bath/Walk to Subway--Best Value,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00698,Private room,60,1,9,2019-06-06,1.0,7,177 +35540673,Beautiful Sunny & Bright Brooklyn Apartment.,119908176,Claudia,Brooklyn,Bedford-Stuyvesant,40.68603,-73.92005999999999,Entire home/apt,120,3,1,2019-06-29,1.0,1,9 +18312568,Private room near Central Park,4111729,Mich,Manhattan,Upper East Side,40.78093,-73.95499000000001,Private room,100,5,71,2019-06-27,2.67,1,66 +27185508,Large 1 Bedroom in the Heart of New York City,2596736,Barry,Manhattan,Chelsea,40.74017,-73.99485,Entire home/apt,175,3,6,2019-07-07,0.57,1,5 +695216,Private Suite in Historic House,3558158,Natalie,Brooklyn,Fort Greene,40.69096,-73.97241,Entire home/apt,134,2,119,2018-01-25,1.46,1,0 +13883249,West Village - Location Location Location!,48852712,Eric,Manhattan,West Village,40.73756,-73.99858,Entire home/apt,147,3,6,2016-12-26,0.17,1,0 +18629621,Bushwick Studio with Private Porch,83141510,Alex,Brooklyn,Bushwick,40.70382,-73.91745999999999,Entire home/apt,100,1,0,,,1,0 +13433684,"Cozy room w/AC, 2 blocks from L train",64440476,Matt,Brooklyn,Williamsburg,40.70353,-73.9344,Private room,55,2,7,2016-09-05,0.19,1,0 +13102409,Large & comfortable studio in Financial District,2233249,Eve,Manhattan,Financial District,40.70931,-74.00959,Entire home/apt,110,6,5,2017-07-01,0.13,1,0 +22814281,cozy haven,168613171,Margarita,Brooklyn,Williamsburg,40.71286,-73.95648,Private room,175,3,0,,,1,365 +27103785,Beautiful 1 bd NYC Home with a View,2849280,Benjamin,Manhattan,Financial District,40.70617,-74.00948000000001,Entire home/apt,200,7,5,2019-01-01,0.46,1,0 +13952428,Cozy room w/private entrance in East Williamsburg,67961258,Kaitlin,Brooklyn,Williamsburg,40.70883,-73.93873,Private room,67,1,14,2017-04-12,0.4,1,0 +5581272,"Home 4 Medical Professionals - The ""Horripilation""",26377263,Stat,Queens,Far Rockaway,40.59535,-73.75441,Private room,38,30,4,2018-11-03,0.08,43,222 +21688734,Room located in the heart of Williamsburg,3282906,Johana,Brooklyn,Williamsburg,40.71359,-73.96553,Private room,80,1,5,2019-01-08,0.25,1,17 +24712037,Stylish Design Apartment in the Heart of Brooklyn,13490977,Celia,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94674,Entire home/apt,198,2,14,2019-05-31,1.01,1,0 +8001648,New 3BR~Prime Midtown~Design Loft,2119276,Host,Manhattan,Midtown,40.74947,-73.98257,Entire home/apt,250,90,3,2017-05-31,0.08,39,0 +3121176,1 BEDROOM APT IN PRIME WILLIAMSBURG,3663033,Jehan,Brooklyn,Williamsburg,40.71662,-73.95993,Entire home/apt,50,7,4,2016-03-09,0.07,1,0 +18071246,A3Small Cozy Room in Long Island City,79105834,Leo,Queens,Long Island City,40.75541,-73.9335,Private room,35,1,90,2019-06-22,3.31,9,273 +11497795,"Cheap, clean, 15 min. to Manhattan",6067526,Matt,Queens,Jackson Heights,40.74852,-73.8889,Private room,50,1,0,,,1,188 +2619802,Incredible 2-BR w/ Kitchen Island!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95675,Entire home/apt,139,30,4,2018-07-29,0.07,29,308 +18108981,HUGE PRISTINE VERSACE DUPLEX APT. IN BROOKLYN,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69171,-73.9575,Entire home/apt,195,4,80,2019-07-02,3.0,3,218 +19603055,1- Bedroom in East Harlem,25959120,Dan,Manhattan,East Harlem,40.78668,-73.94247,Private room,85,2,2,2017-08-16,0.08,1,0 +31983211,Hip Harlem Apartment,4499538,Brett,Manhattan,Harlem,40.80902,-73.94185999999999,Entire home/apt,175,4,6,2019-06-08,1.33,1,0 +30323806,Hidden gem... steps from Times Square,90401194,Joshua,Manhattan,Hell's Kitchen,40.76168,-73.98969,Entire home/apt,180,3,20,2019-06-25,2.87,1,79 +5366126,Great Private Bedroom,569577,John,Brooklyn,Prospect-Lefferts Gardens,40.66126,-73.96257,Private room,75,1,0,,,1,0 +20174127,"Nice, Clean and Comfortable Flat, Upper East Side",2778578,Isin,Manhattan,Upper East Side,40.77553,-73.9539,Private room,154,4,5,2018-09-06,0.22,1,27 +10192564,"Lovely,Spacious,UpperWestSide/Spend a SummerMonth",52320041,Lori,Manhattan,Upper West Side,40.80114,-73.96772,Entire home/apt,250,30,17,2018-09-05,0.47,1,190 +13222669,"Charming Garden Studio in Sunnyside, NY",5955262,Leticia,Queens,Long Island City,40.73487,-73.92145,Entire home/apt,95,5,46,2019-06-24,1.23,1,244 +34851748,X,184750740,Juice,Bronx,Morrisania,40.82504,-73.90918,Shared room,80,1,0,,,4,365 +22259472,"Bright, Spacious Apartment in Prime Brooklyn",49019705,Pamela,Brooklyn,Bushwick,40.70383,-73.92663,Entire home/apt,200,1,0,,,1,0 +6227680,"Amazing 2 Bedroom Bklyn apt, near SUNY Downstate!",23548583,Shari,Brooklyn,East Flatbush,40.65336,-73.94345,Entire home/apt,109,30,23,2018-10-27,0.46,2,188 +29835159,Bright and Comfortable Home in Brooklyn,16398154,Jennifer,Brooklyn,Prospect Heights,40.68162,-73.96818,Entire home/apt,149,2,8,2019-04-29,1.0,1,0 +14388889,Sunny Private bedroom in Bushwick!,20302754,Ruben,Brooklyn,Bushwick,40.69494,-73.91298,Private room,45,3,101,2019-07-02,2.89,2,60 +36182819,Luxurious Studio One Stop To Manhattan!,247335568,Evelyn,Queens,Long Island City,40.74717,-73.94254000000001,Entire home/apt,200,1,0,,,7,5 +21483653,Cozy Private Room with Patio in Bed-Stuy!,66234873,Zach,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94235,Private room,50,5,62,2019-06-23,3.58,1,12 +20686965,"Beautiful Home in Historic, Ditmas Park, Brooklyn",13804630,Kelsey,Brooklyn,Flatbush,40.64068,-73.9641,Entire home/apt,165,6,0,,,1,0 +26194019,Cozy 1-Bedroom Apartment 2 Blocks from the Subway,66196101,Francesco,Brooklyn,Bay Ridge,40.62991,-74.02458,Entire home/apt,95,2,6,2018-08-04,0.48,1,0 +3766770,Romantic 1 bedroom Part2 Harlem USA,17479416,Tae,Manhattan,East Harlem,40.80592,-73.93653,Entire home/apt,150,3,72,2019-04-29,1.23,2,283 +22007950,Bushwick/Brooklyn Charming Private Room,49735439,Merida,Queens,Ridgewood,40.69587,-73.9045,Private room,65,3,1,2018-05-31,0.07,2,125 +33129033,Sweet,41941061,Johanna,Manhattan,Hell's Kitchen,40.76655,-73.99216,Private room,350,1,0,,,1,89 +16555274,It is a two bedroom apartment,7229636,Ismael,Bronx,Concourse,40.8262,-73.92557,Entire home/apt,150,4,84,2019-07-03,2.87,1,93 +33249193,Harlem Sanctuary 2,178833771,Danese,Manhattan,Harlem,40.82172,-73.94019,Private room,55,3,2,2019-05-09,0.67,3,353 +15233387,#Bluebird Elegant 1-BR Apartment Near Times Square,95459395,Bluebird,Manhattan,Midtown,40.7671,-73.98148,Entire home/apt,300,30,0,,,18,364 +763965,East Harlem Studio,4027283,Mariko,Manhattan,East Harlem,40.80826,-73.93401,Entire home/apt,50,4,24,2015-03-02,0.3,1,25 +10423846,Renovated sunny studio,24796157,Soonbin,Brooklyn,Fort Greene,40.68797,-73.97288,Entire home/apt,175,5,16,2019-05-20,0.46,1,129 +21892834,Executive Museum 1 BR Elevator Best Location,61391963,Corporate Housing,Manhattan,Upper West Side,40.78383,-73.97529,Entire home/apt,133,30,8,2019-06-30,0.43,91,301 +26318555,Beautiful 1BDR UWS Apartment Close to Central Park,3274004,Sara,Manhattan,Upper West Side,40.78343,-73.9823,Entire home/apt,265,2,5,2019-05-22,0.49,1,5 +23027784,Stylish Upper East Side Brownstone Studio,56283770,Lia,Manhattan,Upper East Side,40.76327,-73.96766,Entire home/apt,145,30,1,2019-06-17,1.0,6,122 +14822309,"Relaxing, spacious, private room Riverside Drive",16978120,Chip,Manhattan,Harlem,40.82966,-73.95021,Private room,65,30,7,2019-04-30,0.21,2,225 +28367470,Joyous private Room,212071658,Brian,Brooklyn,Bushwick,40.691590000000005,-73.90399000000001,Private room,65,2,30,2019-06-13,2.96,5,359 +33015342,Nice Room in this EV Gem!,245637171,Min,Manhattan,East Village,40.72843,-73.98581,Private room,62,30,1,2019-05-28,0.71,8,310 +495348,Classic Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.69011,-73.97691,Entire home/apt,160,4,2,2013-03-31,0.03,2,34 +1960358,Couples and Family Paradise.,10129919,Jorge,Brooklyn,Cypress Hills,40.68528,-73.87819,Entire home/apt,80,3,225,2019-06-30,3.49,2,250 +28608920,Chic modern studio,141300,Mel,Manhattan,Upper West Side,40.78581,-73.97179,Entire home/apt,165,1,8,2019-05-06,0.88,1,87 +13893494,Idyllic Two Bedroom Apt in the heart of Chelsea,2700098,Kendall,Manhattan,Chelsea,40.73938,-74.00001999999999,Entire home/apt,350,3,6,2017-05-29,0.17,1,0 +33407038,Manhattan Luxury Private Bedroom!!,224317184,Luke,Manhattan,Inwood,40.86214,-73.92708,Private room,90,3,1,2019-06-04,0.86,8,252 +13864705,Your home away from home...,81953225,Donald,Bronx,Wakefield,40.8947,-73.85601,Private room,52,3,63,2018-09-21,1.78,1,0 +10470258,Stylish & Inviting Brownstone Apt,53955282,Jennifer And Kenneth,Manhattan,East Harlem,40.80985,-73.93838000000001,Entire home/apt,115,3,118,2019-06-30,2.85,1,157 +32121725,The heart of NYC,32999831,Valeria,Manhattan,Theater District,40.75943,-73.98756,Entire home/apt,200,2,3,2019-05-12,0.84,1,85 +19038815,"1 Block from Subway, Central Location, Great Price",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.69144,-73.956,Private room,85,1,177,2019-06-24,7.05,3,49 +32636472,"Private, Sunny Bedroom in Washington Heights",236908324,Christopher,Manhattan,Washington Heights,40.85117,-73.94065,Private room,50,1,22,2019-07-06,5.41,1,24 +23631288,Lower East Side Oasis (private room),173406651,Dan,Manhattan,Lower East Side,40.71967,-73.98311,Private room,110,2,29,2019-03-29,2.02,2,117 +552141,Historic sundrenched apt of the Lower East Side,2712998,Greg,Manhattan,Lower East Side,40.71788,-73.98975,Entire home/apt,300,1,45,2019-06-08,0.62,1,111 +19455284,Crown Heights Guest House 2R,74541079,Abraham,Brooklyn,Crown Heights,40.6696,-73.93655,Entire home/apt,88,3,29,2019-07-01,1.26,9,46 +16230640,"Comfy, Convenient Upper West Side Condo Room",61585315,Rachel & Preston,Manhattan,Upper West Side,40.78513,-73.97737,Private room,75,2,3,2017-03-26,0.1,1,0 +28750104,Awesome 1BR in 2 room located in heart of Bushwick,109004750,JayJay,Brooklyn,Bushwick,40.69582,-73.9095,Private room,40,1,0,,,1,364 +35601251,7minutesToSubway.NearMaimonidesSmallRoom,163625145,Steven,Brooklyn,Borough Park,40.64405,-73.99125,Private room,38,2,0,,,3,171 +25804768,NEW Charming & Modern 2 Bed- Private Backyard!,193910244,Breanna,Brooklyn,Crown Heights,40.67747,-73.95085999999999,Entire home/apt,250,2,20,2018-12-30,1.58,1,0 +13846934,Apartment near Central Park,81747071,Oleg,Manhattan,Harlem,40.80227,-73.95571,Entire home/apt,165,3,34,2019-04-08,0.96,1,0 +13812808,The trendiest block in Bedford Stuyvesant Brooklyn,81311292,Byron,Brooklyn,Bedford-Stuyvesant,40.68283,-73.94375,Private room,100,1,0,,,1,0 +6775098,Soho/West Village 1 bedroom apt,23985505,Liz,Manhattan,Greenwich Village,40.72835,-74.00259,Entire home/apt,150,1,0,,,1,0 +15323284,Comfortable Chelsea Room,2657430,Rahul,Manhattan,Chelsea,40.74681,-74.00005999999999,Private room,110,7,3,2018-08-03,0.21,2,0 +8554425,14th St 1BR,45029559,Alex,Manhattan,Chelsea,40.74068,-74.00279,Entire home/apt,250,1,1,2015-09-30,0.02,1,0 +14789008,"Spacious 1BR amazing view, Beach 5 min, airport 20",26759986,Aziz,Brooklyn,Manhattan Beach,40.58249,-73.95347,Entire home/apt,150,30,2,2016-09-20,0.06,1,0 +1271103,Lovely spacious 1 Bdrm in Ridgewood,2243431,Marcelle,Queens,Glendale,40.70518,-73.89133000000001,Entire home/apt,85,2,1,2015-03-16,0.02,1,0 +21982618,A cozy apartment in Hamilton Heights!,34320483,Jonathan,Manhattan,Harlem,40.8262,-73.95035,Private room,43,3,1,2017-11-29,0.05,1,0 +18105293,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70481,-74.00805,Entire home/apt,270,30,0,,,87,365 +539160,Manhattan *SuperHost* Luxury 2 Bdrm Apt Sleeps 6+,512878,Michelle,Manhattan,Washington Heights,40.83064,-73.94076,Entire home/apt,170,1,47,2019-04-28,0.58,2,17 +10355146,Brooklyn's Finest,3530446,Maurice,Brooklyn,Crown Heights,40.67785,-73.95217,Entire home/apt,155,3,71,2019-07-01,1.81,3,302 +20745223,"Flatbush - Ditmas Park, Brooklyn, NY",19848344,Mauro,Brooklyn,Flatbush,40.6473,-73.96245,Private room,50,2,10,2019-06-28,0.97,1,178 +28089652,Boho-Chic sleeps 4 TOP FLOOR penthouse prime WBURG,23156390,Emily,Brooklyn,Williamsburg,40.71227,-73.957,Entire home/apt,122,30,5,2019-07-02,0.76,1,152 +31064733,Cozy Shared Studio 10 minutes from Times Square!,6367348,Ikenna,Manhattan,Harlem,40.80242,-73.94561999999999,Shared room,60,1,0,,,1,7 +24806098,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",75981937,Cem,Queens,Astoria,40.76197,-73.92335,Entire home/apt,140,15,2,2019-01-03,0.18,2,71 +33406453,AC Hotel New York Downtown-7 Nights Minimum,5144567,Yun,Manhattan,Financial District,40.70599,-74.00503,Private room,169,7,1,2019-06-12,1.0,13,365 +28286952,"Apr - Jun, Entire apt, UWS near park and subway!",92769975,Robert & Nira,Manhattan,Upper West Side,40.78883,-73.96848,Entire home/apt,199,8,2,2018-11-19,0.22,1,8 +31717883,Your Stay in Staten Island will be the best,237913872,Lilia,Staten Island,Concord,40.60228,-74.08324,Private room,75,2,8,2019-06-29,1.78,1,90 +2037508,Bed Stuy Apartment One Bedroom,10211848,Ben,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94445999999999,Entire home/apt,75,4,1,2014-01-03,0.01,1,0 +27636227,Astoria Artist Abode,20267436,Joe,Queens,Ditmars Steinway,40.77516,-73.90558,Private room,125,1,0,,,1,363 +31291730,NY HIGH LINE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75619,-73.99797,Private room,209,1,19,2019-06-16,3.13,8,81 +30129482,Brooklyn Apartment,9962746,Tania,Brooklyn,Fort Greene,40.688,-73.97185,Entire home/apt,80,3,2,2019-05-12,0.32,1,107 +12955454,Cozy Room in the Big Apple,33622924,Besinfe,Manhattan,Harlem,40.83018,-73.9483,Private room,50,1,116,2019-07-01,3.06,4,352 +17084539,Amazing apartment in Manhattan,296231,Chester,Manhattan,Theater District,40.75662,-73.98749000000001,Private room,300,3,0,,,1,0 +21149901,Cozy room in the heart of Brooklyn,152605245,Kristina,Brooklyn,Kensington,40.64382,-73.97774,Private room,35,3,1,2017-10-16,0.05,1,0 +12067652,Charming 1 Bedroom in Chelsea!,3555480,Melissa,Manhattan,Chelsea,40.74507,-73.99452,Entire home/apt,175,7,6,2017-09-09,0.16,1,0 +10830815,Bohemian Bedroom for Art Lovers,2276842,Debbie,Brooklyn,Williamsburg,40.7054,-73.94283,Private room,80,2,5,2017-01-01,0.15,2,0 +14967881,Luxurious Studio by Central Park - Newly Renovated,8547368,David,Manhattan,Upper East Side,40.76404,-73.96628,Entire home/apt,225,2,84,2019-06-07,2.47,1,27 +13889399,Great 3 Bedroom Apt Near Manhatthen,75919970,Scott,Queens,Ditmars Steinway,40.77415,-73.91695,Entire home/apt,125,1,1,2016-07-25,0.03,1,0 +8267425,Ridgewood/Bushwick ~ Bungalow,21148770,Ian,Queens,Ridgewood,40.70995,-73.90959000000001,Entire home/apt,170,4,6,2017-01-04,0.13,1,0 +794567,Brooklyn Oasis - Master Bedroom.,4103779,Rachel,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95953,Private room,82,3,62,2019-06-22,0.8,1,247 +15234771,"LES ‘GEM’ - 1BR APARTMENT, GREAT LOCATION, STOCKED",85923274,Stewart,Manhattan,Lower East Side,40.72195,-73.98698,Entire home/apt,214,2,15,2019-05-20,0.48,1,17 +2015586,Wonderful bright Brooklyn apt,7127362,Lydia,Brooklyn,Clinton Hill,40.6841,-73.96691,Entire home/apt,130,5,9,2016-01-06,0.13,1,0 +26987448,Colorful and Sunlit Bushwick!,1110208,Kat,Brooklyn,Bushwick,40.70506,-73.91731,Entire home/apt,100,2,9,2019-06-16,0.77,1,0 +6555262,Comfortable and Spacious Bedroom,14098887,Fareed,Queens,Ridgewood,40.70503,-73.91433,Private room,35,2,0,,,1,0 +20147628,Beautiful modern apartment with private deck!,4391397,Eva,Brooklyn,Windsor Terrace,40.65783,-73.98236,Entire home/apt,150,2,4,2019-04-28,0.34,2,4 +3383662,Affordable Room in Beautiful Apt !,6146050,Victoria,Manhattan,Financial District,40.70885,-74.002,Private room,84,15,0,,,2,0 +18307376,Sunset Park Gem SLR,26634538,Joe,Brooklyn,Borough Park,40.64275,-74.00183,Private room,42,2,7,2018-04-02,0.26,1,0 +3611620,Private Room In Gorgeous Apartment July 1st-30th!,18198406,Joseph,Brooklyn,Bedford-Stuyvesant,40.692,-73.93852,Private room,45,1,13,2017-07-31,0.26,1,0 +24360039,Lovely Cozy Studio Upper East Side Manhattan,150629197,Lana,Manhattan,Upper East Side,40.776340000000005,-73.94713,Entire home/apt,168,14,17,2019-05-18,1.18,2,95 +2835159,Large studio,7915183,Alfonso,Manhattan,Midtown,40.75546,-73.96762,Entire home/apt,240,1,1,2014-05-19,0.02,1,0 +16140940,"Beautiful, modern, near Prospect Park",105315535,Ben,Brooklyn,Prospect Heights,40.67549,-73.96598,Entire home/apt,158,30,7,2019-03-30,0.26,3,37 +34491852,550 Square Feet Suite near Central Park,261750091,The Michelangelo,Manhattan,Theater District,40.76112,-73.98376999999999,Private room,100,1,1,2019-06-30,1.0,7,320 +17366174,"Modern & Luxurious 1 Bedroom, close to A/J Trains!",40426686,Amin,Queens,Ozone Park,40.68572,-73.8493,Entire home/apt,69,4,0,,,1,0 +6184748,"Sunny, Charming Williamsburg 1-BR",8389213,Danny,Brooklyn,Williamsburg,40.70778,-73.94953000000001,Entire home/apt,125,4,7,2016-09-29,0.14,1,0 +31121525,"Charming 2Br in the middle of LES, SoHo",214869202,Joey,Manhattan,Lower East Side,40.72181,-73.98946,Entire home/apt,250,1,36,2019-06-22,6.17,1,10 +23609559,"Lofted bedroom with private bath, yard & tub",1699871,Chloe,Brooklyn,Bushwick,40.68477,-73.908,Private room,125,3,1,2018-03-12,0.06,3,1 +20175518,Extra Large 1 Bedroom in Kensington/Ditmas Park,6658169,Michelle,Brooklyn,Kensington,40.63907,-73.97399,Entire home/apt,150,2,0,,,1,0 +4040900,Couch in times square,3789165,Lisa,Manhattan,Theater District,40.75974,-73.9866,Shared room,59,2,58,2019-06-01,0.99,1,345 +20139305,Spacious 1BR near park & subways,6985109,Geoffrey,Brooklyn,Prospect Heights,40.67335,-73.96763,Entire home/apt,121,9,21,2019-06-18,1.14,1,179 +30747260,"Spacious room in quiet Sunset Park, Brooklyn",28821748,Jieyu,Brooklyn,Sunset Park,40.64098,-74.01061,Private room,30,10,1,2019-01-01,0.16,1,0 +30499662,Beautiful Bedroom with Private Bath in Brooklyn,228900197,Gina,Brooklyn,Williamsburg,40.70922,-73.94255,Private room,55,2,2,2019-01-07,0.32,1,0 +20934056,"Beautiful, spacious apartment in Brooklyn",140293912,Awilda,Brooklyn,Kensington,40.64674,-73.97946999999999,Private room,137,3,5,2019-01-02,0.23,3,0 +16158270,"Studio w/EIK & Backyard, 23 Minutes to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.68301,-73.95305,Entire home/apt,76,30,7,2019-06-29,0.27,3,310 +16315325,"Sunny Basement Studio Apartment, 1 block to Park",13741210,Deborah,Brooklyn,Flatbush,40.64849,-73.96585,Entire home/apt,89,2,9,2018-10-01,0.29,1,0 +22634088,Brooklyn Condominium With Balcony,155607686,Jenna,Brooklyn,Gravesend,40.58876,-73.97349,Private room,39,3,20,2019-06-15,1.29,1,324 +33404876,New York City!! Times Square Home!!!,251564307,Lucy,Manhattan,Hell's Kitchen,40.76325,-73.98592,Entire home/apt,285,3,3,2019-06-11,1.8,1,215 +10390252,NEW listing! Large Prospect Park 1 Bed,2581816,Lindsay,Brooklyn,Flatbush,40.65003,-73.96,Entire home/apt,80,7,0,,,1,0 +898861,"Private One Bedroom Suite, 45 min from City",3546135,Jeanette & Henry,Queens,Briarwood,40.71156,-73.8091,Entire home/apt,63,3,104,2019-06-19,1.35,1,256 +29628693,Sanctuary Apartment in Ideal NYC Location,22178020,Lewis,Manhattan,Chinatown,40.71787,-73.99461,Entire home/apt,100,3,3,2019-07-01,3.0,1,301 +34674199,"Bright, sunny, home in Clinton Hill w/amazing roof",5441056,Elissa,Brooklyn,Bedford-Stuyvesant,40.68746,-73.9576,Private room,85,2,4,2019-07-03,2.31,1,67 +15430782,Most walkable location for fun,14016646,Justin,Manhattan,Greenwich Village,40.72962,-73.99932,Private room,100,5,18,2017-10-29,0.56,1,0 +16275030,Beautiful Bed-Stuy Room,106442885,Ava,Brooklyn,Bedford-Stuyvesant,40.68865,-73.93684,Private room,29,1,139,2019-06-24,4.43,2,2 +19721535,Rockaway Beach Oasis,12162815,Annelise,Queens,Rockaway Beach,40.59093,-73.81238,Entire home/apt,140,2,9,2019-06-14,0.38,1,36 +34937685,New Apartment in Manhattan - New York City,221213143,David,Manhattan,Kips Bay,40.74257,-73.98146,Entire home/apt,350,1,6,2019-06-30,3.83,9,333 +9881195,HUGE Apartment - Close to Subway,5913612,John-Paul,Queens,Astoria,40.76197,-73.92208000000001,Entire home/apt,150,1,1,2016-01-03,0.02,1,0 +6197119,Sunny 1 bd -Prospect Park!,26908204,Bridgette,Brooklyn,Crown Heights,40.66356,-73.95666999999999,Entire home/apt,90,4,59,2019-06-26,1.17,1,28 +13654347,Upper West Side Classic WHOLE 2 Bedroom apt,23684,Zhenya,Manhattan,Upper West Side,40.797740000000005,-73.97274,Entire home/apt,250,3,5,2019-01-05,0.15,1,23 +5036659,Relaxing Brooklyn Oasis - Prime Location,25999700,Jacqueline,Brooklyn,Crown Heights,40.67615,-73.95776,Private room,50,14,43,2019-06-22,0.8,1,313 +2076101,Cozy 1BR in Morningside Heights,10610482,Robyn,Manhattan,Morningside Heights,40.81233,-73.96101,Entire home/apt,80,1,1,2016-03-20,0.02,1,0 +35350124,2 BEDROOM APT HEART OF WILLIAMSBURG,5976443,Gonzalo,Brooklyn,Williamsburg,40.71071,-73.96049000000001,Entire home/apt,150,2,6,2019-07-06,6.0,1,137 +2223247,Lovely Duplex (2-story) flat on the UES,11111521,Victoria,Manhattan,Upper East Side,40.77266,-73.95257,Entire home/apt,220,3,20,2019-01-02,0.32,1,31 +32993357,Private room in a Bohemian JP Loft! a,96737879,Yury,Brooklyn,Williamsburg,40.70263,-73.93488,Private room,70,5,1,2019-04-20,0.37,3,4 +15307603,Beautiful Large Room,92195100,Airamis,Bronx,Bronxdale,40.85236,-73.86632,Private room,35,1,114,2018-10-09,3.48,1,0 +21139003,"Spacious, Beautiful, 1 or 2 BR in Cobble Hill",152505727,Jack,Brooklyn,Columbia St,40.68787,-74.00036999999999,Entire home/apt,150,15,5,2019-06-30,0.25,1,105 +19696972,Stockton Studios,98093770,Dane,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94839,Private room,44,3,13,2018-03-27,0.54,1,0 +8013358,Bedford-Stuyvesant 3 bedroom 2 bathroom duplex,8687068,Terrie,Brooklyn,Bedford-Stuyvesant,40.68318,-73.95002,Entire home/apt,240,1,33,2019-06-24,2.96,1,83 +20332842,Times Square Summer Retreat,145072632,Andrea,Manhattan,Hell's Kitchen,40.76181,-73.98865,Private room,110,3,111,2019-07-01,4.95,2,128 +7729804,Spacious Pre-War in Crown Heights,18066933,Emily,Brooklyn,Crown Heights,40.67517,-73.94421,Private room,50,1,2,2016-07-04,0.04,2,0 +7600297,Midcentury Inspired Plantlovers Apt,7399447,Lee And Kara,Brooklyn,Williamsburg,40.71163,-73.95186,Entire home/apt,250,7,33,2017-01-14,0.7,1,0 +10853955,"Sunny, private room; Quick to NYC. Females only.",35494734,Jennifer,Queens,Woodside,40.75293,-73.90304,Private room,50,4,49,2019-05-08,1.21,2,211 +35314580,Fabulous 3BR in Prime Times Square,264620263,Sheryl,Manhattan,Hell's Kitchen,40.76235,-73.98995,Entire home/apt,335,3,3,2019-06-26,3.0,1,144 +13168302,Gorgeous brownstone duplex in prime Boerum Hill,64098159,Lucinda,Brooklyn,Boerum Hill,40.68662,-73.98305,Entire home/apt,300,30,0,,,1,36 +29133348,New! Entire studio apartment with lofted bedroom!!,72006801,Kevin,Queens,Ridgewood,40.70208,-73.91125,Entire home/apt,120,2,2,2018-11-24,0.24,1,5 +31671043,Spacious Sun-Drenched UWS Apartment,4005376,Adam,Manhattan,Upper West Side,40.78966,-73.9776,Entire home/apt,107,25,1,2019-05-06,0.47,1,170 +3473305,One bedroom apartment,16718001,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95013,Entire home/apt,50,3,15,2016-06-21,0.25,1,0 +21563815,Architect's duplex Apt in Historic Brooklyn,2179149,Olivier,Brooklyn,Bedford-Stuyvesant,40.681,-73.92894,Entire home/apt,150,4,3,2018-10-23,0.16,1,0 +8458966,Bedroom In Midtown East,24559181,Aldi,Manhattan,Upper East Side,40.76301,-73.96734000000001,Private room,95,1,60,2019-05-24,1.31,3,351 +20306217,The inner palace,133810925,Andrew,Queens,Rosedale,40.66458,-73.73464,Private room,62,1,144,2019-06-24,6.21,3,0 +33932313,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70876,-73.89704,Private room,34,30,0,,,23,322 +21518777,Williamsburg high ceiling loft,2424168,Tom,Brooklyn,Williamsburg,40.71167,-73.95785,Entire home/apt,140,3,2,2017-11-18,0.1,1,0 +25262112,Heart of East Village Apartment,61786922,Emily,Manhattan,East Village,40.73029,-73.98836,Entire home/apt,62,4,4,2018-07-08,0.29,1,5 +7987212,Large Private Bedroom in Williamsburg,30487854,Ben,Brooklyn,Williamsburg,40.71067,-73.96005,Private room,68,5,14,2019-07-03,0.3,2,10 +23256946,Cozy Studio by the Park,3732261,Sidney,Brooklyn,Prospect-Lefferts Gardens,40.66179,-73.95879000000001,Entire home/apt,75,4,2,2019-01-17,0.12,1,0 +8942467,Your own hip and cozy 1BD apartment,36821356,Vitaly And Lena,Brooklyn,Borough Park,40.62251,-73.99396999999999,Entire home/apt,96,14,93,2019-06-23,2.06,1,73 +15334973,Chic room by the park in Bushwick,12573650,Patrick,Brooklyn,Bushwick,40.70191,-73.92298000000001,Private room,38,1,11,2017-04-19,0.35,1,0 +35005862,Sonder | 21 Chelsea | Classic 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74288,-73.99438,Entire home/apt,275,29,0,,,327,365 +11138618,"Bright, Spacious, Brooklyn Bungalow",57885166,Emily,Brooklyn,Gowanus,40.67153,-73.988,Private room,70,1,3,2016-03-28,0.07,1,0 +76761,Eveland the Place to Stay & Enjoy a 5-⭐️ 2bdrm,118971,Evelyn,Brooklyn,South Slope,40.66552,-73.99019,Entire home/apt,169,2,398,2019-06-28,3.97,3,182 +8858228,Spacious yet cozy apt; heart of BK,2232742,Kate,Brooklyn,Cobble Hill,40.68954,-73.99383,Entire home/apt,200,5,7,2019-01-01,0.16,1,0 +34204893,Gorgeous spacious 1 bedroom apartment,85773188,Mark,Brooklyn,Brighton Beach,40.57589,-73.96636,Entire home/apt,86,1,10,2019-07-08,9.09,1,20 +22088276,Spacious and peaceful apartment in Nolita / SoHo,31880119,Zach,Manhattan,Nolita,40.72382,-73.99540999999999,Entire home/apt,175,2,9,2018-08-26,0.47,1,0 +18196956,Beautiful 1 BR 1 Bath in Boerum Hill Brooklyn,3859890,Aditi,Brooklyn,Boerum Hill,40.6891,-73.9874,Private room,53,1,10,2019-03-21,0.38,1,0 +22802275,The clove,168501789,Edward,Brooklyn,Prospect-Lefferts Gardens,40.65676,-73.94139,Entire home/apt,150,3,1,2018-06-14,0.08,1,363 +1891118,Large Studio apartment,9831559,Cassi,Brooklyn,Bedford-Stuyvesant,40.68285,-73.95111999999999,Entire home/apt,100,4,10,2017-06-06,0.24,1,0 +28181805,Harlem White - City College,11099966,James,Manhattan,Harlem,40.82162,-73.94901999999999,Shared room,45,2,54,2019-06-26,5.61,2,22 +16146442,Affordable Bedroom in Brooklyn,20319948,Cesar & Nadia,Brooklyn,Crown Heights,40.66838,-73.93134,Private room,50,4,28,2018-04-30,0.95,1,0 +8533457,"Close to everything, transportation",44924379,Roland,Queens,Jamaica,40.69872,-73.78614,Private room,70,1,68,2019-06-13,1.5,3,349 +24780232,Apartment in sun drenched Upper Manhattan,17778872,Jacqueline,Manhattan,Morningside Heights,40.80937,-73.95881,Entire home/apt,350,3,0,,,1,0 +29301889,Spacious place w/ private bathroom,105572926,Matt,Brooklyn,Crown Heights,40.67636,-73.91932,Private room,85,2,2,2018-11-06,0.24,1,0 +30778977,Quiet and cute bedroom in a 2 bedroom apartment,60370951,Emanuella,Queens,Astoria,40.77677,-73.93521,Private room,100,3,0,,,2,343 +478832,Gorgeous 2 bdrm in Carroll Gardens,2371814,Jennifer,Brooklyn,Carroll Gardens,40.67579,-73.99968,Entire home/apt,150,6,2,2014-05-20,0.03,1,0 +27304339,纽约多单元大厦,190324721,Jun Jun,Queens,Flushing,40.76003,-73.83306999999999,Private room,73,1,25,2019-06-18,2.43,4,317 +36042727,Lovely Private Corner Room in Bushwick,249235228,Bora,Brooklyn,Bedford-Stuyvesant,40.68996,-73.92669000000001,Private room,55,3,0,,,1,84 +36108975,Very Cozy Van,10407935,Meng,Manhattan,SoHo,40.72427,-73.99849,Entire home/apt,89,1,0,,,8,71 +35283648,Luxury 3 bedroom home close to LaGuardia 8 guests,228634418,Joseph,Queens,East Elmhurst,40.75946,-73.89019,Entire home/apt,235,2,10,2019-07-07,8.33,1,321 +20710022,Your Home Away from Home,148261815,Dike,Manhattan,Harlem,40.80171,-73.95121999999999,Private room,55,10,6,2018-09-30,0.28,1,156 +15115532,Cozy Duplex Studio in Manhattan,8832035,Dalibel,Manhattan,Kips Bay,40.7401,-73.98123000000001,Entire home/apt,163,2,9,2019-01-01,0.27,1,0 +21265363,"2 Bedrooms For Groups, GREAT LOCATION",14552154,Leslie,Manhattan,Midtown,40.74517,-73.98484,Private room,231,2,12,2019-06-15,0.65,4,165 +33592861,Brand new private apartment 5 minutes from JFK!,46789694,Tapashi,Queens,Springfield Gardens,40.66821,-73.75263000000001,Entire home/apt,50,1,16,2019-06-30,6.0,2,304 +34501332,450 West,74514078,Michele,Manhattan,Washington Heights,40.8362,-73.94063,Private room,65,3,5,2019-06-26,3.0,1,33 +11279820,Newly Renovated 2 Bedroom in Soho!,22292023,Jordon,Manhattan,Lower East Side,40.72224,-73.99192,Entire home/apt,170,1,0,,,1,0 +28456602,靠近机场交通方便明亮大房间#3,156547988,Minying,Queens,Ozone Park,40.67743,-73.84940999999999,Private room,65,1,5,2019-06-14,0.5,4,334 +2198970,BEAUTIFUL 1 BEDROOM,4173868,Maryam,Manhattan,Washington Heights,40.84531,-73.93583000000001,Private room,55,7,9,2017-09-22,0.14,1,0 +24692025,Hermoso Penthouse con terraza privada.,163421878,Any,Queens,Woodside,40.743120000000005,-73.91185,Private room,55,1,25,2019-06-17,1.75,3,332 +35608108,"BEST LOCATION IN WILLIAMSBURG, CLOSE TO SUBWAY",75395247,Ramiro,Brooklyn,Williamsburg,40.71243,-73.9604,Entire home/apt,160,2,3,2019-07-01,3.0,1,309 +35521170,Small cozy bedroom in the heart of Manhattan.,254015746,Niki,Manhattan,Midtown,40.7459,-73.98663,Private room,280,2,1,2019-06-15,1.0,1,363 +7818701,Brooklyn Studio near ALL subways,41162207,Edixon,Brooklyn,Fort Greene,40.68854,-73.97789,Entire home/apt,85,2,4,2017-01-20,0.13,1,0 +351859,Exquisite Spacious Studio in Midtown,417652,Ron,Manhattan,Chelsea,40.74964,-73.99158,Entire home/apt,265,4,75,2019-07-01,0.86,1,324 +21421438,Iconic Apartment in Times Square Steps to Broadway,143555138,Valdo,Manhattan,Hell's Kitchen,40.76131,-73.99361999999999,Entire home/apt,185,1,85,2019-07-02,4.08,1,172 +6043733,Cozy 1 BR - Prospect Heights,6475110,Meg,Brooklyn,Crown Heights,40.67652,-73.96146999999999,Entire home/apt,100,2,3,2016-10-27,0.09,1,0 +26196029,PRIME Williamsburg Big Quiet room Private Balcony,2773082,Freddie,Brooklyn,Williamsburg,40.71595,-73.96001,Private room,95,3,7,2019-06-30,1.11,1,6 +34569023,The Feel Good in Ridgewood,260821048,Saba,Queens,Ridgewood,40.70732,-73.90896,Private room,48,1,20,2019-07-06,10.17,2,258 +22972832,"Main st APT w PRIVATE Bath, bedroom, living room.",161899037,Tony,Queens,Flushing,40.757940000000005,-73.83234,Entire home/apt,150,2,54,2019-06-24,3.1,7,70 +18226843,Private bedroom in Murray Hill / Kips Bay,3600065,Ariel,Manhattan,Murray Hill,40.74612,-73.97684,Private room,77,2,3,2017-08-17,0.12,1,0 +68099,Cozy room in Upper West Side,323517,Deda,Manhattan,Upper West Side,40.80082,-73.9652,Private room,109,1,104,2019-06-25,1.05,2,364 +13862929,Spacious 1 BD in Williamsburg next to L train,23396858,Jesse,Brooklyn,Williamsburg,40.71256,-73.94505,Entire home/apt,125,1,3,2016-09-18,0.09,1,0 +320877,Entire 2 Bedroom Apartment in Williamsburg,1366194,Fabiana,Brooklyn,Williamsburg,40.712790000000005,-73.95852,Entire home/apt,225,4,26,2017-06-24,0.73,1,0 +33969898,Private room near Columbia University,256504089,Gaea,Manhattan,Upper West Side,40.80337,-73.96511,Private room,69,20,0,,,1,0 +34401135,Awesome Private Room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91375,Private room,50,2,1,2019-05-05,0.45,10,361 +4308798,Upper East Side 1-Bedroom,16906759,Karen,Manhattan,Upper East Side,40.77254,-73.96193000000001,Entire home/apt,100,2,58,2019-06-11,1.02,1,9 +26946148,Relax in Harlem,101388075,Imogene,Manhattan,Harlem,40.82237,-73.94001,Entire home/apt,104,1,18,2019-06-19,1.53,1,34 +12710376,Private Bedroom #5,66269338,Peggy,Queens,Jackson Heights,40.74839,-73.88818,Private room,60,1,14,2019-05-20,0.4,4,300 +18252876,Charming Spacious Studio in UWS with balcony,60022283,Audrey,Manhattan,Morningside Heights,40.80507,-73.96414,Entire home/apt,116,3,16,2019-05-25,0.61,1,0 +12812630,Private Room rent temporary stay,69866168,Munnesa,Queens,Jamaica,40.69172,-73.79495,Private room,60,1,109,2017-07-30,2.84,1,98 +32928652,Big Room in Times Square,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76135,-73.98698,Private room,140,3,3,2019-06-24,1.67,3,45 +2487073,18th Floor Bright Bedroom with Private Bathroom,6194434,Chiara,Manhattan,Financial District,40.70933,-74.00381,Private room,169,8,15,2019-06-10,0.24,1,60 +20322645,Beautiful Bright Times Square Apartment,144992525,Edith,Manhattan,Theater District,40.758790000000005,-73.98155,Entire home/apt,185,3,5,2018-04-08,0.22,1,0 +27978257,1BR/Studio Superb for a professional (Hidden by Airbnb) Home,28190490,H,Manhattan,Hell's Kitchen,40.75435,-73.99744,Entire home/apt,90,4,6,2019-04-07,0.56,1,3 +32634839,Sonder | Stock Exchange | Cozy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70778,-74.01074,Entire home/apt,205,2,8,2019-06-16,2.64,327,327 +2310445,Super Cute Chelsea One Bedroom,10973455,Amy,Manhattan,Chelsea,40.74935,-73.99723,Entire home/apt,150,1,49,2019-06-16,0.75,1,0 +450578,Serene Room...,9647066,Maria Luiza,Brooklyn,Sunset Park,40.6397,-74.0162,Private room,55,7,28,2019-05-12,0.32,2,333 +9003691,Luxury Studio Apartment in NYC'S Chelsea District,30283594,Kara,Manhattan,Chelsea,40.7449,-73.99167,Entire home/apt,109,30,1,2016-10-31,0.03,121,184 +404923,Private Garden Entry,2017752,Jeruschka,Brooklyn,Windsor Terrace,40.64791,-73.97904,Entire home/apt,88,3,243,2019-06-24,2.75,1,217 +2033866,East Village 2 Bed 2 Floor Luxury Apartment,7846216,Rafael,Manhattan,East Village,40.72635,-73.97595,Entire home/apt,290,1,114,2018-10-07,1.71,1,157 +33715743,BIENVENIDOS MI CASA ES TU CASA,253118370,Mary,Queens,Corona,40.74666,-73.85781,Private room,50,1,6,2019-06-29,2.43,2,164 +9997449,Entire 2br apartment in the heart of Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73927,-73.99833000000001,Entire home/apt,220,1,8,2016-08-29,0.19,2,0 +31858749,"Quiet, comfortable & bright apt in East Village",2582224,Daniel,Manhattan,East Village,40.72749,-73.98674,Entire home/apt,150,5,1,2019-04-30,0.43,1,249 +21471116,Sweet Home in the Heart of Manhattan,16301391,Majer,Manhattan,Midtown,40.74557,-73.98216,Private room,130,1,9,2017-12-27,0.44,1,0 +12955940,"large, affordable, clean,convenient",71211231,Ehsan,Bronx,Fordham,40.85396,-73.89872,Private room,34,1,2,2016-06-14,0.05,1,0 +35855199,Beautiful bedroom in NYC! Minutes to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80143,-73.93916,Private room,80,3,0,,,3,205 +5803875,"New, Modern, Brooklyn Apartment ",278576,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.95071,Entire home/apt,114,2,81,2019-06-20,1.57,2,160 +13058496,Sunny Private Room in Brooklyn,72315258,Anna,Brooklyn,Crown Heights,40.676190000000005,-73.93866,Private room,28,1,0,,,1,0 +15454775,Commuters paradise - Cozy Townhouse!,22789212,Xenios,Queens,Long Island City,40.74965,-73.94019,Private room,99,2,4,2018-07-16,0.16,1,0 +3301484,"Great Apt, Great Area",56920,Linda,Manhattan,Upper West Side,40.80118,-73.97063,Private room,135,2,0,,,2,352 +24376295,Studio Apartment in Bed Stuy!,25741946,Ellie,Brooklyn,Bedford-Stuyvesant,40.68073,-73.92804,Entire home/apt,110,1,2,2018-12-31,0.19,1,0 +12846033,Spacious West Village Loft Studio,62225580,Elin,Manhattan,West Village,40.73326,-74.00844000000001,Entire home/apt,225,14,0,,,1,0 +18229365,Beautiful apartment ~25min from Times Square,6358504,Yaroslav,Bronx,Mount Hope,40.84499,-73.91157,Entire home/apt,60,5,3,2018-08-21,0.13,1,0 +16261522,Big Sunny Room in NYC (B5),5164854,Lilia,Manhattan,Harlem,40.81943,-73.9387,Private room,54,5,8,2018-09-03,0.31,8,332 +33375266,"Cozy private room, walking distance from LGA, RM-3",187822288,Zahir,Queens,East Elmhurst,40.77069,-73.87286,Private room,55,1,27,2019-06-24,8.44,5,171 +17476990,"Quiet room, view on garden 5m walk from J train",32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68759,-73.92356,Private room,41,1,12,2018-08-26,0.42,3,0 +23623267,"Spacious, 1 bdr apartment. Great light and views.",24648109,Tanya,Manhattan,Battery Park City,40.70615,-74.01719,Entire home/apt,180,4,0,,,1,0 +25497712,NEW Perfect private room near Two Bridges IV,39528519,Max,Manhattan,Lower East Side,40.71252,-73.98765,Private room,94,15,0,,,28,185 +16132114,Sunny Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.632670000000005,-74.08369,Private room,34,3,24,2019-06-10,0.78,3,159 +15966074,Evergreen Upper Bed for Female Traveler 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68313,-73.87077,Shared room,19,2,76,2019-06-20,2.4,6,120 +30820590,Sun-Soaked Historic Brownstone Apartment,4408261,Peter,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95812,Entire home/apt,130,3,1,2019-01-02,0.16,1,0 +35655950,Gorgeous Super Clean Guest Suite,80443454,Kathryn,Queens,Kew Gardens Hills,40.71708,-73.82411,Private room,74,1,10,2019-07-07,10.0,1,160 +17786762,"Lovely 1 Bdrm, Glittering City Lights & Waterview",945880,Juhea,Manhattan,Hell's Kitchen,40.76428,-73.9941,Entire home/apt,127,3,1,2017-05-12,0.04,1,0 +19637270,Cozy 1 Bedroom at a Very Convenient Location!,52432205,Magdalena,Queens,Sunnyside,40.74266,-73.91884,Entire home/apt,140,2,4,2018-01-01,0.17,1,0 +34199411,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76514,-73.96176,Private room,38,30,1,2019-06-01,0.79,6,43 +4308633,Wonderful Willi!,22364611,Basil,Brooklyn,Williamsburg,40.71603,-73.9547,Private room,94,2,46,2019-06-03,0.9,1,267 +5771655,Brooklyn Bargain for August!,12212944,Janine,Brooklyn,Kensington,40.64455,-73.98298,Private room,30,21,1,2015-06-19,0.02,2,1 +18731641,The Omaric,53560822,Desmond,Manhattan,Harlem,40.82425,-73.9552,Entire home/apt,95,2,49,2019-07-02,1.92,1,14 +2576750,Better than hotel,7451917,Fe,Brooklyn,Bay Ridge,40.63113,-74.02767,Entire home/apt,125,5,0,,,2,213 +18041519,"Beautiful + Large Astoria Space, Amazing Location",96560825,Brittany,Queens,Astoria,40.76266,-73.91991999999999,Entire home/apt,250,2,0,,,1,0 +34399221,Spacious 1 BDRM w/ Backyard of DREAMS in Manhattan,6279234,Marissa,Manhattan,Harlem,40.80948,-73.95514,Entire home/apt,148,4,1,2019-07-08,1.0,1,8 +2447634,Charming 2BR in Greenpoint,12515888,Kaet,Brooklyn,Greenpoint,40.73348,-73.95689,Entire home/apt,154,1,7,2019-06-21,0.11,2,213 +13532718,Small Private Room in quiet Manhattan Apt,7917224,Elizabeth,Manhattan,Harlem,40.82588,-73.9388,Private room,36,4,2,2016-08-29,0.06,1,0 +35235212,Feel like a home & few steps walking to City Mall.,265288059,Masum,Queens,Corona,40.73611,-73.86401,Private room,36,1,2,2019-06-30,1.76,2,62 +12317903,Newly Renovated Studio Midtown East,1512462,Evan & Maria,Manhattan,Midtown,40.75489,-73.9666,Entire home/apt,239,4,132,2019-06-21,3.39,2,242 +18211259,Flatbush Townhouse Apt (UNFURNISHED),10285950,Christina,Brooklyn,Flatbush,40.64538,-73.954,Entire home/apt,86,14,1,2017-07-04,0.04,3,349 +1037016,Quiet central Williamsburg Loft room,237477,Alexander,Brooklyn,Williamsburg,40.718,-73.96603,Private room,90,5,8,2017-05-31,0.11,1,0 +3939535,JFK/LGA Queens Modern Apt.,20411855,Chuck,Queens,Briarwood,40.71009,-73.8196,Private room,70,3,64,2018-09-26,1.16,1,282 +30981877,The NYC Adventure,231474021,Cyn,Manhattan,East Harlem,40.78724,-73.9494,Private room,65,365,1,2019-05-17,0.57,1,0 +34303993,1st floor loft space with beautiful yard,258978893,Ron,Brooklyn,Crown Heights,40.6707,-73.93944,Entire home/apt,120,4,4,2019-06-25,2.5,1,64 +28053933,"Comfy, Convenient, & Private Rm In Manhattan NYC",126155532,Seyoum,Manhattan,Washington Heights,40.85053,-73.93027,Private room,70,2,28,2019-06-30,2.8,1,123 +16389354,Spectacular 2BR with NYC SKYLINE VIEW + ROOF DECK,107136259,Prithvi,Brooklyn,Williamsburg,40.706140000000005,-73.9487,Entire home/apt,199,2,1,2017-01-02,0.03,1,0 +32126629,Midtown - United Nations - MOMA - East River Apt,62436749,Alexander,Manhattan,Midtown,40.75483,-73.96991,Entire home/apt,295,4,0,,,1,270 +35884220,Luxury apartment in Manhattan midtown!,128175450,Howell,Manhattan,Hell's Kitchen,40.77122,-73.99356,Entire home/apt,350,2,0,,,1,179 +6908209,PrimChelsea~1BR~Sleeps4~hugeOutdoor,2119276,Host,Manhattan,Chelsea,40.74138,-74.00072,Entire home/apt,155,30,6,2019-03-30,0.13,39,289 +14532445,Private Room,89855730,Rory,Manhattan,East Village,40.72661,-73.97894000000001,Private room,105,5,4,2017-10-29,0.12,1,0 +18229274,# 1 A Brooklyn New York Apt: close to metro subway,125914985,Myles,Brooklyn,East Flatbush,40.63381,-73.94395,Entire home/apt,185,6,60,2019-06-30,3.22,2,112 +14027110,"Awesome 1 BR in multi-cultural Queens, sleeps 4!",18873232,Laura,Queens,Elmhurst,40.73319,-73.87782,Entire home/apt,150,3,7,2017-01-07,0.2,1,261 +34544599,"XL Quiet Top Floor Harborview 5m to Ferry, RUMC",9263105,Wj,Staten Island,New Brighton,40.64535,-74.09255,Private room,55,3,1,2019-06-26,1.0,2,10 +13004996,Beach Bungalow 2,71717596,Beth,Queens,Rockaway Beach,40.58977,-73.81324000000001,Entire home/apt,100,2,50,2019-07-07,1.31,1,40 +14781268,Huge Sunny Private Bedroom in heart of Brooklyn,566200,Daniel,Brooklyn,Bushwick,40.69951,-73.92848000000001,Private room,70,30,6,2019-03-22,0.18,1,0 +18470545,Comfy & Cozy In Brooklyn,38120363,Brian,Brooklyn,Crown Heights,40.67238,-73.91488000000001,Private room,49,2,39,2019-05-03,1.53,2,84 +22484057,Great Room in Brooklyn,38359380,Becky,Brooklyn,Kensington,40.644490000000005,-73.97843,Private room,45,5,2,2018-07-27,0.17,1,0 +30187331,Prime Area Room/Astoria/LGA 5 minutes,52599987,Jess,Queens,Ditmars Steinway,40.77568,-73.90303,Private room,100,1,2,2018-12-09,0.27,1,0 +15941474,"JFK 10 & LGA 15 minutes, One Bed Room",101657794,Dr. Shirin,Queens,Briarwood,40.70857,-73.8075,Private room,120,1,77,2019-07-06,2.39,6,361 +33167738,E. Williamsburg/Bushwick/Bedstuy Private Bedroom,21524809,Jeremy,Brooklyn,Williamsburg,40.70312,-73.94464,Private room,75,4,6,2019-06-24,1.98,1,55 +33714755,Comfy Room w Private Bath in Bay Ridge (Room C),88171838,Kimi,Brooklyn,Bay Ridge,40.63521,-74.03197,Private room,75,1,7,2019-07-04,2.88,4,361 +33549508,Musical loft sanctuary with private roof deck,4345155,Charles,Brooklyn,Greenpoint,40.73293,-73.95889,Entire home/apt,250,5,0,,,1,174 +9233068,Williamsburg Brooklyn 1 Bedroom,42528111,Heejoo,Brooklyn,Greenpoint,40.719640000000005,-73.94719,Entire home/apt,125,2,0,,,1,0 +21106002,♕ Downtown Manhattan I Private Bedroom♕,151316042,Edhar,Manhattan,Chinatown,40.71363,-73.9909,Private room,90,1,58,2019-06-15,2.68,2,10 +10445597,Cosy room in a Brooklyn brownstone,299236,Eleonora,Brooklyn,Bedford-Stuyvesant,40.68379,-73.9405,Private room,55,1,2,2019-05-19,0.06,1,365 +18402330,Airy and Bright Room with Balcony,33434914,Juan,Bronx,Parkchester,40.82942,-73.87564,Private room,60,2,89,2019-07-07,3.36,4,30 +7858673,- I - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71767,-73.96252,Private room,60,2,92,2019-06-08,1.94,8,87 +29546328,Spacious convenient room available immediately!!,222424429,Marta,Manhattan,Washington Heights,40.84701,-73.93949,Private room,38,2,17,2019-04-01,2.33,2,73 +24086178,2 Bedroom Astoria Beautiful,6523823,Louis,Queens,Ditmars Steinway,40.77516,-73.91792,Entire home/apt,103,5,1,2018-04-22,0.07,1,0 +9647235,Excellent condition condo Apt,49879147,Rohit,Queens,Forest Hills,40.7276,-73.85183,Private room,75,1,0,,,1,0 +19662367,Brooklyn Garden Retreat,3168812,Laura,Brooklyn,Crown Heights,40.67055,-73.93233000000001,Entire home/apt,48,3,83,2019-06-30,3.62,1,17 +16677358,"Sunny room in Sunset Park, Brooklyn",25311040,Keisuke,Brooklyn,Sunset Park,40.643640000000005,-74.01205999999999,Private room,32,7,0,,,1,0 +18375815,Spacious private room close St. Barnabas Hospital,127249880,Emma,Bronx,Tremont,40.84647,-73.89299,Private room,38,2,33,2019-05-28,1.27,2,327 +13865843,Summer Weekend in the City,81969914,Julie,Manhattan,Midtown,40.75248,-73.97332,Private room,200,2,0,,,1,0 +35484875,Luxury apt with Statue of Liberty view,266966503,Nyc,Manhattan,Financial District,40.70629,-74.01535,Entire home/apt,200,1,1,2019-06-27,1.0,1,326 +763809,Mermaid Oasis in the Heart of Brooklyn,3604585,Jenny,Brooklyn,Flatbush,40.64232,-73.9572,Private room,55,3,66,2019-06-07,1.16,3,264 +34345206,Huge room w/ king size bed in coop brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.67957,-73.95548000000001,Private room,75,2,3,2019-07-02,1.84,4,22 +33241978,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76391,-73.98071,Private room,250,1,0,,,8,0 +36103059,Lovely room with full size bed(suit3),255641440,Li,Queens,Flushing,40.76393,-73.80895,Private room,42,1,0,,,7,4 +5050799,Great Prospect / Crown Heights 1BR,16616158,Will,Brooklyn,Crown Heights,40.67586,-73.9621,Entire home/apt,85,5,22,2015-10-28,0.42,1,0 +10407723,Fort Greene Hideaway,814747,Maeve,Brooklyn,Fort Greene,40.68805,-73.96951999999999,Entire home/apt,150,2,131,2019-04-29,3.09,2,0 +4088506,"Modern, central WBurg 2BR w/rooftop",2436652,Krzysztof,Brooklyn,Williamsburg,40.71381,-73.96065,Entire home/apt,160,30,44,2019-06-10,0.76,1,226 +19520991,Clean 1 bedroom in heart of NYC with Private deck,47988208,Colin,Manhattan,Murray Hill,40.74838,-73.98108,Entire home/apt,275,2,15,2019-03-17,0.65,1,5 +34002121,Pat's place (shared female only).,256743247,Patricia,Queens,Bayside,40.77125,-73.7809,Private room,49,1,14,2019-06-28,6.36,2,72 +27538237,Grand Suite in Historic Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67166,-73.94674,Entire home/apt,115,3,34,2019-07-03,4.43,4,249 +6492778,"2 Bedroom fully furnished apt,Clinton Hill BK",21575456,Myrdith,Brooklyn,Clinton Hill,40.68502,-73.96073,Entire home/apt,175,1,150,2019-07-05,2.98,1,300 +4437053,Sunlit 1 bedroom in NoLita,23030943,Kristin,Manhattan,Nolita,40.72144,-73.99435,Private room,105,1,102,2019-06-16,1.79,1,362 +6209619,"A fine, modern, spacious apartment",32199364,Guillermo,Manhattan,Harlem,40.80686,-73.9554,Entire home/apt,199,1,0,,,1,0 +32241242,Sonder | Stock Exchange | Playful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01175,Entire home/apt,256,2,9,2019-06-23,2.6,327,277 +12806177,Acogedora habitación en el corazón de Manhattan,66469868,Zoraida,Manhattan,Washington Heights,40.83344,-73.94442,Private room,65,2,46,2019-06-23,1.2,1,72 +6671082,Cozy East Village Getaway,1287185,Michelle,Manhattan,East Village,40.72865,-73.98023,Entire home/apt,150,35,7,2016-01-02,0.14,1,304 +25204636,GORGEOUS & HUGE room for long term,20212516,My,Manhattan,West Village,40.73675,-73.998,Private room,89,1,13,2019-06-30,1.2,2,7 +27782635,Sonder | 116 John | Sun-Filled 2BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70628,-74.00654,Entire home/apt,245,29,0,,,96,304 +7727061,Bright Private room NYC Near train,25843005,Daljit,Queens,Astoria,40.75818,-73.92679,Private room,35,2,191,2019-06-30,4.0,3,24 +12202511,Cozy & Charming Chinatown/LES Spot!,9314442,Adam + Yulu,Manhattan,Chinatown,40.71532,-73.99343,Entire home/apt,120,3,2,2016-10-04,0.05,1,0 +8800003,Large Serene Garden Apartment Historic Harlem,46112296,Tina,Manhattan,Harlem,40.81057,-73.94565,Entire home/apt,95,2,3,2017-05-07,0.11,1,6 +15066466,★ Unreal Loft w/ Huge Private Roofdeck ★,83909332,David,Manhattan,Nolita,40.72222,-73.99545,Entire home/apt,225,2,15,2017-05-07,0.44,1,0 +28813184,Tranquil East Village 1 Bedroom,18602194,Carolyn,Manhattan,East Village,40.72984,-73.98588000000001,Entire home/apt,125,3,2,2019-01-01,0.27,1,45 +21324360,Cobble Hill Brooklyn....SUPER PRIME 1BR - full apt,154362702,Chris,Brooklyn,Cobble Hill,40.68661,-73.99096999999999,Entire home/apt,200,3,32,2019-07-01,1.52,1,36 +5941888,Full Floor Loft Style Apt/Noho/Bond,1679702,Kristy,Manhattan,NoHo,40.72634,-73.9932,Entire home/apt,330,2,4,2015-10-14,0.08,1,0 +141984,Charming Nolita Apartment!!,630453,Vanessa,Manhattan,Nolita,40.72094,-73.99706,Entire home/apt,175,3,68,2019-06-10,0.69,1,277 +1307723,A real home on the UWS.,5435074,Deborah,Manhattan,Upper West Side,40.80274,-73.96459,Private room,150,1,28,2019-05-23,0.51,1,364 +23683924,Stunning designer loft in the heart of Downtown,6238348,Patrizio,Manhattan,Civic Center,40.71353,-73.99925,Entire home/apt,220,15,4,2019-05-01,0.25,1,9 +12184165,Private Bedroom on Upper West Side,65476654,Geri,Manhattan,Upper West Side,40.7823,-73.98080999999999,Private room,84,1,27,2018-12-09,0.69,1,0 +3907603,Nyc! Cozy room in Williamsburg,14890430,Evy,Brooklyn,Williamsburg,40.71223,-73.94169000000001,Private room,75,3,174,2019-07-01,2.96,1,311 +21698351,佳源家庭旅馆双床房间,157067019,Ada,Queens,Flushing,40.76498,-73.8301,Private room,78,1,17,2018-12-14,0.87,3,82 +13100726,NYC living to it's fullest... in a good way!,16884931,Whitney,Manhattan,East Harlem,40.80637,-73.93722,Entire home/apt,140,1,28,2019-04-24,0.74,1,170 +14724479,Clean & Amazing Semi Private NYC Room by #1 Train,30499687,Jovanni & Natasha,Bronx,Fieldston,40.89581,-73.89778000000001,Private room,59,2,7,2017-04-17,0.21,2,0 +10681362,BK LOFT: Unique/Modern/Fun,5075354,Ted,Brooklyn,Crown Heights,40.67755,-73.95108,Entire home/apt,100,4,8,2017-11-25,0.19,1,0 +9239252,A clean and warm master bedroom!,47052253,Wenjia,Manhattan,Lower East Side,40.71244,-73.98756,Private room,82,5,0,,,1,0 +30202750,"Large 2 BR, loft-like apartment in historic house",17011664,Ann Marie,Staten Island,St. George,40.64682,-74.08575,Entire home/apt,86,5,1,2019-01-03,0.16,1,43 +35373956,Fun 3 Bedroom Just Minutes to Manhattan!!,266299609,Nick,Queens,Astoria,40.75883,-73.9216,Entire home/apt,250,2,0,,,1,282 +2309873,Amazing Location-Private Studio near Central Park!,11796166,Shaina,Manhattan,Upper East Side,40.77469,-73.96327,Entire home/apt,225,2,3,2017-07-30,0.09,1,88 +20744948,Cheap Large Bedroom w/WorkDesk- 10min to JFK/Mall,107455767,Guelma,Queens,Rosedale,40.65429,-73.73432,Private room,45,30,34,2019-05-14,1.52,5,90 +18605919,"Brooklyn, Williamsburg - Room w/ Private Bathroom",3258630,Oscar,Brooklyn,Williamsburg,40.71681,-73.94556,Private room,80,1,6,2018-07-22,0.24,1,0 +28763578,5min walk to L train - Free WiFi & Cleaning,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.7001,-73.91219,Private room,38,30,0,,,9,7 +4428854,Charming Furnished Private Room,1447684,Rosa,Brooklyn,Greenpoint,40.72951,-73.95525,Private room,55,1,75,2019-06-19,1.52,3,173 +7194972,"Charming, Central Park Studio Apt",22502429,Doug,Manhattan,Upper West Side,40.78363,-73.97485,Entire home/apt,190,3,9,2015-10-28,0.19,1,0 +21896552,Private Garden | Upper West Side Manhattan 1BR,2092300,Amelia,Manhattan,Morningside Heights,40.80513,-73.9632,Entire home/apt,120,3,3,2018-01-08,0.16,1,0 +22107514,Spacious Prospect Park Studio,128466802,Rasha,Brooklyn,Prospect-Lefferts Gardens,40.661,-73.9598,Entire home/apt,85,30,10,2019-01-04,0.63,1,2 +21737389,Private bedroom in Manhattan,49750805,Paige,Manhattan,East Harlem,40.7967,-73.94913000000001,Private room,75,3,2,2018-01-04,0.11,2,0 +526532,Beautiful Spacious Brownstone,2492286,Reena,Manhattan,Harlem,40.807190000000006,-73.94253,Entire home/apt,100,2,24,2018-09-10,0.29,1,0 +15815905,Ground Floor apt with Backyard @Lower East Side,55149412,Ha,Manhattan,Lower East Side,40.71248,-73.98662,Entire home/apt,160,1,73,2019-06-16,2.38,4,229 +21429062,Beautiful spacious duplex in Bed Stuy Brooklyn,122044489,Tonie,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94225,Entire home/apt,110,2,39,2019-06-30,1.91,2,130 +22303956,LARGE Best Loc & View of NYC! 10 Min to Time Sqr,44682387,Sky,Brooklyn,Greenpoint,40.72857,-73.95688,Private room,195,2,72,2019-07-01,3.93,2,165 +9248239,Private Room in Williamsburg Loft,48057837,Diana,Brooklyn,Williamsburg,40.71914,-73.96477,Private room,75,1,2,2015-12-28,0.05,1,0 +17591356,Cozy private room in Upper East Side apartment,99245631,Jillian,Manhattan,Upper East Side,40.77186,-73.95402,Private room,90,2,3,2017-03-16,0.11,1,0 +4503472,Park Slope Home away from Home,23353897,Barbara,Brooklyn,Park Slope,40.66763,-73.98156,Entire home/apt,163,4,58,2019-05-29,1.38,1,132 +15206331,"Big Quiet, Clean and Respectful APARTMENT.",46576732,Rosa,Manhattan,Washington Heights,40.85842,-73.92928,Private room,79,1,7,2017-03-19,0.21,1,0 +4736912,Room in Manhattan (Upper West Side),24454737,Umberto,Manhattan,Morningside Heights,40.81088,-73.95774,Private room,50,14,1,2015-01-08,0.02,1,0 +21275075,Nolita/Soho Duplex Apartment with Rooftop,25265179,Veronica,Manhattan,Nolita,40.72244,-73.99461,Entire home/apt,250,1,9,2019-05-27,0.75,1,0 +8167182,Central Park North 1 Bedroom Apt,19982835,Maria,Manhattan,Harlem,40.79965,-73.95446,Entire home/apt,150,2,13,2019-06-16,0.28,1,362 +22266538,Huge Bedroom with Private Entrance and Yard Access,36283215,Bobby,Brooklyn,Williamsburg,40.71227,-73.93683,Private room,54,2,4,2018-03-18,0.22,1,0 +6937871,Large Private Room on Prospect Park,1106323,Sebastian,Brooklyn,Windsor Terrace,40.66036,-73.98244,Private room,65,3,0,,,2,0 +15585484,Awesome apartment in the heart of Soho,100421535,Fernanda,Manhattan,SoHo,40.72524,-74.00218000000001,Entire home/apt,350,5,2,2016-12-31,0.06,1,0 +14557504,Cozy & Clean #5,23533897,Fatou,Brooklyn,Crown Heights,40.67479,-73.9519,Private room,75,1,22,2019-06-22,0.63,7,319 +34817616,5 min walk to Times Square! Sleeps 5. Very clean.,251535441,Nick,Manhattan,Hell's Kitchen,40.76047,-73.99202,Entire home/apt,199,7,6,2019-07-01,3.46,1,102 +14670685,1 br available in a Lovely 2br Apt,751743,Lalla,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95166,Private room,50,3,59,2018-09-21,1.71,1,0 +21729245,Subarriendo apartamento enero febrero 2018,158229004,Cristhian,Queens,Astoria,40.76919,-73.9305,Entire home/apt,70,1,0,,,1,0 +3010328,1BR apartment in Brooklyn,15341073,Camille,Brooklyn,Flatbush,40.64661,-73.95999,Entire home/apt,100,6,2,2018-07-01,0.11,1,202 +22685532,Modern 2 bedroom apartment in Ozone Park Queens,143938171,Ashley,Queens,Ozone Park,40.68275,-73.8429,Entire home/apt,200,3,0,,,1,0 +19248688,Sunny Brooklyn Two Bedroom,1241818,William,Brooklyn,Cobble Hill,40.68795,-73.99158,Entire home/apt,124,30,1,2017-08-25,0.04,1,12 +28202825,"Feel at home in NYC, 5 min from LGA With PARKING",213014559,Kam,Queens,East Elmhurst,40.76828,-73.87751999999999,Entire home/apt,179,1,57,2019-07-08,5.74,2,0 +4638967,"Sunny/Huge private room, by Columbia/Jazz clubs",23974215,Alex,Manhattan,Harlem,40.80649,-73.95225,Private room,84,2,38,2019-06-15,0.68,2,147 +27572832,Spacious & Sunny Master w Private Bath,167775339,Lydia,Queens,Woodside,40.7488,-73.90361999999999,Private room,86,1,12,2019-02-04,1.28,1,0 +13164373,Spacious art deco 2 BR in Hudson Heights,473497,Jennifer,Manhattan,Washington Heights,40.85487,-73.93509,Entire home/apt,175,1,0,,,1,0 +681518,Artist room for creative nomads,2777672,Kalae,Manhattan,Upper West Side,40.80114,-73.96378,Private room,95,2,211,2019-06-21,2.54,3,126 +34598639,Comfy and Classic Brooklyn Brownstone 1 Bedroom!,1354539,Eve,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95298000000001,Entire home/apt,125,3,4,2019-06-18,4.0,1,155 +26221423,Cozy 2BR in Trendy LIC! 1 Stop From Manhattan!!!,62701284,Steve,Queens,Long Island City,40.7452,-73.9535,Entire home/apt,155,2,43,2019-07-03,3.6,1,239 +26608589,Midtown 45 Manhattan with a view,173227728,Loretta,Manhattan,Midtown,40.75157,-73.97134,Private room,250,3,0,,,1,5 +19382201,Your Quiet Refuge in the Heart of Manhattan,9405109,Carolina,Manhattan,Civic Center,40.71195,-74.00757,Entire home/apt,200,3,3,2019-04-15,0.13,1,19 +12592427,Lovely apartment as home,68309691,Cindy,Queens,Flushing,40.72635,-73.80237,Entire home/apt,99,1,229,2019-06-24,5.97,1,7 +31580460,Cheery West Village 1BR w/ Washer + Dryer by Blueground,107434423,Blueground,Manhattan,West Village,40.73588,-74.00474,Entire home/apt,236,30,0,,,232,273 +2698645,Just 3 Minutes to Midtown! Live like a NYer!,10851687,Arya,Queens,Long Island City,40.74332,-73.95425999999999,Private room,95,2,185,2019-06-30,2.92,1,140 +14499377,Adrian's Place: Cozy 1br mins from JFK w/ 55' TV,89526812,Adrian,Queens,St. Albans,40.69654,-73.74893,Private room,65,2,52,2019-07-02,1.93,1,78 +12738346,Lightfull and Quiet apartment 15 min to Manhattan.,69274944,Dimitris,Queens,Astoria,40.76421,-73.92138,Entire home/apt,190,3,32,2019-06-09,0.85,1,53 +5112761,Master bedroom in Williamsburg,2638171,Renan,Brooklyn,Williamsburg,40.71577,-73.94604,Private room,90,3,0,,,1,364 +6922505,Large 2 Bedrooms Apt. in Greenpoint/Williamsburg,12738054,Aude,Brooklyn,Greenpoint,40.72532,-73.95338000000001,Entire home/apt,230,2,6,2019-06-04,0.13,2,272 +1303850,Private spacious studio,2687920,Ikk,Manhattan,Morningside Heights,40.80777,-73.96703000000001,Entire home/apt,94,2,1,2018-10-27,0.12,1,3 +33138874,The Heart of the Bronx,249500015,Pedro,Bronx,Soundview,40.8265,-73.87045,Entire home/apt,103,2,19,2019-06-28,5.7,1,75 +28801345,Cozy Chic Bedroom in the Heart of West Village,1015883,Katie,Manhattan,West Village,40.73106,-74.00301,Private room,125,1,7,2019-05-22,0.83,1,156 +35026962,Beautiful Studio in the heart of Midtown,98673234,Anna,Manhattan,Upper East Side,40.76365,-73.96186999999999,Entire home/apt,185,2,7,2019-07-01,6.56,1,107 +4550494,"2BR, 2 Full Bath, SPACE, Short term monthly",785283,Melinda,Queens,Ditmars Steinway,40.77648,-73.91595,Entire home/apt,150,28,50,2019-05-05,0.89,2,38 +30907441,Willimsburg Deluxe Studio,32874565,Madison,Brooklyn,Williamsburg,40.71763,-73.95334,Entire home/apt,125,15,1,2019-01-02,0.16,1,285 +16224408,Private one bedroom in Astoria (Halletts Point),1354727,Courtney,Queens,Astoria,40.77499,-73.93565,Private room,75,1,50,2019-06-18,1.59,2,61 +10553095,Beautiful Guest Room(B),44547688,Carol,Brooklyn,East New York,40.67283,-73.87785,Private room,50,1,35,2019-06-11,0.92,2,365 +16444320,Upper West Side - Two Private Rooms!,6897064,Paula,Manhattan,Upper West Side,40.78142,-73.98418000000001,Private room,87,3,1,2017-01-02,0.03,2,0 +9107118,Bright loft style room in Bed-Stuy,42786873,Geoffrey,Brooklyn,Bedford-Stuyvesant,40.6948,-73.94161,Private room,45,1,2,2015-11-02,0.04,1,0 +34640201,Awsome room with private door to the deck!,4297106,Franck And Joshua,Brooklyn,Bushwick,40.6924,-73.91448000000001,Private room,44,31,0,,,2,365 +16095512,"Large & Comfortable, Close to Train",15793354,Ebone,Brooklyn,Crown Heights,40.66675,-73.92958,Entire home/apt,73,2,4,2017-06-13,0.16,1,0 +13231183,East 60th Street~Perfect Studio for 2,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96191999999999,Entire home/apt,138,30,0,,,49,365 +25206790,Heart of bay ridge Brooklyn,41762539,Maria,Brooklyn,Fort Hamilton,40.621390000000005,-74.0319,Entire home/apt,125,1,1,2018-07-26,0.09,1,0 +31110349,Astoria Entire apartment,196915362,Janna,Queens,Ditmars Steinway,40.77638,-73.91308000000001,Entire home/apt,85,40,2,2019-05-31,0.42,2,85 +13573790,"Sunny, Spacious Apartment in Prime Williamsburg",78292517,Chris,Brooklyn,Williamsburg,40.71578,-73.95879000000001,Entire home/apt,150,2,5,2019-03-20,0.14,1,0 +2677779,Quaint Room ,8083568,Favio,Queens,Jackson Heights,40.75107,-73.87654,Private room,60,5,66,2019-05-27,1.05,1,348 +9334228,Cozy Studio in an Amazing Location,1423321,Olivera,Manhattan,East Village,40.72695,-73.99011999999999,Entire home/apt,70,7,1,2015-12-08,0.02,1,0 +10811465,The Quintessential Bushwick Loft: The Brig,6778614,Lindsey,Brooklyn,Bushwick,40.70807,-73.92113,Private room,122,2,11,2018-07-15,0.82,2,0 +17702242,Stylish Private BR in the Upper East Side,10661558,Gio,Manhattan,Upper East Side,40.77349,-73.94994,Private room,129,1,117,2019-07-04,4.2,4,155 +25187576,"100% Private & A/C! +Bathroom + 1 Bedroom JFK & LGA",23479368,Karan,Queens,South Ozone Park,40.67425,-73.82018000000001,Private room,69,1,78,2019-07-01,5.92,1,79 +19908261,Coolest Apartment at Great Location!!,137264725,Gulcin,Manhattan,Chinatown,40.71366,-73.99153000000001,Entire home/apt,320,1,2,2018-07-22,0.1,4,249 +15481730,Gorgeous Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70435,-73.92551999999999,Private room,40,5,19,2019-06-15,0.62,3,0 +165461,Couldn't Be Closer To Columbia Uni2,867225,Rahul,Manhattan,Morningside Heights,40.80525,-73.95916,Private room,75,5,57,2019-01-01,0.59,2,201 +33655084,Woodhaven Castle,47516406,Arthur,Queens,Woodhaven,40.6898,-73.86077,Private room,45,7,3,2019-07-01,1.2,2,360 +424889,Sunny and Zen W. Village Studio of Your Own,2076827,Shelley,Manhattan,West Village,40.73041,-74.00498,Entire home/apt,129,7,5,2015-05-21,0.09,1,0 +5858757,Long term sublet Brooklyn,4267075,Jen,Brooklyn,Clinton Hill,40.68498,-73.96618000000001,Entire home/apt,89,14,4,2017-03-01,0.11,2,343 +15632312,Bright and Sunny 2 Bedroom Apt.,9329143,Janna,Manhattan,East Harlem,40.79931,-73.94196,Entire home/apt,170,6,3,2018-12-30,0.16,1,0 +32681564,Artistic UWS Jr Suite- 2 Queens Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.7813,-73.97922,Private room,280,1,0,,,10,275 +16172895,Studio in beautiful Chelsea - close to everything!,9007993,Mary,Manhattan,Chelsea,40.74111,-73.99594,Entire home/apt,150,3,2,2017-08-13,0.08,1,0 +22371082,KING ROOM IN 1500 SQFT WBRG BALLROOM LOFT,2212344,Enrique,Brooklyn,Williamsburg,40.71208,-73.95566,Private room,78,4,4,2019-01-01,0.22,3,0 +20092369,Private Bedroom on Ridgewood/Bushwick Border,4905474,Francheska,Queens,Ridgewood,40.7002,-73.90596,Private room,60,2,0,,,1,0 +31920843,"Cute Apartment in Heart of East Village, Manhattan",237718748,Cassandra,Manhattan,East Village,40.72742,-73.98235,Private room,90,5,1,2019-03-23,0.28,1,0 +7583901,Gorgeous 1 bedroom apt West Village,23299199,Marine,Manhattan,West Village,40.73453,-74.00656,Entire home/apt,247,1,0,,,1,0 +30376805,Penthouse Apartment to view July 4th Fireworks,11773839,Nate,Manhattan,Chinatown,40.71446,-73.99112,Private room,95,2,5,2019-07-07,0.8,1,2 +29869463,Large Studio with Best View in NYC!,214290528,Tiffany,Manhattan,Financial District,40.707240000000006,-74.01438,Entire home/apt,195,2,4,2019-01-02,0.56,1,0 +16288234,Spacious room in Historical District Brownstone,106546614,Raymond,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.94193,Private room,40,7,0,,,1,0 +11162475,"Big, Bright UWS Bedroom and Study",14713587,Annie,Manhattan,Upper West Side,40.80288,-73.96484,Private room,125,3,6,2017-05-18,0.15,1,0 +13139850,Big Room In Beautiful Bushwick 2br w/ Washer-Dryer,34731099,Matthew,Brooklyn,Bushwick,40.69096,-73.92352,Private room,30,1,0,,,1,0 +28085491,1 Bedroom in NYC's Lower East Side! | Chinatown,50250626,Greg,Manhattan,Lower East Side,40.71882,-73.98554,Entire home/apt,185,1,52,2019-07-04,5.2,1,162 +10857454,Artist Garden Duplex Ft. Greene - 2.5 Bedroom,36894011,Miriam,Brooklyn,Fort Greene,40.6884,-73.97527,Entire home/apt,250,2,109,2019-06-24,3.22,2,243 +29152037,"Private artist bedroom in Bushwick, Brooklyn",219669515,Sasha,Brooklyn,Bushwick,40.70328,-73.92005999999999,Private room,50,2,6,2019-06-19,5.62,1,10 +6738524,"Stunning, sunny 1bedroom, Greenpoit",35287916,Naum & Alexandra,Brooklyn,Greenpoint,40.73401,-73.95470999999999,Entire home/apt,150,14,1,2015-09-01,0.02,1,0 +23598012,"Great Home&Host, next to 1 train",60163700,Dee,Manhattan,Harlem,40.82325,-73.95243,Private room,46,14,12,2018-12-01,0.82,4,0 +7700185,Cozy studio apartment in W Harlem.,40448425,Grayson,Manhattan,Harlem,40.81882,-73.9468,Entire home/apt,77,1,1,2015-08-31,0.02,1,0 +9959880,great room in sunny cornerapartment,29871124,Pieter,Manhattan,Morningside Heights,40.81508,-73.95935,Private room,49,1,1,2016-04-11,0.03,1,0 +9960135,Large Room in Spacious Apartment,42741722,Tanya,Manhattan,Harlem,40.82042,-73.95255999999999,Private room,65,2,5,2018-04-22,0.14,2,0 +2918764,Beautiful Spacious Brooklyn Room,6683775,Sophia,Brooklyn,Bushwick,40.70071,-73.92468000000001,Private room,80,2,9,2015-10-16,0.14,1,0 +17489509,Brooklyn Nook perfectly located!,8435480,Matt,Brooklyn,Greenpoint,40.72398,-73.94978,Entire home/apt,150,2,115,2019-07-07,4.26,2,32 +3312417,Cozy bedroom in Brooklyn!,3691863,Jessica,Brooklyn,Bedford-Stuyvesant,40.68172,-73.94095,Private room,78,3,86,2019-06-30,1.43,1,362 +11627443,Upper East Side cozy private room,61601216,Sara,Manhattan,Upper East Side,40.7687,-73.95705,Private room,80,2,11,2017-04-17,0.31,1,0 +20308615,Your Oasis in The Bronx!,67223829,Richard & Xio,Bronx,Longwood,40.82406,-73.8934,Entire home/apt,155,3,13,2019-05-01,0.61,1,285 +21392488,Middle village,118697704,Selina,Queens,Middle Village,40.71285,-73.87626999999999,Entire home/apt,250,2,4,2018-10-07,0.19,1,364 +8145339,Chelsea 2-Bedroom Doorman Apt NEW,24430182,Carole,Manhattan,Chelsea,40.74318,-73.9982,Entire home/apt,129,1,6,2016-11-27,0.13,1,0 +22338850,**BUDGET private room w/backyard,154258141,Elsie,Brooklyn,Bushwick,40.68731,-73.91669,Private room,45,3,10,2019-05-29,0.9,10,322 +972426,"BIG, COMFY, PRIV. room, Big apt, yard, Will-B dplx",216191,M,Brooklyn,Williamsburg,40.711490000000005,-73.94504,Private room,98,2,7,2018-12-21,0.09,4,273 +25397054,A Room With A View,878445,Stefanie,Manhattan,Harlem,40.82999,-73.94174,Private room,100,2,2,2018-08-18,0.15,1,341 +14100743,beautiful one bedroom apartment,27126954,Este,Brooklyn,Midwood,40.62755,-73.96096999999999,Entire home/apt,75,1,1,2016-07-21,0.03,1,0 +225306,Charming room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.68749,-73.95494000000001,Private room,79,3,115,2019-07-05,1.21,3,264 +7725573,Huge Private Bedroom in Harlem Apt,10872717,Mala,Manhattan,Harlem,40.81469,-73.94887,Private room,75,1,1,2016-03-31,0.03,1,0 +19200160,"Art, Design & Comfort.",68228552,Assane,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95297,Entire home/apt,154,14,2,2019-06-10,1.22,2,172 +36078121,Large Sunny Apartment-By Subway-Lower East Side,40058915,Kevin,Manhattan,Lower East Side,40.71755,-73.98966999999999,Entire home/apt,164,1,1,2019-07-06,1.0,1,163 +35678627,Private Large Bedroom Apt w/ Bathroom (NO KITCHEN),88171838,Kimi,Brooklyn,Bay Ridge,40.6346,-74.03022,Private room,99,2,1,2019-06-23,1.0,4,169 +2793630,Gorgeous Loft in Prime Location 2 with Rooftop,14289427,Francesca,Manhattan,Chinatown,40.71418,-73.99295,Private room,120,5,12,2018-10-17,0.19,3,0 +61167,Colorful Private One Bedroom Apt,295760,Greta,Manhattan,Little Italy,40.71961,-73.9954,Entire home/apt,135,2,21,2015-12-12,0.2,1,0 +4211276,"Beautiful, Spacious Brooklyn Home ",21064917,Alissa,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95198,Entire home/apt,275,3,3,2015-01-01,0.05,1,0 +10000943,1 Bedroom in UWS Manhattan,6891770,Mido,Manhattan,Upper West Side,40.78239,-73.97581,Entire home/apt,199,2,10,2017-04-18,0.25,1,0 +32806789,Spacious & Bright 1 Bedroom in S. Williamsburg,246791914,Rep,Brooklyn,Williamsburg,40.71078,-73.96905,Entire home/apt,200,2,8,2019-06-30,2.67,1,2 +29927138,A great space in NYC,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.680620000000005,-73.94418,Entire home/apt,62,30,1,2019-05-31,0.75,6,284 +11190303,Nouveau Bohemian in East Village,35672187,Sharda,Manhattan,East Village,40.72196,-73.98345,Private room,108,2,36,2019-06-21,1.18,1,51 +25635216,Clean and Nice Central Park Apt in Lincoln Center,193127179,Sagawa,Manhattan,Upper West Side,40.7764,-73.98236,Private room,85,4,18,2019-05-03,1.38,1,133 +26534838,Large Studio in the heart of West Village,5225042,Kai,Manhattan,West Village,40.73429,-74.00487,Entire home/apt,150,3,6,2019-03-25,0.52,1,0 +35768150,"Stunning, Renovated 2bed/1.5bath Apt in Prime LES!",268205314,Vanessa,Manhattan,Chinatown,40.71598,-73.99549,Entire home/apt,299,1,2,2019-06-28,2.0,1,334 +797696,Prime Williamsburg location with private deck,4025188,Suzanne,Brooklyn,Williamsburg,40.70773,-73.9566,Private room,101,2,32,2017-08-19,0.4,1,0 +25013656,Stylish Downtown Apt. (Between Nolita + LES.),4552628,Umber,Manhattan,Chinatown,40.71329,-73.99602,Entire home/apt,162,2,4,2018-06-24,0.28,1,0 +30430163,Apartment in south Williamsburg,96089493,Masashi,Brooklyn,Williamsburg,40.71282,-73.95742,Private room,60,1,1,2018-12-08,0.14,1,0 +29962965,Dyckman Delight - Upscale Apartment Uptown,3230788,Nicholas,Manhattan,Inwood,40.86268,-73.9238,Entire home/apt,200,2,22,2019-06-30,2.83,1,283 +9451768,New Years in Hudson Heights!,48977782,Miriam,Manhattan,Washington Heights,40.85128,-73.93907,Private room,150,1,0,,,1,0 +20667471,Williamsburg Penthouse,136267788,Igor,Brooklyn,Williamsburg,40.72028,-73.94152,Entire home/apt,241,5,4,2018-09-28,0.18,1,0 +7480066,"130/night, big and cozy, Brooklyn",4336763,Lary,Brooklyn,Gowanus,40.6798,-73.98231,Entire home/apt,130,1,4,2015-11-17,0.08,1,0 +19193139,Loft Bright Studio,133923404,Madelline,Manhattan,Harlem,40.82669,-73.94827,Entire home/apt,95,5,9,2019-05-25,0.38,1,0 +11206278,Awesome bdrm+office+lvnroom in design Apart in LES,15231059,Apollo,Manhattan,Lower East Side,40.72003,-73.98646,Private room,200,3,8,2019-06-13,0.21,4,333 +26870969,Green and spacious 1 Bedroom Apt with balcony!,41769353,Grace,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94581,Private room,45,5,0,,,1,0 +13556488,sunny room one block from the beach,22591516,Laura,Queens,Arverne,40.58928,-73.79531,Private room,150,1,2,2016-08-22,0.05,1,0 +3970562,In The Heart of The East Village,15309829,Natalie,Manhattan,East Village,40.73057,-73.98725999999999,Entire home/apt,170,2,1,2019-01-01,0.16,1,0 +5406067,Great Value Great Location!,17062221,Vanessa,Manhattan,Kips Bay,40.73879,-73.97994,Private room,134,3,139,2019-07-02,2.66,2,3 +8844402,Cozy room in the Heart of Astoria,45232769,Nadir,Queens,Astoria,40.76628,-73.91761,Private room,75,2,94,2019-07-07,2.08,3,35 +30115354,Amazing apartment in the heart of Brooklyn,5918341,Mona,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95182,Entire home/apt,149,3,14,2019-05-25,1.88,2,0 +31113620,HUGE queen bed 1 block away from Prospect Park!,29102073,Melissa,Brooklyn,Flatbush,40.65327,-73.96573000000001,Private room,60,5,2,2019-05-27,0.32,1,0 +12274916,Gorgeous 1 BR on Upper East Side,4285208,Brian,Manhattan,Upper East Side,40.77346,-73.9559,Entire home/apt,250,7,8,2018-09-20,0.22,1,294 +13650422,Convenient Financial District Studio,2486611,Jem,Manhattan,Financial District,40.70884,-74.00754,Entire home/apt,130,2,15,2018-05-31,0.42,1,0 +29277029,Charming 1-bedroom in Lower Manhattan,220568909,Anneka,Manhattan,Little Italy,40.71751,-73.99849,Entire home/apt,230,2,9,2019-05-19,1.04,1,360 +32764647,Perfect apartment for the NYC experience,44169567,Ragini,Queens,Astoria,40.7561,-73.92578,Entire home/apt,170,1,1,2019-05-12,0.52,1,60 +9864199,Greenwich Village Penthouse,38795245,Tomo,Manhattan,Greenwich Village,40.73418,-73.99887,Entire home/apt,275,10,0,,,1,0 +30019511,Hard to Find!!! Entire private floor and 2 baths,17022165,Jess,Manhattan,Lower East Side,40.72042,-73.98414,Private room,159,2,29,2019-07-04,4.39,1,209 +30146882,"Exquisite Private room Central Park Subway A,B,C",126653377,Sergii,Manhattan,Harlem,40.80521,-73.95591999999999,Private room,63,30,1,2019-04-20,0.37,6,1 +34819184,Home McDonald,156850005,Sharon,Queens,Jackson Heights,40.756,-73.87756,Private room,77,1,1,2019-05-29,0.73,2,355 +13603951,Cozy NYC 1bedroom - close to all,78499938,Dan,Manhattan,Midtown,40.75561,-73.96472,Entire home/apt,175,4,0,,,1,0 +34453830,Quiet Room * Family Friendly * Near Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75612,-73.98621999999999,Private room,100,1,0,,,7,256 +6380118,Brooklyn artist apartment,6645134,May,Brooklyn,Bushwick,40.70104,-73.91813,Private room,42,3,5,2017-08-20,0.1,1,298 +22339967,Great Room on UES,84679277,Joe,Manhattan,Upper East Side,40.77817,-73.95096,Private room,60,2,2,2019-05-05,0.3,1,0 +39282,Indie-Chic Share In Williamsburg,168525,Gus,Brooklyn,Williamsburg,40.71088,-73.95055,Private room,69,4,202,2019-05-28,1.86,2,53 +34453824,"Near Times Square, Rockefeller, Bryant Park, &more",260191397,Hotel Mela,Manhattan,Theater District,40.75575,-73.98736,Private room,100,1,0,,,7,294 +773041,Nice beautiful room In the Bronx,3684360,Enrique,Bronx,Allerton,40.85914,-73.86979000000001,Private room,38,1,187,2019-06-23,2.34,4,241 +25378614,Private room near LGA with separate entrance,141122152,Hardeep,Queens,East Elmhurst,40.76218,-73.88589,Private room,80,1,86,2019-06-20,6.35,1,147 +18875994,Luxurious and Convenient 1 bedroom on the UWS,25822424,Kevin,Manhattan,Upper West Side,40.79166,-73.97319,Entire home/apt,170,3,0,,,1,0 +14068646,Prime Location! 3 Rooms! newly furnished Apt!,2119276,Host,Manhattan,East Village,40.72752,-73.98969,Entire home/apt,200,30,6,2018-10-11,0.28,39,96 +30745429,Alphabet City Long term Stay,31917161,Cameron,Manhattan,East Village,40.72583,-73.97528,Private room,70,30,0,,,1,0 +3425168,East Village Apt at Great Location ,10665748,Gabi,Manhattan,East Village,40.73005,-73.98525,Entire home/apt,122,30,7,2019-05-16,0.12,1,339 +21011466,Spacious & Cozy Apt in Chinatown/Lower East Side,7557662,Alek,Manhattan,Lower East Side,40.71832,-73.99287,Entire home/apt,200,1,15,2019-06-29,0.72,1,29 +13728712,Charming brick brownstone (2nd floor),2026554,Maggie,Brooklyn,Bushwick,40.70173,-73.91504,Entire home/apt,89,3,14,2018-11-17,0.39,1,0 +26842735,"Bright, Cozy studio in beautiful West Village!",201868461,Coco,Manhattan,West Village,40.73384,-74.00819,Entire home/apt,129,2,55,2019-06-23,4.78,1,12 +22433593,Artsy and modern room in a friendly neighborhood.,43222031,Kamila,Queens,Ridgewood,40.69741,-73.89895,Private room,38,4,0,,,1,0 +26183582,"Spacious 1-BR by Central Park/Museum Mile, Harlem",52526057,Joshua,Manhattan,East Harlem,40.7898,-73.94853,Entire home/apt,169,5,45,2019-06-30,3.56,1,150 +29676028,Cozy and new apartment between LES and Chinatown,223345099,Milica,Manhattan,Chinatown,40.71431,-73.99275,Entire home/apt,170,3,22,2019-06-27,2.84,1,128 +28074191,"Bright Room, Vibrant Area, 2 Blocks From Train",71177383,Chris,Brooklyn,Bushwick,40.70028,-73.93928000000001,Private room,78,2,18,2019-07-02,1.8,2,266 +33641049,JFK Airport Layovers Special 6 minutes away,232251881,Lakshmee,Queens,Springfield Gardens,40.66663,-73.7836,Private room,49,1,2,2019-04-30,0.8,8,0 +3629580,Upper East Renovated 1 Bedroom,18289867,Dan,Manhattan,East Harlem,40.79032,-73.94523000000001,Private room,55,1,3,2014-08-27,0.05,1,0 +17560078,Studio Apartment in Upper East Side,66519807,Jing,Manhattan,Upper East Side,40.77734,-73.94592,Entire home/apt,60,7,0,,,1,0 +391948,Single Room,1960128,Luana,Queens,Ozone Park,40.68581,-73.84642,Shared room,45,1,8,2015-09-30,0.11,2,364 +27470676,Country Living Magazine's Inn of the Month!,56283770,Lia,Manhattan,Upper East Side,40.76389,-73.96808,Entire home/apt,135,30,0,,,6,178 +33090783,Modern East Williamsburg Apartment,713776,Hayley,Brooklyn,Williamsburg,40.71417,-73.94123,Entire home/apt,94,3,4,2019-06-16,1.32,1,31 +9826822,Beautiful/Comfy 1BR Brownstone,15312389,Taylor Jo,Brooklyn,Bedford-Stuyvesant,40.68752,-73.9567,Entire home/apt,140,2,5,2018-01-01,0.12,1,0 +21217451,Huge Private Room in the Heart of Williamsburg!,14278133,Sharif,Brooklyn,Williamsburg,40.71783,-73.95036,Private room,78,2,31,2019-01-05,1.46,3,0 +7271876,Cozy 1 Bedroom Bushwick Apt off Dekalb L,38073985,Nicole,Brooklyn,Bushwick,40.7005,-73.91816,Entire home/apt,75,60,0,,,1,0 +32437052,"Cozy room in the heart of Briarwood, Queens NY",49625765,Ilham,Queens,Briarwood,40.709,-73.81430999999999,Private room,62,2,9,2019-06-09,2.33,1,13 +2919578,Artist’s Pad Prospect Park,4282318,Al,Brooklyn,Flatbush,40.65387,-73.95973000000001,Private room,45,1,91,2019-06-22,1.58,2,99 +35482897,Great Flat in Chelsea:),117484717,Gerado,Manhattan,Chelsea,40.74637,-74.0002,Entire home/apt,240,3,2,2019-06-23,2.0,1,35 +9217707,Sunny and charming one bedroom,47932600,Marina,Queens,Rego Park,40.7303,-73.86674000000001,Entire home/apt,125,5,6,2018-09-04,0.16,1,157 +25232614,West Village Private Room With A View!,187574104,Victoria,Manhattan,West Village,40.72941,-74.00317,Private room,100,1,4,2019-02-18,0.3,1,0 +25262580,Little Italy Basic space.,181074926,Billy,Manhattan,Little Italy,40.71705,-73.99818,Shared room,100,1,20,2019-06-16,1.53,3,354 +3718713,Sleek 1 bdrm in East W'burg/Bwick,18988423,Amanda Reil,Brooklyn,Williamsburg,40.70536,-73.94229,Entire home/apt,100,2,5,2015-12-27,0.09,1,0 +25057086,Beautiful 1-bedroom apartment in the West Village,19430913,Isabell,Manhattan,West Village,40.73058,-74.0021,Entire home/apt,200,3,6,2018-11-27,0.45,1,0 +12386361,One Bedroom Heart of New York City,2017504,Fataah,Manhattan,Gramercy,40.73365,-73.98481,Private room,65,1,0,,,2,0 +32109093,1-Bedroom in Cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73028,-74.00015,Entire home/apt,220,1,4,2019-05-19,0.85,2,29 +33682823,New York City Luxury Bedroom!!,224317184,Luke,Manhattan,Harlem,40.81652,-73.94914,Private room,215,5,7,2019-06-21,2.73,8,335 +3518682,Beautiful Room in Park-Side Apt,5407403,Marissa,Manhattan,Inwood,40.86176,-73.93082,Private room,80,2,50,2017-05-21,0.83,1,6 +22926900,House on a quiet dead-end street in hip Ridgewood,2256583,Kelli,Queens,Glendale,40.69507,-73.89599,Entire home/apt,195,5,1,2018-06-30,0.08,1,0 +22176068,2-bedroom luxury apartment in the heart of Chelsea,161997330,Agustin,Manhattan,Chelsea,40.74221,-73.99625999999999,Entire home/apt,295,9,2,2018-01-01,0.11,1,0 +4157064,16' x 11' Furnished BR with Balcony,3563,Arnie,Brooklyn,Sunset Park,40.64076,-74.0224,Private room,35,6,1,2014-11-28,0.02,1,0 +28777968,PRIVATE BEDROOM and BATHROOM crown heights Aprtmnt,47180541,Natassha,Brooklyn,Crown Heights,40.6752,-73.94829,Private room,80,1,25,2019-06-01,2.73,1,11 +65019,Charming UWS Treehouse Apt,317809,Claire,Manhattan,Upper West Side,40.77956,-73.98098,Entire home/apt,115,2,210,2019-07-06,2.1,1,261 +16722762,Cozy one bedroom apartment,99097436,Miles,Manhattan,Harlem,40.82777,-73.9407,Entire home/apt,100,1,145,2019-06-30,4.81,1,9 +33992824,Sonder | Stock Exchange | Superior 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70631,-74.01225,Entire home/apt,228,2,5,2019-06-16,3.0,327,349 +22305896,Charming Garden Apartment in Brooklyn Brownstone,530553,Jacob,Brooklyn,Bedford-Stuyvesant,40.68156,-73.92036,Entire home/apt,149,2,70,2019-07-01,4.48,1,309 +3218320,SOHO Studio Best Location,3321910,Carl,Manhattan,Nolita,40.72243,-73.99655,Private room,125,6,3,2015-07-11,0.05,1,43 +624222,"Spacious apt in South Harlem, steps to subways !",3097033,Aida,Manhattan,Harlem,40.80352,-73.95127,Entire home/apt,136,2,15,2019-04-27,0.18,2,6 +33713803,Rad Clubhouse: 2 Private Rooms + Diner Kitchen,19645976,Angela,Brooklyn,Williamsburg,40.70891,-73.96342,Private room,169,3,7,2019-07-01,3.56,1,72 +23956264,Bright room in sunny Prime Williamsburg pad.,128785861,Carlos,Brooklyn,Williamsburg,40.71622,-73.95364000000001,Private room,70,1,13,2018-09-06,0.93,2,0 +21165138,"温馨双人房,步行地铁两分钟,",148852095,Kelly,Queens,Douglaston,40.76962,-73.74795,Private room,65,2,21,2019-01-01,0.98,3,89 +13199140,luxury Upper East Side 1 BR,73924316,Rachael,Manhattan,Upper East Side,40.77575,-73.95304,Entire home/apt,165,16,1,2016-07-24,0.03,1,0 +28012942,"Clean, Modern Studio. First floor access! #10292",211385563,Jason,Manhattan,Upper East Side,40.77936,-73.9518,Entire home/apt,175,2,41,2019-06-28,4.16,1,247 +34092210,"BEACH 2 BDR, 2 BTH NEW YORK, BRIGHTON BEACH",181356989,Kseniya,Brooklyn,Brighton Beach,40.57647,-73.96696,Entire home/apt,275,2,1,2019-06-30,1.0,2,56 +4216745,Sunlit Private Room / Spacious Pre-War Apartment,21881605,Julie,Brooklyn,Crown Heights,40.67658,-73.9444,Private room,100,1,0,,,2,83 +32127699,Cozy Private Bedroom in East Williamsburg,241035874,Anne,Brooklyn,Williamsburg,40.71045,-73.93826,Private room,60,2,16,2019-06-03,4.14,1,355 +480549,"Studio 54, Cozy Room For 2",2361715,Ron,Manhattan,Upper West Side,40.770990000000005,-73.9898,Private room,99,3,117,2017-12-11,1.41,1,0 +31541068,"Bright Guest Room in Fort Greene, BK",115252929,Duaa,Brooklyn,Fort Greene,40.68431,-73.97209000000001,Private room,65,1,9,2019-06-23,2.87,1,157 +11371535,Cozy and bright bedroom with a queen size bed.,55618434,Donald,Bronx,Bronxdale,40.85324,-73.86506,Private room,40,2,83,2019-06-16,2.08,1,276 +13658407,Spacious Sunlit 1 Bedroom Williamsburg Apt,26929394,Sushil,Brooklyn,Williamsburg,40.71503,-73.94733000000001,Entire home/apt,125,3,2,2017-07-17,0.08,1,0 +12825700,Comfortable Chelsea Oasis,5346314,Saskia,Manhattan,Chelsea,40.74267,-73.99915,Entire home/apt,195,3,1,2016-07-04,0.03,1,0 +34997345,Cozy 2Bed in the Heart of East Village!,263545490,Grace,Manhattan,East Village,40.725,-73.97903000000001,Entire home/apt,320,3,3,2019-06-30,3.0,1,0 +29905117,Great Master Bedroom - Like 5 Stars Hotel,224859583,Marvin,Bronx,Morrisania,40.83213,-73.90736,Private room,50,6,0,,,1,179 +21825923,"Beautiful, Lovely W. Village Room for Females!",93705483,Andrea,Manhattan,West Village,40.73158,-74.00151,Private room,138,2,92,2019-06-24,4.65,2,60 +24777719,Cosy Room in Bushwick Collective Near JMZ Trains,27163168,Hanna,Brooklyn,Bushwick,40.69639,-73.93245999999999,Private room,50,3,1,2018-05-08,0.07,1,0 +14553862,"Spacious, Clean Upper West Side Apartment",2005927,Josh,Manhattan,Upper West Side,40.79873,-73.96781999999999,Entire home/apt,200,1,2,2016-09-25,0.06,1,0 +29624337,Quiet spacious Williamsburg room w/ private bath,222990788,Reni,Brooklyn,Williamsburg,40.71018,-73.94671,Private room,100,1,4,2018-12-11,0.52,1,0 +35762202,Basement apartment in single family home,122178596,Elana,Brooklyn,Flatlands,40.62987,-73.94266999999999,Entire home/apt,80,2,0,,,3,65 +13380662,Entire Floor/1 Min from N Train/Private Entrance,61393656,Jamie,Brooklyn,Borough Park,40.62023,-73.99103000000001,Entire home/apt,73,1,65,2019-06-22,3.49,1,3 +3747240,Stunning 2BR Apartment in Top Location,2203817,Debbie,Brooklyn,Park Slope,40.67256,-73.97211999999999,Entire home/apt,150,5,10,2018-01-03,0.17,1,0 +2267692,Newly Converted Factory 1BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.7272,-73.94176,Entire home/apt,149,30,2,2014-08-18,0.03,52,337 +30591122,Cosy private bedroom in Williamsburg!,229469300,Alisa,Brooklyn,Williamsburg,40.70855,-73.95071999999999,Private room,55,2,2,2019-05-10,0.75,2,4 +34861069,Hideaway in Morning-side Heights,18682781,Dimitri,Manhattan,Harlem,40.82509,-73.9522,Private room,75,1,4,2019-06-30,2.55,1,90 +23256828,"Sunny, Spacious Brooklyn Room 1 Block From Train!",63943922,Maxwell,Brooklyn,Bushwick,40.68705,-73.91425,Private room,35,3,4,2018-07-01,0.24,1,0 +12645495,Newly Renovated Private 3 bedroom Apt.Near,60077920,Nicole,Queens,East Elmhurst,40.76107,-73.86664,Entire home/apt,175,2,74,2019-06-24,2.42,1,141 +27083575,Happy home 2,158178970,Raquel,Staten Island,Randall Manor,40.62972,-74.12539,Private room,22,1,21,2019-07-04,1.77,3,261 +34502889,NEW Sunny Light filled 1BR Apartment in Brooklyn!,260413032,David,Brooklyn,Bedford-Stuyvesant,40.69241,-73.95793,Entire home/apt,149,2,3,2019-07-02,3.0,1,268 +13623880,Conveniently located 2 BR Time Square Apartment,78934668,Marissa,Manhattan,Hell's Kitchen,40.76395,-73.9884,Entire home/apt,200,2,25,2018-04-22,0.68,1,0 +25968756,Cute private bedroom in Stuyvesant Height.,161649470,Jaquayala,Brooklyn,Bedford-Stuyvesant,40.68315,-73.92913,Private room,50,1,1,2018-12-11,0.14,1,0 +20503833,Private Room By Central Park,16441670,Maya,Manhattan,Upper West Side,40.79738,-73.96332,Private room,77,1,52,2019-06-30,2.41,1,198 +28464767,NY PRIVATE BEDROOM QUEEN BED BY 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.83088,-73.86492,Private room,42,2,23,2019-06-10,2.54,3,109 +6107289,Beautiful Brownstone in Greenpoint,13920011,Andrea,Brooklyn,Greenpoint,40.72987,-73.95296,Entire home/apt,350,5,11,2018-08-25,0.23,1,12 +20243875,Bright 3 floors home in Bushwick with precious art,6760095,Maria Veronica,Brooklyn,Bushwick,40.70089,-73.9273,Private room,250,2,0,,,1,260 +35229609,Prime Trendy Hells Kitchen Cozy Studio,264970269,Denis,Manhattan,Hell's Kitchen,40.76272,-73.99054,Entire home/apt,189,1,4,2019-07-01,4.0,1,156 +14670074,Sunny Room in heart of Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76388,-73.98874,Private room,110,1,40,2019-05-17,1.16,3,345 +32675979,Private Room With Kitchen Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74921,-73.99273000000001,Private room,100,1,9,2019-06-22,3.42,9,275 +17872922,Cozy 2-Bedroom in Williamsburg by the bridge,30494797,Terry,Brooklyn,Williamsburg,40.71185,-73.95806,Entire home/apt,100,20,10,2018-12-22,0.42,1,45 +170420,The Happy home!,812814,Lena,Manhattan,East Harlem,40.7932,-73.94006999999999,Entire home/apt,79,2,15,2016-02-15,0.16,1,0 +13668833,Charming 1BR Perfect for Couples or Solo Traveller,79488969,Sadie,Manhattan,Upper West Side,40.77597,-73.98038000000001,Entire home/apt,189,2,72,2019-07-01,1.95,1,27 +30594102,Comfy Private Room w/ Full Bed - Near Prospect Prk,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66055,-73.94242,Private room,55,1,19,2019-06-04,2.7,7,53 +17940198,"Cozy, queen sized bedroom in Bed-Stuy",24383863,Sophia,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94406,Private room,40,2,24,2019-06-25,0.98,1,1 +28642074,Cozy BX Corner,216136826,Shawn,Bronx,Wakefield,40.8878,-73.85372,Private room,47,2,13,2019-07-02,1.62,1,347 +20874372,2 Bedroom/2 Bath Spacious Loft in Clinton Hill,3905466,Stefanie,Brooklyn,Clinton Hill,40.68657,-73.96003,Entire home/apt,250,3,3,2018-10-08,0.16,1,0 +25031116,Bedroom in Bushwick.,189224482,Amanda,Brooklyn,Bushwick,40.68569,-73.9143,Private room,45,7,0,,,1,0 +29540204,Gorgeous Bedroom on Himrod! Him-1R-5,216235179,Nina,Brooklyn,Bushwick,40.70154,-73.91873000000001,Private room,50,30,0,,,17,325 +10165663,Cozy Private Garden Apartment,52183960,Michael & Bethany,Brooklyn,Bedford-Stuyvesant,40.68025,-73.91199,Entire home/apt,120,2,141,2019-07-06,3.35,1,215 +27989656,Modern Luxury Studio in Heart of Astoria,3221735,Roger,Queens,Astoria,40.76836,-73.91405,Entire home/apt,115,5,28,2019-06-29,2.75,1,38 +14322,Beautiful Apartment in Manhattan!!!,56284,Francesca,Manhattan,Kips Bay,40.73961,-73.98074,Entire home/apt,200,7,19,2019-03-25,0.22,1,257 +29174021,"Cosy, friendly room in great part of Bed Stuy!",122551862,Marian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.94528000000001,Private room,41,2,18,2019-06-15,2.23,2,18 +22729984,Madinina,116874533,Bertin,Manhattan,Harlem,40.812940000000005,-73.94609,Private room,90,2,30,2019-07-01,1.88,2,331 +33072533,Charming European Apt with City View's + Terrace,240480084,Brittany,Brooklyn,Williamsburg,40.71719,-73.94795,Entire home/apt,300,3,2,2019-06-03,0.98,1,59 +34045372,Soulful studio space near Yankees Stadium,12463953,Derrick,Bronx,Mott Haven,40.81865,-73.93014000000001,Entire home/apt,107,2,0,,,1,81 +28661274,Incredible Brookly Room!,205234874,Petera,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94341,Private room,60,2,19,2019-05-03,2.14,2,251 +35769795,Carlos apartment,269095308,Juan,Manhattan,East Harlem,40.79234,-73.94592,Private room,75,4,1,2019-06-23,1.0,1,24 +33523616,Nightly or long sublet. (12x12 room in 2BR),21210898,Fagan,Brooklyn,Bushwick,40.70723,-73.92066,Private room,120,2,0,,,2,0 +2127767,Sun-drenched 2 Bedroom Penthouse,923915,Matthew,Manhattan,East Village,40.72476,-73.97643000000001,Entire home/apt,250,4,34,2016-11-21,0.52,2,239 +16595,*HAVEN LOFT - Entire Floor - Six Windows - Bricks*,64522,Daniel,Brooklyn,Williamsburg,40.70933,-73.96791999999999,Entire home/apt,275,1,148,2019-06-23,1.4,1,362 +13881317,Deluxe Furnished Spacious Studio Apartment,44034761,Matt,Manhattan,Upper West Side,40.77906,-73.98507,Entire home/apt,110,1,65,2019-06-30,1.8,2,266 +9713934,Beautiful Apartment in the heart of Brooklyn,16164068,Richard,Brooklyn,Bedford-Stuyvesant,40.68,-73.95526,Private room,50,3,5,2017-05-29,0.13,1,0 +30509099,"Brooklyn Home - backyard, office, easy to city!",474940,Katie,Brooklyn,Bushwick,40.70077,-73.91724,Entire home/apt,120,30,0,,,1,0 +32634874,Sonder | Stock Exchange | Pristine 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70604,-74.01216,Entire home/apt,248,2,7,2019-06-26,2.59,327,294 +1044731,Dear Potential Airbnb Guests.,5751206,Nigel,Brooklyn,Flatbush,40.64745,-73.95606,Private room,96,3,58,2019-05-19,0.77,1,364 +36206797,Violet. flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64335,-73.9956,Shared room,35,1,0,,,4,174 +33419280,Beautiful and Modern 2 Bed- 20 Min To Manhattan,240217000,Toni,Brooklyn,Bedford-Stuyvesant,40.68523,-73.9384,Entire home/apt,89,1,2,2019-06-24,0.92,1,194 +34336086,ROOM # 4 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68981,-73.83198,Private room,58,1,6,2019-07-07,2.73,7,176 +11912865,CrashPadsUSA for Airline Crew. Nightly HOTBEDS,63560790,A.B.,Queens,Kew Gardens,40.70375,-73.8304,Shared room,45,1,17,2019-05-19,0.72,2,365 +16027709,WILLIAMSBURG BEDROOM,50087191,Montana,Brooklyn,Williamsburg,40.7082,-73.94476,Private room,47,1,5,2019-02-01,0.74,1,4 +5058683,It's always sunny in Williamsburg!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71301,-73.95374,Private room,96,1,175,2019-06-16,3.27,4,44 +5271661,Master Bedroom available with en suite bathroom.,6960329,Edna,Manhattan,Upper West Side,40.774840000000005,-73.98659,Private room,130,2,2,2019-06-30,0.94,1,150 +7363109,Manhattan Getaway - LES,34834676,Loreta,Manhattan,Lower East Side,40.717290000000006,-73.98442,Entire home/apt,189,5,21,2019-06-17,0.47,1,239 +3866843,"Renovated, Nice 1BD Central Park",1475015,Mike,Manhattan,Upper West Side,40.76908,-73.98483,Entire home/apt,87,30,5,2019-03-16,0.1,52,365 +29724480,J-NEW ROOM*NEAR CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.6728,-73.79495,Private room,59,4,2,2019-05-17,0.33,8,365 +31536758,Gorgeous views from cleanly home in Lincoln Square,236349458,Jeannette,Manhattan,Upper West Side,40.77714,-73.9881,Private room,180,3,13,2019-06-28,2.6,1,0 +28790940,East Village - Two twin beds,217154594,Ryan,Manhattan,East Village,40.73046,-73.98589,Private room,79,5,8,2019-04-28,0.85,1,51 +163809,Cool & Spacious Harlem Artist Flat,781647,Jorin,Manhattan,Harlem,40.80523,-73.95139,Entire home/apt,198,5,42,2019-06-03,0.44,2,234 +22730899,Cozy bedroom in the heart of Greenpoint,17338440,Justyna,Brooklyn,Greenpoint,40.729040000000005,-73.94885,Private room,50,5,1,2018-02-20,0.06,1,0 +149777,Artsy 1 bedroom Apt. 20 min to 42nd Grand Central!,716306,"Dee, Dre & Mama Shelley",Bronx,Woodlawn,40.89747,-73.8639,Entire home/apt,77,1,197,2019-06-23,2.49,1,309 +34563256,Cozy bedroom with Comfy Simmons bed -1min to train,5889721,Maco,Brooklyn,Bay Ridge,40.63459,-74.02257,Private room,48,1,4,2019-06-30,2.22,2,96 +16884587,"Beautiful 2 Bedroom Apartment Woodside, Queens, NY",112601190,Erfan,Queens,Woodside,40.74616,-73.90392,Entire home/apt,106,2,93,2019-06-20,3.13,1,34 +35570995,Clean warm.peaceful.joyful.respectful,231378604,S.,Manhattan,East Harlem,40.78986,-73.94783000000001,Private room,65,14,0,,,1,319 +8343222,"New Apartment, Close to Ferry",43977828,Mona And Wally,Staten Island,Silver Lake,40.62257,-74.09984,Entire home/apt,80,2,147,2019-07-05,3.19,1,324 +36356804,Bright quiet and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6618,-73.87908,Private room,48,2,0,,,2,329 +9842363,Luxury apartment across One World,50680790,Felipe,Manhattan,Financial District,40.7088,-74.01455,Entire home/apt,275,2,0,,,1,0 +7355158,Artistic Brooklyn Apartment,12644018,Mary,Brooklyn,Bushwick,40.70055,-73.92193,Private room,150,1,0,,,1,0 +26519306,Luxurious Harlem 1 Bdrm Steps from Subway,53276746,Andrea,Manhattan,Harlem,40.81581,-73.94142,Entire home/apt,150,3,22,2019-06-03,1.9,1,261 +12113015,5th ave & Broadway nr Times Square,26802681,Feli,Manhattan,Midtown,40.74749,-73.98873,Entire home/apt,99,1,172,2019-06-14,4.33,1,213 +2918225,"Central Penthouse Room, Terrace & Private Bath",1646926,Dave,Brooklyn,Williamsburg,40.71288,-73.95822,Private room,155,2,42,2016-12-11,0.67,1,0 +20183579,Regina's Dainty One bedroom Apartment close to All,113682832,Harry,Queens,Jamaica,40.69765,-73.8114,Entire home/apt,63,3,14,2019-04-28,0.9,2,257 +35460496,"1 room in the coolest neighborhood, good lighting",6291714,Ava,Manhattan,Little Italy,40.71703,-73.998,Private room,74,4,0,,,1,44 +2432545,Your own apartment in Bushwick,3053987,Darwin And Nicole,Brooklyn,Bushwick,40.6911,-73.92125,Entire home/apt,79,3,43,2018-07-07,0.71,2,0 +33406321,Cozy Williamsburg Bedroom Available,25604908,Nathalie,Brooklyn,Williamsburg,40.71606,-73.94093000000001,Private room,70,7,0,,,1,13 +29281300,NOMAD District Loft Tons of Light,210961816,Anthony,Manhattan,Midtown,40.74584,-73.98894,Private room,125,3,13,2019-06-23,1.51,1,14 +661814,1 bedroom apt in heart of Chelsea,3341426,Nika,Manhattan,Chelsea,40.741,-73.99956999999999,Entire home/apt,250,2,10,2016-05-07,0.13,1,0 +20688422,Giant 1br pre-war apartment in Flatbush / Lefferts,1393089,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.663340000000005,-73.94651,Entire home/apt,130,4,17,2019-05-20,0.78,1,110 +4976919,"Huge artist loft, heart of W'Burg!",373019,Leah,Brooklyn,Williamsburg,40.71189,-73.94632,Private room,62,30,3,2015-09-29,0.06,1,319 +18611605,Lovely Room in Brooklyn,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.6697,-73.99356999999999,Private room,145,1,80,2019-06-02,3.1,3,282 +31863369,"Eh it's an apartment, control yourself",209940785,Stephen,Manhattan,Harlem,40.82337,-73.95127,Shared room,100,1,1,2019-02-14,0.21,1,90 +3339399,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73316,-74.00632,Entire home/apt,300,30,13,2019-05-20,0.24,39,291 +22376093,Private Cozy Rustic Escape in Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71339,-73.93896,Entire home/apt,160,2,34,2019-07-01,1.84,3,272 +18997559,Heart of Brooklyn,56076854,Miranda,Brooklyn,Bushwick,40.6949,-73.9116,Private room,65,5,20,2019-04-21,0.78,2,365 +24939648,"Cozy, warm and Clean Stay in Flushing!",177156643,Dalila,Queens,Flushing,40.76991,-73.8265,Private room,50,3,24,2019-06-09,1.73,1,153 +19174707,THE Space,87553853,Titus,Brooklyn,East Flatbush,40.65203,-73.93316999999999,Private room,200,1,2,2019-03-31,0.08,1,178 +22281684,Modern Uptown Stay,32153139,Michelle,Manhattan,Harlem,40.81318,-73.94508,Private room,85,3,0,,,2,0 +21462551,Speakeasy Inn Bushwick One,24020292,Cristiano,Brooklyn,Bushwick,40.70121,-73.91986,Private room,85,1,89,2019-07-05,4.35,4,58 +15307735,An artistic experience,11018460,Patricia,Brooklyn,Williamsburg,40.7155,-73.95631999999999,Private room,125,5,15,2019-06-04,0.46,2,288 +16134738,Brooklyn Bedroom Near Subway with Washer/Dryer,9372363,Tj,Brooklyn,Borough Park,40.61426,-73.97746,Private room,65,3,8,2019-06-18,0.26,2,40 +266449,2 Bedroom Gem - Prime LES Location,1397115,Drew,Manhattan,Lower East Side,40.71992,-73.98773,Entire home/apt,195,4,68,2019-06-03,0.77,1,271 +29016112,Cozy Newly Apartment Close To Manhattan,216641760,Jamie,Queens,Jackson Heights,40.75281,-73.87654,Entire home/apt,128,3,33,2019-06-28,4.01,1,325 +6807079,Luxury Apartment in Brooklyn,7853731,Hod,Brooklyn,Crown Heights,40.67367,-73.96079,Entire home/apt,200,5,3,2018-12-22,0.06,2,157 +29205903,"Hidden gem in LES with Access to Backyard, F train",219782181,Vince,Manhattan,Lower East Side,40.71451,-73.98789000000001,Private room,78,1,22,2019-06-16,2.53,3,91 +34996046,A 29 units apt building...In a middle class area .,262312329,Alexander,Brooklyn,Fort Hamilton,40.61637,-74.02943,Private room,35,10,0,,,1,329 +15939098,"Sunny, Quiet Urban Oasis w/ Elevator! Near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77221,-73.94819,Entire home/apt,300,2,19,2019-05-21,0.6,3,179 +31835498,Large Private Bedroom with a High-rise View in NYC,22100836,Hana,Manhattan,Flatiron District,40.73943,-73.98532,Private room,65,1,14,2019-06-02,2.98,3,0 +31295524,Cozy Modern Getaway 30 mins from Manhattan (1Bdrm),232283561,Beverline,Bronx,East Morrisania,40.83025,-73.89134,Private room,70,1,1,2019-01-28,0.19,3,81 +35842268,A Modern Studio in the heart of Midtown West,188338351,Janette,Manhattan,Hell's Kitchen,40.75654,-74.00012,Entire home/apt,177,1,5,2019-06-30,5.0,1,86 +15531889,Charming & Cool Bushwick 2 Bedroom,30380688,Ashley,Brooklyn,Bushwick,40.68502,-73.90883000000001,Entire home/apt,145,2,142,2019-07-05,4.41,1,218 +8340665,True One BR - Upper East Side,43964253,Rob,Manhattan,Upper East Side,40.77455,-73.94981999999999,Entire home/apt,145,2,31,2018-12-30,0.69,1,0 +14150846,Beautiful Cozy Apartment near Soho!,1013329,April,Manhattan,East Village,40.725640000000006,-73.98772,Entire home/apt,142,3,15,2019-05-28,0.71,1,118 +35182511,Expansive and Bright Loft in Williamsburg,65610,Herman,Brooklyn,Williamsburg,40.71611,-73.95616,Entire home/apt,175,30,0,,,1,320 +16506016,Harlem Monthly Rental True Two Bedroom 1 Bath,12145783,Enid,Manhattan,East Harlem,40.8006,-73.94115,Entire home/apt,99,30,3,2018-12-23,0.22,2,220 +30595234,Single Bedroom-Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76718,-73.95715,Private room,80,1,3,2018-12-21,0.42,5,0 +2669366,"Priv. Room in a House,15min,Manhatt",13664245,Denise,Bronx,Claremont Village,40.84192,-73.91108,Private room,40,3,46,2019-05-31,0.72,2,292 +20329223,Most Sunny adorable Bedroom in Gramercy,48984291,M.J.,Manhattan,Kips Bay,40.74075,-73.98161999999999,Private room,110,14,0,,,1,283 +15232708,Bedroom w/ Gorgeous Tree Lined and River View,2118206,Andrea,Manhattan,Washington Heights,40.8337,-73.9458,Private room,33,10,5,2019-05-12,0.16,1,44 +27460411,"Breathtaking views in this unique, brand new apt",894516,Lev,Queens,Astoria,40.77198,-73.92206,Entire home/apt,120,3,23,2019-06-10,2.1,1,16 +26743638,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95038000000001,Private room,60,30,1,2019-03-19,0.27,8,217 +10246056,Williamsburg Renovated Vintage 3BR,52663715,Mo,Brooklyn,Williamsburg,40.7126,-73.94668,Entire home/apt,255,3,97,2019-05-31,2.37,1,230 +23700385,Two bedroom near the Cloisters,8335684,Mary,Manhattan,Inwood,40.86302,-73.92981999999999,Entire home/apt,91,1,2,2018-04-01,0.13,3,0 +245574,Brooklyn Brownstone apartment,1288460,Al-,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95383000000001,Entire home/apt,180,2,181,2019-06-05,1.92,1,280 +21802458,Charming loft-style apartment with private balcony,59281169,Nicole,Manhattan,Greenwich Village,40.73449,-73.99299,Entire home/apt,300,1,29,2019-06-22,1.46,1,39 +32402856,"POSH COBBLE HILL APARTMENT, 5 MINUTES TO MANHATTAN",153565366,Hugo,Brooklyn,Carroll Gardens,40.68391,-73.99226,Entire home/apt,190,4,12,2019-07-04,3.33,3,207 +33996094,Astoria Prime- 5 Min to LaGuardia/20 Min to NYC!,60737457,Paige,Queens,Ditmars Steinway,40.7733,-73.90569,Entire home/apt,225,1,23,2019-07-06,9.58,1,109 +4538019,Luxury Queen Bed_Plush Mattress,22384027,Shahana,Brooklyn,Brownsville,40.67061,-73.91672,Private room,39,1,130,2019-06-21,2.32,10,26 +23090298,Spacious apartment across from train station,171483814,Algin,Brooklyn,Flatbush,40.65331,-73.96271,Private room,58,2,2,2018-04-09,0.12,1,0 +6866960,Elegant 3 BR in Victorian Home by Brooklyn College,35983559,Laura,Brooklyn,East Flatbush,40.63868,-73.95049,Entire home/apt,150,4,93,2019-07-03,1.93,3,320 +12253338,Hudson River view Washington Height,51547958,Melissa,Manhattan,Washington Heights,40.83498,-73.94801,Private room,78,1,0,,,1,0 +2489407,Peaceful Bed w Breakfast - Manhattan,3562864,Daniel,Manhattan,Upper East Side,40.77194,-73.94773,Private room,84,3,150,2019-06-21,2.38,1,294 +8953050,Beautiful private studio,46794554,Bhargav,Queens,Ditmars Steinway,40.77987,-73.90309,Entire home/apt,75,7,0,,,1,0 +14417576,"Best View, Great Location, Concierge, Gym, Lounge",57910970,Adora,Manhattan,Financial District,40.71097,-74.01397,Entire home/apt,180,1,36,2017-05-09,1.05,1,0 +21549879,Luxury Williamsburg Loft. Two blocks from Subway!,4939914,Adam,Brooklyn,Williamsburg,40.71807,-73.9545,Entire home/apt,250,30,3,2018-06-02,0.15,1,0 +34284409,Sonder | 116 John | Modern Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70825,-74.00482,Entire home/apt,100,29,1,2019-06-06,0.88,327,358 +13170860,"***Luxury Doorman, Grand Central, United Nations**",52950465,Gal,Manhattan,Midtown,40.75266,-73.97251999999999,Entire home/apt,142,30,0,,,12,323 +14195493,"Spacious, Stylish, & Cozy in Bed-Stuy",2499618,Aurore And Jamila,Brooklyn,Bedford-Stuyvesant,40.68569,-73.92549,Entire home/apt,140,5,17,2019-04-27,0.49,1,330 +32493112,JFK LUXURY BEDROOM # 1,244082709,Jfk,Queens,Springfield Gardens,40.65953,-73.76923000000001,Private room,75,1,8,2019-06-20,1.86,7,179 +34753028,Single room (2),255641440,Li,Queens,Flushing,40.76108,-73.80736,Private room,32,1,3,2019-05-26,1.76,7,285 +22144662,Spacious Studio with Private Roof,73358102,Alex,Manhattan,Chelsea,40.75003,-73.99647,Entire home/apt,109,2,76,2019-06-14,3.95,1,4 +166541,Spacious Quiet rm - 20mins to Midtown,793620,Yvette,Manhattan,Washington Heights,40.84468,-73.94303000000001,Private room,75,2,34,2019-06-15,0.35,1,222 +18240632,Bronx Apartment,64425305,Posh,Bronx,Baychester,40.87372,-73.84065,Private room,75,1,3,2017-06-05,0.11,1,129 +5392517,A Spacious Private Peaceful Studio,1509452,Sayam,Brooklyn,Crown Heights,40.67494,-73.95841,Entire home/apt,80,15,2,2015-10-31,0.04,1,0 +931352,Lovely Private Room in Bushwick! :),4156449,Cassia,Brooklyn,Bushwick,40.69958,-73.92005999999999,Private room,40,5,0,,,1,0 +15986371,Harlem Humble Abode - 1 bedroom - Cute and Quaint,103839925,S,Manhattan,Washington Heights,40.83071,-73.94093000000001,Entire home/apt,200,5,0,,,1,0 +36314262,Lg and Lovely 2 bedroom in Astoria. Sleeps up to 8,273101976,Jp,Queens,Astoria,40.75825,-73.90959000000001,Entire home/apt,169,3,0,,,1,151 +21426105,Private room in convenient East Harlem location,6105242,Jill,Manhattan,East Harlem,40.78671,-73.94153,Private room,60,14,1,2019-01-07,0.16,1,55 +2933772,"Large, Bright Apt Near Central Park",11774630,Jane,Manhattan,East Harlem,40.7888,-73.94844,Entire home/apt,240,4,229,2019-07-01,3.67,2,52 +21471540,Charming Bushwick Shared Space,155923396,Kelly,Brooklyn,Bushwick,40.70031,-73.92848000000001,Private room,25,2,35,2019-04-30,1.8,3,3 +2653644,Private 1BR W/ Private Bathroom in Chinatown,6991947,Peter,Manhattan,Two Bridges,40.71226,-73.99416,Private room,100,1,103,2019-06-23,2.21,1,223 +35647681,Fabulous 1-bedroom apartment in Clinton Hill,268173853,Kim,Brooklyn,Clinton Hill,40.6853,-73.96661999999999,Entire home/apt,100,5,1,2019-06-29,1.0,1,243 +21951077,*LUSH SPACIOUS WEST VILLAGE LOFT*,1620498,Bec,Manhattan,Chelsea,40.73858,-73.99651,Entire home/apt,220,7,3,2018-08-19,0.16,1,0 +22032243,Historical Midtown East Retreat - Steps to the U.N,160892059,Cooper,Manhattan,Midtown,40.75292,-73.96386,Entire home/apt,145,5,16,2019-06-14,0.84,1,173 +8740683,AMAZING 2BR Apartment Elev/laundry!,1475015,Mike,Manhattan,Midtown,40.7569,-73.96408000000001,Entire home/apt,115,30,1,2017-01-27,0.03,52,341 +27016931,Bronx Apartment-> BRAND NEW BUILDING-BUILT IN 2010,203266238,Steve,Bronx,Morris Park,40.85322,-73.85144,Private room,75,5,6,2019-03-31,0.55,5,29 +33744630,Beautiful Park Slope Apartment with outdoor space,99884541,Phil,Brooklyn,South Slope,40.66052,-73.9811,Private room,50,30,0,,,1,0 +36145564,The place is a brand new gut renovated apartment.,24304607,Scott,Bronx,Kingsbridge,40.87997,-73.90135,Private room,100,1,0,,,1,115 +5789606,Cozy BedRoom in a great location.,30037999,Loyda,Manhattan,Morningside Heights,40.80593,-73.9583,Private room,70,2,200,2019-06-29,3.92,1,202 +17380055,Immaculate 1BR in quiet Bedstuy brownstone.,25270209,Robinette,Brooklyn,Bedford-Stuyvesant,40.68146,-73.94757,Entire home/apt,45,2,3,2017-03-01,0.1,1,0 +28135996,APARTAMENTO EN JACKSON HGTS,212526912,Martha Liliana,Queens,East Elmhurst,40.75727,-73.88346,Private room,75,2,1,2018-09-23,0.1,2,363 +22082423,Large open 1 bedroom near Prospect Park.,44021436,L,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95987,Entire home/apt,80,2,14,2019-06-23,0.83,1,0 +35353585,1 BR apt next to Washington Sq (Manhattan),192784843,Adam,Manhattan,Greenwich Village,40.73125,-73.99933,Entire home/apt,300,5,0,,,1,9 +9876971,"❤️ of Wburg, 2.5 Rms, Sep Entrances",1869332,Elli,Brooklyn,Williamsburg,40.71947,-73.95676999999999,Entire home/apt,219,30,3,2017-05-21,0.09,3,36 +21664152,"Bright, Clean & Cozy 1 BR close to all services..",124409689,Donalda,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9526,Entire home/apt,110,4,38,2019-06-26,1.91,1,309 +25231230,"Clean, quiet, close to Columbia and transit.",190629348,Xinhua,Manhattan,Upper West Side,40.80149,-73.96375,Private room,46,3,7,2018-08-30,0.51,1,0 +24793502,Conveniently located to manhattan,132669029,Edwin,Bronx,Throgs Neck,40.82601,-73.81907,Private room,50,3,19,2019-06-12,1.36,4,8 +36424334,Laundry + Central AC - Modern Style - Near Metro,155298656,Brad & Rachel,Queens,Ridgewood,40.70585,-73.91298,Private room,35,30,0,,,1,44 +18507990,Cozy One Bedroom in a Private House.Safe & Quite.,38604449,Pasang,Queens,Woodside,40.75558,-73.90534,Private room,45,2,30,2019-01-01,1.23,2,242 +30886242,Spacious and Bright bedroom (females only!),43960739,Eliana,Manhattan,Washington Heights,40.8455,-73.93987,Private room,52,1,1,2019-06-01,0.79,2,0 +3895455,Bedroom in Spacious Loft-Like Apt.,157795,Madeline,Brooklyn,Crown Heights,40.67658,-73.94683,Private room,42,4,4,2018-07-17,0.11,2,0 +21435622,"Small, quiet, and clean 1BR in Manhattan",100970377,Anabel,Manhattan,Harlem,40.81032,-73.94331,Entire home/apt,200,1,3,2017-11-24,0.15,1,0 +1304181,beautiful ROOM in a DREAM APARTMENT,7089676,Michel Fabrice,Manhattan,Midtown,40.75728,-73.97152,Private room,50,1,49,2017-12-30,0.91,1,14 +23378281,Spacious Loft Bedroom in Brooklyn With 2 Beds,160721088,Nigel,Brooklyn,East Flatbush,40.63571,-73.92398,Private room,150,5,1,2019-04-24,0.39,1,0 +28341280,Bushwick Rustic Loft,10812370,Al,Brooklyn,Bushwick,40.69987,-73.91821,Private room,69,1,28,2019-07-07,2.75,1,36 +26685276,Large eclectic plant filled home w private rooftop,7620548,Lena,Queens,Ridgewood,40.69212,-73.90188,Entire home/apt,170,7,0,,,1,10 +4716613,Private Room w/ Patio Near L Train!,2466294,Ian,Brooklyn,Bushwick,40.70131,-73.91745,Private room,90,2,8,2018-05-21,0.16,2,363 +35474830,Huge room in Brooklyn for rent,147228245,Evelyn,Brooklyn,Sunset Park,40.64658,-74.00986,Private room,38,10,0,,,1,67 +35707776,Share Room;Relaxing Guaranteed;Or REFUND !!,175730239,Baboucarr,Queens,Sunnyside,40.739,-73.92796,Shared room,30,3,0,,,12,360 +4956896,"Modern, Bright, One Bedroom",8951256,Solomon,Manhattan,Lower East Side,40.71316,-73.9916,Entire home/apt,180,3,38,2019-06-07,0.81,1,36 +8939341,Stay in the heart of Williamsburg,46628999,Sabine,Brooklyn,Williamsburg,40.71282,-73.95537,Entire home/apt,140,3,8,2018-11-09,0.18,1,0 +30877996,NYC loft by the beach,31307082,Veronica,Staten Island,Arrochar,40.58957,-74.07666,Entire home/apt,100,2,18,2019-07-08,2.81,1,296 +7596341,Midtown Manhattan best Location,17675081,Nathalia,Manhattan,Midtown,40.7601,-73.96746,Private room,125,1,0,,,1,0 +35147457,Luxury 2BR Dumbo Brooklyn. Amazing Views!!,264689880,Paul,Brooklyn,Vinegar Hill,40.70344,-73.9839,Entire home/apt,350,3,0,,,1,51 +19204555,Bedroom in renovated apartment -Astoria,75563831,Rayan,Queens,Astoria,40.76012,-73.9092,Private room,45,10,17,2019-05-07,0.69,2,283 +3851623,"Convenient, Greenwich/West Village Apartment",1582736,Pam,Manhattan,Greenwich Village,40.7338,-73.99498,Entire home/apt,200,5,7,2019-01-05,0.18,1,0 +35744524,Comfy house close to Central Brooklyn,258885293,Gedalia,Brooklyn,East Flatbush,40.65937,-73.9348,Private room,59,1,3,2019-07-06,3.0,1,343 +13092405,Midtown Apartment,72684665,David,Manhattan,Midtown,40.75733,-73.96576999999999,Entire home/apt,150,1,136,2019-06-21,3.71,1,248 +1097816,Group-Student-Friendly Bklyn House,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63612,-73.946,Entire home/apt,325,2,19,2018-12-27,0.31,4,328 +34971449,Amazing 1 bed 1 bath in full service bld #6118,35098529,David,Manhattan,Kips Bay,40.74536,-73.97799,Entire home/apt,180,30,0,,,5,327 +2261018,Studio Apartment on 35th and 3rd ,9389685,Bobbi,Manhattan,Murray Hill,40.7461,-73.97628,Entire home/apt,175,1,15,2015-09-25,0.29,1,0 +19820148,Amazing rooftop for unforgettable stay in New York,31284229,Eddie,Manhattan,East Harlem,40.79652,-73.93323000000001,Private room,120,1,1,2017-07-19,0.04,1,0 +848220,LUXURY APT w PRIVATE GARDEN NYC UES,4425694,Gregory,Manhattan,Upper East Side,40.767140000000005,-73.95922,Entire home/apt,160,1,187,2019-05-24,2.36,1,221 +22713294,Cozy Ridgewood Spot,58884411,Hubert,Queens,Ridgewood,40.70111,-73.89988000000001,Private room,25,3,0,,,1,0 +30264393,Hendrix Upstairs Oasis Rm #3,105878573,Tonisha,Brooklyn,East New York,40.66522,-73.88686,Private room,50,1,20,2019-05-31,2.82,5,62 +13264690,Beautiful and Comfy Private Room,38815234,Viviana,Manhattan,Harlem,40.82605,-73.94219,Private room,55,3,60,2019-06-21,1.68,2,246 +35509152,"Charming 1BR apt, Penn Station:)",192505058,Celine,Manhattan,Chelsea,40.75117,-73.99783000000001,Entire home/apt,220,3,2,2019-07-02,2.0,1,54 +7985537,Cozy Apartment in BKLYN near Prospect Park!,15311573,Alicia And Zach,Brooklyn,Prospect-Lefferts Gardens,40.65798,-73.95985,Private room,83,3,14,2017-01-02,0.31,1,0 +35257081,Private Room in Manhattan 15 min. from Midtown!,265424495,Benat,Manhattan,Harlem,40.80486,-73.94754,Private room,50,1,7,2019-06-30,5.83,2,267 +36391615,Hidden gem! Cozy home in heart of Lower East Side,70653354,John,Manhattan,Lower East Side,40.72013,-73.98769,Entire home/apt,235,1,0,,,1,349 +26984054,QUEEN BED - SUNNY DUPLEX BY TRAIN - 15 MIN TO CITY,141362503,Michael,Brooklyn,Williamsburg,40.70719,-73.94021,Private room,70,2,37,2019-06-15,3.14,2,362 +12681206,Very big room in Designed apt.15 mins to Manhattan,68909853,Belgin,Queens,Sunnyside,40.73944,-73.92687,Private room,80,2,53,2019-06-09,1.37,1,364 +13046279,Cozy 2 bedroom apt in Manhattan,364558,Khatia,Manhattan,Washington Heights,40.83805,-73.94306999999999,Entire home/apt,150,2,17,2019-07-02,0.45,1,15 +36312752,Spacious 1 bedroom Open Concept Apt in E Flatbush.,45631198,Arturo,Brooklyn,East Flatbush,40.63845,-73.94365,Entire home/apt,63,1,0,,,1,19 +27824606,Huge outdoor w/ amazing view right from your room,73820234,Yeon,Manhattan,West Village,40.73213,-74.00865,Private room,100,3,35,2019-06-07,3.3,1,112 +18560569,Central Park north spacious residence,9727058,Pat,Manhattan,Harlem,40.80389,-73.95178,Entire home/apt,199,3,17,2019-04-07,0.65,1,280 +4840977,Spacious Chinatown/LES 2 Bedroom,24913141,Mara,Manhattan,Lower East Side,40.7182,-73.99325999999999,Entire home/apt,300,6,0,,,1,0 +25798995,ARTIST SPACE,850526,Fallon,Brooklyn,Bushwick,40.69133,-73.90538000000001,Private room,45,4,6,2018-09-22,0.47,1,0 +13898236,2 Floor Condo in Williamsburg with Pvt Terrace,2962330,Thobey,Brooklyn,Williamsburg,40.716840000000005,-73.94578,Entire home/apt,250,1,0,,,1,0 +1983466,A Cozy Creative Room for Nomads,2777672,Kalae,Manhattan,Upper West Side,40.80168,-73.96253,Private room,87,2,272,2019-06-16,4.02,3,133 +21800820,Queen Room in Prospect Lefferts Gardens Flatbush,1512819,Sydney,Brooklyn,Flatbush,40.65314,-73.95304,Private room,40,5,12,2019-04-30,0.7,5,67 +28963068,Manhattan-Bronx Large Studio Apt in Mott Haven,218311373,Yizhak,Bronx,Port Morris,40.80861,-73.93015,Entire home/apt,100,1,25,2019-06-17,2.81,1,39 +13981865,纽约之家(Sunny Home4),27673980,Amy,Queens,Flushing,40.74447,-73.83185999999999,Private room,50,1,60,2019-06-23,1.68,8,53 +25420704,place on the bay,191901037,Marsha,Brooklyn,Sheepshead Bay,40.58484,-73.94022,Private room,70,10,1,2018-06-30,0.08,2,331 +27681497,Private top-floor in historic Brooklyn Brownstone,38956453,Paula And Jorge,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9358,Entire home/apt,125,2,51,2019-07-01,5.03,1,89 +257568,Zen Den (Airport Pickup: JFK & LGA),1123923,Adolfo,Brooklyn,Cypress Hills,40.67855,-73.8896,Private room,48,90,53,2017-08-12,0.57,2,1 +11304836,Sunny 1-Bdrm Near Shopping,6761373,Iquo,Brooklyn,Flatbush,40.64495,-73.95896,Entire home/apt,69,5,1,2019-04-13,0.34,1,0 +19715121,Brooklyn Spacious Studio,34899836,Frances,Brooklyn,East Flatbush,40.65777,-73.91671,Entire home/apt,100,2,36,2019-06-16,1.57,1,56 +18205794,"Bright, Quiet and Modern--1,200 Sq Ft in W Village",1448674,Sean,Manhattan,West Village,40.7355,-73.99964,Entire home/apt,329,4,33,2019-06-09,1.25,1,16 +17684098,Spacious Uptown Apartment near Columbia University,19884477,Marine,Manhattan,Morningside Heights,40.80935,-73.95786,Entire home/apt,139,1,77,2018-12-17,2.79,1,0 +35283981,PRIVATE suite / luxury building / west Chelsea,54481883,Camille,Manhattan,Chelsea,40.744690000000006,-74.00535,Entire home/apt,250,4,0,,,2,0 +33613736,"Bright Large Room, only 30mins to Times Square",5704932,Victor,Bronx,Fordham,40.86615,-73.88828000000001,Private room,60,2,6,2019-06-23,1.96,3,34 +33852604,Sunny-Junior-one bedroom-Prospect/Lefferts garden,112909067,Chaya,Brooklyn,Prospect-Lefferts Gardens,40.6605,-73.94767,Entire home/apt,120,2,9,2019-07-01,3.38,1,10 +150804,Lower East Side 2 Bed Apt.,726333,Peter,Manhattan,Lower East Side,40.72008,-73.98404000000001,Entire home/apt,250,4,19,2019-07-06,0.2,1,0 +19610687,Serene Goldfish Pond Garden Apt in Williamsburg,2597159,Alana,Brooklyn,Williamsburg,40.71304,-73.9482,Entire home/apt,215,2,74,2019-06-15,3.08,2,31 +7874958,Luxury Williamsburg Apt with Views,10447370,Jennifer,Brooklyn,Williamsburg,40.7167,-73.95272,Entire home/apt,210,2,2,2015-12-02,0.04,1,0 +3517621,Amazing Renovated studio MurrayHill,1475015,Mike,Manhattan,Kips Bay,40.74318,-73.97858000000001,Entire home/apt,87,30,4,2019-06-30,0.07,52,343 +30639972,Prime Doorman Elevator! Huge One bedroom UN 5239,16098958,Jeremy & Laura,Manhattan,Midtown,40.75501,-73.96594,Entire home/apt,220,30,0,,,96,342 +1533652,Charming Central Park Studio: Summer Park Strolls!,8178950,Mari,Manhattan,Upper West Side,40.783570000000005,-73.97268000000001,Entire home/apt,121,7,76,2019-06-30,1.11,1,151 +10452,Large B&B Style rooms,35935,Angela,Brooklyn,Bedford-Stuyvesant,40.6831,-73.95473,Private room,70,1,74,2019-05-12,0.66,2,269 +7131007,Cozy Home in Brooklyn Brownstone,2830197,Roberta & Rob,Brooklyn,Bedford-Stuyvesant,40.6852,-73.95636,Entire home/apt,110,3,14,2017-10-15,0.29,1,0 +5678143,Perfect Studio on Ft. Green Park!,93781,Devin,Brooklyn,Fort Greene,40.6918,-73.9729,Entire home/apt,130,7,83,2019-06-21,1.59,1,67 +9128491,Rooftop View from Brooklyn,47549695,Lena,Brooklyn,Crown Heights,40.67846,-73.96242,Private room,60,4,2,2016-05-28,0.05,1,0 +12148215,Luxury April Sublet in Manhattan NY,53930780,Thomas,Manhattan,Harlem,40.80422,-73.95495,Private room,45,1,1,2016-04-06,0.03,1,0 +32405524,Spacious New Apartment- BROOKLYN,102692931,Brynlee & Lawrence,Brooklyn,Cypress Hills,40.68632,-73.87791999999999,Entire home/apt,179,4,10,2019-07-03,3.37,1,17 +20235984,Bright Room in a 4-bed Apartment in Bushwick,34821813,James,Brooklyn,Bushwick,40.70115,-73.9212,Private room,55,6,0,,,1,0 +21933372,Lovely Astoria apartment will make you feel home!,120284390,Derya,Queens,Astoria,40.7723,-73.9281,Private room,100,3,0,,,1,0 +25426171,Private room w/ pvt entrance near Times Sq 32C,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99651,Private room,55,7,9,2019-05-21,0.91,47,324 +19763657,East Williamsburg Sanctuary at Morgan L train,19612095,Ellie,Brooklyn,Williamsburg,40.70496,-73.93122,Private room,65,2,20,2019-05-07,0.83,2,179 +29629878,Sun-drenched Executive Suite 3,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68193,-73.91252,Private room,100,3,6,2019-06-28,0.95,3,348 +35151658,Sunny Williamsburg Room w/ Access to Garden!,34667377,Misha,Brooklyn,Williamsburg,40.71124,-73.96069,Private room,75,2,5,2019-06-26,4.69,1,72 +6290988,The Heart of Fort Greene,612221,Yvette,Brooklyn,Fort Greene,40.68648,-73.97525,Entire home/apt,120,1,7,2016-05-22,0.17,1,239 +18787858,Fabulous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74814,-73.97693000000001,Entire home/apt,150,30,1,2019-05-16,0.56,50,180 +15855646,Private & comfortable room near Prospect Park,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9563,Private room,100,2,90,2019-06-23,2.95,2,0 +16580,"Sunny, Modern room in East Village!",64442,Reka,Manhattan,East Village,40.726490000000005,-73.97904,Private room,80,1,338,2019-07-01,4.72,2,72 +21985279,"3-Bedroom House with Hot Tub Near JFK, LGA & NYC",151880786,Colin,Queens,Richmond Hill,40.70231,-73.82722,Entire home/apt,66,30,9,2018-09-16,0.47,1,173 +28439572,Amazing Soho Apartment,2740709,Cathal,Manhattan,SoHo,40.72615,-74.00325,Entire home/apt,285,4,1,2018-09-16,0.1,1,7 +17339881,Brownstone Studio,115854410,Michelle,Brooklyn,Bedford-Stuyvesant,40.68469,-73.947,Entire home/apt,110,3,116,2019-06-21,4.03,1,216 +1222563,"Renovated, Residential Space",3475005,Yolanda,Queens,Queens Village,40.70382,-73.73955,Entire home/apt,84,2,172,2019-06-27,2.32,2,345 +24947076,"3-bedroom sunny, quiet, spacious Williamsburg apt",17344471,Chris,Brooklyn,Williamsburg,40.71698,-73.94224,Entire home/apt,233,6,0,,,2,0 +21931779,Beautiful Art Deco Master Bedroom in Astoria NY,147252767,Melanie,Queens,Astoria,40.76354,-73.91341,Private room,50,1,6,2018-04-07,0.31,1,0 +19891174,Bright Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6582,-73.98235,Private room,49,1,109,2019-06-29,4.99,7,258 +18429093,Cozy one bed with balcony and pool,113805886,Yaacov,Manhattan,Upper East Side,40.778220000000005,-73.95136,Entire home/apt,160,31,7,2019-04-10,0.29,33,330 +22400476,"Free yoga & sauna, awesome room. Sunny, wood floor",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68105,-73.99266999999999,Private room,53,1,20,2019-03-23,1.29,4,151 +19838917,ABSOLUTE PRIVACY - 10 Mins to JFK 20 Mins to LGA!,135337934,Steve,Queens,Queens Village,40.70969,-73.73133,Entire home/apt,110,2,20,2019-06-19,0.84,2,27 +6725463,Sunny Midtown Apartment,19406327,Ze,Manhattan,Murray Hill,40.74786,-73.97277,Shared room,160,1,0,,,1,365 +7257163,Super Charming West Village Place,1467387,Ali,Manhattan,West Village,40.7332,-74.00281,Entire home/apt,175,21,17,2017-08-10,0.36,1,0 +1264621,nice room in bedstuy N,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68388,-73.95019,Private room,65,1,85,2019-06-03,1.16,15,345 +4148088,Central Harlem Private Studio,11950557,Loni & Russ,Manhattan,Harlem,40.80709,-73.94951999999999,Entire home/apt,135,2,232,2019-06-23,4.01,1,192 +7419040,Sunny Greenpoint 1 Bedroom with vintage feel,30423241,Nick,Brooklyn,Greenpoint,40.72927,-73.95707,Entire home/apt,120,3,6,2018-04-18,0.17,2,43 +31466893,Corner 1br w/ Private Balcony w/ Central Park View,13773574,Cecile,Manhattan,Midtown,40.76473,-73.98131,Entire home/apt,225,30,0,,,12,343 +35535989,Peace home in Bedford Stuyvesant Brooklyn,107085019,Azuri,Brooklyn,Bedford-Stuyvesant,40.68557,-73.93023000000001,Private room,65,3,1,2019-06-11,1.0,1,348 +1386742,Columbus Circle/Central Park/Hells Kitchen,40100,Nicole,Manhattan,Upper West Side,40.76977,-73.98638000000001,Private room,89,3,231,2019-06-27,4.67,2,38 +643591,Central Park Luxury ( BEST DEAL ;),81335,Evan,Manhattan,Upper West Side,40.78455,-73.97352,Entire home/apt,150,5,8,2016-08-21,0.12,3,0 +16300514,Cozy 1 Bedroom Escape,68714722,Jessica,Manhattan,Upper East Side,40.77704,-73.94442,Entire home/apt,166,2,4,2018-12-28,0.49,1,0 +5319431,Beautiful Design studio next to Central Park!,27315132,Stratos,Manhattan,East Harlem,40.78866,-73.95461,Entire home/apt,110,6,25,2018-07-22,0.49,1,161 +32520602,"CLEAN, SAFE, AFFORDABLE",214863971,Elenora And Jason,Brooklyn,Flatlands,40.62063,-73.9244,Private room,40,2,10,2019-07-06,2.34,2,43 +4338548,Gorgeous Sunny Bohemian Duplex with Garden,910592,Angie And Matthew,Brooklyn,Bedford-Stuyvesant,40.6845,-73.93968000000001,Entire home/apt,102,1,10,2019-01-26,0.18,1,4 +11421477,West Village Modern Studio,1746436,Dami,Manhattan,West Village,40.73682,-74.00238,Entire home/apt,159,2,47,2019-05-27,1.16,1,361 +18498466,Sunny Duplex Oasis: 2 Bath+Roof—Williamsburg Loft,510745,Justin,Brooklyn,Williamsburg,40.71555,-73.94842,Entire home/apt,106,2,20,2019-06-09,0.76,2,0 +12676434,Charming Upper East Side Apartment,2750607,Roxanne,Manhattan,Upper East Side,40.77963,-73.94896999999999,Entire home/apt,150,4,0,,,1,0 +35197107,***Entire Apartment 5 mins to JFK***,265043054,Lovlee,Queens,Jamaica,40.67289,-73.76699,Entire home/apt,100,1,4,2019-07-01,4.0,1,78 +6767603,Quiet and spacious midtown apt,35432501,Sterling,Manhattan,Midtown,40.75861,-73.96939,Private room,110,1,0,,,1,0 +18357865,Great 1 BR in the heart of the upper west side,3404698,Tal,Manhattan,Upper West Side,40.78693,-73.97558000000001,Entire home/apt,150,30,1,2017-04-30,0.04,1,188 +4278568,The Lower East Side Experience,1143151,Mila,Manhattan,Lower East Side,40.72184,-73.98755,Entire home/apt,165,3,23,2019-05-27,0.41,1,0 +20998163,Walk to Times Square and Central Park-Cozy Room!!!,11392362,Maxim,Manhattan,Midtown,40.76357,-73.98308,Private room,107,3,133,2019-07-05,6.08,1,9 +4855004,Cozy UWS room with amazing Hudson view,12220,Corina E.,Manhattan,Upper West Side,40.77904,-73.98899,Private room,90,1,24,2019-05-18,0.46,3,341 +13959346,Room Available in Heart of Fort Greene,83156877,Nick,Brooklyn,Fort Greene,40.6875,-73.97605,Private room,145,1,0,,,1,0 +3678990,Sunny Warm Quiet NYC Retreat,7474069,Carrie,Manhattan,Washington Heights,40.84686,-73.94181,Private room,70,2,277,2019-06-13,4.67,3,244 +19363931,Crown Heights Guest House 3R,74541079,Abraham,Brooklyn,Crown Heights,40.6692,-73.9359,Entire home/apt,87,3,32,2019-07-01,1.36,9,72 +26002676,Lovely one bedroom apartment in Wiliamsburg,15570509,Helen,Brooklyn,Williamsburg,40.70779,-73.95467,Entire home/apt,350,2,8,2019-05-19,1.06,1,129 +25210171,Large one bedroom in upper manhattan,20882846,Jocelyn,Manhattan,Inwood,40.867340000000006,-73.92102,Entire home/apt,95,1,31,2019-01-13,2.28,1,0 +4490268,Elegant Bushwick Apartment,23293704,Su-Ling,Brooklyn,Bushwick,40.68488,-73.91225,Entire home/apt,139,2,190,2019-07-04,4.15,1,218 +20934581,Huge Homey Relaxing room 25 mins from Times Sq!,3630017,Cherie,Manhattan,Washington Heights,40.84594,-73.94039000000001,Private room,65,2,0,,,1,0 +22077920,Spacious appartment on Upper West Side,17322363,Luis,Manhattan,Morningside Heights,40.80608,-73.96396999999999,Entire home/apt,189,10,2,2017-12-30,0.1,1,0 +19278895,A Brooklyn retreat. 25M subway to the city.,423117,Jen,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92472,Private room,100,2,13,2019-05-19,0.52,1,179 +30150357,"Sun-drenched, airy industrial loft in Brooklyn!",30381245,Cristian,Brooklyn,Bushwick,40.69968,-73.93588000000001,Private room,85,1,4,2019-07-03,0.61,1,1 +8957189,Cozy 2 BR in heart of East Village,25492187,Abigail,Manhattan,East Village,40.72566,-73.98323,Entire home/apt,230,1,0,,,1,0 +3944627,Gramercy One Bedroom w Two Beds,71418,Matt,Manhattan,Gramercy,40.73845,-73.98373000000001,Entire home/apt,200,7,10,2018-06-29,0.17,1,100 +2683387,Great Room In Mid Town New York NYC,11837926,Anthony,Manhattan,Midtown,40.76419,-73.98018,Private room,140,7,49,2019-06-13,0.82,3,296 +454929,UNION SQUARE❤️PENTHOUSE 2FL+TERRACE❤️EAST VIllAGE,1385575,Alex,Manhattan,East Village,40.72981,-73.98318,Entire home/apt,239,2,67,2019-07-02,1.33,1,78 +7205456,Enjoy a few days in Greenpoint,16282382,Natalie,Brooklyn,Greenpoint,40.7359,-73.95799,Entire home/apt,130,2,3,2016-01-02,0.06,1,0 +17980714,Cozy East Village Room in huge apartment,23354644,Nancy,Manhattan,East Village,40.73242,-73.9868,Private room,48,2,33,2019-06-26,1.21,3,42 +35877927,Private apartment in bronx ##2,35783912,Pi & Leo,Bronx,Fordham,40.86294,-73.89242,Entire home/apt,99,2,0,,,8,343 +13416840,Modern Luxury apt in Design Centric Building,65590212,Andrew,Brooklyn,Downtown Brooklyn,40.69805,-73.9846,Entire home/apt,150,2,16,2016-11-16,0.43,1,0 +13311392,420 friendly COZY BRICK EXPOSED PVT RM,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68155,-73.91435,Private room,70,12,27,2019-06-16,0.73,4,342 +33912045,chill zone,176119156,Monica,Brooklyn,Williamsburg,40.70628,-73.9379,Entire home/apt,190,1,13,2019-06-23,5.91,1,171 +29384622,Private Sun-Splashed Studio Chelsea,221366300,Casey,Manhattan,Chelsea,40.74303,-73.99727,Entire home/apt,200,1,34,2019-07-02,4.66,1,0 +4973520,Sunny Room near Central Park,12342828,Marco,Manhattan,East Harlem,40.79399,-73.94255,Private room,84,4,99,2019-06-28,2.06,2,11 +12774144,Private big room/Queen bed/Nice Apt,65621401,Robert,Queens,Ditmars Steinway,40.778220000000005,-73.90895,Private room,49,1,7,2019-06-07,0.18,1,341 +6902855,Loft-like Apt on the Park / 18 min to Manhattan,36176332,Marcel,Brooklyn,Flatbush,40.65146,-73.96634,Entire home/apt,120,5,19,2016-07-25,0.39,1,1 +30126658,Cozy stylish luxury... in the heart of Soho!!!,3562922,John,Manhattan,Nolita,40.721540000000005,-73.99727,Entire home/apt,300,4,3,2019-05-28,0.48,1,97 +6884974,Private Bedroom in Cozy Loft,7238334,Ethan,Brooklyn,Greenpoint,40.72253,-73.94733000000001,Private room,110,1,1,2015-07-20,0.02,1,0 +3040585,Awesome Studio East 58&3rd avenue! ,1475015,Mike,Manhattan,Midtown,40.76132,-73.96611999999999,Entire home/apt,115,30,0,,,52,342 +18776908,Luminous studio in Union Square,2544425,Margot,Manhattan,East Village,40.733340000000005,-73.98904,Entire home/apt,160,7,35,2019-06-23,1.4,1,7 +13173176,"Large, New, Modern Uptown Room",9864136,Anthony,Manhattan,Harlem,40.82015,-73.94593,Private room,62,30,1,2016-07-17,0.03,26,188 +29256229,Crown Heights Urban Royal Penthouse,2715012,Maurice,Brooklyn,Crown Heights,40.67415,-73.94006999999999,Entire home/apt,175,2,4,2019-05-04,0.64,3,325 +24758343,Large 1 bedroom Upper East apartment,25146744,Dana,Manhattan,Upper East Side,40.77181,-73.95097,Entire home/apt,199,5,1,2018-08-05,0.09,1,0 +32238253,Sonder | Stock Exchange | Airy 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01183,Entire home/apt,234,2,8,2019-06-18,2.31,327,333 +36422456,3 Br ✰ Prime Williamsburg ✰ | 5 min to Manhattan ✰,255815505,Feliks,Brooklyn,Williamsburg,40.70626,-73.94699,Entire home/apt,245,4,0,,,1,156 +23900919,Welcoming and Beautiful bedroom in Brooklyn.,20134221,Jon,Brooklyn,Flatbush,40.6478,-73.96831,Private room,40,3,10,2019-05-30,0.63,1,0 +13573828,"Historic, Modern Brownstone Bklyn Duplex, Backyard",9440328,Laura,Brooklyn,Crown Heights,40.674690000000005,-73.94062,Entire home/apt,270,5,9,2018-12-29,0.25,1,0 +10283574,Apt next to Astoria park,35518413,Suhel,Queens,Long Island City,40.76322,-73.93334,Entire home/apt,100,1,206,2019-07-04,5.25,2,304 +9580218,Comfy Space in Gramercy/Manhattan,49592958,Jared,Manhattan,Gramercy,40.73684,-73.98194000000001,Private room,80,1,0,,,1,0 +12071454,TRENDY Brooklyn room,48764969,Alina,Brooklyn,Bushwick,40.6826,-73.90411,Private room,40,6,28,2019-04-14,0.7,2,298 +22054258,Chambre pour couple où personne seule,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82496,-73.91389000000001,Private room,45,2,54,2019-06-23,2.94,2,313 +1988823,Family Friendly Apt in Quiet Building,10256663,Rachel,Manhattan,Harlem,40.81402,-73.94358000000001,Entire home/apt,175,3,136,2019-07-02,2.0,1,171 +31201815,Cozy Loft Bedroom With lil Couch Underneath. =],217950098,Soft,Bronx,Melrose,40.81712,-73.9209,Private room,100,1,3,2019-06-03,1.05,1,150 +5207973,Bright 2BD in East Village,26942242,Alfred,Manhattan,East Village,40.7295,-73.98623,Entire home/apt,230,2,1,2015-03-31,0.02,1,0 +18828803,Amazing Apt step away from the Time Square/72C,48146336,Irina,Manhattan,Hell's Kitchen,40.76136,-73.99309000000001,Entire home/apt,160,30,4,2018-06-16,0.17,20,313 +16412823,Beautiful Area. Central Park views. Classic Apt,20578378,Brooklyn,Manhattan,Upper East Side,40.77547,-73.9623,Private room,105,2,35,2019-06-28,1.35,1,327 +8987462,Lux Apt by Botanic Garden & Museum,2932525,Joel,Brooklyn,Crown Heights,40.66352,-73.96005,Entire home/apt,170,3,28,2018-10-01,0.62,1,0 +9035181,Cute Clinton Hill brownstone apt!,15055897,Heather,Brooklyn,Clinton Hill,40.6921,-73.96603,Entire home/apt,125,3,3,2017-01-02,0.08,2,0 +6885805,Private room in South Williamsburg,5743711,Frasier,Brooklyn,Williamsburg,40.70748,-73.95503000000001,Private room,75,2,2,2015-10-11,0.04,1,0 +28937584,Cozy Private Room in Uptown Manahattan,43027007,Robbie,Manhattan,East Harlem,40.7949,-73.93627,Private room,57,1,26,2019-06-03,2.82,1,344 +34550196,Cozy Home in Safe Neighborhood Near Times Square,157208948,Jane,Manhattan,Hell's Kitchen,40.76761,-73.99208,Entire home/apt,310,2,5,2019-06-23,3.13,1,101 +35265786,Cozy bedroom in Long Island City,265506523,Leila,Queens,Astoria,40.756,-73.91589,Private room,80,2,1,2019-07-01,1.0,1,87 +36019067,Cozy Sunlit Brooklyn Apt (GREEN ROOM),119051571,Sou,Brooklyn,Bedford-Stuyvesant,40.69346,-73.96064,Private room,90,1,1,2019-06-29,1.0,2,321 +34470953,Chelsea Pines Inn - Hide Away Suite,255234351,Ejaz,Manhattan,West Village,40.73968,-74.00455,Private room,299,1,0,,,4,269 +2071420,Classic Chelsea Brownstone 1 Bedroom,10590692,Wade,Manhattan,Chelsea,40.74374,-74.00044,Entire home/apt,199,2,177,2019-07-01,2.85,2,112 +498859,"NYC 30 min by Subway, Brooklyn 2",2462260,Dimitry,Brooklyn,Brighton Beach,40.5822,-73.96392,Entire home/apt,169,4,63,2019-07-06,1.27,1,323 +24884922,"Sunny, zen spot in the Heart of East Village",150238950,Natalie,Manhattan,East Village,40.72691,-73.9813,Entire home/apt,136,2,6,2019-06-02,0.42,1,39 +7810109,1 bedroom garden apartment,30247185,Samantha,Queens,Ridgewood,40.70994,-73.90201,Entire home/apt,65,1,2,2015-09-03,0.04,1,0 +19824236,Lovely Apartment 1bd Clean & Quiet. You'll love it,8154922,Ivan,Brooklyn,Bay Ridge,40.63347,-74.02739,Entire home/apt,60,30,0,,,1,0 +10137048,Gorgeous Upper West Side Studio,52022983,Ashley,Manhattan,Upper West Side,40.7937,-73.9652,Entire home/apt,150,1,0,,,1,0 +35992447,"Amazing Bedroom , two stops from Times Square! LIC",218986739,Mary,Queens,Long Island City,40.74586,-73.94553,Private room,79,2,0,,,2,279 +24806106,“Studio” ideally located across Golf Course,132669029,Edwin,Bronx,Throgs Neck,40.81437,-73.82774,Entire home/apt,74,2,37,2019-06-13,2.63,4,70 +28916850,Bushwick modern luxury: 2 bed 2 bath apartment,4765119,Jasmine,Brooklyn,Bushwick,40.68782,-73.91071,Entire home/apt,149,20,4,2019-03-20,0.55,1,165 +20458372,1 bedroom apartment near Central Park,55133987,Vadim,Manhattan,Upper West Side,40.79532,-73.96344,Entire home/apt,130,9,0,,,1,0 +26750638,This is a beautiful condo with a lot of mirror,45093051,Vincent,Manhattan,Harlem,40.80045,-73.95166,Private room,100,1,13,2019-06-30,1.13,2,351 +21868933,Gorgeous Home with Private Terrace: Union Square!,9282079,Justine,Manhattan,Gramercy,40.73581,-73.98918,Entire home/apt,245,4,12,2019-05-25,0.62,1,0 +4995083,East Village Studio,25748492,David,Manhattan,East Village,40.72954,-73.98337,Entire home/apt,120,1,8,2016-05-30,0.18,1,0 +14916806,Voted “Best of Williamsburg” / 1000 sqft Loft,11227830,Logan,Brooklyn,Williamsburg,40.71865,-73.96392,Entire home/apt,249,2,43,2019-06-23,1.27,1,38 +6499870,Kid friendly 2 bedroom in Harlem,33975064,Jessica,Manhattan,Harlem,40.80571,-73.95429,Entire home/apt,150,3,2,2016-08-06,0.04,1,0 +20903359,Prime Location! Luxury Bldg-Lg Rm w/ City Views!,26019828,Sonia,Manhattan,Hell's Kitchen,40.76078,-73.99683,Private room,79,5,1,2017-09-25,0.05,2,0 +13662692,Lovely 1bed apt (UWS) next to 72nd St. Subway & CP,79231531,Nimmi,Manhattan,Upper West Side,40.77778,-73.97795,Entire home/apt,200,4,1,2016-09-13,0.03,1,0 +21073975,Charming 1 bedroom in mid-town Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75008,-73.97655,Entire home/apt,222,30,2,2018-07-28,0.15,50,364 +23608665,Huge bedroom with lots of light & free yoga/sauna!,6787883,Gabriela,Brooklyn,Carroll Gardens,40.68086,-73.9926,Private room,74,1,20,2019-05-19,1.31,4,162 +34178190,Room in Bright Authentic New York Style Apartment,204806146,Broque,Manhattan,Inwood,40.86594,-73.92487,Private room,46,1,7,2019-06-30,3.28,1,143 +2711082,Beautiful Home by Central Park,9854463,Ed,Manhattan,Hell's Kitchen,40.7678,-73.9868,Entire home/apt,140,2,41,2017-11-14,0.73,1,0 +6705604,Beautiful Private Bedroom in NY,35103293,Maria,Bronx,Norwood,40.87225,-73.88748000000001,Private room,33,7,40,2018-11-27,0.82,1,0 +15303092,Enjoy NYC and feel like your home!,97454026,Diana,Manhattan,Washington Heights,40.85679,-73.932,Private room,60,2,60,2019-06-23,1.79,1,60 +1290336,Spacious & Stylish 2br-Prime Williamsburg Hot Spot,1240820,Triny,Brooklyn,Williamsburg,40.71787,-73.95585,Entire home/apt,295,2,114,2019-07-05,1.59,3,79 +22305350,"Bright, clean, private room in good neighborhood",335016,Theresa,Brooklyn,Bushwick,40.70398,-73.92403,Private room,29,2,7,2018-08-13,0.38,1,0 +12641611,Park Slope Gem,35383368,Cristina,Brooklyn,Park Slope,40.67466,-73.97711,Entire home/apt,175,3,0,,,1,0 +29531124,Charming private room 2 beds,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95153,Private room,65,30,10,2019-06-07,1.18,4,328 +30912673,Williamsburg Penthouse,50760546,CRNY Monthly Rentals,Brooklyn,Williamsburg,40.70885,-73.96767,Entire home/apt,250,180,0,,,31,173 +35649754,Perfect Times Square Apartment,78896912,Courtney,Manhattan,Hell's Kitchen,40.7637,-73.99184,Entire home/apt,150,1,0,,,1,2 +2234100,"Coffee,Tea&Milk Astor Place Lodging",10931680,John,Manhattan,East Village,40.72672,-73.98850999999999,Shared room,30,30,125,2017-12-31,1.88,1,304 +15969978,One Bedroom in Prospect Heights with a Cat!,21660871,Rebecca,Brooklyn,Crown Heights,40.67559,-73.96066,Entire home/apt,45,3,1,2016-11-16,0.03,1,0 +25251220,"Very Quiet 'nd Safe, overlooking backyard gardens",133123832,Parmenides,Manhattan,Upper West Side,40.78818,-73.97057,Entire home/apt,113,30,0,,,3,315 +6071456,Super cool and sunny apartment in Crown Heights,21248779,Charles,Brooklyn,Crown Heights,40.67406,-73.95234,Entire home/apt,149,2,22,2019-06-25,0.49,1,365 +9607995,Cozy 3 BD in NYC's East Village,45100854,Will & Tash,Manhattan,East Village,40.72401,-73.98061,Private room,75,5,4,2017-02-22,0.09,2,0 +29628979,Queen Studio Room In Boutique Hotel,33213436,Alec,Brooklyn,Gowanus,40.67955,-73.98435,Private room,149,1,7,2019-06-03,0.95,8,365 +10563686,Large Private 2BR Apartment by Park,1258469,Mark,Brooklyn,Fort Greene,40.68983,-73.97327,Entire home/apt,125,1,75,2019-05-11,1.81,1,171 +35011803,"❤️A Private Studio On Roof, Private bath + Deck",228473476,Mia,Brooklyn,Bushwick,40.69469,-73.92475,Private room,90,5,7,2019-07-04,5.12,1,133 +25156498,Charming Loft apartment with great light!,54469570,Trina,Manhattan,Chelsea,40.749,-73.99466,Private room,75,2,2,2018-06-05,0.15,1,0 +13673242,Luxurious 1 or two bed rm private apartment,79505257,Darryle,Staten Island,Howland Hook,40.63245,-74.17065,Entire home/apt,100,3,21,2019-05-12,0.57,1,88 +22953869,Beautiful open layout studio near Prospect Park,98272,Martin,Brooklyn,Flatbush,40.652,-73.95805,Entire home/apt,110,3,32,2019-06-15,1.9,1,0 +1101035,Sunny 1 or 2 BR apt in Boerum Hill,6048514,Judy,Brooklyn,Boerum Hill,40.68779,-73.98517,Entire home/apt,189,4,227,2019-06-17,3.01,1,247 +35059538,Large private room with a queen bed near LGA (#4),264092618,Ajmol,Queens,East Elmhurst,40.76411,-73.87373000000001,Private room,70,1,13,2019-07-07,9.07,5,88 +27225628,Columbia/Morningside 1BR Sublet in 3BR Apt,23619449,Kaedin,Manhattan,Morningside Heights,40.81308,-73.95993,Private room,45,31,1,2018-08-31,0.1,1,1 +34176229,***Awesome bedroom in the heart of Manhattan***,34782150,Harold,Manhattan,Hell's Kitchen,40.76691,-73.98719,Private room,200,2,0,,,1,0 +35599003,Cozy 2 bedroom apartment near JFK,267015438,Jairo,Queens,Ozone Park,40.672990000000006,-73.845,Entire home/apt,167,5,1,2019-07-01,1.0,1,94 +28138470,New MidCentury Modern Apt In The Heart Of Brooklyn,42085952,Mj,Brooklyn,Flatbush,40.63088,-73.96113000000001,Entire home/apt,102,2,0,,,1,36 +22341660,"Cozy Private Room in Astoria, NY",67375050,Asema,Queens,Ditmars Steinway,40.77352,-73.91593,Private room,50,3,0,,,1,0 +19474100,Comfy in Queens,66734502,Laura,Queens,Astoria,40.76248,-73.91686,Private room,60,2,1,2017-07-05,0.04,2,0 +21655971,Sunny Spacious Modern Designer Apartment,55021,Sascha,Brooklyn,Fort Greene,40.69647,-73.97681,Entire home/apt,120,20,3,2018-06-30,0.16,1,58 +22929141,Gorgeous Park Slope Studio,36307813,Megan,Brooklyn,Park Slope,40.66669,-73.9807,Entire home/apt,150,14,0,,,1,0 +27650624,Dawn til' Dusk ROOFTOP! Only for the Day-late!,103865219,Dawn,Brooklyn,Bedford-Stuyvesant,40.67973,-73.92591999999999,Entire home/apt,350,1,2,2019-06-23,1.58,1,127 +7177958,Convienent 1-bedroom near Columbia,780952,Maria,Manhattan,Morningside Heights,40.80441,-73.96409,Entire home/apt,120,2,7,2016-10-10,0.15,1,0 +19346710,"1 bedroom w/ Queen bed, in Manhattan",135559842,Mauricio,Manhattan,Harlem,40.81375,-73.95268,Private room,49,2,0,,,1,0 +10253159,Newly renovated house 4 bedroom. Minutes from NYC,10721093,Jonathan,Staten Island,Castleton Corners,40.61042,-74.12276999999999,Entire home/apt,299,3,49,2019-06-30,1.91,1,350 +36060576,4FE Chelsea Studio Exclusively Yours,271275048,Isaac,Manhattan,Chelsea,40.74638,-73.99094000000001,Entire home/apt,125,30,0,,,2,245 +16451907,Lg Park Slope apt with Washer/Dryer & Backyard,1223281,Annette,Brooklyn,Gowanus,40.66621,-73.99311,Entire home/apt,100,5,10,2018-12-28,0.41,1,0 +8347980,Large Modern Studio Next To The Park,4230646,Jonathan,Manhattan,East Village,40.72595,-73.98218,Entire home/apt,150,2,6,2017-01-01,0.18,1,0 +4493658,Cute & Modern 1 Bedroom Apt,1869421,David,Brooklyn,Williamsburg,40.71256,-73.94188,Entire home/apt,100,8,14,2016-03-24,0.25,1,0 +13769006,Spacious Bright Private Room in Bedstuy!,80778982,Ilham,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91762,Private room,50,1,0,,,1,0 +6528040,NYC ROOM GORGEOUS LIGHT! RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82119,-73.95773,Private room,65,4,37,2019-06-15,0.76,3,196 +714049,An Oasis in the Big Apple 3,3621183,Paul,Queens,Woodside,40.74687,-73.89891999999999,Entire home/apt,120,3,55,2019-06-04,0.67,3,289 +16191967,Sunny new room D/ 30mins to Manhattan3,105640471,Jason,Brooklyn,Sunset Park,40.64074,-74.01512,Private room,53,1,18,2019-06-17,0.63,8,360 +18471232,Brooklyn Home away from Home,4894044,Azzie,Brooklyn,Crown Heights,40.66515,-73.95186,Private room,100,1,28,2019-06-24,1.92,1,88 +34935477,Private Oasis in the heart of the East Village,65814872,Parisa,Manhattan,East Village,40.72916,-73.98228,Entire home/apt,250,30,0,,,1,90 +33245975,Crashpad in Clinton Hill,3151,Eric,Brooklyn,Clinton Hill,40.69316,-73.96773,Private room,69,1,1,2019-05-26,0.67,1,179 +22913600,Comfy Bedroom in East Williamsburg,111782745,Brian,Brooklyn,Bushwick,40.70364,-73.93146,Private room,45,2,23,2018-08-19,1.39,2,0 +23874777,Sonder | 116 John | Lively 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70852,-74.0062,Entire home/apt,187,29,1,2019-05-28,0.71,96,332 +8845951,Cozy & Private Harlem Bedroom,4035773,T.,Manhattan,Harlem,40.80769,-73.95496999999999,Private room,70,1,76,2019-06-18,1.78,1,293 +31194580,1 bedroom in the East Village,105355373,Daniella,Manhattan,East Village,40.72293,-73.98777,Entire home/apt,143,30,0,,,1,57 +12223866,Melissa And Ray's Oasis,11157618,Ray,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95969000000001,Entire home/apt,85,5,93,2019-06-10,2.38,1,0 +19745952,"Cozy, charming uptown apartment!",31727657,Kristen,Manhattan,Washington Heights,40.84482,-73.93739000000001,Private room,70,4,1,2017-07-31,0.04,1,0 +19798405,The Astoria House: private 1B apt in NYC,446095,Chris And Nina,Queens,Ditmars Steinway,40.77148,-73.9138,Entire home/apt,170,2,56,2019-06-30,2.91,1,305 +765563,Big Comfy Beds & Breakfast on the Deck,4036685,Norman,Queens,Bayside,40.75666,-73.76314,Entire home/apt,299,2,67,2019-06-20,0.95,2,322 +9297852,Cozy Loft Apartment in Bushwick,48261452,Carolina,Brooklyn,Bushwick,40.70686,-73.91960999999999,Entire home/apt,99,30,7,2017-11-26,0.16,1,0 +26219420,"Welcome To Safe Space-warm, clean and friendly!",39805148,Chris,Queens,Jamaica,40.68727,-73.77858,Private room,75,1,5,2019-06-26,0.47,2,281 +33041634,"Zen Sanctuary! Stunning View, Prime Location",73369106,Adam,Brooklyn,Williamsburg,40.71864,-73.96106999999999,Entire home/apt,319,2,5,2019-07-06,1.9,1,47 +22370339,Beautiful One Bedroom,163576102,Shonelle,Brooklyn,Flatbush,40.63547,-73.9632,Entire home/apt,64,30,2,2019-04-30,0.15,1,268 +3983422,Chelsea Home with a View,17546682,Angela,Manhattan,Chelsea,40.74496,-73.99934,Entire home/apt,125,4,1,2018-07-19,0.08,1,0 +439750,Perfect apt. above L train Graham stop,1566042,Haley,Brooklyn,Williamsburg,40.71517,-73.94292,Private room,55,150,10,2018-05-19,0.14,1,97 +17586014,Spacious and Sunny in Prime Park Slope,119466544,Jim,Brooklyn,South Slope,40.66317,-73.98465,Entire home/apt,175,1,2,2017-03-24,0.07,2,0 +28050441,"Industrial Chic, Owners Suite",211893857,Vaughn,Brooklyn,East Flatbush,40.65943,-73.91939,Entire home/apt,110,2,45,2019-07-03,5.27,1,2 +648246,Spacious Brooklyn Loft w/ River View,62583,Karina,Brooklyn,Williamsburg,40.71227,-73.96776,Entire home/apt,195,1,39,2019-04-28,0.47,1,270 +20761768,"$6,500 p/m or short term, 5 Star, LUX, Clean, Big",22066372,Hutch,Manhattan,Upper East Side,40.76401,-73.95929,Entire home/apt,211,7,29,2019-06-29,1.34,1,237 +31225706,Sugar Hill Retreat (SPECIAL OPENING PRICE!),233559664,Mordechai,Manhattan,Harlem,40.82294,-73.94453,Entire home/apt,150,3,15,2019-06-18,2.9,1,7 +25833266,Huge private & cozy room in the Bronx!,194102474,Digna,Bronx,Claremont Village,40.84346,-73.91150999999999,Private room,35,1,49,2019-01-23,3.84,1,168 +16987408,"private, large, sunny, calm big room",113740169,Isa,Manhattan,Washington Heights,40.85411,-73.93167,Private room,45,30,4,2018-11-30,0.15,1,275 +1989972,Cozy & Nice Bedroom in an Apt/NYC.,10262420,Cesar,Manhattan,East Harlem,40.78813,-73.94495,Private room,86,4,37,2019-06-30,0.97,1,22 +11309973,ULTRA CHIC 3BR APT IN EAST VILLAGE!,2856748,Ruchi,Manhattan,East Village,40.73157,-73.98791999999999,Entire home/apt,278,30,0,,,49,339 +3284019,Spacious and Sunny 1BDR Astoria NYC,15055035,Michelle,Queens,Astoria,40.7631,-73.92262,Private room,70,3,25,2016-07-30,0.41,1,353 +4744487,Williamsburg Carriage House w/ yard,24487842,David,Brooklyn,Williamsburg,40.71181,-73.95736,Entire home/apt,118,30,29,2019-01-23,0.52,1,295 +28757780,New York City Private one bedroom and shared bath,216917414,Ramon,Manhattan,Washington Heights,40.851040000000005,-73.93979,Private room,60,2,12,2018-12-12,1.34,2,0 +35670657,Charming and quiet 2 bedroom on Washington Ave,18392694,Yamini,Brooklyn,Crown Heights,40.67976,-73.9633,Entire home/apt,100,7,0,,,1,146 +35616470,"Great place, safety lovely convenient location",267933377,ゆりあ & Fredy,Manhattan,Upper East Side,40.78015,-73.94570999999999,Private room,100,2,0,,,1,89 +29157984,Double Bedroom in Modern Manhattan Apartment,219717193,Jessie,Manhattan,Gramercy,40.73288,-73.98250999999999,Private room,59,5,18,2019-06-21,2.01,2,5 +24391756,Sunny Apartment in Park Slope,20813915,Kimberly,Brooklyn,South Slope,40.66409,-73.9909,Entire home/apt,145,1,90,2019-07-08,5.97,1,212 +12252583,Cozy Bedroom In Prime Location,49121324,Zhaoyan,Brooklyn,Clinton Hill,40.68645,-73.96691,Private room,50,7,4,2016-07-20,0.11,1,0 +19049579,Spacious and Sunny 1+ Bedroom,7980049,Colin,Manhattan,Upper West Side,40.7951,-73.96675,Entire home/apt,165,2,8,2018-08-24,0.33,1,0 +17137388,Bohemian room in the heart of Greenwich Village,9132087,Brandon,Manhattan,Greenwich Village,40.72766,-73.99976,Private room,98,1,0,,,2,0 +34803347,Yu,197052947,Yu,Manhattan,Roosevelt Island,40.76417,-73.94865,Shared room,55,7,0,,,1,38 +7699516,HUGE 2 bdrm 30 m ride from Midtown,40443551,Sherry,Manhattan,Washington Heights,40.8508,-73.94004,Entire home/apt,112,1,1,2015-09-02,0.02,1,0 +22302587,Charming room perfect to spend Summer,8358654,Daniela,Brooklyn,Williamsburg,40.71796,-73.95522,Private room,75,2,0,,,1,0 +22518123,15 to JFK/LGA 30 to Manhattan.Close to St John’s,165307387,K,Queens,Jamaica Estates,40.71248,-73.78896,Entire home/apt,85,1,88,2019-06-27,5.14,1,339 +31884434,Studio B on Atlantic Ave,139838320,Bismillah,Brooklyn,Bedford-Stuyvesant,40.67991,-73.95168000000001,Entire home/apt,86,2,19,2019-06-25,3.54,2,284 +21395349,Spacious Long Term Rental in Elevator Building,24052348,Tara,Manhattan,East Village,40.72025,-73.97833,Private room,86,6,5,2018-01-14,0.25,4,0 +33496728,One bedroom apartment in Williamsburg,11740339,(Email hidden by Airbnb),Brooklyn,Williamsburg,40.7184,-73.94434,Entire home/apt,120,2,0,,,1,0 +34804749,Cozy East Village Studio - Backyard Space,81351940,Rick,Manhattan,East Village,40.72387,-73.97845,Entire home/apt,166,2,4,2019-06-30,2.79,1,75 +27580328,Large comfortable home 2 blocks from Times Square,207833780,Genisley,Manhattan,Hell's Kitchen,40.76228,-73.99025999999999,Entire home/apt,195,2,53,2019-06-23,4.86,1,150 +14759851,Cozy room in convenient Midtown West location,8048669,Lin,Manhattan,Hell's Kitchen,40.76144,-73.98849,Private room,100,2,16,2019-05-16,0.47,1,6 +3838416,Beautiful Huge 2Br House w/Backyard,107340,Eric,Brooklyn,Prospect-Lefferts Gardens,40.65806,-73.95815,Entire home/apt,225,4,3,2014-10-19,0.05,1,0 +32856048,"Dapper W.Village Studio w/Doorman, close to subway by Blueground",107434423,Blueground,Manhattan,West Village,40.7304,-74.00301,Entire home/apt,321,30,0,,,232,310 +3944625,Huge serene room in a perfect area!,20440955,Mario,Brooklyn,Brooklyn Heights,40.69417,-73.99443000000001,Private room,129,2,199,2019-07-06,3.42,1,298 +6898600,Bright cozy apartment,32775769,Remigijus,Brooklyn,Midwood,40.61679,-73.95521,Entire home/apt,89,7,5,2019-01-05,0.1,1,251 +4274462,Spacious and cosy private room.,22189723,Diego,Queens,Ridgewood,40.70439,-73.91111,Private room,49,2,37,2019-05-28,0.73,2,298 +21253000,Cozy 2-people room at Coliving in Bushwick!,10994664,Alexander,Brooklyn,Bushwick,40.69241,-73.90545,Shared room,35,30,0,,,8,312 +11851288,"spacious 1BR, 15 min to Manhattan",42308954,Tugce,Queens,Sunnyside,40.74156,-73.91866,Entire home/apt,110,3,6,2017-03-20,0.16,1,0 +30235273,*Easy check in Budget Room!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68197,-73.91235,Private room,40,2,11,2019-07-04,3.17,10,317 +3216134,Tranquil Washington Heights Space ,16288210,Cheryl,Manhattan,Washington Heights,40.84919,-73.94021,Private room,62,3,37,2017-05-09,0.61,1,35 +35804885,Cozy Classic Convenient Apartment Near The Park,269345151,Marlene,Brooklyn,Crown Heights,40.67221,-73.94847,Entire home/apt,100,2,0,,,1,87 +15492502,Nice Studio in Williamsburg,31627488,Anela,Brooklyn,Williamsburg,40.71923,-73.94258,Entire home/apt,70,1,86,2019-07-01,2.59,1,192 +31341166,"Stay like a NYker - Cheap, clean and close to All",137501374,LKL Rental,Queens,Elmhurst,40.74057,-73.86975,Private room,25,1,17,2019-06-20,2.79,3,231 +26593733,Affordable room in the heart of New York.,33055418,Jaime,Manhattan,Midtown,40.74573,-73.98323,Private room,90,3,6,2018-09-24,0.55,1,70 +12089013,NYC MIDTOWN WEST LUXURY 1BR APT! CITY VIEWS!,30283594,Kara,Manhattan,Midtown,40.76545,-73.98156,Entire home/apt,239,30,1,2019-02-28,0.23,121,351 +26596388,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,199956234,Kevin Unal,Manhattan,Harlem,40.80448,-73.95567,Entire home/apt,139,1,58,2019-06-18,4.89,1,96 +32846103,Cozy Apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68391,-73.91721,Private room,150,1,4,2019-06-02,1.26,2,267 +21147708,Full 2 Br a block from Central Park North,152584041,James,Manhattan,Harlem,40.799690000000005,-73.95449,Entire home/apt,170,3,44,2019-03-31,2.23,1,0 +16807550,Spacious room in North Williamsburg/Greenpoint,26420701,Helen,Brooklyn,Greenpoint,40.72601,-73.95501999999999,Private room,55,2,1,2018-05-06,0.07,1,0 +11827037,Spacious apt in Prospect Lefferts,63002307,Natalie,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95443,Private room,65,1,0,,,1,0 +9521704,Cute apartment in East Village,14391637,Maxime,Manhattan,East Village,40.72286,-73.9834,Entire home/apt,200,1,3,2016-01-02,0.07,1,0 +21936550,NYC master room with independent restroom for 2,42804325,诗月,Manhattan,Roosevelt Island,40.76858,-73.94436,Private room,70,7,1,2018-06-12,0.08,1,0 +12804309,Danish Modern in Brownstone,21221697,Devon,Brooklyn,Clinton Hill,40.68444,-73.96285,Entire home/apt,225,3,95,2019-06-22,2.48,1,122 +10199699,Welcome Students! Huge Very Private Uptown Room,16978120,Chip,Manhattan,Harlem,40.83,-73.94931,Private room,65,30,0,,,2,308 +28635684,Room with Amazing View in Manhattan!,216090534,Sophie,Manhattan,Hell's Kitchen,40.76539,-73.99145,Private room,150,2,38,2019-06-23,4.15,2,243 +27131151,The Brooklyn Blue House 4,183127881,Giana,Brooklyn,Canarsie,40.64651,-73.90043,Private room,59,2,28,2019-06-03,3.19,4,178 +29855524,Putnam Palace,39972598,Barbara,Brooklyn,Bushwick,40.68847,-73.91989000000001,Private room,70,4,1,2018-11-27,0.13,1,342 +33810572,Shared Room and Exp Heart of Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76661,-73.99082,Shared room,85,1,12,2019-06-28,4.44,9,161 +13248742,Spacious BR in large 2 BR apt in Roosevelt Island,69706365,Bernardo,Manhattan,Roosevelt Island,40.76205,-73.94975,Private room,79,4,2,2016-06-11,0.05,2,0 +27731269,"Be Our Guest! Live, Love Bed-Stuy",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68387,-73.94162,Entire home/apt,150,3,44,2019-07-06,4.14,3,252 +6726337,Beautiful 2 Bedroom Apartment!! NYC,21444167,Rony,Bronx,Kingsbridge,40.88238,-73.90689,Entire home/apt,159,3,8,2019-06-02,0.17,2,112 +6758846,"Williamsburg, BK large apt",22894987,Daniel,Brooklyn,Williamsburg,40.71085,-73.94894000000001,Entire home/apt,100,1,0,,,1,0 +18820068,Extra-Large 1 bedroom in Sutton Place,23572402,Andrew,Manhattan,Midtown,40.757540000000006,-73.96177,Entire home/apt,275,3,0,,,1,21 +35579436,The Artist's Loft,194369832,Adam,Manhattan,East Village,40.72347,-73.97792,Entire home/apt,200,2,1,2019-06-26,1.0,1,43 +19084168,Beautiful apartment overlooking Fort Greene Park,6219701,Timothée,Brooklyn,Fort Greene,40.68966,-73.97381999999999,Entire home/apt,150,10,1,2017-07-28,0.04,1,0 +2115773,Spacious 1BR Haven in Duplex w/Deck,514261,Vanessa,Brooklyn,South Slope,40.66639,-73.98706,Private room,120,7,0,,,3,0 +8994025,Sunny & Spacious Room w/ Private Bathroom,12774739,Stefan,Brooklyn,Bedford-Stuyvesant,40.68654,-73.95044,Private room,40,5,12,2019-03-10,0.28,1,0 +36321994,Private room in Williamsburg,273170125,Lipaz,Brooklyn,Williamsburg,40.7128,-73.93984,Private room,99,1,0,,,1,90 +13233113,Luxury Highrise 1bd -great views -central location,15774226,Mirza,Manhattan,Theater District,40.76318,-73.98473,Private room,104,5,0,,,1,0 +765203,Art Lover's Abode Brooklyn,2276842,Debbie,Brooklyn,Williamsburg,40.70745,-73.94306999999999,Shared room,52,3,19,2019-06-30,0.44,2,88 +9766228,Deluxe Williamsburg Apartment,38297722,Joe,Brooklyn,Williamsburg,40.71691,-73.93953,Entire home/apt,200,2,1,2016-01-03,0.02,1,0 +10812960,Beautiful Duplex in Crown Heights,17052634,Mike,Brooklyn,Crown Heights,40.67204,-73.94614,Private room,100,1,0,,,1,0 +21755486,"Cute Manhattan bedroom, close to all amenities",5982945,Nadia,Manhattan,Harlem,40.80791,-73.947,Private room,97,2,5,2018-12-09,0.26,1,365 +29708352,Privet living room,205131610,Steven,Brooklyn,Canarsie,40.64376,-73.90833,Private room,68,2,3,2019-06-02,0.47,3,365 +7988491,"Cute, Peaceful - East Williamsburg",83834,Jill,Brooklyn,Williamsburg,40.71381,-73.93619,Entire home/apt,115,7,0,,,1,0 +4968817,Hostal : FULL SIZE BUNK BED ( Bottom on floor),2793778,Fernando,Queens,Forest Hills,40.71543,-73.83564,Shared room,60,4,45,2019-04-12,0.87,5,0 +7761394,One room in a 4 Bedroom apt.,40812084,Chris,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92494,Private room,45,4,2,2015-09-29,0.04,1,0 +18286926,Joy's Luxury Apartment with Free Parking Space,126451493,Joy,Brooklyn,Canarsie,40.63136,-73.90921,Entire home/apt,125,1,26,2019-06-15,1.07,1,360 +18960496,In the Heart of Manhattan New York,132219692,Garen,Manhattan,Midtown,40.74683,-73.98761,Entire home/apt,158,1,138,2019-06-24,5.45,1,142 +34971155,Lovely 2Bed Apt Heart of Downtown! Steps to Train!,374557,Ohene,Manhattan,East Village,40.72376,-73.98623,Entire home/apt,250,4,0,,,1,141 +6124097,Amazing 2 Bedroom Chelsea,3035426,Dimitri,Manhattan,Chelsea,40.74089,-74.00180999999999,Entire home/apt,250,2,28,2019-05-26,0.56,1,328 +16428383,2 blocks to 2 ⭐️⭐️⭐️⭐️⭐️,45247495,Carlos,Bronx,Fieldston,40.892790000000005,-73.89945999999999,Entire home/apt,135,6,8,2019-07-01,0.32,1,250 +21244035,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70319,-73.8141,Private room,135,1,2,2018-06-10,0.09,18,365 +31994,Room with En Suite Bathroom & Deck,137814,Waldemar,Brooklyn,Clinton Hill,40.6873,-73.9634,Private room,76,2,426,2019-06-24,3.89,3,275 +20440400,East Village Getaway,42701042,Nick,Manhattan,East Village,40.72698,-73.98948,Entire home/apt,181,1,0,,,1,0 +2889781,Holidays in Manhattan ,14724243,Inga,Manhattan,Upper East Side,40.77291,-73.95176,Entire home/apt,130,25,3,2018-07-18,0.05,1,161 +16233577,Peaches Paradise.,101499766,Claudette,Queens,Springfield Gardens,40.68203,-73.75437,Private room,60,1,305,2019-07-07,9.83,2,341 +34791645,Mott Haven Dorm FF,30509656,Orit,Bronx,Port Morris,40.80858,-73.93164,Shared room,28,1,10,2019-06-23,6.82,8,351 +18669496,Med. sized bdrm in Historical house on Staten Isl.,128338539,Reuben,Staten Island,Stapleton,40.62981,-74.07998,Private room,50,1,25,2019-07-06,1.03,4,73 +20876208,"Good Access to Everywhere:)Bushwick, Brooklyn NY",127618565,Takanori,Brooklyn,Bushwick,40.70544,-73.91828000000001,Private room,59,1,90,2019-06-22,4.26,1,42 +6712530,⭐️Harlem getaway w/ great amenities,10771238,Justin,Manhattan,Harlem,40.82608,-73.9525,Private room,80,2,185,2019-06-19,3.72,3,203 +35193203,Entire Apartment in Bushwick w/ Private Backyard,264514482,Mathieu,Brooklyn,Bushwick,40.7005,-73.92412,Entire home/apt,100,4,0,,,1,5 +20230917,Private room with a private backyard,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69562,-73.95107,Private room,47,5,5,2017-11-04,0.21,2,0 +35485306,MODERN LOFT STUDIO IN CENTRE MANHATTAN (SLEEP 4)!,266800860,Marco,Manhattan,Murray Hill,40.74612,-73.97417,Entire home/apt,159,1,0,,,1,201 +27492039,Great Apt With Balcony and Steps To The Subway,166862866,Mariana,Brooklyn,Bedford-Stuyvesant,40.67712,-73.9226,Entire home/apt,148,1,63,2019-07-07,5.61,1,82 +8739326,1BR APT in LES with PRIVATE BACKYARD,2851789,Raquel,Manhattan,Chinatown,40.71569,-73.99174000000001,Entire home/apt,199,2,18,2019-06-15,1.28,1,1 +880256,Beautiful Trendy 2br Harlem Apt.,4655169,Rochelle,Manhattan,Harlem,40.82764,-73.93842,Entire home/apt,165,2,21,2019-01-02,0.3,1,347 +5424042,4 Bedroom Apt On Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.75077,-73.80676,Entire home/apt,259,1,72,2019-05-20,1.37,6,257 +17369078,Cozy room in Prospect Heights,16066047,Allegra,Brooklyn,Crown Heights,40.679190000000006,-73.95918,Private room,70,2,12,2019-06-28,0.47,1,120 +35193872,Cozy room,248731701,Claudia,Queens,Bayside,40.75982,-73.78312,Private room,130,5,0,,,1,177 +21239885,Spacious Oasis - Heart of Harlem - Great Location!,45688062,Chiarra,Manhattan,Harlem,40.81083,-73.95188,Private room,125,4,0,,,1,0 +16004977,Cosy renovated studio apartment in Bed Stuy,26243457,Lina,Brooklyn,Bedford-Stuyvesant,40.68919,-73.94073,Entire home/apt,80,3,6,2017-09-29,0.24,1,0 +36204725,Beautiful Bushwick bedroom w/backyard balcony!,10004428,Larena,Brooklyn,Bushwick,40.69128,-73.92078000000001,Private room,75,4,0,,,1,6 +30939678,Queen Bed in Beautiful Clinton Hill,65775049,Nicole,Brooklyn,Clinton Hill,40.68873,-73.96133,Private room,100,5,1,2018-12-19,0.15,2,6 +33216589,Luxury City Lights Suite,24831061,Hosteeva,Manhattan,Midtown,40.76428,-73.98083000000001,Entire home/apt,310,1,0,,,8,0 +4623696,Great deal in Heart of Greenpoint,2378231,Romy,Brooklyn,Greenpoint,40.73108,-73.95416,Entire home/apt,85,4,4,2015-12-29,0.07,1,0 +30938001,"Huge 400 sf BR, amazing location",6857284,Hadley,Brooklyn,Prospect Heights,40.6805,-73.97376,Private room,45,2,3,2019-01-30,0.49,1,0 +36041065,Large bedroom with private bathroom is suit,225118276,Alex And Mila,Brooklyn,Bedford-Stuyvesant,40.6838,-73.92854,Private room,75,1,7,2019-07-06,7.0,1,326 +30587461,Cozy Quaint Modern Garden Apartment,229443636,Burhan,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95279000000001,Entire home/apt,349,2,15,2019-06-02,2.11,1,349 +24188354,"Large studio in Williamsburg, 2B",49704571,Krzysztof,Brooklyn,Williamsburg,40.71972,-73.94462,Entire home/apt,80,30,5,2019-05-17,0.42,8,161 +4588273,"UWS Penthouse, Amazing Deck",1500858,Adrienne,Manhattan,Upper West Side,40.77926,-73.97877,Entire home/apt,225,30,7,2015-06-18,0.13,1,173 +22504678,Manhattan Palace Presidential Suite,122786340,Joseph,Manhattan,Upper West Side,40.80115,-73.96524000000001,Private room,70,1,0,,,1,0 +23942226,"Bushwick Room w Private Bath, 1 Block to Subway",37806504,Michelle,Brooklyn,Bushwick,40.70072,-73.91359,Private room,60,3,50,2019-05-18,3.33,1,85 +23351120,"upper west side, 15' from Colombia, calm & light",2730883,Seb,Manhattan,Washington Heights,40.85265,-73.93247,Private room,35,20,1,2018-10-20,0.11,2,267 +16462626,Hip 2 Bed in Williamsburg w/Private Backyard,108009985,Helma,Brooklyn,Williamsburg,40.70971,-73.95229,Entire home/apt,225,7,8,2017-06-24,0.26,1,0 +27649154,"*Luxury 1 BR w/ your own Bathroom, steps to subway",93153006,Lili,Brooklyn,Bushwick,40.69399,-73.92472,Private room,88,7,21,2019-06-21,1.91,1,54 +35428298,NYC Diamond New 5 star 2nd floor Loft 5beds 2baths,266627618,Charlene,Bronx,Wakefield,40.9026,-73.84806,Entire home/apt,288,2,0,,,1,346 +33471012,Designer Loft,252181650,Daniel & Neena,Manhattan,Chinatown,40.71543,-73.99323000000001,Entire home/apt,350,1,18,2019-06-30,5.74,1,82 +25963570,"""I LOVE BROOKLYN"" Newly Renovated Studio APT.",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.6881,-73.94586,Entire home/apt,109,1,75,2019-06-21,5.77,3,20 +21949815,Upper west studio next to Central Park,116430338,Dova,Manhattan,Upper West Side,40.79572,-73.96781,Entire home/apt,105,7,1,2018-01-02,0.05,1,0 +6051044,Private Garden View — Eco Home — 3 Min to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67815,-73.91518,Private room,40,3,101,2019-06-24,2.01,6,180 +7870403,Mins to Manhattan and Williamsburg!,39840590,Sachiko,Queens,Long Island City,40.74365,-73.95376999999999,Entire home/apt,138,1,227,2019-06-21,4.83,1,21 +9753018,1200 SQFT Open Loft Williamsburg,1527888,Ilya,Brooklyn,Williamsburg,40.7109,-73.95236,Entire home/apt,250,31,8,2017-01-03,0.19,1,0 +15511749,"New Listing---Clean, Spacious 1-Bedroom in SoHo",99665419,Nicole,Manhattan,SoHo,40.72391,-74.00658,Entire home/apt,75,4,9,2018-10-17,0.53,1,0 +27502928,Sunny East Village Apt,25357997,Andrew,Manhattan,East Village,40.72691,-73.98423000000001,Entire home/apt,149,2,1,2018-08-08,0.09,1,0 +28454118,Amazing sunny Williamsburg apt!,29452152,Lore,Brooklyn,Williamsburg,40.70807,-73.95681,Entire home/apt,145,4,5,2019-04-13,0.53,1,1 +1073635,Cozy Carroll Gardens Brownstone Apt,4243849,Emma,Brooklyn,Carroll Gardens,40.683040000000005,-73.99819000000001,Entire home/apt,175,2,279,2019-06-22,3.68,1,218 +31283569,Cozy sunny room in Washington Heights,80054574,Esaú,Manhattan,Washington Heights,40.85547,-73.92912,Private room,33,3,1,2019-01-17,0.17,1,0 +5849810,Traveler’s Nest - Straight train from JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.6863,-73.91378,Private room,69,3,127,2019-06-24,2.48,5,40 +36131784,Entire 3 Bedroom apt next to Barclay’s center,229381517,Pavel,Brooklyn,Prospect Heights,40.68077,-73.97489,Entire home/apt,250,1,0,,,2,175 +4849266,Room for rent in Sheepshead bay,24950473,Dasha,Brooklyn,Sheepshead Bay,40.584140000000005,-73.95489,Private room,50,2,0,,,1,0 +9795890,Room in a loft in Tribeca,23372553,Valentine,Manhattan,Tribeca,40.71561,-74.00641999999999,Private room,75,1,1,2015-12-27,0.02,1,0 +22485685,Dina airbnb 61 street east D,164886138,Eliahu,Manhattan,Upper East Side,40.76015,-73.96226999999999,Entire home/apt,140,2,4,2019-03-24,0.53,11,354 +36099301,Amazing 2 Bedroom in the Village!,256090291,Dan,Manhattan,Greenwich Village,40.72897,-74.00166999999999,Entire home/apt,200,30,0,,,1,363 +20651049,Spacious Designer Loft in South Williamsburg,454274,Linda,Brooklyn,Williamsburg,40.70789,-73.96755,Entire home/apt,180,5,12,2018-06-10,0.57,1,0 +11659008,"Safe, comfy convenient",52347885,Nicole,Brooklyn,Flatlands,40.63052,-73.92181,Private room,34,2,91,2019-06-23,3.1,2,78 +21951184,Upper East Side Private Entire Studio,59394680,Soojin,Manhattan,Upper East Side,40.77084,-73.94955999999999,Entire home/apt,130,30,0,,,1,0 +20440757,GREEN OASIS,145878384,Denise,Brooklyn,East Flatbush,40.65556,-73.92926,Private room,80,3,10,2019-05-31,0.45,7,341 +32367010,Romantic Top Floor Brownstone in Crown Heights,237508892,Kendrick,Brooklyn,Crown Heights,40.66978,-73.95009,Entire home/apt,188,1,10,2019-06-18,2.4,1,199 +15875061,Stylish Parkside Midcentury Apt,73175609,Alex,Brooklyn,Windsor Terrace,40.65739,-73.9806,Entire home/apt,159,2,32,2017-08-28,0.99,1,0 +33400016,A Brooklyn Launch Pad,35881969,John,Brooklyn,Williamsburg,40.70426,-73.94542,Private room,70,1,13,2019-06-24,5.13,2,76 +360400,Beautiful Room in Manhattan Loft,1386983,Candice,Manhattan,Midtown,40.74553,-73.98943,Private room,135,3,214,2019-06-02,2.45,2,167 +32020853,"★ Clean, Private BR in Little Italy/Chinatown ★",14249909,Evan,Manhattan,Chinatown,40.71825,-73.99651,Private room,169,3,3,2019-05-19,0.67,1,0 +18503779,Spacious Bohemian Duplex 1BR E Wburg Yard Roof,128414475,Nitya,Brooklyn,Williamsburg,40.70728,-73.92989,Private room,79,1,11,2017-08-18,0.42,3,0 +27596820,Brooklyn Style Hostel RM4 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95541999999999,Shared room,36,1,9,2019-05-05,0.82,34,365 +189135,Hell's Kitchen Funky 80's Hideaway!,179020,Michael,Manhattan,Hell's Kitchen,40.76311,-73.99388,Private room,99,1,89,2019-07-01,1.0,1,353 +15972733,Cozy Private Bedroom in the Lower East Side,40639815,Carolina,Manhattan,Lower East Side,40.71953,-73.98364000000001,Private room,75,8,0,,,1,0 +22101034,Cool Out/Private large ensuite nearJFK sleeps 4,94713722,Joy,Queens,Springfield Gardens,40.68857,-73.75488,Private room,50,2,23,2019-06-17,1.4,4,348 +1054201,One Bedroom Townhouse Apartment,4165498,L.A.,Manhattan,East Harlem,40.79535,-73.93274,Entire home/apt,120,5,83,2019-06-10,1.11,2,242 +15437922,"Bright Room, Luxury Building, 3 Stops To Manhattan",17849213,Alexey,Brooklyn,Williamsburg,40.71506,-73.93816,Private room,90,1,52,2019-07-06,2.88,2,52 +30441504,"Large, Comfortable 2 Bedroom Apartment",157287318,Susan,Manhattan,Kips Bay,40.7413,-73.98145,Entire home/apt,275,30,35,2019-06-24,5.0,1,253 +2788298,Fort Greene Perfect Location,14262697,Eric,Brooklyn,Fort Greene,40.69056,-73.98038000000001,Entire home/apt,150,3,1,2015-05-19,0.02,1,0 +19809264,Big Sunny 1BR near the subway - 20 mins to NYC!,18197578,Caitlin,Brooklyn,Crown Heights,40.66756,-73.95812,Entire home/apt,100,3,12,2018-11-25,0.5,1,4 +13708336,Stylish 1BD in the heart of East Village,840987,Pasha,Manhattan,East Village,40.72603,-73.98915,Entire home/apt,150,3,0,,,1,0 +19531601,Spacious bedroom in a good vibe apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67324,-73.95028,Private room,43,6,5,2019-01-30,0.23,2,301 +654232,BIG East Village 1bd all the extras,3291022,Noel,Manhattan,East Village,40.72171,-73.98334,Entire home/apt,99,3,10,2015-10-24,0.14,1,0 +35643772,"Delightful, Spacious Ditmas Park One Bedroom",21918321,Lily,Brooklyn,Flatbush,40.64151,-73.96104,Entire home/apt,90,2,0,,,1,10 +23000751,Little Neck Queens bedroom w/private bathwash/dry,170603631,Andre,Queens,Douglaston,40.74807,-73.73674,Private room,65,2,29,2019-03-14,1.68,1,240 +32788877,"Private Queen Room in 2Br +on Broadway Astoria",193111692,Dan,Queens,Astoria,40.76317,-73.92208000000001,Private room,75,21,0,,,1,0 +33933219,24hr access recording studio with on call engineer,61950433,Amin,Brooklyn,Clinton Hill,40.69593,-73.97003000000001,Private room,75,1,0,,,1,0 +34319441,Amazing Place - ASTORIA,46081317,Fabiana,Queens,Astoria,40.75663,-73.9143,Private room,55,25,0,,,3,199 +32242848,Summer room 夏,240055586,George,Queens,Fresh Meadows,40.73834,-73.79209,Private room,55,1,24,2019-07-01,4.97,5,32 +15987959,Cozy apartment in Upper East!,4122796,Sebastien,Manhattan,Upper East Side,40.781220000000005,-73.94989,Entire home/apt,129,2,1,2016-11-18,0.03,1,0 +24287286,Spacious home next to JFK airport,32617252,Paul,Queens,Jamaica,40.66735,-73.78922,Entire home/apt,180,2,50,2019-07-07,3.87,1,181 +20503496,Cozy room + bright apartment + rooftop lounge,90237608,Cindy,Queens,Ridgewood,40.69883,-73.90077,Private room,50,1,2,2017-10-14,0.09,1,0 +30817603,Large Private Room. Fits up to 6 people,135060128,Abella,Brooklyn,Williamsburg,40.70841,-73.95048,Private room,120,1,3,2019-07-06,0.47,2,269 +3666653,Brooklyn Brownstone,17544112,Robert,Brooklyn,Bay Ridge,40.62356,-74.024,Entire home/apt,170,4,137,2019-07-04,2.55,1,302 +26772477,Full Cabin One,51913826,The Bowery House,Manhattan,Nolita,40.72271,-73.99412,Private room,109,1,2,2018-07-29,0.17,8,0 +30910712,[New] Manhattan-Hell's Kitchen Private Studio,231003106,Joe,Manhattan,Hell's Kitchen,40.76428,-73.98988,Entire home/apt,125,2,22,2019-06-23,3.55,1,230 +33745608,Greenwich/West Village Sunny real one bedroom apt!,880797,Adrienne,Manhattan,West Village,40.73131,-74.00619,Entire home/apt,154,3,3,2019-05-20,1.14,1,19 +28755241,New York Apt -Subway 5 min & Supermarket 1 min,37708037,Daniela,Manhattan,Financial District,40.70815,-74.00438,Entire home/apt,199,3,5,2019-06-08,0.66,1,37 +26640272,Modern NYC Living in Soho/ Noho/West Village,19433714,Jeff,Manhattan,Greenwich Village,40.727,-73.99767,Private room,150,3,30,2019-06-06,2.64,3,20 +2526152,"Sunny, Child Friendly Loft. ",11825464,SirRoan,Brooklyn,Crown Heights,40.67901,-73.96236999999999,Private room,105,1,1,2014-05-02,0.02,1,0 +10765309,Designed west village with PATIO,8851665,Ohad,Manhattan,West Village,40.73303,-74.00118,Entire home/apt,200,3,1,2016-07-02,0.03,1,0 +31651200,Private room in Midtown Manhattan with Balcony,10318796,Roberta,Manhattan,Midtown,40.75403,-73.9715,Private room,160,2,0,,,1,0 +12951417,"Joellen's Place Spacious 2-twin bed, Bushwick Apt.",71150679,Joellen,Brooklyn,Bushwick,40.69024,-73.92197,Private room,65,2,77,2019-06-22,2.04,2,116 +20805520,Manhattan room with a fire escape!,149184623,Elina,Manhattan,Washington Heights,40.83636,-73.94487,Private room,65,2,81,2019-07-06,3.8,1,11 +9057283,Renovated Modern-right on Times Sqr,2856748,Ruchi,Manhattan,Theater District,40.75891,-73.9845,Entire home/apt,175,30,0,,,49,333 +26458835,cozy one bed room only girls,7970340,Dian,Manhattan,Stuyvesant Town,40.73391,-73.97856999999999,Private room,55,4,1,2018-07-06,0.08,1,0 +22062492,Studio Apt -Upper East Side,94543911,Gabrielle,Manhattan,Upper East Side,40.77176,-73.94943,Entire home/apt,115,2,2,2019-01-01,0.26,1,0 +30199043,Spacious room in Luxury Chelsea Apt,212033848,Stephanie,Manhattan,Chelsea,40.74453,-73.99195999999999,Private room,150,1,4,2019-07-06,0.55,1,1 +13639075,"Bright, spacious and quiet two-bedroom Chelsea apt",79114007,Gary,Manhattan,Chelsea,40.74122,-73.99963000000001,Entire home/apt,325,2,47,2019-06-30,1.3,1,0 +14988596,Convenient Modern 1 Bedroom Apt. Upper East Side,91545870,Michelle,Manhattan,Upper East Side,40.77357,-73.95149,Entire home/apt,69,1,99,2019-07-03,5.22,2,42 +7967829,Bright large bedroom in Bushwick,42043282,Arielle,Brooklyn,Bushwick,40.70335,-73.92891,Private room,70,2,1,2015-09-07,0.02,1,0 +6541532,Amazing UWS /Central Park West Location,33975302,Kirsten,Manhattan,Upper West Side,40.79909,-73.9602,Private room,90,1,185,2019-07-07,3.71,1,60 +30311099,PRIVATE ROOM IN COZY SCANDINAVIAN / BROOKLYN HOME,220734035,Selma,Brooklyn,Williamsburg,40.702090000000005,-73.94223000000001,Private room,60,3,0,,,1,0 +10049335,BEAUTIFUL ROOM IN HEART OF BROOKLYN,5065719,Melissa,Brooklyn,Greenpoint,40.73226,-73.95285,Private room,60,1,2,2016-01-01,0.05,1,0 +833519,Large Bedroom for 2 brickwall,4112404,Vero,Manhattan,Washington Heights,40.85123,-73.93223,Private room,40,15,4,2019-01-01,0.05,3,353 +2318126,Private Rm for 1 in Prime Harlem,6165258,Gita,Manhattan,Harlem,40.802690000000005,-73.94637,Private room,60,3,11,2018-01-01,0.18,3,365 +33431909,Beautiful cozy shared apartment by Central Park,251852817,Owen,Manhattan,East Harlem,40.79966,-73.94191,Shared room,55,1,13,2019-06-30,3.86,7,89 +4881017,"Spacious, 3 bedrooms, 2 bath",23439479,Victoria,Manhattan,Inwood,40.86494,-73.92671999999999,Entire home/apt,300,4,3,2018-10-08,0.06,2,316 +26210593,Bright 4-people room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.71997,-73.94021,Shared room,35,30,0,,,10,343 +2107939,Private Single Room Steps to Subway,1318137,Adriano,Brooklyn,Bedford-Stuyvesant,40.69193,-73.9274,Private room,55,3,70,2019-05-27,1.11,2,285 +12970866,Airy and bright room. Prospect Park,25749667,Kseniya,Brooklyn,Flatbush,40.65255,-73.96226999999999,Shared room,85,1,1,2016-05-16,0.03,1,0 +19489138,Spacious 1 bedroom Pre War on Central Park,3595138,Filip,Manhattan,Upper West Side,40.798840000000006,-73.95962,Entire home/apt,230,2,7,2017-11-27,0.31,1,0 +30502752,Location! 2bed/with 3 beds Doorman Gym Prime 5237,16098958,Jeremy & Laura,Manhattan,Midtown,40.76516,-73.9819,Entire home/apt,265,30,0,,,96,330 +34905447,R3 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72662,-73.86645,Private room,68,1,1,2019-06-29,1.0,10,136 +30370448,Cozy Home 2,213781715,Anting,Brooklyn,Greenpoint,40.73291,-73.95281999999999,Private room,119,1,0,,,33,365 +1831227,Brownstone Penthouse Apartment,6499364,David,Manhattan,Harlem,40.80964,-73.94098000000001,Entire home/apt,149,4,35,2019-06-19,0.52,1,16 +36449668,Stuyvesant Luxury,272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93665,Private room,50,1,0,,,2,134 +30199980,"Hidden gem in Park Slope, 19 mins away from NYC!!!",36728751,Emily,Brooklyn,South Slope,40.66181,-73.98218,Entire home/apt,130,4,2,2019-05-26,0.28,1,179 +19123591,Cozy South Williamsburg,86134456,Frankie,Brooklyn,Williamsburg,40.7069,-73.95498,Private room,45,5,2,2017-07-18,0.08,1,0 +12471447,Great UWS 1 bedroom duplex,36966894,Sarah,Manhattan,Upper West Side,40.77835,-73.97655,Entire home/apt,200,3,5,2016-05-29,0.13,1,0 +30126088,Experience Serernity~Hamilton Heights,178473107,Allan C.,Manhattan,Harlem,40.82982,-73.94660999999999,Private room,109,1,1,2019-01-01,0.16,6,41 +34176788,A Little Sumptin' on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.67878,-73.9172,Private room,48,1,22,2019-07-07,9.85,2,236 +591710,Spacious one bedroom apartment in Brooklyn Heights,2920855,Theodore,Brooklyn,Brooklyn Heights,40.69464,-73.99885,Entire home/apt,175,10,8,2018-08-24,0.17,1,0 +21173148,"Sunny apartment, great amenties and transporation.",27231066,Victoria,Manhattan,Harlem,40.81138,-73.95442,Entire home/apt,165,3,22,2019-05-27,1.03,1,0 +25347359,Royal suite,189792874,Voxie,Brooklyn,Canarsie,40.63202,-73.90916,Entire home/apt,135,2,16,2019-06-30,1.21,1,358 +7886635,- E - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71636,-73.96246,Private room,60,2,97,2019-06-18,2.13,8,122 +15896529,Bright and quiet room with private bathroom,10191995,Nora,Manhattan,Chinatown,40.71542,-73.99045,Private room,119,6,117,2019-06-17,3.65,2,207 +33552984,2 BRM Heart of Time Square,252824941,Alex,Manhattan,Hell's Kitchen,40.76273,-73.99061,Entire home/apt,300,1,14,2019-07-06,4.52,1,306 +17136721,Charming Room on Prime SoHo Block,41965551,Philip,Manhattan,SoHo,40.72576,-74.00265999999999,Private room,80,1,131,2019-06-24,4.56,1,20 +23136074,So nice and close to everything.,171939378,Jose,Manhattan,Hell's Kitchen,40.75584,-73.99559,Entire home/apt,200,3,2,2018-05-13,0.14,2,0 +29834691,Luxury Condo near Columbia Univ and Central Park,224413673,Alex,Manhattan,Harlem,40.80536,-73.95434,Entire home/apt,150,1,4,2018-12-28,0.53,1,0 +32726808,Stylish & Cozy Room Same Street As The Subway,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67803,-73.9102,Private room,75,1,17,2019-06-16,4.51,4,227 +22973043,"Coolest neighborhood, cutest apartment.",74873565,China,Manhattan,Two Bridges,40.7116,-73.99568000000001,Entire home/apt,175,2,8,2019-05-06,0.46,1,0 +31965215,Cozy studio in East New York,27867038,L,Brooklyn,East New York,40.67695,-73.87402,Entire home/apt,62,1,11,2019-06-22,3.11,1,351 +13590391,Cute 1 BD (can sleep up to 4) in the gorg UWS!,78507411,Mel And Laurie,Manhattan,Upper West Side,40.79671,-73.9712,Entire home/apt,145,3,4,2017-01-01,0.11,1,0 +10987342,Big & Bright in BK Heights with Private Balcony,7903382,Annie,Brooklyn,Brooklyn Heights,40.69449,-73.99188000000001,Entire home/apt,150,3,7,2016-07-15,0.17,1,0 +18423707,One bedroom in Kips Bay / Murray Hill area,15786933,Eddie,Manhattan,Midtown,40.74559,-73.98216,Entire home/apt,259,7,0,,,1,0 +21898551,2-bedroom South Williamsburg apartment,131206517,Mark,Brooklyn,Williamsburg,40.69999,-73.95275,Entire home/apt,100,4,4,2019-06-24,0.21,1,0 +4462553,Greenwich / West Village 2 Bedroom,15778416,Courtney,Manhattan,West Village,40.73066,-74.00371,Entire home/apt,175,1,0,,,2,0 +16764130,Spacious Studio apt—1 Subway stop from Manhattan,41578662,Lucia,Bronx,Mott Haven,40.8115,-73.9258,Entire home/apt,80,7,0,,,2,0 +12186043,Clean and Cozy Crown Heights Studio,264111,Albert,Brooklyn,Crown Heights,40.66714,-73.95819,Entire home/apt,110,2,6,2018-06-24,0.15,1,0 +11676984,Luxury STUDIO * PVT Entrance * WOW,62014546,Nissim,Manhattan,Upper East Side,40.77654,-73.94904,Entire home/apt,165,1,141,2019-06-23,3.54,1,262 +11871690,Big Brooklyn bedroom near subway/Prospect Park,9361557,Joe,Brooklyn,Prospect-Lefferts Gardens,40.66275,-73.96122,Private room,65,10,94,2017-08-22,2.4,2,0 +7172107,Upper West Side Family Escape,37565381,Rebecka,Manhattan,Upper West Side,40.79527,-73.96695,Entire home/apt,165,5,5,2016-04-14,0.1,1,0 +2660576,"Come see Brooklyn, New York",13617520,Howard T.,Brooklyn,Clinton Hill,40.69172,-73.96934,Shared room,40,5,8,2015-02-25,0.13,1,0 +35647761,Charming 2 Bedroom (Converted) Loft -Wall St for 5,267818779,Jonathan,Manhattan,Financial District,40.70567,-74.00565999999999,Entire home/apt,265,1,2,2019-06-24,2.0,1,246 +19163888,Convenient & cozy classic NYC apartment,105707375,Corey,Manhattan,Upper East Side,40.77541,-73.95083000000001,Entire home/apt,98,12,12,2017-11-12,0.48,1,0 +35059067,Gorgeous Large private room near LGA (#5),264092618,Ajmol,Queens,East Elmhurst,40.76444,-73.87238,Private room,90,1,7,2019-06-27,5.38,5,73 +4578471,CHARMING 1-BD w CITY VIEWS,4263114,LeeAnne,Manhattan,Hell's Kitchen,40.76612,-73.99324,Entire home/apt,125,5,5,2015-08-24,0.09,1,0 +18314102,ONE STOP TO TIME SQUARE BEAUTIFUL QUIET STUDIO,64964534,Natalya,Manhattan,Murray Hill,40.747690000000006,-73.9784,Entire home/apt,160,1,141,2019-06-24,5.63,1,90 +32308571,Cozy bedroom minutes to Manhattan,68907781,Dafni,Queens,Astoria,40.76837,-73.92712,Private room,45,2,4,2019-06-29,1.15,3,31 +3164997,Charming XL 1br in Astoria,15998942,David,Queens,Astoria,40.77221,-73.92493,Entire home/apt,200,5,22,2018-05-17,0.37,1,188 +17512944,Extra Large 1BR by Park Ave in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76876,-73.96686,Entire home/apt,197,30,0,,,12,58 +19623349,2 bed / 2.5 bath with outdoor space,16260034,Michael,Brooklyn,Crown Heights,40.67742,-73.93737,Entire home/apt,250,7,0,,,1,0 +30440653,Meserole Street,6284535,Thoralf,Brooklyn,Williamsburg,40.70827,-73.9425,Private room,63,4,0,,,1,187 +20587159,Cozy East Village Studio Apartment,8130515,Jessica,Manhattan,East Village,40.72547,-73.98315,Entire home/apt,150,2,2,2017-09-26,0.09,1,0 +30252034,A neat bedroom in a cozy 3-bedroom apartment,227179489,Ester,Manhattan,Roosevelt Island,40.76127,-73.95034,Private room,90,1,46,2019-07-01,6.3,1,27 +1090732,You take living or bedroom!,5993276,Alfred,Queens,Richmond Hill,40.7017,-73.82316,Shared room,60,7,0,,,1,362 +34813770,AMAZING ONE MONTH SUBLET IN WILLIAMSBURG!!!,259826953,Yaron,Brooklyn,Williamsburg,40.71771,-73.95831,Private room,99,3,2,2019-06-09,1.67,2,179 +4216774,Stay in the heart of Williamsburg!,15243531,Amanda,Brooklyn,Williamsburg,40.717220000000005,-73.95862,Entire home/apt,150,2,4,2015-11-16,0.07,1,0 +23378815,Luxurious 2-Story Home • Large Terrace • Views,20869217,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.65465,-73.96158,Entire home/apt,225,2,32,2019-05-31,2.31,1,56 +19843040,Trendy Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.76002,-73.98958,Private room,129,1,97,2019-06-22,4.03,3,132 +13337150,"Luxury Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81193,-73.95945999999999,Private room,110,3,58,2019-06-22,1.62,6,129 +19885344,"Spacious, Airy, Private Bedroom",19608476,Celia,Manhattan,Washington Heights,40.83495,-73.94406,Private room,87,4,34,2019-06-28,1.41,1,31 +35013796,Small Private Room in Upper East Side #5,1786901,Shai,Manhattan,Upper East Side,40.78307,-73.94578,Private room,69,4,0,,,9,17 +34446898,Mott Haven Dorm-Bed H,174785358,Rem,Bronx,Port Morris,40.80856,-73.93055,Shared room,28,1,4,2019-06-22,2.03,7,71 +5823337,Beautiful 2BR Upper West Side,30224326,Matthew,Manhattan,Morningside Heights,40.8063,-73.96268,Entire home/apt,150,7,2,2016-08-11,0.05,1,0 +1275942,nice room in bedstuy H,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6824,-73.95039,Private room,55,1,127,2019-06-14,1.77,15,318 +33926057,ONLY WOMEN/CAMAS PARA MUJER/HABITACIÓN COMPARTIDA,223087887,Jess & Ana,Queens,Corona,40.74116,-73.86667,Shared room,24,1,4,2019-05-04,1.52,8,346 +8473532,"Beautiful, rustic room in artistic apt.",44623374,Jordan,Brooklyn,Crown Heights,40.67763,-73.95943,Private room,65,1,5,2016-06-20,0.11,1,0 +28407992,"Entire 2BR apartment, your home away from home",162848296,Fengxiang,Staten Island,Graniteville,40.62301,-74.16558,Entire home/apt,71,4,7,2019-06-01,1.01,1,0 +23965460,Cleo's Royale,157141199,Adeola,Manhattan,Inwood,40.86058,-73.9274,Private room,70,5,5,2019-05-24,0.41,2,90 +33780177,Private Bathroom Bedroom Near Subway,120763629,Mei,Brooklyn,Bath Beach,40.60471,-74.00243,Private room,59,2,0,,,2,361 +22176896,One-Off Easter Holiday Deal in Cozy Gem,1664473,Cj,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.94975,Entire home/apt,120,4,0,,,1,0 +36002857,Soho Comfort,91111113,Javier,Manhattan,SoHo,40.72236,-74.00255,Entire home/apt,125,3,1,2019-07-03,1.0,1,77 +23480510,"Bright, spacious, ensuite bedroom in Williamsburg",39607598,Vanessa,Brooklyn,Williamsburg,40.71779,-73.94632,Private room,101,1,5,2019-06-08,0.34,1,90 +28431734,Bright 2- Room apartment in a house next to train.,55004447,Olga,Staten Island,Arden Heights,40.54312,-74.17388000000001,Private room,41,2,7,2019-01-08,0.71,1,0 +22486540,Spacious Queen Room close to Prospect Park,1512819,Sydney,Brooklyn,Flatbush,40.65275,-73.95456999999999,Private room,50,10,8,2018-10-10,0.44,5,153 +5040218,LUX Blg-Prime Area! Lg PRIVATE RM & BATH w/VIEWS!,26019828,Sonia,Manhattan,Hell's Kitchen,40.761590000000005,-73.99824,Private room,69,2,22,2019-03-20,0.64,2,7 +27853643,Sonder | 116 John | Pleasant 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70776,-74.00477,Entire home/apt,174,29,0,,,96,313 +826307,"Near Manhatten, NEW Empire Outlets, park!",4192794,Anna,Staten Island,Tompkinsville,40.63132,-74.08799,Private room,47,1,20,2016-11-06,0.26,1,323 +28346019,Cozy accommodation in Queens for MAX 2 people,43044876,Haruhisa,Queens,Elmhurst,40.74316,-73.87285,Private room,40,29,2,2019-03-03,0.29,5,1 +20886177,Master room w/terrace/private bath near Mall queen,50855262,Fone,Queens,Elmhurst,40.73612,-73.87822,Private room,55,3,10,2018-07-28,0.47,3,0 +13978084,Massive Beautiful Room!,116382,Anthony,Brooklyn,Crown Heights,40.67023,-73.94078,Private room,57,1,82,2019-07-05,2.28,5,356 +12343,BEST BET IN HARLEM,47727,Earl,Manhattan,Harlem,40.81175,-73.94478000000001,Entire home/apt,150,7,97,2019-06-13,0.84,1,309 +8275455,Lovely Inwood Studio,424343,Melissa,Manhattan,Inwood,40.85911,-73.928,Entire home/apt,85,3,3,2016-07-04,0.07,1,0 +30641771,Prime Doorman Elevator Huge One Bedroom 5238,16098958,Jeremy & Laura,Manhattan,Midtown,40.75609,-73.96684,Entire home/apt,220,30,0,,,96,336 +36108714,Williamsburg Waterfront Apartment,212865,Waad,Brooklyn,Williamsburg,40.72045,-73.96313,Entire home/apt,150,90,0,,,1,91 +22289185,VERY LARGE STUDIO APT BEST LOCATION IN NYC,24715671,Julia,Manhattan,Midtown,40.74197,-73.98328000000001,Entire home/apt,199,30,1,2018-06-27,0.08,4,177 +31796691,Spacious 2 bedroom apt in Bensonhurst - Sleeps 10,231212364,Kel,Brooklyn,Bensonhurst,40.60556,-73.99898,Entire home/apt,123,3,3,2019-07-04,1.06,2,147 +3721826,Amazing apartment with your old private bathroom,19011946,John,Manhattan,Upper East Side,40.77883,-73.95498,Entire home/apt,185,30,1,2014-09-15,0.02,2,365 +11743513,Sweet Brooklyn digs next to Pratt U (Classon Ave),19285185,Joel,Brooklyn,Clinton Hill,40.69388,-73.96200999999999,Entire home/apt,176,5,12,2019-02-07,0.31,1,236 +30712281,Beautiful apartment near the city and the beach!!,2370813,Anastasia,Brooklyn,Sheepshead Bay,40.5987,-73.96030999999999,Entire home/apt,110,2,38,2019-07-05,5.43,2,294 +32786180,Comfortable private single room (Queens),234393604,Sol,Queens,Middle Village,40.71474,-73.89931,Private room,28,1,21,2019-06-19,6.49,1,14 +94783,"Beautiful, Bright’s, Warm & Spacious 1.5BR Apt",473113,Keishera,Brooklyn,Crown Heights,40.67174,-73.95663,Entire home/apt,120,5,104,2019-06-21,1.04,1,272 +4842054,Cozy Bedroom in hip Williamsburg,24918898,Javier,Brooklyn,Williamsburg,40.70765,-73.95116,Private room,55,4,13,2016-06-14,0.24,2,0 +19032635,Bright & Spacious Upper Manhattan Apartment!,49193707,Devyn,Manhattan,Washington Heights,40.84977,-73.93536,Private room,60,5,16,2019-05-18,0.65,1,0 +22462797,Full Lavish Studio apartment in the heart of NYC,164637779,Sajee,Manhattan,Upper East Side,40.76938,-73.96732,Entire home/apt,150,1,2,2017-12-30,0.11,1,0 +4600556,Beautiful 2 BR Apt UES- Min 30 Days,15310997,Mor,Manhattan,Upper East Side,40.78318,-73.94556,Entire home/apt,300,30,10,2019-02-28,0.19,9,331 +35681112,Old world oasis of calm nestled in a vibrant hood,4363908,James Abordo,Brooklyn,Bedford-Stuyvesant,40.68479,-73.94416,Private room,75,2,0,,,1,14 +4008443,"Private room in Astoria, NY!!",20741468,Sarah,Queens,Astoria,40.75568,-73.91578,Private room,250,2,22,2018-01-02,0.43,1,123 +5699348,Spacious UES 1 bedroom apartment,8686625,Marie,Manhattan,Upper East Side,40.78301,-73.95085,Entire home/apt,165,1,166,2019-06-23,3.3,1,210 +9937667,Central Park South Luxury 3 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76542,-73.97844,Entire home/apt,249,30,5,2019-02-15,0.12,31,125 +30290307,Beautiful Central 2 Bedroom in Soho!,227498924,Alex,Manhattan,SoHo,40.72607,-74.00166,Entire home/apt,299,4,2,2019-05-18,0.32,1,156 +15379574,Private 2 BR Apartment Close to Subway,98308046,Pardis,Brooklyn,Bushwick,40.68946,-73.91537,Entire home/apt,150,2,110,2019-06-23,3.38,1,152 +31365591,Park&walk2Boat! See LadyLiberty&DTNY all for free!,233541916,James,Staten Island,St. George,40.64118,-74.08400999999999,Private room,100,1,0,,,1,0 +30786946,Lovely stay in a private large room near JFK,26028092,Vanessa,Queens,Richmond Hill,40.68146,-73.82285999999999,Private room,66,1,30,2019-06-30,4.52,1,131 +21527655,1 Bedroom apt in the heart of Williamsburg - 2R,156436372,Sonia,Brooklyn,Williamsburg,40.7163,-73.95087,Entire home/apt,100,30,4,2018-09-08,0.2,4,323 +21089707,Bright Lower East Side Studio,108653826,Alexandra,Manhattan,Lower East Side,40.71808,-73.99146999999999,Entire home/apt,139,2,2,2017-12-05,0.1,1,0 +36034580,Cozy Apartment in the Historic Village of FiDi!,32990881,Alicia,Manhattan,Financial District,40.70328,-74.01099,Entire home/apt,180,2,2,2019-06-30,2.0,1,295 +28761069,Queen Sized Bdrm in Historic Harlem (Townhouse),92185816,Fiona,Manhattan,Harlem,40.80774,-73.94939000000001,Private room,62,10,4,2019-06-20,0.48,3,345 +1239293,Cozy Retreat in Brooklyn Apartment,6755111,Jessica,Brooklyn,Kensington,40.6412,-73.9786,Private room,75,2,8,2014-01-07,0.11,1,312 +33127817,"Master bedroom in sunny, renovated, corner apt",2537981,Laura,Brooklyn,Bushwick,40.6951,-73.92898000000001,Private room,78,3,0,,,1,105 +6216318,"Cozy room in a fun, low-key neighb!",16970067,Jesse,Brooklyn,Williamsburg,40.7137,-73.94214000000001,Private room,105,14,0,,,1,0 +4291654,Private room in Bushwick Loft,22280299,Brad,Brooklyn,Williamsburg,40.70407,-73.93562,Private room,100,1,0,,,1,0 +8720865,Spacious Brooklyn Home w/ Backyard,2636827,Erin,Brooklyn,Williamsburg,40.7171,-73.94289,Entire home/apt,350,3,2,2016-01-02,0.04,2,0 +23820909,Charming Bright Apartment Minutes From Manhattan,178636681,Kris,Brooklyn,Williamsburg,40.71097,-73.95895,Entire home/apt,110,3,11,2019-06-04,1.05,1,90 +24538627,Pleasant Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70503,-74.00698,Entire home/apt,185,29,0,,,96,31 +8254640,Large Beautiful BedStuy Apartment,123713,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68178,-73.94179,Entire home/apt,200,2,1,2015-10-27,0.02,1,0 +27804902,Brooklyn Flavor,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92936,Private room,48,3,22,2019-07-03,3.13,3,94 +32428466,Top floor apt in luxury building - lease takeover,39427266,Alison,Queens,Rego Park,40.73288,-73.86438000000001,Entire home/apt,108,210,0,,,1,270 +21635457,"Entire 2 Bdrm Duplex Bushwick Brooklyn, Sleeps 6",157430725,Fiona,Brooklyn,Bushwick,40.6994,-73.93366999999999,Entire home/apt,120,1,94,2019-07-03,5.03,3,240 +28206177,Bronx Brand New Room #3,203266238,Steve,Bronx,Morris Park,40.85361,-73.85018000000001,Private room,85,5,5,2019-05-31,0.49,5,365 +10405694,Modern 2 bedroom apt in Bushwick,12306936,Liz,Brooklyn,Bushwick,40.68413,-73.90731,Entire home/apt,150,3,45,2017-09-23,1.1,1,129 +36312522,Modern Room in Heart of Harlem,84333525,Aaron,Manhattan,Harlem,40.81758,-73.94008000000001,Private room,75,2,0,,,1,49 +19017889,2bed Williamsburg Loft w Roof Access + City Views,92342,Ashley,Brooklyn,Williamsburg,40.72059,-73.95846999999999,Entire home/apt,220,3,42,2018-11-04,1.71,1,0 +30459160,Large 2 Bedroom Apt - Close to everything!,84147508,Andre,Queens,Ridgewood,40.70028,-73.90785,Entire home/apt,190,3,1,2018-12-30,0.16,1,0 +33266016,Spacious room and private bath in Williamsburg,18883243,Mika,Brooklyn,Williamsburg,40.71937,-73.9549,Private room,75,14,1,2019-05-25,0.67,1,0 +3122230,Cozy Harlem Home,15859636,Kyle,Manhattan,Harlem,40.81595,-73.9447,Private room,125,1,0,,,1,0 +3283028,"NICE Williamsburg Brooklyn, 2 Bedrooms off L train",16591767,Danny,Brooklyn,Williamsburg,40.71165,-73.94708,Entire home/apt,169,5,51,2019-06-02,0.83,1,91 +6555427,"Inviting,sunny grdn 15 min to Manhattan",24597265,Freda,Queens,Ditmars Steinway,40.772090000000006,-73.91096,Private room,50,6,11,2019-05-31,0.24,8,358 +27427898,Private 2 Bd Guest House. Great for Quiet Getaway,34313176,Eddie,Queens,Rego Park,40.71662,-73.85970999999999,Entire home/apt,140,2,11,2019-06-26,1.17,4,335 +32619108,"1st Floor, Room # 6 (12' x 14')",244817841,Aminul,Brooklyn,East New York,40.6697,-73.8954,Private room,40,7,5,2019-06-30,1.95,13,247 +26985201,2 BEDS - INCREDIBLE LOCATION - 1 STOP TO MANHATTAN,121771546,Cherri,Brooklyn,Williamsburg,40.71153,-73.96453000000001,Private room,110,2,49,2019-06-24,4.14,2,335 +36341047,Studio close to Manhattan,273288629,Hailey,Queens,Astoria,40.767990000000005,-73.91559000000001,Entire home/apt,150,2,0,,,1,359 +31309714,COSY BEDROOM in CITY CENTER,234338206,Arkadiy,Manhattan,Hell's Kitchen,40.76499,-73.99266999999999,Private room,140,1,9,2019-06-30,1.7,2,0 +13685807,"Steps to Times Square, Radio City, West 50's",20446747,Josh,Manhattan,Hell's Kitchen,40.76638,-73.99013000000001,Entire home/apt,176,4,105,2019-07-01,2.99,1,143 +9310959,"Cozy, 1 bedroom Brownstone Apt",7065964,Ashley,Brooklyn,Crown Heights,40.66722,-73.94800000000001,Entire home/apt,75,2,161,2019-06-28,3.65,1,183 +35573815,Private Single Room in UWS near to Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80102,-73.96669,Private room,60,1,3,2019-07-02,3.0,3,130 +22019912,Private Room in HOME w/Professionals,13208109,Jenny,Brooklyn,Flatbush,40.64066,-73.9664,Private room,45,5,3,2018-07-15,0.16,1,0 +11675817,Your Own Studio in Lower East Side,1534857,Sandro,Manhattan,Chinatown,40.71674,-73.98995,Entire home/apt,120,7,1,2016-04-08,0.03,2,0 +6849332,"Clean, Convenient & Calming Space",973817,Carol,Manhattan,Washington Heights,40.85151,-73.93789,Entire home/apt,105,2,0,,,1,0 +27002075,Central Park APT Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80127,-73.96166,Private room,72,2,14,2018-10-04,1.19,4,0 +3946471,Bedford Avenue,7739416,Ade,Brooklyn,Flatbush,40.65101,-73.95517,Private room,95,3,0,,,1,365 +23462240,Cozy Room in Brooklyn,118086005,Noa,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94261,Private room,50,1,0,,,1,0 +34230593,Spacious UES place. Flexible check-in/out. Subway.,113927793,Liz,Manhattan,Upper East Side,40.77712,-73.95164,Entire home/apt,155,2,8,2019-06-16,3.38,1,0 +32187475,"Prime loc. Spacious, bright, clean, cozy room",7627510,Eduardo,Queens,Jackson Heights,40.75318,-73.88404,Private room,80,2,5,2019-06-27,1.06,1,157 +26828006,Brooklyn Duplex with Terrace near Park,748365,Nick,Brooklyn,Crown Heights,40.68055,-73.96425,Entire home/apt,200,30,4,2019-04-15,0.43,1,4 +31301399,"Elegant, Mid Century Modern Apt (Private Room)",12618858,Alimah,Brooklyn,Bedford-Stuyvesant,40.68313,-73.92833,Private room,70,1,5,2019-06-21,0.85,2,111 +21859466,Luxurious sunny loft in the heart of Williamsburg,11844979,V,Brooklyn,Williamsburg,40.717690000000005,-73.96339,Entire home/apt,300,3,20,2019-06-09,1.04,4,318 +22601249,Chic and spacious 2 bedroom 19 min to Penn Station,166262295,Barbara,Queens,Long Island City,40.75337,-73.93355,Entire home/apt,95,2,57,2019-06-30,3.57,2,53 +16930662,Cozy yellow room,37185194,Hali,Queens,Astoria,40.76964,-73.91559000000001,Private room,44,1,14,2018-03-13,0.5,1,0 +15855156,Cozy room in the heart of Astoria,40503875,Hebert,Queens,Astoria,40.75927,-73.9092,Private room,55,1,94,2019-04-16,2.91,2,0 +22142575,Spacious sunny one bedroom apartment with balcony,1776666,Assaf,Brooklyn,Williamsburg,40.71106,-73.94884,Entire home/apt,160,5,15,2019-05-17,0.97,1,83 +9022118,Single room in apartment share,8311526,Sean,Manhattan,Upper West Side,40.79807,-73.96894,Private room,80,1,1,2015-11-03,0.02,1,0 +20191216,Historic Landmark Neighborhood - Upper East Side,143768763,Chi,Manhattan,Upper East Side,40.78612,-73.95359,Private room,105,3,29,2019-06-30,1.31,1,75 +29824343,New Yorker sunny top floor loft,29279378,Viktor,Manhattan,Harlem,40.82812,-73.94219,Entire home/apt,200,30,0,,,1,180 +9510385,Lovely bedroom,49279577,Yone,Queens,Astoria,40.76737,-73.91244,Private room,70,2,26,2019-05-22,0.75,1,128 +3819407,"UWS Charmer, Central Park/Lincoln Center",9784802,Tina,Manhattan,Upper West Side,40.77627,-73.98080999999999,Entire home/apt,325,3,70,2019-05-26,1.19,1,71 +29524623,Room to rent for Couple specially tourists !,221374905,Jean,Brooklyn,Bushwick,40.69155,-73.90595,Private room,200,1,0,,,1,365 +21800445,Gorgeous 2-Level East Village Apt (2 Bed/1.5 Bath),5443000,Erin,Manhattan,East Village,40.73103,-73.98233,Entire home/apt,299,2,21,2019-06-11,1.08,2,2 +10070145,Massive apt in prime Williamsburg,8820573,Ali,Brooklyn,Williamsburg,40.714,-73.96395,Entire home/apt,175,3,105,2019-06-19,2.45,1,104 +6269808,Bright 3 bd/ 2 bath on the park.,233161,Mac,Brooklyn,Windsor Terrace,40.65246,-73.97369,Entire home/apt,150,6,0,,,1,0 +594020,In_Manhattan+1 Small Block to train,2929756,Chris,Manhattan,Inwood,40.862840000000006,-73.91955,Private room,55,4,142,2019-06-03,1.68,2,179 +13426681,-Luxury NYC 1 Bedroom nearby Theater District!,30283594,Kara,Manhattan,Hell's Kitchen,40.76216,-73.99775,Entire home/apt,235,30,1,2017-08-02,0.04,121,365 +17952277,"Newly renovated, fully furnished room in Brooklyn",62685070,Katie,Brooklyn,Bushwick,40.699740000000006,-73.91935,Private room,10,5,0,,,1,0 +8032689,Charming Studio in Prospect Heights,2073942,Miriam,Brooklyn,Prospect Heights,40.678740000000005,-73.96842,Entire home/apt,150,1,1,2015-09-24,0.02,1,0 +13335424,"i call it home, you'll call it home.",75506967,Mimie,Bronx,Tremont,40.84559,-73.89815,Private room,41,7,22,2019-06-24,0.61,2,68 +13622049,An urban nest; 7 minutes from Central Park,44700210,Christina,Manhattan,Upper East Side,40.7758,-73.95472,Entire home/apt,200,5,11,2016-11-27,0.3,2,0 +13960907,Quiet and Sunny bedroom @Williamsburg bedford,11040921,Nicolas,Brooklyn,Williamsburg,40.71576,-73.95586,Private room,70,2,3,2016-08-31,0.08,1,0 +9773384,Captivating rooftop apartment,3816296,Luke,Manhattan,Chinatown,40.71611,-73.99539,Entire home/apt,180,1,0,,,1,0 +30395040,Naturally Lit/ Cozy & Cute Studio in Flatbush,61105987,Taylor,Brooklyn,Flatbush,40.635740000000006,-73.95129,Entire home/apt,90,3,7,2019-06-11,2.26,1,5 +8595346,Elegant Brooklyn Heights 2 BR Apt,642004,John,Brooklyn,Brooklyn Heights,40.69162,-73.99252,Entire home/apt,250,30,6,2016-07-31,0.14,1,0 +13126457,Unique 2BR Apartment,31483931,Nick,Queens,Long Island City,40.74226,-73.94999,Entire home/apt,151,2,87,2019-07-05,2.3,1,17 +22214383,UNIQUE 1 BED ROOM in FLATIRON/NOMAD/GRAMERCY,130528939,Colette,Manhattan,Midtown,40.74238,-73.98439,Entire home/apt,91,2,1,2018-01-02,0.05,1,0 +28466730,Akouaba,214888995,Adama,Bronx,Belmont,40.85267,-73.88627,Private room,50,2,51,2019-07-06,5.17,1,325 +35709682,"Shared Spaces;Safe,Great Location 15 to Times Sq",175730239,Baboucarr,Queens,Sunnyside,40.73883,-73.92698,Shared room,30,3,2,2019-06-24,2.0,12,327 +33185502,Sunny loft- private room & private living-room,41089134,Carissa,Brooklyn,Red Hook,40.67897,-74.00587,Private room,45,2,17,2019-06-29,5.05,1,87 +21500449,Authentic Brklyn Experience - Room A,156042211,Tia,Brooklyn,Canarsie,40.64963,-73.89817,Private room,65,4,8,2018-02-17,0.39,4,37 +33803252,All the restaurants and bars you can ask for,255216752,Amaree,Bronx,Throgs Neck,40.82807,-73.82418,Entire home/apt,80,1,0,,,1,1 +33096564,Tu Tranquilidad no tiene precio,182434290,Ana Maria,Queens,Ditmars Steinway,40.77134,-73.91328,Private room,52,1,5,2019-05-23,1.6,2,188 +10008874,YOUR HOME FOR THE HOLIDAY,4409832,Chris,Manhattan,Washington Heights,40.85139,-73.93722,Entire home/apt,150,6,0,,,1,0 +12003341,Charming Brownstone w/Backyard,4106320,Sachea,Brooklyn,Bedford-Stuyvesant,40.67909,-73.93222,Entire home/apt,140,2,33,2019-06-09,0.87,1,145 +13649833,Sunny Manhattan Apt (week / month discounts),4110677,Justin,Manhattan,Harlem,40.8085,-73.94113,Private room,75,14,4,2019-07-01,0.11,2,184 +13130313,Studio in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76502,-73.99277,Entire home/apt,90,30,11,2019-05-01,0.33,31,223 +25030760,Small and cozy room in awesome place,8076786,Suri,Brooklyn,Sunset Park,40.65907,-73.99887,Private room,150,1,1,2019-03-19,0.27,3,365 +29414633,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61208,-74.00180999999999,Shared room,15,10,0,,,2,0 +8949503,"Huge, Sumptuous En-Suite Bedroom",46778191,Zoe,Brooklyn,Williamsburg,40.71454,-73.95894,Private room,125,3,1,2015-10-27,0.02,1,0 +18003918,Upper West Side Oasis,10549792,Connor,Manhattan,Upper West Side,40.7807,-73.97869,Entire home/apt,200,4,2,2018-01-02,0.08,1,0 +849409,Spacious garden appartment brooklyn,4434798,Bernard,Brooklyn,Prospect Heights,40.68099,-73.97446,Entire home/apt,120,5,145,2019-07-01,1.82,1,0 +6269608,Heavenly Hell's Kitchen 2 bedroom,32582256,James,Manhattan,Hell's Kitchen,40.75546,-73.99701,Entire home/apt,189,5,9,2018-07-15,0.25,2,0 +9737064,Amazing 2 BR apt in West Village,33075414,Joakim,Manhattan,West Village,40.73053,-74.00296999999999,Entire home/apt,250,3,3,2019-06-03,0.08,1,16 +411336,"""Simple Perfect Soho""",2047776,Jennifer,Manhattan,Nolita,40.72278,-73.9967,Entire home/apt,225,2,244,2019-07-01,2.81,2,252 +8691258,Luxury Apartment by Time Square,45632792,Nickie,Manhattan,Theater District,40.7599,-73.98541999999999,Private room,200,1,1,2015-10-13,0.02,2,0 +22010163,Modern 2 bedroom apartment close to subway,790872,Tri,Manhattan,East Harlem,40.80481,-73.93812,Entire home/apt,120,1,3,2018-03-18,0.16,2,0 +31801234,MANHATTAN studio 10 minutes away from Central Park,238323020,Paul,Manhattan,Upper East Side,40.76672,-73.96110999999999,Entire home/apt,129,1,23,2019-06-21,4.16,1,109 +6245521,Ensuite Redroom,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93641,Private room,35,1,162,2019-06-20,3.2,5,162 +13623747,Spacious studio in NEW apt building in Astoria,78931932,Melanie,Queens,Astoria,40.76764,-73.9279,Entire home/apt,125,25,5,2016-11-14,0.14,1,0 +19117322,Luxurious studio,131218877,Svetlana,Manhattan,Midtown,40.758,-73.97906,Entire home/apt,250,30,0,,,1,0 +32937802,"Charming 2 Bedroom, Your Cozy Brooklyn Homebase!",1580711,Dawn,Brooklyn,Clinton Hill,40.69444,-73.9669,Entire home/apt,115,2,4,2019-06-24,1.29,1,46 +29334325,Plant & pet-friendly LOFT in the UWS,24595747,Melissa,Manhattan,Upper West Side,40.779720000000005,-73.97870999999999,Private room,97,3,7,2019-03-18,0.83,2,0 +33830298,Artsy Private Bedroom in UWS - Near Columbia U!,238321374,Eyal,Manhattan,Upper West Side,40.79972,-73.96106999999999,Private room,60,30,0,,,32,342 +16491507,Extra Cozy Room in Center of Williamsburg,4033160,Brian,Brooklyn,Williamsburg,40.71404,-73.95783,Private room,98,1,3,2017-01-01,0.1,1,0 +3860464,"BedStuy Fly, a relaxing retreat.",1812825,Samita,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92947,Entire home/apt,135,3,8,2015-09-10,0.14,1,0 +2071265,GET COSY IN WILLIAMSBURG...,10590038,Rory,Brooklyn,Williamsburg,40.70491,-73.94268000000001,Entire home/apt,110,3,3,2015-05-30,0.05,1,0 +23974919,"Charming UWS 1-bedroom, 1 block from Central Park!",25364341,Cyndi,Manhattan,Upper West Side,40.77669,-73.9789,Entire home/apt,200,3,1,2018-05-26,0.07,1,16 +16026815,NEW RENO HUGE PRIVATE BED&BATH PLUS TERRACE,104254967,Anna,Queens,Long Island City,40.755590000000005,-73.9208,Private room,95,2,62,2019-07-01,1.96,1,118 +19269531,"Steps away from Grand Central, cute & cozy!",4297109,Christian,Manhattan,Midtown,40.75334,-73.97278,Entire home/apt,195,2,5,2017-10-01,0.2,1,0 +5279859,Large Bohemian Studio- Gramercy!,6339750,Gabrielle,Manhattan,Kips Bay,40.740840000000006,-73.98008,Entire home/apt,196,5,66,2019-07-02,1.23,1,323 +3227002,Sunny 2 bedroom in Fort Greene,2941712,Claudia,Brooklyn,Clinton Hill,40.68717,-73.9669,Entire home/apt,200,5,3,2015-07-03,0.05,1,0 +24304881,Bright Getaway Studio on the Hudson River,122917817,Kelly,Manhattan,Harlem,40.82036,-73.95415,Entire home/apt,100,2,24,2019-07-04,2.57,1,8 +19913070,Spacious loft with Balcony sleeps TWO,3300910,William,Brooklyn,Bedford-Stuyvesant,40.69723,-73.93769,Entire home/apt,95,3,29,2019-06-29,1.22,1,13 +13398011,Modern East Village Apt Great Location 1-3 Bdrms,69050011,Kareem,Manhattan,East Village,40.72563,-73.99118,Entire home/apt,300,2,16,2018-05-06,0.43,1,0 +33560646,Big room with king bed,119294198,Jewel,Brooklyn,Bay Ridge,40.632090000000005,-74.018,Private room,45,1,1,2019-04-08,0.32,1,95 +22542091,"Large, King Size NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.6987,-73.93776,Private room,75,2,85,2019-06-23,4.65,2,128 +33157502,#2 Make yourself at home. (close to LGA and JFK),249649095,Tenzin,Queens,East Elmhurst,40.76132,-73.88192,Private room,53,2,16,2019-06-21,4.49,1,79 +23429757,Peaceful Bushwick Apartment,41105459,Stephanie,Brooklyn,Bushwick,40.690290000000005,-73.90623000000001,Shared room,29,1,3,2018-04-01,0.18,1,0 +32350835,Sunnyside room mins to Times Square & JFK.,137358866,Kazuya,Queens,Sunnyside,40.74658,-73.92007,Private room,42,30,1,2019-04-22,0.38,103,0 +13726629,CLEAN COMFORTABLE ROOM 7 MIN FR JFK,20134231,Paulette,Queens,Springfield Gardens,40.66298,-73.7621,Private room,40,2,187,2019-03-08,5.12,3,352 +3090474,Times Square Unique Studio,15718962,Samira,Manhattan,Hell's Kitchen,40.75771,-73.99407,Private room,100,1,257,2019-06-13,4.2,1,20 +4430657,Coming soon,22992909,Joshua,Brooklyn,Carroll Gardens,40.68592,-73.99285,Private room,188,2,0,,,1,0 +19923377,Cozy Brightly Lit Room in Huge Loft Space,48081884,Laura,Brooklyn,Williamsburg,40.70476,-73.92942,Private room,65,3,15,2019-05-27,0.65,2,2 +20566445,Amazing Backyard Studio (Williamsburg),53821850,Jermaine,Brooklyn,Williamsburg,40.70834,-73.94717,Entire home/apt,139,1,115,2019-06-15,5.06,2,67 +28640741,Airy Brooklyn Artist's Loft,95415432,Molly,Brooklyn,Williamsburg,40.71621,-73.96406999999999,Entire home/apt,280,4,0,,,1,43 +12583907,"1 Bedroom, Close to 4, 5, 6 trains",68250800,Anna,Manhattan,East Harlem,40.80015,-73.93764,Private room,60,1,137,2019-06-30,3.55,2,98 +13784458,Amazing 1BD in Harlem,10411030,Frances,Manhattan,East Harlem,40.79921,-73.94749,Entire home/apt,155,6,7,2018-07-01,0.21,1,0 +28538946,Spacious & Bright 1 Bedroom Refuge in the Big City,904138,Paul,Queens,Astoria,40.76214,-73.92148,Entire home/apt,150,6,1,2019-04-07,0.32,1,0 +15926876,Renovated rooms. Newly furnished 5 min from nyc.,103345244,Jeff,Bronx,Kingsbridge,40.88546,-73.90526,Private room,55,1,0,,,2,64 +31218952,*PRIME MANHATTAN*one block to 5 trains*ROOFDECK!*,2685943,Sara,Manhattan,Harlem,40.8249,-73.94585,Private room,60,1,30,2019-06-23,5.56,1,67 +22066893,Sweet 1 bedroom apt in 1881 Brooklyn Brownstone,5480385,Daniel,Brooklyn,Park Slope,40.67812,-73.9771,Entire home/apt,200,4,0,,,1,0 +20420152,Charming Studio in Upper East Side,121141431,Juan Ignacio,Manhattan,Upper East Side,40.77265,-73.94833,Entire home/apt,115,2,6,2018-04-15,0.27,1,0 +27312214,West village COZY! BEST LOCATION!,205777414,Jenny,Manhattan,West Village,40.73858,-74.00619,Entire home/apt,199,4,1,2018-09-18,0.1,1,232 +846457,Beatiful Studio in williamsburg,945407,Clara,Brooklyn,Williamsburg,40.7141,-73.96477,Entire home/apt,120,3,8,2017-09-25,0.13,1,0 +7954940,East Village Private Room & Bath,39956905,Can,Manhattan,East Village,40.72775,-73.9863,Private room,100,2,0,,,2,0 +32499059,"Amazing , Clean, Cozy in Upper East Side Manhattan",28917776,Tito,Manhattan,Upper East Side,40.78139,-73.95379,Private room,87,2,2,2019-07-03,2.0,1,76 +12947660,Cute studio/room in the East Village,36948675,Hoan,Manhattan,East Village,40.72886,-73.9863,Private room,65,18,6,2017-10-10,0.17,1,0 +24035864,Warm and Friendly Near Broadway and 96th,20154516,David,Manhattan,Upper West Side,40.79566,-73.96859,Private room,95,6,22,2018-08-24,1.47,1,0 +34617093,New 4 bedroom Sunny Boutique Apt Steps from Train,39808438,Easton,Brooklyn,Bushwick,40.68899,-73.91615999999999,Entire home/apt,350,2,0,,,5,358 +8838861,UWS One Bedroom Pre-War Gem,46289881,Jerry,Manhattan,Upper West Side,40.79221,-73.96588,Entire home/apt,225,3,2,2015-11-02,0.04,1,0 +25458048,"1BRD Greenpoint BK! Nightlife, parks, shops, food",9582456,Jenny,Brooklyn,Greenpoint,40.722640000000006,-73.94272,Entire home/apt,150,1,14,2019-03-24,1.17,1,0 +20026598,Bushwick gem with private garden patio.,32446918,Michele,Brooklyn,Bushwick,40.70451,-73.92062,Entire home/apt,150,4,32,2019-06-25,1.46,1,92 +15255254,Private room with private bathroom,8402190,Amanda,Brooklyn,Greenpoint,40.72342,-73.94838,Private room,99,2,38,2019-06-23,1.13,1,89 +32869060,"Big, brt rm w/ king bed+ pvt bath in HK/MT West",33607268,Anne,Manhattan,Hell's Kitchen,40.76575,-73.98938000000001,Private room,110,1,14,2019-05-29,3.65,1,0 +15643425,Spacious Victorian home,11742138,Susan,Brooklyn,Flatbush,40.63667,-73.96705,Entire home/apt,250,4,3,2019-06-25,1.07,1,35 +22099954,Cozy 2 Bedroom in Astoria,23385082,Theresa,Queens,Astoria,40.76516,-73.92281,Entire home/apt,112,6,2,2018-03-12,0.11,1,0 +16720039,Very Chic and SUPER Convenient South Harlem Apt,3676370,Patrice,Manhattan,Harlem,40.80283,-73.95569,Entire home/apt,95,2,4,2017-12-30,0.2,1,0 +21098387,"Private room in Times Square, HEART of the city!",133790239,Erica,Manhattan,Hell's Kitchen,40.75906,-73.98898,Private room,150,2,0,,,1,0 +10674243,Cal King lovely room withTVwasher-dryer in kitchen,40733633,Betsy,Manhattan,Inwood,40.86912,-73.91988,Private room,70,1,1,2016-08-28,0.03,1,312 +29876288,Beautiful and bright apartment close to Manhattan!,5326571,Ines,Queens,Ditmars Steinway,40.77718,-73.91029,Entire home/apt,180,7,1,2019-05-25,0.67,2,122 +33971836,Cozy apartment In Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76447,-73.99103000000001,Shared room,69,1,4,2019-06-23,1.48,9,364 +31331255,Central Bedstuy Apt,234543110,Marclynn,Brooklyn,Bedford-Stuyvesant,40.68433,-73.94391999999999,Entire home/apt,110,3,0,,,1,63 +20982422,'Fan'tastic,75248463,Jotham,Brooklyn,East Flatbush,40.64516,-73.94751,Private room,59,2,10,2019-06-01,0.47,4,41 +28054212,Brooklyn Serene Bedrooms,18753186,Florence,Brooklyn,Gowanus,40.68255,-73.98911,Entire home/apt,150,5,25,2019-06-30,2.43,2,54 +30468686,Minimal Bed-stuy Bedroom with Fire Escape,11769840,Amber,Brooklyn,Bedford-Stuyvesant,40.68611,-73.92428000000001,Private room,70,2,8,2019-07-01,1.22,2,5 +6674155,Upper East Side Alcove Studio,1208337,Sandra,Manhattan,Upper East Side,40.76832,-73.96118,Entire home/apt,200,1,4,2016-01-31,0.08,1,0 +13688316,Cozy 1BR on the UES near 6 Train,79744263,Eddy,Manhattan,Upper East Side,40.77386,-73.95348,Entire home/apt,200,6,0,,,1,0 +34513724,Quiet and Clean,260496218,Veronica,Queens,Bellerose,40.73138,-73.74122,Private room,100,1,1,2019-06-02,0.79,2,342 +36255515,Chill in Style - A Music Producer's Dream Pad,66486652,Micah,Manhattan,Upper East Side,40.77439,-73.95047,Entire home/apt,242,3,0,,,1,17 +31224372,Spacious and Homey Room,5666720,Jules Slutsky,Brooklyn,Crown Heights,40.67185,-73.94524,Private room,100,3,0,,,1,220 +16485990,Beautiful 2 BR apartment next to restaurants/train,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97187,Entire home/apt,140,3,13,2019-06-23,1.09,2,141 +26453418,Room to rest near LaGuardia. Steps to subway!,137358866,Kazuya,Queens,Jackson Heights,40.7488,-73.88045,Private room,39,30,1,2019-04-01,0.3,103,186 +34651960,BIG ROOM GREAT LOCATION,255618027,Cc,Brooklyn,Bushwick,40.70312,-73.92071,Private room,75,2,4,2019-06-29,2.35,1,76 +16333147,Charming Bedroom on the Lower East Side,33127406,Emily,Manhattan,Lower East Side,40.72007,-73.98559,Private room,90,5,0,,,1,0 +21461874,"Privet bedroom. Super clean, 10 min from Times Sq",13878635,Muslum,Manhattan,Hell's Kitchen,40.76636,-73.99334,Private room,150,1,9,2019-05-26,0.44,2,88 +29965839,Entire 1BR Apt in FiDi close to Everything!,54689007,Ana,Manhattan,Financial District,40.70903,-74.00596,Entire home/apt,165,20,0,,,3,53 +30561213,EXPERIENCE COLORFUL NYC IN THE BEST LOCATION! R/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68723,-73.95742,Private room,48,15,4,2019-05-21,0.56,11,341 +25324506,Bright Brooklyn Home with a View,4625857,Ilana,Brooklyn,Crown Heights,40.67157,-73.95806999999999,Entire home/apt,150,10,1,2019-01-02,0.16,1,0 +17759694,Private Williamsburg SunDrenched Large Studio,17041154,Lindsay,Brooklyn,Williamsburg,40.70987,-73.94756,Entire home/apt,210,2,35,2019-06-23,1.56,1,170 +13545733,Ideal location for those new to New York!,5677896,Keryn,Manhattan,Inwood,40.86182,-73.93088,Private room,57,14,4,2018-08-17,0.11,1,0 +6799957,[303] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.75987,-73.99056,Private room,155,1,203,2019-06-13,4.13,11,211 +30768969,Sunny & Big Room w/private toilet in Bushwick,192181166,Elisa,Brooklyn,Williamsburg,40.70891,-73.94268000000001,Private room,72,3,0,,,2,0 +22321208,Elegant Apartment for Holidays in East Village,65390606,Carol,Manhattan,East Village,40.72677,-73.98267,Entire home/apt,150,5,1,2017-12-18,0.05,1,0 +29921568,"Sunny/Quiet/Clean/Zen, in Central Location!",42295490,C-S,Manhattan,Chinatown,40.71655,-73.99537,Private room,68,30,4,2019-05-29,0.64,2,0 +16650612,"CHIC, UPSCALE STUDIO-MIDTOWN, PERFECT LOCATION!",24805629,Joi,Manhattan,Hell's Kitchen,40.76486,-73.98682,Entire home/apt,200,2,6,2017-08-27,0.2,1,0 +21473314,Cozy Room in the Heart of NYC,31154454,Elliot,Manhattan,Kips Bay,40.74155,-73.98235,Private room,70,1,119,2019-06-23,5.78,2,3 +20257297,Williamsburg Sky,4220261,Bashan,Manhattan,Civic Center,40.71332,-74.00643000000001,Entire home/apt,300,2,0,,,1,89 +23838063,Spacious getaway room in the heart of Bushwick,149073048,Kat,Brooklyn,Bushwick,40.69837,-73.93045,Private room,67,5,34,2019-06-30,2.31,1,102 +11372330,Manhattan Apartment + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81312,-73.94273000000001,Entire home/apt,177,3,90,2019-06-22,2.59,3,175 +25428063,1BR Apartment on Prettiest Block in West Village!,3623796,Richard,Manhattan,West Village,40.73788,-74.00183,Entire home/apt,170,3,2,2018-10-28,0.16,1,0 +19975703,Large bedroom near trains & park,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66084,-73.96001,Private room,38,20,0,,,2,7 +21924815,Like live in your own home while traveling,113356258,Judy,Manhattan,Upper East Side,40.77752,-73.94726,Private room,100,1,0,,,1,0 +14337001,Charming Room in Astoria Close to N and W Trains,45225936,Bekah,Queens,Astoria,40.75593,-73.92584000000001,Private room,63,2,8,2017-08-21,0.31,1,0 +16054225,Luxury doorman building great view NYC,104542199,Ray,Manhattan,Upper East Side,40.782,-73.95143,Private room,200,2,3,2017-09-19,0.09,1,90 +30337531,Cozy Brooklyn 1 Bed,227801173,Drew,Brooklyn,Brooklyn Heights,40.69346,-73.99814,Entire home/apt,125,2,7,2019-06-17,1.09,1,47 +21983066,Great comfortable conveniently located room,160507714,Maria,Brooklyn,Fort Greene,40.68286,-73.97134,Private room,80,1,1,2018-01-01,0.05,1,0 +36316944,3Bed - Spanish Harlem Getaway 2 blocks to 1 train,167089974,Elise,Manhattan,Harlem,40.81893,-73.95416999999999,Entire home/apt,202,3,0,,,1,205 +944049,Beautiful 1BR in Prime West Village,1908073,Andrew,Manhattan,West Village,40.73194,-74.00189,Entire home/apt,200,4,45,2019-07-01,0.59,1,48 +1100421,"Cobble Hill, sunny large 1BR apt",1545977,Lelia,Brooklyn,Cobble Hill,40.687540000000006,-73.99284,Entire home/apt,195,30,38,2019-06-01,0.51,1,345 +15144105,Cosy room in Brooklyn Apartment,75458749,Beck,Brooklyn,Flatbush,40.64026,-73.95347,Private room,45,3,2,2016-10-19,0.06,2,0 +712260,Private Two Bedroom with Garden in Cobble Hill,3666608,Paul And Debra,Brooklyn,Carroll Gardens,40.68344,-73.9933,Private room,210,2,75,2019-06-19,0.92,1,309 +26946697,New york Multi-unit building in Williamsburg BR,32165430,Marcia,Brooklyn,Williamsburg,40.7045,-73.937,Private room,60,3,1,2018-08-08,0.09,1,0 +14949281,"The best deal, really close to Times Square",91445933,Adam,Manhattan,Theater District,40.75863,-73.98812,Private room,40,1,163,2019-06-19,4.75,1,102 +20250864,"Chelsea, Minutes to Time Square, Next to Subway",144317997,Luis,Manhattan,Chelsea,40.74648,-73.99286,Private room,40,3,23,2018-05-03,1.03,1,0 +25380189,"Modern, Fresh Chelsea, Athenas Apartment Room",191621249,Geraldine,Manhattan,Chelsea,40.741040000000005,-73.99712,Private room,100,1,33,2019-06-29,3.87,2,12 +28250925,"Bright, cozy room in Prospect Heights/Park Slope",73640551,Courtney,Brooklyn,Prospect Heights,40.67852,-73.97308000000001,Private room,75,2,11,2019-01-27,1.24,2,1 +9792367,Crown Heights Room Winter Sublet,50467679,Gerard,Brooklyn,Crown Heights,40.67176,-73.93387,Private room,30,3,3,2017-12-18,0.1,1,0 +23469535,"Your Room at Roselle’s, Bronx",175152359,Massiel,Bronx,Westchester Square,40.843,-73.84806,Private room,65,2,2,2019-06-23,0.13,2,135 +8832355,"Open Space, Outdoor Space",4703687,Daphne,Brooklyn,Greenpoint,40.72311,-73.93819,Entire home/apt,150,2,1,2016-02-27,0.02,2,0 +10850008,Big Private BR Steps to Barnard Columbia & Subways,56197328,Paul,Manhattan,Morningside Heights,40.80732,-73.9648,Private room,128,1,33,2019-05-23,0.85,2,235 +22927598,"Prime UES, Centrally located, Quiet NYC Apartment",107198157,Ranjith,Manhattan,Upper East Side,40.77978,-73.95153,Entire home/apt,119,3,0,,,1,0 +22485639,61st east room C manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76221,-73.96726,Entire home/apt,140,1,43,2019-06-29,2.51,11,281 +10681555,Doorman XLL Studio Midtown! 5163,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7653,-73.98536,Entire home/apt,117,30,2,2018-04-26,0.07,96,198 +4734069,BEAUTIFUL WILLIAMSBURG BROWNSTONE,1279274,Jena,Brooklyn,Williamsburg,40.71334,-73.96207,Entire home/apt,200,30,0,,,1,0 +32272051,Bushwick Loft Transformed into Bohemian Hideaway!,25365575,Nick,Brooklyn,Williamsburg,40.70525,-73.93363000000001,Private room,64,1,29,2019-07-05,6.13,1,13 +27552471,Best Brighton Beach welcoming for your stay!,25899890,Youssef,Brooklyn,Brighton Beach,40.57762,-73.96051,Entire home/apt,99,2,2,2018-09-16,0.19,1,0 +1484031,"Private room in cozy Harlem, NY Apt",6228539,Michelle,Manhattan,Harlem,40.80427,-73.95404,Private room,100,2,15,2019-05-20,0.21,2,326 +12210323,HUGE DUPLEX apartment with BACKYARD,65670239,Kelly,Brooklyn,East Flatbush,40.64062,-73.94733000000001,Entire home/apt,215,2,44,2019-07-04,1.28,1,279 +4994264,1 Bdrm in Luxury High Rise,41398078,Jimmy,Manhattan,Financial District,40.7076,-74.01366999999999,Private room,125,3,0,,,1,0 +13428478,Casa De Grattan,76566529,Brian,Brooklyn,Williamsburg,40.70624,-73.92860999999999,Shared room,60,2,0,,,1,0 +6831518,Awesome Location with Best Commute,35788303,Kimihiro,Manhattan,Chelsea,40.74733,-73.99023000000001,Private room,99,1,17,2019-01-01,0.39,1,0 +6233779,Cozy South Williamsburg Bedroom off Bedford Ave!,32345728,Michael,Brooklyn,Williamsburg,40.70834,-73.96646,Private room,60,2,0,,,1,339 +3311830,Beautiful Clean & Quiet Room! Rm#1,11674837,Christopher,Queens,Ridgewood,40.70476,-73.90874000000001,Private room,59,1,142,2019-06-16,2.34,3,359 +14357461,Cozy & Private 1 bedroom in Bedstuy,22177259,Cass,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.94055,Entire home/apt,75,2,12,2018-12-02,0.35,1,41 +3703037,SUBLET in the UWS,18876264,Daniel,Manhattan,Upper West Side,40.77817,-73.97844,Entire home/apt,200,1,0,,,1,0 +16374392,2 Bedrooms Entire Beautiful Apt in Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.71372,-73.96231999999999,Entire home/apt,120,4,9,2019-01-06,0.42,2,291 +7834712,Sunny 1 Bedroom in Brooklyn,41262382,Catherine,Brooklyn,Bedford-Stuyvesant,40.68237,-73.95257,Entire home/apt,85,2,10,2018-11-15,0.21,1,0 +62891,Smallest House In The Village,306545,Olivia,Manhattan,East Village,40.72477,-73.98161,Entire home/apt,175,3,185,2019-05-24,1.78,2,326 +2835738,Apt Lincoln Center And Central Park! Best location,2074433,Anna,Manhattan,Upper West Side,40.77397,-73.98241999999999,Entire home/apt,299,2,155,2019-06-21,2.46,1,267 +28494807,"Upper West Side, NYC. Near 72nd 1,2,3",5970733,Michelene,Manhattan,Upper West Side,40.77953,-73.98421,Entire home/apt,100,2,17,2019-07-01,2.12,1,18 +16162247,Gorgeous 1 Bedroom in Prime Location in Brooklyn!,88384901,Nehia,Brooklyn,South Slope,40.66707,-73.98611,Private room,145,4,0,,,1,0 +18794680,HUGE ROOM -- BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.69573,-73.91376,Private room,65,2,17,2019-05-24,1.21,2,349 +3162817,"Sunny, Williamsburg Condo",6754169,Ellie,Brooklyn,Williamsburg,40.715720000000005,-73.94058000000001,Entire home/apt,350,2,2,2015-08-02,0.04,2,0 +21385915,D) Cozy Spacious Queen bed WiFi JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69943,-73.81444,Private room,48,1,49,2019-05-16,2.4,4,255 +33135391,Quintessential West Village Getaway,6520032,Carolina,Manhattan,West Village,40.73551,-74.00138000000001,Entire home/apt,250,2,6,2019-07-06,2.12,1,19 +9037702,An Artists' Home in Chinatown - B,254860,Ricky,Manhattan,Chinatown,40.71434,-73.99342,Private room,80,4,1,2015-11-02,0.02,1,0 +35771730,Cozy bedroom close to Manhattan,178036911,Kate And Alex,Brooklyn,Bedford-Stuyvesant,40.68293,-73.92924000000001,Private room,50,1,5,2019-07-05,5.0,2,359 +33399897,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.7065,-74.00503,Private room,169,7,1,2019-05-25,0.65,13,365 +8014811,1 bedroom/1 Bath/Balcony/Wash-Dryer,42320409,Timothy,Brooklyn,Williamsburg,40.7076,-73.94072,Entire home/apt,87,1,3,2015-10-24,0.07,1,0 +34391029,Splendid 2BED/2BATH Midtown EAST LOFT,258221896,Ariel,Manhattan,Upper East Side,40.76256,-73.96389,Entire home/apt,250,6,7,2019-06-22,3.56,1,100 +33973347,Beautiful private bedroom in UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7929,-73.9391,Private room,90,2,2,2019-06-23,2.0,3,0 +6054864,"Sunny, Spacious, Perfect Location!",3088202,Pete,Brooklyn,Carroll Gardens,40.68051,-73.99743000000001,Entire home/apt,109,4,6,2017-03-05,0.12,1,0 +5895082,45 Ave 159 st Flushing private room,30616879,Anna,Queens,Flushing,40.76173,-73.80767,Private room,55,2,55,2019-02-28,1.12,3,342 +5115372,Comfy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.763740000000006,-73.87103,Private room,54,1,430,2019-07-03,13.45,5,347 +845517,Queen-sized Room Avail in Huge 2 bdrm/2bth loft.,4414425,Ian,Brooklyn,Clinton Hill,40.69691,-73.96713000000001,Private room,36,1,8,2019-05-26,0.1,1,83 +18789421,Peace in Brooklyn,130774685,Edmund,Brooklyn,Bedford-Stuyvesant,40.68843,-73.92536,Entire home/apt,125,3,96,2019-07-02,3.87,1,1 +16556211,"Cozy Bedroom in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.64863,-73.94948000000001,Private room,80,1,27,2019-04-13,1.09,3,342 +22794168,Sunny park-view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94714,Private room,49,30,11,2019-01-17,0.79,4,257 +34974562,Stylish Studios near Central Park,263505830,Elizabeth,Manhattan,Upper West Side,40.77927,-73.97649,Private room,100,28,0,,,1,166 +21631882,Home away from home in Bushwick!,11975404,Art,Brooklyn,Bushwick,40.70085,-73.91929,Private room,72,3,1,2017-12-31,0.05,2,0 +29729728,Apartment in the heart of Williamsburg,2299134,Maya,Brooklyn,Williamsburg,40.72034,-73.95626,Entire home/apt,100,3,2,2019-04-26,0.4,1,2 +21593919,Renovated 1 Bedroom Apartment in Williamsburg - 3R,156436372,Sonia,Brooklyn,Williamsburg,40.7151,-73.95129,Entire home/apt,100,30,6,2018-12-28,0.31,4,233 +16708692,2 Bedroom Apt.-30 secs from C train,110708643,Stephen,Brooklyn,Bedford-Stuyvesant,40.67983,-73.92121,Entire home/apt,82,2,80,2019-05-26,2.76,1,28 +24402527,Cozy Brooklyn Studio,184204269,Donna,Brooklyn,East Flatbush,40.63718,-73.94060999999999,Entire home/apt,69,2,36,2019-06-09,2.46,1,229 +30378211,Shared Studio (females only),200401254,Meg,Manhattan,Greenwich Village,40.73094,-73.999,Shared room,110,999,0,,,1,365 +29679677,Lofty Studio in the heart of Williamsburg,8587936,Aimée,Brooklyn,Williamsburg,40.71823,-73.96141,Entire home/apt,180,3,0,,,1,0 +7853110,"Carroll Gardens, 25 ft from F/G",631747,Logan,Brooklyn,Carroll Gardens,40.67986,-73.9945,Private room,60,2,1,2015-08-23,0.02,1,0 +35423325,Pretty 1 BDR Apt in Times SQ / Theater District,2534058,Fuda,Manhattan,Hell's Kitchen,40.76269,-73.98928000000001,Entire home/apt,190,2,4,2019-07-03,4.0,1,29 +5965946,Private Master Bed-Queen Pillowtop & PRIVATE BATH,4308068,Crystal,Brooklyn,Bushwick,40.69904,-73.91282,Private room,65,2,37,2019-06-23,0.78,1,0 +12366408,Near to Central Park and 1 ride to Times Sq!,66807700,Gabi,Manhattan,East Harlem,40.79505,-73.94360999999999,Entire home/apt,220,2,140,2019-05-27,3.6,3,341 +1728625,New Williamsburg 1B With Backyard,9109049,Todd,Brooklyn,Greenpoint,40.71985,-73.94015,Entire home/apt,160,2,19,2017-12-04,0.32,1,0 +12733430,Bright & Spacious Studio,10777637,Andrea,Brooklyn,Williamsburg,40.71696,-73.95382,Entire home/apt,160,1,9,2016-09-26,0.24,1,0 +30470126,Spacious and Cozy Room - Just like Home,162166015,Freddy,Queens,Ridgewood,40.6963,-73.89965,Private room,50,1,3,2019-01-01,0.45,1,189 +594036,Spacious Greenwich Village Loft,2934010,Bill,Manhattan,West Village,40.73413,-74.00465,Entire home/apt,300,1,5,2015-10-11,0.06,1,0 +13952319,Cosy Studio with a backyard in Forest Hills,7212175,Swati,Queens,Forest Hills,40.72143,-73.85521999999999,Entire home/apt,99,1,143,2019-06-28,3.96,1,282 +19583464,NYC Empire Apartment,137647792,Blair,Manhattan,Kips Bay,40.74511,-73.97833,Entire home/apt,145,2,0,,,1,0 +20166475,"Large, quiet, sunny room: close to Manhattan & LGA",30442701,Nick & Nadia,Queens,Astoria,40.7651,-73.91304000000001,Private room,49,3,36,2018-06-21,1.55,1,0 +29755360,LUXURY Studio Apartment in PRIME Williamsburg,223855863,Thais,Brooklyn,Williamsburg,40.71841,-73.95224,Entire home/apt,200,3,0,,,1,111 +13262386,Charming 3 bedroom in Brooklyn!!,7195638,Dawn,Brooklyn,Bedford-Stuyvesant,40.685,-73.92022,Private room,73,3,5,2016-10-08,0.14,1,359 +1526741,Comfy Couch in a nice and safe apt!!,6486116,Ari,Manhattan,East Harlem,40.790040000000005,-73.94846,Shared room,69,1,136,2019-04-04,2.13,4,103 +438513,Big Beautiful Brooklyn Apt @ Park!,2177462,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.96181,Entire home/apt,150,3,87,2019-06-16,1.0,1,73 +10233563,纽约市曼哈顿中城East 52nd st_2室1厅_$4500/月,4227531,Wendy,Manhattan,Midtown,40.75686,-73.96723,Entire home/apt,230,180,0,,,1,365 +21943047,Huge private room in Williamsburg,29238030,Celine,Brooklyn,Williamsburg,40.71284,-73.94805,Private room,70,2,3,2018-05-02,0.2,1,0 +21296249,Nice Clean Cousy Studio.,154106207,Paulo,Queens,Astoria,40.76031,-73.91583,Private room,180,6,0,,,1,83 +6104542,Nice cozy studio apt close to all,19661729,Sopchok,Queens,Jackson Heights,40.74898,-73.88638,Entire home/apt,115,1,51,2019-07-01,1.03,1,78 +33548323,Modern & Cozy Room with PRIVATE balcony!,6946537,Tiara,Brooklyn,Flatbush,40.6307,-73.95815,Private room,80,2,0,,,1,90 +17013623,"Cute one bedroom apt. in Greenpoint, Brooklyn.",114071959,Greg,Brooklyn,Greenpoint,40.72556,-73.94368,Private room,59,3,64,2019-06-10,2.24,1,162 +32238473,Sonder | Stock Exchange | Sleek Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70581,-74.01226,Entire home/apt,241,2,5,2019-06-12,1.35,327,284 +16604913,Affordable cozy room rental in Flushing,23120620,Jackie,Queens,Flushing,40.7383,-73.80866999999999,Private room,65,1,9,2019-05-18,0.72,5,365 +34949542,Private room 1 min away from subway!,263352389,Yekta,Brooklyn,Flatbush,40.64856,-73.96358000000001,Private room,40,7,1,2019-06-26,1.0,1,11 +8444227,Private Room in Heart of Soho,44457589,Joel,Manhattan,SoHo,40.72607,-74.00166,Private room,95,1,152,2019-06-04,3.34,2,9 +2246112,"Upper E. side, one month minimum",11443640,James,Manhattan,Upper East Side,40.78158,-73.94808,Entire home/apt,110,1,3,2017-08-29,0.06,1,0 +1633420,NYC Harlem cozy private room,8677477,Tia,Manhattan,Harlem,40.81307,-73.93854,Private room,80,1,73,2019-05-24,1.08,1,309 +20150770,Luxury condo- private room + bath w cable TV/W/D,75967547,Kristin,Manhattan,Harlem,40.805240000000005,-73.95254,Private room,99,2,17,2018-12-03,0.73,2,0 +28871823,Chic Modern Minimalism | Private Luxury Space,10320429,Julie,Brooklyn,Bedford-Stuyvesant,40.69058,-73.94863000000001,Private room,72,2,37,2019-06-30,3.94,1,18 +30539902,Sunny 1BR in Williamsburg/Greenpoint,4169001,Lani,Brooklyn,Williamsburg,40.72006,-73.94593,Entire home/apt,175,5,0,,,1,0 +18348512,NYC Hells Kitchen 51St ミッドタウンウエストサイド,126984603,Val &Yuko,Manhattan,Hell's Kitchen,40.76534,-73.9894,Private room,65,5,31,2019-07-06,1.2,1,54 +9393134,Spacious 3br Williamsburg Apt One Block From Water,32812120,Bjorn,Brooklyn,Williamsburg,40.7196,-73.95956,Entire home/apt,260,3,4,2017-05-29,0.11,2,0 +30932236,Large 1920s home W/Parking | 20 mins from Midtown.,29854797,Michael,Bronx,Claremont Village,40.84145,-73.91027,Entire home/apt,150,3,29,2019-07-06,4.7,1,109 +22263267,Cozy apartment in Central Park North,161514654,Hafou,Manhattan,East Harlem,40.79598,-73.94838,Entire home/apt,135,2,56,2019-06-12,3.11,1,66 +29592296,Brick Studio with Great wide Street View,211549023,Studioplus,Manhattan,Midtown,40.74749,-73.98816,Entire home/apt,260,2,20,2019-06-19,3.23,13,242 +10990088,"Downtown, Renovated 2 Bedroom Apt",24361297,Summer,Manhattan,Chinatown,40.71781,-73.99569,Entire home/apt,100,1,0,,,1,0 +28506595,Cute Room,8834412,Deborah,Bronx,Longwood,40.81232,-73.90299,Private room,100,3,0,,,2,364 +7582706,1000 square feet of Luxury!,12757332,Jeremy,Manhattan,Financial District,40.70406,-74.01227,Entire home/apt,350,1,0,,,1,0 +22513363,AMAZING Greenpoint/Williamsburg PRIVATE Room,2818775,Elena,Brooklyn,Greenpoint,40.73304,-73.95125,Private room,75,1,16,2019-05-19,1.08,1,280 +813225,"Quirky, Exposed-Brick Cozy Room Brooklyn Townhouse",149929,Obed,Brooklyn,Fort Greene,40.68871,-73.97180999999999,Private room,68,8,37,2019-07-02,0.5,5,280 +13436132,Bright studio in the heart of the east village,4996789,Christine,Manhattan,East Village,40.72741,-73.97529,Entire home/apt,142,1,146,2019-06-25,3.92,1,78 +21364703,Gorgeous 1 BR/1BA where Soho meets West Village!,8480056,David,Manhattan,SoHo,40.72706,-74.00476,Entire home/apt,170,2,17,2019-06-23,0.84,1,6 +16534037,1 BR at Wyndham Midtown 45 NYC,61463458,Gary,Manhattan,Midtown,40.75377,-73.97203,Private room,225,2,2,2018-07-22,0.16,2,0 +30387445,"Serene Theater District 1BR, Doorman, Gym, Garden by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76258,-73.98768000000001,Entire home/apt,302,30,0,,,232,330 +32266199,2400 sq. ft. Luxury Tribeca Loft,4471865,Cuitlahuac,Manhattan,Tribeca,40.71683,-74.00574,Private room,225,1,1,2019-03-21,0.27,1,66 +26584254,Minimal style bedroom close to Manhattan,199887038,Theodoros,Queens,Ditmars Steinway,40.77031,-73.90793000000001,Private room,68,2,10,2019-06-29,0.89,2,53 +20979453,Midtown East Sunny Studio Apartment,5335417,Glenn Thomas,Manhattan,Kips Bay,40.74395,-73.98049,Entire home/apt,195,3,9,2019-06-14,0.42,1,47 +18565097,Bohemian Duplex 1BR Pvt BA Lounge E Williamsburg,128414475,Nitya,Brooklyn,Williamsburg,40.70556,-73.92891999999999,Private room,70,2,10,2017-08-28,0.38,3,0 +33416246,Extra Large Midtown East 1 Bedroom Elevator,61391963,Corporate Housing,Manhattan,Midtown,40.75577,-73.96727,Entire home/apt,142,30,0,,,91,310 +1089542,Private Cozy Bedroom in Brooklyn,663764,Karen,Brooklyn,East Flatbush,40.6536,-73.94883,Private room,47,2,248,2019-05-05,3.27,2,0 +8409246,Charming East Village Garden Apt.,3266068,Alex,Manhattan,East Village,40.72625,-73.98173,Entire home/apt,235,3,4,2015-12-05,0.09,1,0 +12310495,Small New-York-Style Room by Central Park!,66383919,Fernando,Manhattan,Harlem,40.80713,-73.9542,Private room,75,2,46,2017-03-11,1.17,2,0 +33999377,CLEAN & SPACIOUS ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75759,-73.92676999999999,Private room,50,1,7,2019-06-02,2.88,5,336 +32466675,Beautiful APT. mins from JFK/ mins from the city!,64106093,Jorge,Brooklyn,Cypress Hills,40.67715,-73.86672,Entire home/apt,150,2,11,2019-07-07,3.93,1,217 +4838271,Modern fully furnished bedroom,1304390,Barry,Brooklyn,Bushwick,40.70037,-73.92820999999999,Private room,85,4,2,2018-07-02,0.07,1,364 +14499400,"Cozy, Creative Loft - Same Block as Graham Ave L",2024671,Ashley,Brooklyn,Williamsburg,40.71459,-73.9468,Entire home/apt,200,10,4,2017-04-27,0.12,1,0 +1645667,Truly A Sweet Home away from Home.,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68656,-73.95348,Entire home/apt,130,3,220,2019-06-23,3.11,2,0 +18179365,2 bedroom apartment with private Patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76318,-73.99462,Entire home/apt,200,30,1,2017-07-29,0.04,31,350 +25124293,Stylish One-Bedroom Apartment in Park Slope,1546476,Janet,Brooklyn,Park Slope,40.67808,-73.98074,Entire home/apt,120,3,9,2019-05-10,0.67,1,2 +17277132,"BROOKLYN HEIGHTS Private Studio, 1 stop Manhattan!",5130754,Patrick,Brooklyn,Brooklyn Heights,40.69343,-73.99611,Entire home/apt,100,4,3,2019-06-15,0.2,1,4 +19246662,"MANHATTAN +near Central Park& +Columbia University",42068815,Steven,Manhattan,Morningside Heights,40.80908,-73.95858,Entire home/apt,150,3,81,2019-06-02,3.24,1,282 +31978518,Apt in historic brownstone on best block in NYC,51414586,Robert,Brooklyn,Fort Greene,40.689040000000006,-73.9759,Entire home/apt,225,3,4,2019-07-06,2.14,1,78 +13901170,Comfy 1 Bedroom in commercial East Flatbush,82398569,Daniel And Christianne,Brooklyn,East Flatbush,40.65214,-73.93126,Entire home/apt,62,2,85,2019-06-15,2.36,1,33 +31856243,Luxury Highrise with Golf Simulator/Sauana Mry Hil,238748653,Sam,Manhattan,Murray Hill,40.74661,-73.97195,Private room,90,7,5,2019-05-15,1.06,1,8 +1712660,Cosy Room in Great Location -W'burg,2332618,Alison,Brooklyn,Williamsburg,40.70833,-73.95395,Private room,89,1,214,2019-06-28,3.07,2,354 +17893797,Private Room in Spacious Central Harlem Apartment,26821811,Lynda,Manhattan,Harlem,40.8155,-73.93986,Private room,38,3,1,2018-08-02,0.09,1,0 +24541153,Summer escape in Brighton Beach,30895980,Elena,Brooklyn,Brighton Beach,40.576440000000005,-73.95551,Entire home/apt,110,2,8,2019-05-17,0.58,2,248 +18616217,"Local West Village, Manhattan Apartment",22204359,Abel,Manhattan,West Village,40.73369,-74.00534,Entire home/apt,199,4,24,2019-06-28,0.95,1,35 +30563760,Private One Bedroom Chelsea Apartment New York-#1,9328763,Synergy Global,Manhattan,Chelsea,40.74511,-73.99468,Private room,138,25,0,,,2,0 +24582124,room in house,102287990,Andy,Brooklyn,Sunset Park,40.64499,-74.02436999999999,Private room,100,30,0,,,1,365 +34973988,Cute studio in heart of LES. F train 3 mins away.,12642973,Christian,Manhattan,Lower East Side,40.720490000000005,-73.98816,Entire home/apt,120,2,2,2019-06-23,1.36,1,67 +21089520,Closest to Home,151139950,Shelliann,Brooklyn,Bedford-Stuyvesant,40.67865,-73.9126,Entire home/apt,100,2,115,2019-07-04,5.38,1,225 +11984762,A cozy place to set your mind free.,59473349,Judy,Brooklyn,East New York,40.67729,-73.87996,Entire home/apt,70,5,37,2019-06-28,1.48,1,263 +27608063,Best of Both Worlds! Sunny Bedroom 15 Min to NYC,6388234,Andi,Queens,Forest Hills,40.71852,-73.84577,Private room,120,2,0,,,1,35 +13582811,Bright Bushwick Diamond In The Rough,78408136,Michael,Brooklyn,Cypress Hills,40.68015,-73.90504,Entire home/apt,85,1,182,2019-06-23,5.85,1,62 +12422777,Large room in 3 bedroom apartment,26819014,Zuri,Brooklyn,Cypress Hills,40.67893,-73.89423000000001,Private room,25,1,0,,,1,0 +20818523,"Cute, airy attic room",28589041,Frankie,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95085,Private room,50,1,1,2017-09-21,0.05,2,0 +27638567,Beautiful home,208574990,Hattie,Bronx,Unionport,40.82972,-73.84957,Private room,60,1,0,,,1,268 +7517579,Super Cute Brooklyn Loft,15772306,Jasmine,Brooklyn,Clinton Hill,40.69188,-73.9607,Private room,45,5,0,,,1,0 +23763873,Private room in prime Greenpoint-Steps to G train!,178244787,Miranda,Brooklyn,Greenpoint,40.72254,-73.95084,Private room,90,1,13,2018-11-16,0.87,2,0 +21867771,Cozy private room in Artists' House in Bushwick.,43756609,Karina,Brooklyn,Bushwick,40.68682,-73.91189,Private room,55,1,2,2017-12-30,0.1,2,0 +19388464,Private room with A/C & great bed by Prospect Park,50591874,John,Brooklyn,Prospect-Lefferts Gardens,40.65653,-73.95786,Private room,55,1,124,2019-06-24,5.02,1,24 +15984590,Single room #2 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80778,-73.94345,Private room,45,30,6,2019-06-23,0.25,6,164 +28952183,Cozy private room in spacious Brooklyn Apartment,19899115,Libby,Brooklyn,Crown Heights,40.67759,-73.9523,Private room,50,2,6,2018-12-10,0.69,2,0 +36148359,Spacious and light-filled 2.5 bedroom in Ridgewood,201361410,Jonah,Queens,Ridgewood,40.70657,-73.90448,Entire home/apt,55,20,0,,,1,28 +21645706,Private room in a luxury building,34161028,Agnese,Brooklyn,Vinegar Hill,40.69925,-73.98266,Private room,100,3,2,2018-01-02,0.11,3,96 +3052904,Spacious Upper East Side Pvt. Room,15543098,Carlos,Manhattan,Upper East Side,40.77401,-73.9457,Private room,55,1,2,2016-12-31,0.03,1,0 +30567518,Private Bedroom,11127879,Roger,Brooklyn,Crown Heights,40.67315,-73.9288,Private room,79,3,0,,,2,359 +18852919,THE PERFECT QUIET ATMOSPHERE WHEN HOME,129890157,Pauline,Bronx,Allerton,40.87063,-73.84895999999999,Private room,70,1,3,2017-06-12,0.12,2,0 +28355554,"Sunny, central and comfortable!",18270302,Ameera,Manhattan,Upper East Side,40.77619,-73.95325,Private room,90,3,5,2019-01-01,0.52,2,56 +30506672,Peaceful Haven in NYC!,24419496,Melissa,Manhattan,Upper East Side,40.77604,-73.94524,Entire home/apt,125,3,1,2019-01-03,0.16,1,0 +7035579,Bright spacious 1BR w high ceilings,36885622,James,Manhattan,Upper West Side,40.7855,-73.97641999999999,Entire home/apt,125,1,0,,,1,0 +32161968,Good Apt in Brooklyn super close Subways Room (B),175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68061,-73.907,Private room,46,1,12,2019-06-26,2.38,6,155 +27941636,Beautiful apartment 3 subway stops from Manhattan!,211069875,Nat,Brooklyn,Borough Park,40.6428,-73.99297,Private room,70,1,0,,,1,0 +9791355,Beautiful studio in Gramercy Park,50463621,Josh,Manhattan,Kips Bay,40.7412,-73.98170999999999,Entire home/apt,110,4,0,,,1,0 +27100997,Cozy & Private Bedroom near Highline- CHELSEA,203346157,Bryan,Manhattan,Chelsea,40.74309,-73.99535,Private room,115,55,11,2019-05-20,1.31,1,204 +32042820,Harlem Sweets 2,187419882,Terrence & Skye,Manhattan,Harlem,40.82885,-73.9412,Private room,62,1,1,2019-05-06,0.47,3,72 +8781396,Awesome 1 privet room apartment,45408439,AHm,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95472,Private room,45,1,0,,,1,0 +7512811,A True Brooklyn experience,13873590,Ricky,Brooklyn,Williamsburg,40.70884,-73.95742,Private room,80,1,3,2015-08-24,0.06,1,0 +8239650,"Waterfront, perfect NYC getaway!",13407785,Frank And Anna,Bronx,Throgs Neck,40.81476,-73.80001,Entire home/apt,325,2,44,2019-07-02,2.23,1,153 +9031216,"upstairs apartment private, spacious",47140247,Hilary,Queens,Bellerose,40.72756,-73.71795,Entire home/apt,42,3,0,,,1,0 +11649223,"3 Bedroom, family ready, in Harlem",254650,Brandi,Manhattan,Harlem,40.80306,-73.95308,Entire home/apt,250,1,1,2016-04-08,0.03,2,0 +4421826,Manhattan Studio,22927646,Chad,Manhattan,Upper East Side,40.77371,-73.95007,Entire home/apt,250,1,0,,,1,0 +28862531,"Williamsburg Private Room, 15 Mins. to Manhattan!",90294445,Brendan,Brooklyn,Williamsburg,40.70672,-73.94491,Private room,90,4,26,2019-07-02,2.88,2,0 +435776,ROOM AVAILABLE IN NEW YORK CITY,2164452,Robert,Manhattan,Upper East Side,40.77548,-73.95183,Private room,145,5,2,2017-10-03,0.09,1,365 +5873309,Columbia University Dorm,30498160,Celia,Manhattan,Upper West Side,40.8034,-73.96831999999999,Shared room,40,1,0,,,1,0 +19768417,Private Room-Upper East Side,40139382,Josh,Manhattan,Upper East Side,40.77275,-73.94917,Private room,70,4,1,2018-01-20,0.06,1,0 +25516958,Quiet Cozy Chelsea Studio,32703801,Jackie,Manhattan,Chelsea,40.74326,-74.00278,Entire home/apt,179,3,27,2019-07-07,2.06,1,54 +21889698,Humongous Crown Heights Prvt Room in spacious 2brm,15049077,Karanja,Brooklyn,Crown Heights,40.66373,-73.93222,Private room,55,30,1,2018-09-27,0.1,2,137 +12406683,Sunny Spacious South Slope Studio,25095488,Jason,Brooklyn,Sunset Park,40.66248,-73.99667,Entire home/apt,100,2,3,2017-01-13,0.1,1,0 +35843964,Luxury 3 Stops to Times Square,13107477,Henry,Manhattan,Harlem,40.820240000000005,-73.94362,Entire home/apt,125,2,1,2019-07-05,1.0,1,266 +17561119,One BR duplex loft in midtown east townhouse - 43,80479138,Gordon,Manhattan,Midtown,40.76032,-73.96618000000001,Entire home/apt,160,30,7,2018-11-15,0.4,5,71 +33184502,"Private, Sunny Room in Prime Williamsburg",89035025,Leanne,Brooklyn,Williamsburg,40.71492,-73.94332,Private room,65,3,4,2019-06-10,1.29,1,3 +35217816,"Modern 3 BR, 2 BATH Triplex (Washer/Dryer)",265171569,Caroline,Brooklyn,Bedford-Stuyvesant,40.68882,-73.94784,Entire home/apt,300,3,1,2019-06-30,1.0,1,282 +20969370,Gorgeous One Bedroom in Clinton Hill,49664910,Lilja,Brooklyn,Clinton Hill,40.69027,-73.96795999999999,Entire home/apt,134,2,17,2019-05-15,0.8,1,0 +16439234,"Big, Bright 1 Bedroom b/w Columbia, City College",1877402,Anna,Manhattan,Harlem,40.81199,-73.95340999999999,Entire home/apt,125,2,10,2018-05-06,0.36,2,0 +32558916,Beautiful Brooklyn Brownstone Garden Apartment,244473721,Pam,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94615999999999,Entire home/apt,200,2,4,2019-06-03,1.38,1,344 +25823670,"Adorable UES Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77669,-73.95673000000001,Entire home/apt,211,30,1,2019-02-28,0.23,232,201 +13757434,"PRIVATE LARGE STUDIO FOR YOU, PLUS!",46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94100999999999,Entire home/apt,90,2,113,2019-06-22,3.08,3,262 +27639832,Welcome to Historic Harlem!,45835291,Shareef,Manhattan,Harlem,40.82424,-73.9554,Private room,70,7,49,2019-06-29,4.55,6,22 +26595733,Private Room near Columbia University *,199946021,Joe,Manhattan,Upper West Side,40.8006,-73.96406999999999,Private room,76,1,80,2019-06-22,6.59,3,19 +34532377,Nice Room,213604995,Doreen,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93165,Private room,85,2,9,2019-06-26,4.58,2,319 +27893211,Beautiful Sun Drenched Williamsburg Apartment,6842719,Shachi,Brooklyn,Williamsburg,40.71615,-73.94171,Entire home/apt,150,2,3,2019-05-27,0.48,2,330 +20572271,5 Mins Walk to Columbia University,11523011,Tiara,Manhattan,Morningside Heights,40.80731,-73.96579,Private room,55,14,3,2019-01-25,0.19,2,164 +8055508,Private Spring Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68917,-73.92900999999999,Private room,69,1,291,2019-07-01,6.23,7,68 +21597684,Room on st marks place (women only),2326551,Laura,Manhattan,East Village,40.72625,-73.98404000000001,Private room,80,1,10,2019-05-07,0.52,2,97 +3870158,Cozy East Village/Gramercy Studio by Union Square,19986984,Eliane,Manhattan,East Village,40.73263,-73.98728,Entire home/apt,145,4,17,2019-06-17,0.29,1,0 +29135220,Parisian Style Apartment in Heart of Brooklyn,32830245,Dora,Brooklyn,Prospect Heights,40.68063,-73.97334000000001,Entire home/apt,180,2,9,2019-06-13,1.01,1,0 +14821133,Bright 1 Bedroom in the heart of the East Village,1772952,Elizabeth,Manhattan,East Village,40.72931,-73.97925,Entire home/apt,105,4,18,2018-04-22,0.52,1,0 +6449002,SoHo/Greenwich Village 1BR Apt,11179499,Jeffrey,Manhattan,Greenwich Village,40.72846,-74.00113,Entire home/apt,180,3,2,2015-05-31,0.04,1,0 +16268781,Large Private One Bedroom,1395843,Jackie,Manhattan,Washington Heights,40.84313,-73.93947,Private room,50,2,3,2017-01-08,0.1,1,0 +27926502,Cozy Greenpoint Railroad Apartment,5649853,Flannery,Brooklyn,Greenpoint,40.73473,-73.95776,Entire home/apt,177,2,23,2019-07-01,2.28,1,214 +19890448,Mundo's World,15096876,Raymundo,Brooklyn,Bushwick,40.6995,-73.92089,Private room,60,3,2,2017-07-31,0.08,1,0 +34146835,Massive Private Bedroom in Brooklyn Heights,2119428,Ori,Brooklyn,Brooklyn Heights,40.69699,-73.9936,Private room,125,3,9,2019-07-05,4.58,1,252 +11639083,The Heart of Lower East Side,25141383,Azeez,Manhattan,Lower East Side,40.71936,-73.98878,Private room,89,2,0,,,1,0 +9155212,Affordable & Cozy East Village Room,47661247,Lydia,Manhattan,East Village,40.72525,-73.98691,Private room,85,6,10,2019-01-02,0.23,1,36 +22080281,Cute and Cozy Apt in Soho,37687663,Amy,Manhattan,Lower East Side,40.721540000000005,-73.99331,Private room,125,28,1,2018-07-29,0.09,1,0 +19219624,"Creative Retreat Double, With Garden",134521683,Kathy,Manhattan,East Village,40.7239,-73.98111,Private room,120,30,3,2017-09-27,0.12,2,0 +7789213,Home 4 Medical Professionals-Wykof8,26377263,Stat,Brooklyn,Bushwick,40.70233,-73.9175,Private room,47,30,2,2017-05-13,0.06,43,229 +2791797,Greenwich Village Chic Cottage,9031632,Martina,Manhattan,West Village,40.73571,-74.00375,Entire home/apt,120,1,58,2019-06-23,0.91,1,99 +24405962,For all classical lover's 4,96694697,Glory,Brooklyn,Sheepshead Bay,40.60791,-73.96011999999999,Private room,50,2,4,2019-06-29,0.29,2,358 +7411044,"French charm at Château Village, Greenwich Village",38827405,John,Manhattan,Greenwich Village,40.7292,-74.00209,Private room,145,3,62,2018-06-06,1.3,1,0 +705749,Room Available Close to Manhattan-A,3625735,Marianne,Staten Island,Concord,40.60183,-74.08953000000001,Private room,75,30,59,2019-03-30,0.72,2,354 +10340745,"Cozy, Renovated, 1BD/1BA Manhattan Apt",8292025,Eric,Manhattan,East Village,40.72551,-73.99075,Entire home/apt,122,3,0,,,1,0 +15563361,Cozy One-Bedroom in Park Slope,23955743,Susan,Brooklyn,Park Slope,40.67879,-73.97438000000001,Entire home/apt,135,1,12,2017-03-22,0.37,1,0 +32241060,Sonder | Stock Exchange | Bright 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70628,-74.01213,Entire home/apt,212,2,3,2019-05-31,0.74,327,293 +30939313,Funky sun-filled artist home near Fort Greene Park,129324501,Šara,Brooklyn,Fort Greene,40.68908,-73.97309,Entire home/apt,115,2,1,2019-06-20,1.0,1,16 +14236416,"the shoebox, west chelsea",20132009,Karen,Manhattan,Chelsea,40.74577,-74.00605999999999,Entire home/apt,150,3,119,2019-06-29,3.45,2,58 +24265333,Prime Williamsburg location- Private bedrm & bath,84527789,Lauren,Brooklyn,Williamsburg,40.71686,-73.95638000000001,Private room,79,2,17,2019-06-17,1.15,1,1 +35604447,Empire State Studio Apt,267860635,Jey,Manhattan,Midtown,40.74307,-73.98385999999999,Entire home/apt,170,1,3,2019-06-23,3.0,1,270 +17423245,Sunny Quiet Room in Clean Modern Apartment,16145840,Nick,Manhattan,East Harlem,40.798770000000005,-73.93964,Private room,105,3,21,2019-05-21,1.14,2,9 +33778143,The Blue Room by LGA/Kennedy Airporst & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76111,-73.88408000000001,Private room,45,3,13,2019-07-03,5.42,2,80 +25325029,Bushwick Room with a View,24327574,Shadi,Brooklyn,Bushwick,40.69928,-73.92385999999999,Private room,150,2,20,2018-10-22,1.52,1,0 +33295329,Unique & Stylish Apartment in Chelsea,5258749,Bani,Manhattan,Chelsea,40.74197,-73.99703000000001,Entire home/apt,120,5,13,2019-06-30,5.0,2,14 +13173263,Massive Bedroom Prime Flatiron Location,6652697,Austen,Manhattan,Chelsea,40.73769,-73.99025999999999,Private room,350,30,0,,,1,365 +27137095,Giordano Suite - 5 mins to LGA,19536409,Melissa,Queens,East Elmhurst,40.75817,-73.89893000000001,Entire home/apt,85,1,43,2018-12-30,3.72,1,0 +3499174,"One of a Kind, Penthouse Apartment ",6145540,Eddie,Manhattan,Nolita,40.7208,-73.99436,Entire home/apt,350,4,8,2017-05-06,0.13,1,196 +990529,Sunny Luxury Bedroom Guest Bathroom,5440087,Dn,Manhattan,Midtown,40.75136,-73.97076,Private room,349,3,3,2014-09-24,0.04,2,87 +19403353,"New studio in Gowanus, Brooklyn",14404488,Iván,Brooklyn,Gowanus,40.67835,-73.9908,Entire home/apt,102,10,0,,,1,0 +24285,Beautiful Duplex Apartment,97797,Brenda,Brooklyn,Park Slope,40.66941,-73.98109000000001,Entire home/apt,220,30,88,2018-11-02,0.79,1,9 +7364008,Bohéme 1BR steps from Prospect Park,38583557,Ian,Brooklyn,Flatbush,40.653490000000005,-73.95527,Entire home/apt,99,7,2,2015-08-17,0.04,1,0 +18871455,Exquisite Single Bedroom in Shared Apartment C9,20559017,Yohan,Manhattan,Upper East Side,40.76312,-73.96045,Private room,55,30,1,2017-10-02,0.05,9,321 +35985735,One Bedroom Oasis in the Heart of Brooklyn,70538107,Claire,Brooklyn,Bushwick,40.68834,-73.90714,Private room,45,1,0,,,1,16 +393682,Private cozy bedroom in Nolita,1968502,Paola,Manhattan,Nolita,40.72172,-73.99689000000001,Private room,100,5,61,2018-01-02,0.7,1,188 +9496398,"Sunny, spacious 1 BR apt in Harlem",49220133,Venessa,Manhattan,Harlem,40.81297,-73.93921999999999,Entire home/apt,125,3,0,,,1,0 +1294721,Skylight Apartment Williamsburg,306825,Jesse,Brooklyn,Williamsburg,40.7132,-73.96798000000001,Entire home/apt,190,4,1,2014-09-22,0.02,1,0 +22273359,Amazing Apartment- 2 bedroom 1 bathroom,79680629,Martin,Manhattan,Hell's Kitchen,40.7625,-73.99778,Entire home/apt,350,2,3,2018-03-19,0.18,1,0 +11989954,Sunny and comfortable Apartment,35253342,Tee,Brooklyn,Fort Hamilton,40.62168,-74.03023,Entire home/apt,121,20,23,2019-04-13,0.6,3,294 +5737678,Amazing room in Williamsburg!!!,6094516,Lupe,Brooklyn,Williamsburg,40.70905,-73.95152,Private room,80,1,0,,,1,0 +15568616,Immaculate Apt 15 minutes to midtown NYC by train.,6588016,Joanne,Queens,Long Island City,40.76112,-73.92631,Entire home/apt,79,3,43,2019-06-23,1.35,1,105 +9495238,Old World Manhattan One-Bedroom,45514903,Trevor,Manhattan,Washington Heights,40.84687,-73.94228000000001,Entire home/apt,95,5,2,2017-01-05,0.05,1,0 +22746971,Light-filled 1 bdrm with 20ft ceilings,4342526,Michael,Brooklyn,Crown Heights,40.67985,-73.96276999999999,Entire home/apt,175,5,4,2018-08-05,0.31,1,98 +27736749,☆ Manhattan's Retreat - Blocks from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75655,-73.99535,Private room,90,1,44,2019-07-04,4.07,3,36 +4482783,"❤️ of Wburg, Private Living+Entrance",1869332,Elli,Brooklyn,Williamsburg,40.7188,-73.95775,Private room,139,2,6,2017-07-29,0.12,3,36 +9487684,Nice and cozy studio in the Upper West Side.,4515330,Alo,Manhattan,Upper West Side,40.7795,-73.98258,Entire home/apt,175,4,2,2016-06-06,0.05,1,0 +34306801,"Dapper East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.72995,-73.98453,Entire home/apt,271,30,0,,,232,334 +19167933,"SUNSHINE 2BR/2 bath 15min to Times Square, LIRR",61316506,Mamun,Queens,Woodside,40.74341,-73.90041,Entire home/apt,120,1,85,2019-06-21,3.37,2,340 +7460677,Cozy Sublet in Brooklyn,32691187,Paul,Brooklyn,Bedford-Stuyvesant,40.68618,-73.93273,Private room,60,3,7,2015-10-22,0.15,1,0 +19439682,Entire Apartement in Queens!8min from Jfk,136288915,Balwinder,Queens,Richmond Hill,40.6839,-73.82444,Entire home/apt,79,1,272,2019-07-07,11.56,1,56 +14207287,"Cute room near Columbia University, Manhatta",86241021,Kate,Manhattan,Upper West Side,40.80189,-73.9655,Private room,60,20,4,2017-01-15,0.11,1,0 +12287938,Cozy Lofted Room in Homey 3BR,66191982,Barrie,Brooklyn,Bedford-Stuyvesant,40.69445,-73.94459,Private room,50,3,3,2016-05-08,0.08,1,0 +3775259,BED-STUY SOUTHERN COMFORT ,19356930,Ella,Brooklyn,Bedford-Stuyvesant,40.6872,-73.93805,Entire home/apt,165,3,173,2019-07-06,2.97,1,297 +31950886,Small studio at the heart of Little Italy,22337277,Zoey,Manhattan,Little Italy,40.71839,-73.99729,Entire home/apt,130,13,3,2019-05-07,1.32,1,20 +33636535,Sonder | The Biltmore | Sunny 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.75923,-73.9865,Entire home/apt,207,29,0,,,327,331 +13857312,Renovated East Village 1BR,12485770,Raanan,Manhattan,East Village,40.729,-73.98098,Entire home/apt,125,30,6,2019-02-08,0.24,9,150 +25027222,Safe 'n Handsome 2,133123832,Parmenides,Manhattan,Upper West Side,40.78802,-73.96925999999999,Entire home/apt,117,30,0,,,3,200 +10231620,Private 2 Bedroom Apt Minutes from Times Square,29452204,Cynthia,Manhattan,Hell's Kitchen,40.76124,-73.98897,Entire home/apt,155,2,0,,,1,0 +4226098,W. 80's Central Park 3 Blocks Walk,21930989,Mark,Manhattan,Upper West Side,40.78883,-73.97616,Private room,88,1,319,2019-06-25,5.6,2,251 +25318171,Home Away,95564806,Olvin,Brooklyn,Brownsville,40.66006,-73.91234,Private room,60,1,1,2018-06-15,0.08,3,0 +25487162,Upper East Side Room,38021737,Elijah,Manhattan,Upper East Side,40.76897,-73.95375,Private room,54,4,0,,,1,0 +6686332,Modern/Sunny Apt Close to Train!,30340506,Alyson,Brooklyn,Bushwick,40.69207,-73.92312,Entire home/apt,190,1,0,,,1,0 +17515547,BEST LOCATION IN SOHO AND SPACIOUS APARTMENT,118745519,Alonso,Manhattan,Little Italy,40.71942,-73.99694000000001,Entire home/apt,155,1,67,2019-01-20,2.45,1,189 +12301489,Modern Loft Studio with Views,18276764,Stephanie,Manhattan,Gramercy,40.7363,-73.98691,Entire home/apt,198,2,37,2017-06-27,0.98,1,0 +2019755,Front Studio in Loft Apartment - Steiner Studios,10383481,Bradley,Brooklyn,Clinton Hill,40.69594,-73.96715,Entire home/apt,100,2,100,2019-07-03,1.49,1,280 +74333,Alcove Studio w/ outdoor Patio Deck,331328,Amir,Manhattan,East Harlem,40.80892,-73.93985,Entire home/apt,113,14,26,2015-11-25,0.27,3,253 +4547143,CHARMING bedroom in BedStuy,23575706,Blair,Brooklyn,Bedford-Stuyvesant,40.6958,-73.94515,Private room,55,1,0,,,1,0 +21104699,Cozy Blue Room,333897,Lane,Queens,Ridgewood,40.69385,-73.90296,Private room,50,1,50,2019-06-01,2.34,2,341 +19907609,"Upper West side, 2 bed 2 Bath",131647128,Emily,Manhattan,Upper West Side,40.77476,-73.98947,Entire home/apt,320,30,8,2019-06-28,0.38,25,261 +33774081,"Fully furnished studio, 10 mins away from JFK.",146484191,Roy,Queens,Springfield Gardens,40.66377,-73.76785,Entire home/apt,100,2,10,2019-06-25,4.23,1,353 +9915508,Luxury Private Room With A View!,14537404,Danielle,Brooklyn,Fort Greene,40.69283,-73.98061,Private room,70,2,6,2016-10-16,0.14,1,0 +17906990,"Sunny, Beautiful, Upper East Side TRUE One Bedroom",23377863,Kristen,Manhattan,Upper East Side,40.78056,-73.95182,Entire home/apt,147,4,9,2019-07-05,0.47,1,7 +29609786,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6345,-73.9519,Private room,98,3,0,,,5,0 +8071607,Lovely duplex in Williamsburg,22470446,Louise,Brooklyn,Williamsburg,40.70803,-73.94868000000001,Private room,45,3,2,2015-10-11,0.04,1,0 +7222833,2BR/2BA luxury condo in W'Burg,6403403,Tony,Brooklyn,Williamsburg,40.71992,-73.95536,Entire home/apt,299,2,18,2017-04-17,0.38,1,0 +4417912,Huge Apartment on Prospect Park,21571748,Chad,Brooklyn,Windsor Terrace,40.65783,-73.97501,Entire home/apt,150,14,1,2016-08-17,0.03,1,0 +6399885,Beautiful 2bdroom apartmnt,33368633,John,Queens,Forest Hills,40.72391,-73.84407,Entire home/apt,168,3,133,2019-06-07,2.64,2,336 +1658703,Close to trains! Special long-term rates!!,8791051,Danielle,Brooklyn,East Flatbush,40.6526,-73.94999,Entire home/apt,104,59,48,2018-10-18,0.69,1,122 +35381538,The Sunshine Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67125,-73.94006,Entire home/apt,90,3,0,,,4,256 +29648013,Chic Brand New Maisonette 2BR in Greenpoint,222270217,Katie,Brooklyn,Greenpoint,40.73291,-73.95989,Entire home/apt,139,3,36,2019-06-19,4.48,1,58 +11707920,"Brooklyn private bath by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64188,-73.98042,Private room,45,1,108,2019-06-19,2.68,11,23 +31670943,Nice Quite place,73676875,Jonathan,Bronx,Claremont Village,40.84381,-73.90827,Entire home/apt,80,2,0,,,1,321 +23903645,It's Quiet Uptown,105699183,Crystal,Manhattan,Harlem,40.82718,-73.94883,Entire home/apt,65,6,2,2019-01-03,0.13,2,9 +31990505,Entire apartment.,52720583,John,Queens,Jackson Heights,40.74774,-73.88653000000001,Entire home/apt,115,2,3,2019-05-10,0.84,1,6 +21709374,1st floor; 1 bedroom,145552870,Jeffrey,Manhattan,Upper East Side,40.77566,-73.95065,Entire home/apt,165,3,2,2017-12-30,0.1,1,0 +25639737,QUIET ROOM IN A BIG NOICY NEW YORK :),137191484,Maria,Manhattan,Hell's Kitchen,40.76362,-73.98546,Private room,99,1,40,2019-06-30,3.05,5,346 +13031383,Spacious room + private bathroom in Williamsburg,5163395,Caitie,Brooklyn,Williamsburg,40.70775,-73.94725,Private room,75,2,0,,,1,0 +32050937,Downtown Williamsburg Loft,21416718,Andrew,Brooklyn,Williamsburg,40.71606,-73.96268,Entire home/apt,150,3,15,2019-06-21,3.75,1,35 +30415541,"Lovely 2 BR Skyline View , 5 Min to Manhattan",33320745,Daniel,Queens,Long Island City,40.75256,-73.93670999999999,Entire home/apt,250,6,4,2019-07-02,1.56,1,105 +15344749,Comfy Apt in Chinatown/Lower East Side,30702769,Raymond,Manhattan,Chinatown,40.71305,-73.99443000000001,Private room,100,1,154,2019-07-05,4.6,1,233 +30063499,Large room w private bath <10 mins to Main St!,188575380,Nina,Queens,Flushing,40.76068,-73.82233000000001,Private room,66,2,19,2019-06-24,2.73,1,312 +518960,Cozy and quiet with secret garden,2155832,Federico,Manhattan,Harlem,40.82823,-73.94691,Entire home/apt,90,4,266,2019-07-04,3.17,1,150 +23285903,Your stylish home in Park Slope,10713617,Liberty,Brooklyn,South Slope,40.66459,-73.98553000000001,Entire home/apt,260,2,6,2019-06-30,0.4,1,1 +564447,GREAT DEAL IN TIMES SQ./HK,2775674,Matt,Manhattan,Hell's Kitchen,40.757670000000005,-73.99034,Entire home/apt,190,1,195,2019-06-25,2.83,1,69 +1511303,Private fits 3 ppl. Prospect Park ,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.65936,-73.95139,Private room,49,5,84,2019-06-16,1.17,3,296 +15984809,Sun filled 1 bedroom in the heart of Crown Heights,95597107,Linda,Brooklyn,Crown Heights,40.67896,-73.95748,Entire home/apt,130,4,3,2018-05-03,0.1,1,13 +33914381,Sunny and Cozy in Upper Manhattan,77515,Judi,Manhattan,Washington Heights,40.83266,-73.9414,Private room,45,3,6,2019-06-23,2.31,1,4 +17465159,Private Room 1 in East Village (Small Window),12302104,Anna,Manhattan,East Village,40.72386,-73.98105,Private room,72,1,134,2019-06-07,4.69,2,251 +27227103,Furnished and Finished Basement Entire Place SAFE,122044895,Yerddy,Bronx,Wakefield,40.89382,-73.84844,Entire home/apt,75,30,7,2019-05-31,0.69,2,188 +13698284,True 1 Bedroom Apt in Manhattan's Lower East Side,7147901,Sabrina,Manhattan,Lower East Side,40.71526,-73.98484,Entire home/apt,118,1,6,2016-09-24,0.16,1,0 +18892465,Chelsea Studio,15474495,Stacy,Manhattan,Chelsea,40.73884,-73.99767,Private room,150,1,1,2017-06-19,0.04,1,0 +12847720,"Prime location, close to everything. Females only",10737943,David,Manhattan,Upper West Side,40.78528,-73.97623,Private room,50,30,3,2016-12-02,0.09,10,365 +8130534,Lovely BR w/Access to Everything!,3692257,Tasia,Brooklyn,Kensington,40.64423,-73.98019000000001,Private room,49,1,1,2015-11-05,0.02,2,0 +30264512,Hendrix Upstairs Oasis Rm #4,105878573,Tonisha,Brooklyn,East New York,40.66547,-73.8891,Private room,40,1,9,2019-06-21,2.11,5,64 +2136511,Private room with bathroom and balcony.,6001762,Ajang,Brooklyn,Bedford-Stuyvesant,40.67927,-73.9113,Private room,60,7,0,,,1,365 +31759330,Hip Bushwick Room close to L train (C),238119405,Julia,Brooklyn,Bushwick,40.68161,-73.90618,Private room,53,2,10,2019-05-27,2.61,5,158 +24131689,Classical Upper West Side Experience,62176119,Katya,Manhattan,Upper West Side,40.77799,-73.9782,Entire home/apt,250,4,15,2019-06-11,1.0,1,57 +31040644,Beautiful 2 bed with a balocony,229142922,Gad,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94445999999999,Entire home/apt,205,2,0,,,2,89 +29677326,Ultra Lux Morden 2 Bedrooms suite with court yard,220762164,Sherley,Queens,St. Albans,40.69161,-73.76326,Entire home/apt,298,2,12,2019-06-23,1.51,4,365 +21966432,Cozy Modern Studio,160369263,Luis,Brooklyn,Windsor Terrace,40.65325,-73.97868000000001,Entire home/apt,100,2,61,2019-07-05,3.17,1,337 +5816145,AWESOME MODERN ROOM IN CHARMING AREA +SWEET ROOF 2,29650513,Katie Graham,Brooklyn,Clinton Hill,40.69454,-73.96198000000001,Private room,90,30,47,2019-03-13,0.91,6,297 +24728012,Beautiful Apartment,77534743,Fabiola,Brooklyn,Bedford-Stuyvesant,40.68622,-73.9395,Private room,42,2,4,2018-06-19,0.28,1,0 +30741302,**Cozy Private Room(B),52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95014,Private room,49,2,19,2019-06-20,3.22,7,360 +855549,"Have the 1st floor of a two floor duplex,",213020,Robert,Manhattan,Upper West Side,40.79279,-73.97131,Private room,88,1,100,2019-07-05,1.41,3,98 +22651509,Cozy New York Apartment,166818540,Shannon R,Manhattan,Chelsea,40.73991,-74.00211,Entire home/apt,115,1,2,2018-10-11,0.11,1,0 +13654166,"Cozy private Studio, easy 60 min. commute to NYC!",79305630,Elvira,Brooklyn,Gravesend,40.59535,-73.98946,Entire home/apt,109,4,80,2019-07-01,2.53,2,107 +34317148,Beautiful house in Jamaica near JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71573,-73.76897,Private room,175,1,0,,,3,89 +15657915,Beautiful modern room in SoHo,1475812,Ignani,Manhattan,Nolita,40.71995,-73.99461,Private room,140,2,66,2019-05-31,2.05,3,44 +20874820,Cozy&Quiet One Bedroom Full Unit Near F/G train,104836016,Qingming,Brooklyn,Kensington,40.64099,-73.98029,Entire home/apt,99,2,32,2019-06-10,1.45,4,153 +29652878,♀ Female Only Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67784,-73.93236,Shared room,30,15,0,,,14,0 +13574105,Private Bed-Stuy Flat,21016849,Silvia,Brooklyn,Bedford-Stuyvesant,40.69127,-73.95085,Entire home/apt,150,3,40,2019-06-02,1.08,1,327 +33309892,Extra Large Central Park/UWS Furnished Room,50741398,Jessica,Manhattan,Upper West Side,40.8003,-73.96436,Private room,105,1,8,2019-05-05,2.4,4,0 +17224136,Spacious Apt. 20 Mins from Manhattan!,81876750,Dan,Queens,Astoria,40.76043,-73.91465,Private room,96,2,18,2019-04-28,0.62,1,364 +876565,Spacious Comfy Bedroom in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68598,-73.92676999999999,Private room,62,3,112,2019-06-30,1.43,3,59 +35804589,Heart of Astoria,5825467,Michael,Queens,Astoria,40.76215,-73.91973,Shared room,110,1,1,2019-06-20,1.0,1,21 +25130960,Williamsburg Brooklyn 2BR Apt. / 5min to L Train,141597248,Osvaldo,Brooklyn,Williamsburg,40.70847,-73.94426,Entire home/apt,107,7,1,2018-06-19,0.08,1,0 +30770723,Live in an Art Curator's Home,599076,Stephanie,Brooklyn,Bushwick,40.70035,-73.92323,Private room,70,1,5,2019-04-21,0.78,1,81 +22306777,"Spacious, luminous, furnished Bushwick room",19561602,Bartolomeo,Brooklyn,Bushwick,40.69613,-73.93264,Entire home/apt,50,5,2,2018-01-13,0.11,1,0 +35863336,STUNNING SPACIOUS KING SIZE -BEDROOM NEAR COLUMBIA,2542371,Leonidas,Manhattan,Upper West Side,40.79829,-73.97266,Entire home/apt,174,30,0,,,1,1 +23789466,Cozy Mid Century Modern Studio 15 min to Manhattan,178507107,Alyssa,Brooklyn,Bushwick,40.70484,-73.92116999999999,Entire home/apt,100,2,7,2018-04-29,0.45,1,0 +8428777,Awesome 1Bdr Apt. in Wash Hts,1905482,Steven,Manhattan,Washington Heights,40.84747,-73.94279,Entire home/apt,125,30,0,,,1,0 +34568205,Private 1br Apartment for Your Brooklyn Experience,646592,Damien,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9195,Entire home/apt,94,4,3,2019-06-28,1.8,1,9 +18889038,Quiet Bedroom in prime Park Slope!,80333891,Mai,Brooklyn,Park Slope,40.67386,-73.98439,Private room,40,7,2,2017-07-21,0.08,2,0 +36042251,LARGE COZY ROOM FOR 2people +1(child)+AMENITIES ),271162941,Anna,Brooklyn,Midwood,40.62351,-73.95509,Private room,120,1,2,2019-06-30,2.0,3,330 +9351006,Cozy & Comfortable Private Room | Private Bathroom,47784768,Yemi,Brooklyn,Brownsville,40.66447,-73.91743000000001,Private room,69,2,75,2019-06-21,1.73,2,249 +21243315,*New* Big Modern Sunny Space in Bushwick,4476859,Lana,Brooklyn,Bushwick,40.70033,-73.92635,Private room,60,2,1,2017-11-09,0.05,1,0 +20904683,Cozy and Light Filled East Village Apartment,31989023,Carmel,Manhattan,Gramercy,40.73166,-73.98299,Private room,87,3,6,2018-01-01,0.27,1,0 +4115327,The Garden Apartment,21352288,Deborah Lily,Brooklyn,South Slope,40.66617,-73.98626999999999,Entire home/apt,158,3,87,2019-06-26,1.53,1,204 +22842989,"Incredible VIEW, Incredible PRICE",21283448,Matt,Brooklyn,Prospect-Lefferts Gardens,40.65888,-73.95959,Entire home/apt,90,4,37,2019-01-02,2.18,1,0 +11080142,Historic Heights-Private Queen Room,2155213,Andy,Manhattan,Washington Heights,40.84393,-73.94065,Private room,83,2,142,2019-06-30,3.55,1,80 +9248558,1 Queen Bed,48059119,Wolcott,Manhattan,Midtown,40.74784,-73.9862,Private room,159,1,0,,,3,365 +20491800,Huge 2BR/2BA on border of Carroll Gardens/Gowanus,4376320,Brooks,Brooklyn,Gowanus,40.68003,-73.99039,Entire home/apt,192,2,1,2017-11-26,0.05,1,0 +16508710,Small Cozy Room,20414850,Han,Queens,Glendale,40.70419,-73.88558,Private room,40,2,2,2016-12-29,0.06,1,0 +21698168,Private bedroom with private bath bathroom,20810101,Amy,Brooklyn,Bedford-Stuyvesant,40.68245,-73.9471,Private room,100,1,8,2019-06-24,2.07,2,23 +1744216,Prime Williamsburg Large bedroom for 1or2 people,2480939,Charles,Brooklyn,Williamsburg,40.71973,-73.96070999999999,Private room,85,1,221,2019-06-26,4.1,3,206 +1349187,Light filled Brooklyn apartment with skyline view,1330500,Dayna,Brooklyn,Crown Heights,40.67421,-73.9504,Private room,100,2,8,2018-11-26,0.11,1,156 +34475551,Downtown Brooklyn Luxury Studio,332521,Rajat,Brooklyn,Prospect Heights,40.68305,-73.97503,Entire home/apt,150,4,0,,,1,5 +5846050,Cozy Harlem Stay,22534207,Jemar,Manhattan,East Harlem,40.80906,-73.93686,Private room,75,2,45,2019-06-03,0.94,1,123 +31989330,Paris Private Room W/Private Bathroom,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67818,-73.92284000000001,Private room,55,1,3,2019-02-08,0.58,2,0 +1025847,Modern 1BR East Village Apt w/patio,62316,Sam,Manhattan,East Village,40.72538,-73.98351,Entire home/apt,165,60,11,2015-10-15,0.15,1,311 +21269377,"Union Square - Lux Building, 1 Bed, Living, Study",5664549,Amar,Manhattan,Greenwich Village,40.73295,-73.992,Entire home/apt,250,4,4,2019-06-23,0.3,1,43 +10386341,Minutes to the Metro!!!,53468381,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69507,-73.94332,Entire home/apt,125,2,202,2019-06-24,4.76,1,276 +14316284,Lovely One Bedroom West Village,1483451,Pipi,Manhattan,West Village,40.72921,-74.00345,Entire home/apt,240,5,52,2019-06-23,1.54,1,271 +3432660,"Neat, Classy, and Simple.",17299359,Lionel,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95792,Entire home/apt,175,3,1,2014-10-24,0.02,2,365 +3922417,"Safe, Quiet and Bright near Subways has 2 beds",7245581,Michael,Manhattan,Chelsea,40.75076,-73.99588,Entire home/apt,95,30,15,2019-01-15,0.27,19,204 +28672201,The Groundhog Inn. Entire Apt Near Subway Vegan,96076215,Mike,Brooklyn,Bushwick,40.69986,-73.92095,Entire home/apt,105,1,58,2019-05-01,6.02,1,0 +18891508,Private room#3 starting at $67 a night per person.,9898029,Anthony,Brooklyn,East Flatbush,40.6506,-73.92553000000001,Private room,67,3,6,2019-05-19,0.27,5,307 +35565108,Beautiful New Entire Parkview 3bed 2.5bath,257647514,Juhyun,Brooklyn,Bushwick,40.69175,-73.90932,Entire home/apt,250,2,1,2019-06-26,1.0,2,9 +32744022,Large 1BR Sublet UWS Luxury High-Rise,246232599,Shel,Manhattan,Upper West Side,40.79106,-73.96785,Entire home/apt,123,7,2,2019-04-22,0.65,1,0 +4718809,Private Retreat on Central Park,8778846,Max,Manhattan,East Harlem,40.79315,-73.94787,Entire home/apt,249,1,67,2016-09-23,1.25,1,0 +13727297,Beautiful 2 bedroom apartment in the West Village,7689009,Amanda,Manhattan,West Village,40.73208,-74.00784,Entire home/apt,225,2,1,2016-09-10,0.03,1,0 +26064299,Private Room! TRENDY location!,192951036,Jasmine,Manhattan,Greenwich Village,40.7278,-73.99976,Private room,129,1,29,2019-05-09,2.28,10,245 +20191991,"Entire PVT 3BR townhouse apt, Brooklyn.❤️❤️❤️❤️❤️",16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68133,-73.90947,Entire home/apt,150,28,3,2019-05-26,0.16,5,312 +8864404,Darian Place,46401675,Benjamin,Manhattan,East Harlem,40.7929,-73.94108,Private room,83,1,0,,,1,0 +2308802,Big 2 bds House w/ Parking and Yard,11790431,Laura,Queens,Kew Gardens Hills,40.72664,-73.82795,Entire home/apt,86,1,52,2019-07-01,0.79,1,53 +26665588,Beautiful Convenient Bushwick Oasis w/Trampoline,7054114,Alex,Brooklyn,Bushwick,40.69286,-73.92675,Private room,75,1,22,2019-07-01,9.17,1,70 +18225912,"Fresh, bright modern studio w/ Garage Parking",3656008,Ivanna,Queens,Flushing,40.7447,-73.82497,Entire home/apt,99,3,95,2019-05-31,3.52,1,63 +36414101,New York cutest studio,23899462,Florencia,Manhattan,Harlem,40.80505,-73.94894000000001,Entire home/apt,90,7,0,,,1,23 +34974475,#8 Hotel-Like 1 Bedroom Apartment KINGBed near JFK,263504959,David,Queens,Woodhaven,40.69114,-73.86459,Entire home/apt,48,1,8,2019-07-05,6.32,8,305 +34555635,One of a Kind Williamsburg Artist Studio Loft,128810972,Vlasta,Brooklyn,Williamsburg,40.71639,-73.96696,Private room,200,1,8,2019-06-22,4.21,2,0 +21026272,Douglaston (apt2) Room 2,18996093,Leonard,Queens,Douglaston,40.75573,-73.72931,Private room,45,1,17,2019-06-06,0.82,5,325 +30392543,Stately Theater District 1BR w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76177,-73.98504,Entire home/apt,316,30,0,,,232,311 +25374003,Spacious room brand new.Beautiful yard also avlble,191577969,Nikolas,Queens,Ditmars Steinway,40.78331,-73.91615,Private room,110,2,5,2018-10-27,0.48,1,90 +1696381,Charming Room Near Central Park,2717428,Ellen,Manhattan,East Harlem,40.7977,-73.93754,Private room,75,1,37,2019-06-30,0.53,1,139 +31291169,Cosy studio in the heart of Manhattan,52728780,Aditi,Manhattan,Midtown,40.75341,-73.97116,Entire home/apt,200,7,0,,,1,0 +34870577,Happy Home 3,158178970,Raquel,Staten Island,Randall Manor,40.63136,-74.12559,Shared room,13,1,9,2019-07-05,5.51,3,8 +19842557,Exclusive Modern Private Room in Hells Kitchen,105049617,Gio,Manhattan,Hell's Kitchen,40.76015,-73.99016999999999,Private room,129,1,111,2019-07-07,4.61,3,111 +13452474,Charming Studio-Columbus Circle/Hell’s Kitchen,16809858,Arman,Manhattan,Hell's Kitchen,40.76733,-73.98607,Entire home/apt,169,10,6,2018-10-14,0.17,1,280 +33831074,Sunny Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79995,-73.96139000000001,Private room,60,30,0,,,32,83 +15596521,LUXURY HIRISE 1 BR IN CHELSEA~ENJOY THE CITY,76104209,Rated,Manhattan,Chelsea,40.74633,-73.99201,Entire home/apt,300,30,0,,,33,364 +3875294,Beautiful Brooklyn Bedroom!,20022909,Jessica,Brooklyn,Crown Heights,40.6749,-73.95166,Private room,50,1,5,2016-09-25,0.09,1,0 +27911463,"Pvt Single Bed 10 min from JFK, Close to Manhattan",23370431,Melissa,Queens,Queens Village,40.71711,-73.75608000000001,Private room,55,2,7,2019-05-22,0.76,2,155 +30156908,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73389,-74.00646,Entire home/apt,285,3,12,2019-07-04,1.76,5,313 +5536844,Park Slope Master Bedroom,28711190,Adam,Brooklyn,Park Slope,40.6682,-73.98196,Private room,75,1,0,,,1,0 +35125696,Cozy 1 bedroom w/twin bed & futon in Park Slope,14518163,Pedro & Jeff,Brooklyn,South Slope,40.66154,-73.98685,Private room,49,3,2,2019-06-29,1.62,1,30 +32612266,Beautiful 1 Bedroom Apt in Bed-Stuy,82326716,Nicolas,Brooklyn,Bedford-Stuyvesant,40.6953,-73.94391999999999,Entire home/apt,90,1,5,2019-05-27,1.53,1,6 +848707,"Bright Room in Queens, Shared bath%",4241953,Celeste,Queens,Flushing,40.76,-73.81116999999999,Private room,60,2,17,2018-10-07,0.22,4,314 +2379865,Cozy private room available in a great location,12157737,Dushyant,Brooklyn,Crown Heights,40.67343,-73.96291,Private room,38,3,0,,,1,0 +33931270,Sleek & Sunny Private Bedroom With 3 Local Trains,242962235,Yuval,Queens,Ridgewood,40.70862,-73.89536,Private room,34,30,0,,,23,314 +16647489,"Bohemian BK Pad with prvt bkyd, great for toddlers",6865666,Ana,Brooklyn,Williamsburg,40.71151,-73.95142,Entire home/apt,78,10,0,,,1,0 +2022920,UES,8214568,Allison,Manhattan,Upper East Side,40.78081,-73.95045,Entire home/apt,250,1,0,,,1,0 +12848383,Lovely Brooklyn Duplex near Prospect Park 3BR,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65341,-73.97877,Entire home/apt,265,2,8,2017-01-02,0.21,4,0 +5260942,"Spacious Luxury Condo-1 bedroom, NYC",1478146,Anne,Manhattan,Harlem,40.80177,-73.9571,Entire home/apt,115,8,9,2018-10-15,0.18,1,111 +20586647,Large Studio near Central Park,16401899,Christford,Manhattan,East Harlem,40.78998,-73.946,Entire home/apt,120,1,61,2019-06-18,2.67,1,1 +14693952,Private Small Room 4,59529529,Han,Manhattan,Hell's Kitchen,40.7619,-73.995,Private room,75,1,205,2019-07-07,5.89,6,179 +4334446,"Cozy 1 bdrm Park Slope, Brooklyn,",8659738,Janine,Brooklyn,South Slope,40.6631,-73.98603,Entire home/apt,120,3,118,2019-06-23,2.07,1,266 +29097320,Charming 1 Bedroom Apartment in Greenwich Village,11854642,James,Manhattan,West Village,40.73255,-74.00173000000001,Entire home/apt,157,5,1,2018-11-26,0.13,1,0 +27142225,Lovely Brownstone in Brooklyn Heights,624101,Zak,Brooklyn,Brooklyn Heights,40.69176,-73.99336,Entire home/apt,132,3,6,2019-05-27,0.55,1,0 +17739111,Living Room in 2 Bedroom Apartment Brighton Beach,119523037,Anna,Brooklyn,Brighton Beach,40.58017,-73.9616,Shared room,50,1,1,2017-09-13,0.05,4,1 +8319488,Spacious park slope 2 bedroom,43126563,Andrew,Brooklyn,Park Slope,40.67173,-73.98303,Entire home/apt,300,3,70,2019-06-30,1.51,1,338 +10207629,Design Swimming Pool!LUX***** 5140,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79534,-73.96583000000001,Entire home/apt,180,30,4,2019-01-03,0.12,96,319 +35914591,**Central Park* UWS Luxury 4 Bed/2 Bath Sleeps 8!!,270139900,Norman,Manhattan,Upper West Side,40.78439,-73.97746,Entire home/apt,307,4,0,,,1,344 +4983264,Comfortable room steps from Central Park,25688822,Lucie,Manhattan,Harlem,40.79967,-73.95444,Private room,95,3,70,2019-06-30,1.38,1,117 +10054040,Cozy and Warm Astoria Apartment,13203690,Zach,Queens,Astoria,40.76805,-73.90906,Entire home/apt,90,2,0,,,1,0 +6967861,A huge apartment near Manhattan,36534042,Rabie,Brooklyn,Fort Hamilton,40.62084,-74.03739,Entire home/apt,120,7,1,2015-08-01,0.02,1,0 +14899810,1 Bedroom in Upper East Side,57437690,Sanket,Manhattan,Upper East Side,40.779720000000005,-73.94543,Private room,80,100,0,,,1,0 +26323287,C C's Honeyroom 30 minutes to Manhattan.,197957799,Christiana,Brooklyn,East Flatbush,40.65035,-73.94895,Private room,59,2,22,2019-07-07,3.59,1,107 +28890908,Beautiful Apartment in Ideal Manhattan Location,192270861,Zach,Manhattan,Harlem,40.81993,-73.94768,Private room,75,5,1,2019-01-29,0.19,1,0 +511733,"Artist Loft @ Bushwick, Brooklyn",1840766,Samantha,Brooklyn,Bushwick,40.70753,-73.92048,Entire home/apt,120,5,3,2015-09-20,0.04,1,0 +8907362,1 Bdr in 3bdr East Village Apt,46537493,Erica,Manhattan,East Village,40.72822,-73.98128,Private room,90,3,0,,,1,0 +32343903,East Williamsburg Quiet Getaway or Workspace,241870258,Reesey,Brooklyn,Williamsburg,40.71536,-73.93661999999999,Private room,80,1,10,2019-05-07,2.11,2,0 +29689103,Cozy studio btw upper east side and midtown east,19289434,Roman,Manhattan,Upper East Side,40.76118,-73.96036,Entire home/apt,140,3,1,2019-02-24,0.22,1,0 +36138789,Room with Amazing location in Manhattan,31846499,Veronika,Manhattan,East Harlem,40.78774,-73.94627,Private room,73,180,0,,,1,0 +32587983,Harlem Sweets 3,187419882,Terrence & Skye,Manhattan,Harlem,40.828990000000005,-73.94185,Private room,82,2,4,2019-06-03,0.94,3,90 +3835334,UWS one br near Central Park,539204,Joaquin,Manhattan,Upper West Side,40.79998,-73.96404,Entire home/apt,145,15,0,,,1,0 +35932913,Huge bedroom in Morningside Heights townhouse,73964015,Austin,Manhattan,Harlem,40.80494,-73.95463000000001,Private room,150,1,0,,,1,8 +25357219,Cozy room on the river,75435800,Dean,Manhattan,Midtown,40.75523,-73.96367,Private room,109,3,7,2018-12-08,0.53,2,0 +21868813,1 Bedroom modern apartment in the heart of Astoria,120638903,Ioanna,Queens,Astoria,40.76543,-73.92248000000001,Entire home/apt,95,6,2,2017-12-09,0.1,1,0 +29041626,Cosy room with Queen bed,27084741,Paul,Queens,Woodside,40.74459,-73.91167,Private room,90,1,2,2019-05-18,0.77,2,173 +31361356,Cozy Private Room in the heart of Bushwick,22651136,Isaac & Irene,Brooklyn,Bushwick,40.69327,-73.92456,Private room,60,1,18,2019-06-27,3.46,1,29 +19855804,Spacious 1 Bedroom in East Village,79527116,Pamela,Manhattan,East Village,40.72826,-73.98156,Entire home/apt,110,30,41,2018-12-26,1.72,1,244 +9231257,Cozy Studio,45168846,Hang,Brooklyn,Flatbush,40.64631,-73.96258,Entire home/apt,89,1,0,,,1,0 +28338004,Mott Haven Dorm-Bed D,174785358,Rem,Bronx,Port Morris,40.809940000000005,-73.93061,Shared room,28,1,29,2019-05-27,3.09,7,89 +12847429,Spacious 2 BR in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76014,-73.99039,Entire home/apt,150,30,6,2019-05-31,0.32,91,126 +19527028,Cozy duplex in trendy Brooklyn neighbourhood.,6835700,William,Brooklyn,Prospect Heights,40.67649,-73.96499,Private room,80,2,28,2019-06-25,4.35,1,82 +18358343,Private room in the perfect location,127080012,Thor,Manhattan,Nolita,40.72477,-73.99534,Private room,95,4,25,2018-04-30,0.95,1,38 +19160371,Amazing Family House,22766051,Shlomi,Brooklyn,Bay Ridge,40.63056,-74.02037,Entire home/apt,100,4,5,2017-09-26,0.21,1,0 +35812122,Room with Private Bathroom near Times Square,211196034,Sam,Manhattan,Hell's Kitchen,40.75895,-73.99509,Private room,189,4,1,2019-07-02,1.0,1,8 +35614888,"Beautiful peacefull +Calm",267938006,Francoise X,Bronx,Concourse Village,40.82759,-73.92081,Private room,65,1,2,2019-06-23,2.0,1,364 +17900681,Sunny & Spacious Room Facing Central Park,8748472,Christina,Manhattan,Upper West Side,40.79806,-73.96085,Private room,100,2,5,2017-05-01,0.18,1,0 +16751768,Brooklyn Pied-à-Terre 2 Bed 31 day minimum,32124747,Julian,Brooklyn,Bushwick,40.68637,-73.91133,Entire home/apt,116,31,99,2019-04-30,3.33,1,295 +5569167,Private room in Heart of Astoria,13728275,Elvira,Queens,Astoria,40.76272,-73.92004,Private room,50,4,1,2015-03-16,0.02,1,0 +3368427,Happy big family,4044499,Alexander,Brooklyn,Flatbush,40.65287,-73.96353,Private room,30,1,0,,,1,0 +28608462,Bedroom 7 Bed D,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95657,Shared room,39,1,13,2019-06-13,1.36,34,365 +13093642,Ivy Tower,72296750,Carla,Manhattan,Hell's Kitchen,40.75798,-73.99155999999999,Entire home/apt,239,30,0,,,1,365 +26304871,New York City (Downtown) accessibly sleeps 6,197794017,Zoraida,Bronx,Bronxdale,40.85456,-73.86921,Entire home/apt,79,2,36,2019-06-24,3.33,1,10 +28866426,LUXURY 3BR/2 Bath Home 10 minutes to JFK & Casino,217621677,Joseph,Queens,Jamaica,40.68671,-73.7759,Entire home/apt,46,1,18,2019-07-01,1.96,4,135 +21851016,"Designer's private BR/Studio ++common kitch/bath",8869512,Antonio,Brooklyn,Crown Heights,40.67391,-73.95581,Private room,65,3,1,2018-04-02,0.06,1,0 +4116403,Bright Room in Great Location,4314639,Brad,Brooklyn,Crown Heights,40.67284,-73.9521,Private room,65,1,0,,,1,0 +27088022,"Bright, Brand NEW, and Spacious, Gorgeous Home",115827173,David,Staten Island,Willowbrook,40.59886,-74.13217,Entire home/apt,249,4,9,2019-05-13,0.8,2,351 +27407257,Cozy 2 bedroom in Bedford Stuyvesant,33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68634,-73.93817,Entire home/apt,126,2,30,2019-06-18,2.88,2,35 +19413670,Spacious and airy room in prime South Williamsburg,23048696,Andrea,Brooklyn,Williamsburg,40.70928,-73.9659,Private room,68,3,4,2017-08-01,0.16,1,0 +2356082,"Modern, Clean, West Village Apt!",6970733,Laurence,Manhattan,Greenwich Village,40.72946,-74.00189,Entire home/apt,200,2,26,2017-10-22,0.55,1,0 +33689283,1 & 1/2 Bd Garden apt around corner from river,253940417,Alourdes,Manhattan,Washington Heights,40.83591,-73.94586,Entire home/apt,180,5,0,,,1,83 +29832733,Cozy bedroom in hip center of Williamsburg,224401490,Gloria,Brooklyn,Williamsburg,40.71009,-73.95151,Private room,60,3,2,2018-12-14,0.25,1,0 +16095875,"Perfect, Private Bedroom on Prospect Park",9488965,Stanley,Brooklyn,Prospect Heights,40.67414,-73.96723,Private room,125,1,0,,,1,15 +13711439,Air-Conditioned 2BR w Stunning View,80068221,Scott,Brooklyn,Sunset Park,40.66448,-73.99407,Entire home/apt,130,2,3,2016-08-06,0.08,1,0 +1733157,Private Family Home 2BR mins to Midtown Manhattan,9131167,Myrna And David,Queens,Astoria,40.76135,-73.91571,Private room,195,3,231,2019-06-30,3.51,1,304 +31220603,Cozy Woodhaven,1720151,Sally,Queens,Woodhaven,40.68923,-73.85304000000001,Entire home/apt,75,1,8,2019-07-07,2.14,2,325 +8693545,Great affordable room.,42421006,Jose,Manhattan,Washington Heights,40.84874,-73.94202,Private room,99,1,129,2019-01-24,3.75,2,299 +35313296,Amazing Charm 1 bedroom Convertible 2 bedroom,265871484,Juan,Manhattan,Hell's Kitchen,40.76457,-73.98796,Entire home/apt,300,1,7,2019-07-07,7.0,1,346 +25222993,[ENTIRE APT] Large Designer 1 bd apt in Manhattan,9414337,Garvey,Manhattan,Harlem,40.81759,-73.94385,Entire home/apt,150,5,1,2018-07-05,0.08,1,0 +13763369,Bedroom available with closet space,43688213,Ryan,Queens,Astoria,40.76736,-73.91462,Private room,50,5,3,2017-07-25,0.08,1,0 +16970733,Gramercy / East Village Studio,113521983,Julia,Manhattan,Gramercy,40.73328,-73.98241,Entire home/apt,159,8,33,2019-07-01,1.21,1,8 +33933592,Stylish 4 BR APT in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70807,-73.89483,Private room,34,30,0,,,23,322 +4279323,"Cozy/spacious 3bd, room for rent",21140491,Ariel,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.9484,Private room,80,1,2,2014-11-09,0.03,1,0 +13885247,"Cozy, Convenient 1 Bed Apartment!!! UWS Manhattan",82208124,Yang,Manhattan,Upper West Side,40.77472,-73.98640999999999,Entire home/apt,110,3,33,2019-06-23,0.91,2,0 +35655420,Midtown 2 Bedroom w King bed near Madison Ave,2883788,Steven,Manhattan,Murray Hill,40.74825,-73.98101,Entire home/apt,239,3,3,2019-07-03,3.0,1,158 +19769403,AMAZING 2 bedroom in the heart of Chelsea!,10307134,Anna,Manhattan,Chelsea,40.74204,-73.99899,Entire home/apt,275,3,20,2019-07-01,0.86,2,106 +8984085,Bedroom with private bathroom & rooftop in duplex,4428757,Benjamin,Brooklyn,Crown Heights,40.6758,-73.93185,Private room,50,6,24,2018-05-13,0.54,1,0 +7254952,Prime Park Slope Family Home,16183358,Kim,Brooklyn,Park Slope,40.67545,-73.98234000000001,Entire home/apt,175,4,5,2015-09-07,0.1,1,13 +11873498,Clean Cozy Room in Manhattan,45859087,Maya,Manhattan,Harlem,40.82247,-73.95340999999999,Private room,70,30,25,2019-01-19,0.65,2,187 +32587884,Soho One Bedroom Apartment,244920495,Claudia,Manhattan,Little Italy,40.719190000000005,-73.99654,Entire home/apt,120,60,1,2019-04-24,0.39,1,37 +26734103,Best spot in town: Bunk in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69103,-73.93933,Shared room,33,1,33,2019-06-02,2.78,17,85 +18917771,Roomy! Clean! 2 Bedroom in Bensonhurst- Sleeps 9,131858158,Dan,Brooklyn,Bensonhurst,40.60683,-73.99743000000001,Entire home/apt,123,2,62,2019-06-30,2.48,2,131 +503460,Spacious Apartment w extra room,2483236,Caitlin,Staten Island,New Springville,40.59274,-74.16178000000001,Private room,68,2,11,2018-10-22,0.24,1,88 +12904061,Superior double Bedroom - Cozy & Comfy B6,20559017,Yohan,Manhattan,East Harlem,40.7862,-73.94413,Private room,50,30,1,2017-09-08,0.04,9,333 +842494,Charming Studio Near Central Park!,148545,Lisa,Manhattan,Upper West Side,40.77886,-73.98444,Entire home/apt,150,7,1,2013-11-09,0.01,1,0 +22010257,"King-size bedroom, great location, next to park!",3574922,Shay,Brooklyn,Flatbush,40.65318,-73.96253,Private room,75,2,8,2019-01-28,0.42,1,0 +15203342,"Cosy, Awesome, Private Room in UES",2222500,Valerie,Manhattan,Upper East Side,40.77799,-73.94935,Private room,80,5,9,2019-05-11,0.29,2,118 +6660330,Charming West Village 2.5bd Apt,1586060,Tom,Manhattan,West Village,40.73608,-74.00039,Entire home/apt,300,1,7,2016-03-26,0.14,1,0 +1171716,Room with a sunrise view over colored rooftops,6415261,John,Brooklyn,Flatbush,40.63641,-73.96712,Private room,35,30,0,,,1,317 +13686914,Murray Hill/Midtown East Flex Bedroom,28250527,Elisa,Manhattan,Midtown,40.75257,-73.97148,Private room,65,1,0,,,1,0 +26412930,Zen Brooklyn,209300,Gina,Brooklyn,Fort Greene,40.68731,-73.9751,Private room,85,1,8,2018-09-01,0.66,2,0 +21426648,Bright Airy 1 Bedroom Studio in Prime Downtown NYC,683457,Kelly,Manhattan,East Village,40.72469,-73.99110999999999,Entire home/apt,250,3,1,2018-01-01,0.05,1,0 +7328260,Private room (Uptown) Washington Heights,38390671,Sharlene,Manhattan,Washington Heights,40.83769,-73.94207,Private room,40,7,12,2019-06-16,0.27,1,48 +4530432,Landmark Parlor Studio near train has 2 beds.,7245581,Michael,Manhattan,Washington Heights,40.83488,-73.93843000000001,Entire home/apt,66,180,7,2018-12-16,0.14,19,330 +6760893,Central Park / Full Apartment / 5th Ave,11631535,Scott,Manhattan,East Harlem,40.79596,-73.94958000000001,Entire home/apt,124,3,6,2016-08-26,0.14,1,0 +26516462,M2 A cozy well lit room sleeps 2 on 2 single beds,295128,Carol Gloria,Bronx,Clason Point,40.81309,-73.85367,Private room,70,1,3,2019-04-28,0.47,7,360 +9857967,Big Private Bedroom,1433657,Evy,Brooklyn,Williamsburg,40.70888,-73.95622,Private room,85,2,37,2019-05-26,0.95,2,334 +20845031,"Homey Midtown East 1BR w/ Gym, Doorman, near the 6th street by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7451,-73.97915,Entire home/apt,308,30,0,,,232,156 +20898641,Cabin in Bushwick,19058010,Thomas,Brooklyn,Bushwick,40.69533,-73.9132,Entire home/apt,102,2,10,2018-05-04,0.47,1,0 +9513511,Spacious & Sunny Room Perfect for Medical Students,49293611,Gloria,Bronx,Allerton,40.85753,-73.86605,Private room,85,7,9,2019-06-26,0.25,1,364 +382524,Cozy room with private bathroom & outside garden,732535,William,Manhattan,Harlem,40.803340000000006,-73.94805,Private room,180,3,14,2019-04-04,0.16,3,348 +10055925,Greenpoint Studio Loft w/ Terrace,47554473,Henry Norman,Brooklyn,Greenpoint,40.7287,-73.94504,Private room,189,3,21,2018-05-14,0.49,13,0 +19181398,our place short stay,134160379,Sandy,Bronx,Mott Haven,40.81023,-73.91926,Private room,70,1,0,,,1,87 +4047815,Jackson Heights charmer!,20988865,Elizabeth,Queens,Jackson Heights,40.7517,-73.89478000000001,Entire home/apt,100,2,24,2018-12-30,0.42,1,0 +19069726,Greenpoint Gem: top floor like private home,38217925,Lily,Brooklyn,Greenpoint,40.73453,-73.95795,Private room,120,5,0,,,2,88 +3883020,Huge Apartment! Convenient! Artsy! Comfy!,12556197,Rez,Brooklyn,Crown Heights,40.66856,-73.95619,Entire home/apt,104,5,45,2019-06-30,0.77,2,159 +4025313,One Bed Studio at Wall Street,17249397,Sushant,Manhattan,Financial District,40.70457,-74.00733000000001,Shared room,90,1,8,2015-05-21,0.14,2,0 +17719353,Private Queen room&bathroom in NEW Luxury Building,89197711,Albert,Brooklyn,Gravesend,40.60044,-73.99341,Private room,79,1,2,2017-05-28,0.08,1,0 +13355833,Private Room in Williamsburg,5628991,Christian,Brooklyn,Williamsburg,40.7194,-73.96262,Private room,85,3,0,,,1,0 +30460675,2 Bedroom Williamsburg Oasis w/Private Backyard,67727548,Rachel,Brooklyn,Williamsburg,40.7066,-73.94625,Entire home/apt,150,2,9,2019-06-18,1.27,1,1 +22280432,Private room in Fort Greene,2838365,Jonnie,Brooklyn,Fort Greene,40.68528,-73.96947,Private room,71,1,0,,,1,0 +35510795,"离缅街步行9分钟的电梯独立房间,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76316,-73.82337,Private room,99,1,4,2019-07-06,4.0,6,364 +21163689,"Private room in Clinton hill, Brooklyn NY",146481790,Sneha,Brooklyn,Clinton Hill,40.6926,-73.9639,Private room,95,1,4,2017-12-03,0.19,1,0 +3303165,Ocean Hill Oasis,4279827,Louisa,Brooklyn,Cypress Hills,40.67731,-73.90733,Entire home/apt,99,2,148,2019-06-26,2.46,1,235 +5742795,Big Bedroom in Huge Loft. W.37thNYC,29786027,Peter,Manhattan,Hell's Kitchen,40.75437,-73.99334,Private room,99,4,2,2015-06-14,0.04,1,0 +27139685,"SofaBed-Hell's Kitchen, Heart of Manhattan",204335117,Joseph,Manhattan,Hell's Kitchen,40.76391,-73.99325,Shared room,39,1,44,2019-07-02,4.0,1,31 +27461602,Luxury 2 bdrm Apt near Soho with huge patio,3125234,Timothy,Manhattan,Chinatown,40.71882,-73.99651999999999,Entire home/apt,350,2,8,2019-06-30,0.73,1,52 +21631581,Bright 1BR Apartment in the Heart of Williamsburg,6336630,Justin,Brooklyn,Williamsburg,40.71346,-73.95733,Entire home/apt,125,2,3,2019-06-03,0.16,1,0 +23609407,Very small room near CUMC,176591085,Mike,Manhattan,Washington Heights,40.84389,-73.94126999999999,Private room,45,1,1,2018-05-06,0.07,4,90 +31173428,Cozy ✨LARGE BED✨ In the heart of NYC!,233021124,Jules,Manhattan,Hell's Kitchen,40.76878,-73.98737,Entire home/apt,200,4,10,2019-06-24,1.8,1,80 +28385896,Room w Roof in Trendy Renovated E Williamsburg Apt,6892946,Danite,Brooklyn,Williamsburg,40.70568,-73.94282,Private room,70,10,2,2018-11-19,0.21,1,0 +11590055,Park Avenue 3 Bedroom Apartment,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.7455,-73.98111999999999,Entire home/apt,215,30,2,2017-02-19,0.06,31,125 +18597908,Two Whole Floors On the Brooklyn Waterfront,118880596,Caroll,Brooklyn,Columbia St,40.68455,-74.00188,Entire home/apt,150,4,13,2019-04-29,0.56,1,6 +31920075,Clean and quiet room in home,15977,Alicia,Manhattan,Harlem,40.80385,-73.95294,Private room,60,7,6,2019-05-16,1.32,1,254 +7808745,Private Room in Shared Apartment,41106580,Adam,Manhattan,Kips Bay,40.74111,-73.97959,Private room,70,7,0,,,1,0 +31124462,Home in Hell's Kitchen,2373009,Reza,Manhattan,Hell's Kitchen,40.76416,-73.98685,Private room,100,1,1,2019-02-24,0.22,1,0 +30458672,Newly renovated with elevator room 1,125961131,David,Manhattan,Two Bridges,40.71107,-73.99509,Private room,79,1,44,2019-06-28,6.38,3,3 +35221421,Indépendant space in charming Williamsburg.,203946076,Harun,Brooklyn,Williamsburg,40.71651,-73.94213,Entire home/apt,50,3,2,2019-06-17,2.0,1,152 +21029146,Small room nearby C-train station (female only),131638913,Sachie,Brooklyn,Clinton Hill,40.68428,-73.96526,Private room,35,1,1,2017-12-31,0.05,1,0 +26861563,Upper West Side Apartment,199315366,Christina,Manhattan,Upper West Side,40.78803,-73.97431999999999,Private room,90,3,1,2018-07-29,0.09,1,0 +11434570,Spacious park block garden studio,5162192,Amy,Manhattan,Upper West Side,40.79804,-73.96135,Entire home/apt,140,30,19,2019-03-03,0.47,12,256 +28250448,Confortable apt in the Bronx NYC.,14214034,Desmar,Bronx,Concourse,40.82145,-73.92856,Entire home/apt,102,2,24,2019-06-26,2.76,2,288 +29965956,Cozy Apartment near Central Park,225261197,Sunny,Manhattan,Upper West Side,40.7857,-73.97459,Private room,90,1,35,2019-07-05,7.24,2,261 +23698480,Compact & Cozy Greenpoint Room,5022499,Bryan,Brooklyn,Greenpoint,40.724070000000005,-73.94762,Private room,40,1,0,,,1,0 +36267904,Gorgeous bedroom in Brooklyn close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69684,-73.94256999999999,Private room,77,2,0,,,7,168 +19363944,"Bright, Spacious West Village Getaway!",21450607,Ana,Manhattan,West Village,40.7328,-74.00845,Entire home/apt,299,2,1,2017-07-21,0.04,1,0 +18770418,LARGE 3 BEDROOMS UP 9 People 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73437,-73.85226999999999,Entire home/apt,238,3,2,2019-03-31,0.09,6,188 +36205674,Large Sunny Room Available,328898,Damion,Manhattan,East Harlem,40.80041,-73.94615,Private room,59,1,1,2019-07-07,1.0,1,42 +3554285,Entire Room Brooklyn NYC!!!,2120259,Sue,Brooklyn,Crown Heights,40.66518,-73.95109000000001,Private room,45,4,37,2019-06-24,0.64,4,281 +15195093,Private Bedroom & Large Living Room - Times Square,33936240,Jeff,Manhattan,Hell's Kitchen,40.76084,-73.98935999999999,Private room,89,5,1,2016-09-27,0.03,1,0 +12254147,Spacious Room in 3 bedroom Duplex Apartment,43380926,Zineb,Manhattan,East Harlem,40.78771,-73.94197,Private room,65,1,1,2016-07-22,0.03,1,0 +17192158,Comfortable and Cozy House near Columbia,21638962,Su Lim,Manhattan,Washington Heights,40.84543,-73.9401,Entire home/apt,50,1,1,2017-02-19,0.03,1,0 +34978674,"Private Room and Bathroom - Gym, Laundry, Roof",165883882,Swanny,Brooklyn,Greenpoint,40.73456,-73.95328,Private room,130,2,2,2019-06-19,2.0,1,47 +20714824,Spacious 1 Bed Apartment 20 minutes from Midtown,1424332,Jose,Manhattan,Washington Heights,40.83902,-73.93766,Entire home/apt,50,3,2,2017-10-10,0.09,1,0 +23024656,Harlem cozy nights,43495748,Catherine,Manhattan,Harlem,40.81767,-73.93771,Entire home/apt,120,4,21,2019-07-01,1.25,1,128 +20308253,Studio in LIC with views of Manhattan skyline,27098685,Min Hee,Queens,Long Island City,40.745,-73.94951,Entire home/apt,115,5,1,2017-08-31,0.04,1,0 +31555,Luminous Beautiful West Village Studio,135619,Tom,Manhattan,West Village,40.73442,-74.00303000000001,Entire home/apt,115,29,26,2019-07-01,0.25,1,12 +16308886,SUNNY 2BD W. ELEVATOR / PERFECT 4 SMALL FAMILY,106714852,Ben,Manhattan,Chinatown,40.71401,-73.99186999999999,Entire home/apt,151,7,2,2019-01-06,0.14,1,0 +21188555,Simple cozy room in Bed-Stuy!,153015791,Miki,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93721,Private room,45,3,2,2018-02-08,0.09,1,0 +28052259,Manhattan Townhouse,76350146,David,Manhattan,Kips Bay,40.74123,-73.97559,Private room,150,2,17,2019-07-01,1.95,1,0 +7938492,Upper East Side Studio,355259,Priscilla,Manhattan,Upper East Side,40.76637,-73.95345,Entire home/apt,118,1,2,2016-08-23,0.04,1,0 +32267097,Cozy room in brand new condo with rooftop & gym,242115790,Esteban,Brooklyn,Greenpoint,40.73394,-73.95174,Private room,50,2,11,2019-06-23,3.33,1,49 +9777669,Charming 1 BD in Washington Heights,20068971,Jacqueline,Manhattan,Washington Heights,40.85147,-73.93771,Entire home/apt,125,2,0,,,1,0 +11588003,Charming Prewar Upper West Side Apt,4732500,Daniel,Manhattan,Upper West Side,40.79828,-73.97166,Entire home/apt,95,1,0,,,1,0 +19977131,Room in artist loft with waterfront view,2971336,Alain,Brooklyn,Williamsburg,40.71634,-73.96469,Private room,110,2,5,2017-09-01,0.21,2,0 +28135693,"Girls House - ""Azalea"" Loft Upper Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68385,-73.87088,Shared room,25,1,26,2019-06-30,2.57,6,23 +22067396,Sunny Brooklyn Brownstone apartment,28019842,Morgan,Brooklyn,Clinton Hill,40.6938,-73.96963000000001,Entire home/apt,100,2,0,,,1,0 +34383329,"A private bedroom in Chelsea , Manhattan.",53254710,Aamito,Manhattan,Chelsea,40.73957,-74.00081999999999,Private room,85,2,4,2019-06-30,1.9,1,76 +20689638,LARGE PRIVATE ROOM CLOSE TO MANHATTAN,139357580,Shuly,Queens,Ditmars Steinway,40.77281,-73.90295,Private room,60,1,3,2017-09-15,0.13,8,129 +34443205,"""Hop and Skip to NYC""",35819327,Annette,Staten Island,Rosebank,40.61471,-74.06679,Entire home/apt,135,2,1,2019-07-02,1.0,1,0 +4550602,Cozy & Clean #3,23533897,Fatou,Brooklyn,Crown Heights,40.6759,-73.95274,Private room,75,1,77,2019-06-11,1.4,7,340 +2134047,Artistic Studio Apartment,2533833,Tico,Brooklyn,Bedford-Stuyvesant,40.684090000000005,-73.95402,Entire home/apt,85,3,122,2019-06-15,1.93,1,41 +33389733,"Cozy, Shared Apt in Manhattan only For Female",251510391,Demir,Manhattan,Hell's Kitchen,40.76251,-73.98871,Shared room,59,1,7,2019-05-30,2.04,3,362 +21292130,☆Stylish Family + Group Friendly 3BR w/ Roof Patio,21210879,Imani,Brooklyn,Crown Heights,40.67433,-73.92824,Entire home/apt,298,3,24,2019-06-15,1.17,1,265 +28836976,New York Apartment / HIDDEN GEM ROSEDALE LLC,174197082,Deborah,Queens,Rosedale,40.65644,-73.72816999999999,Entire home/apt,80,1,9,2019-07-05,1.79,2,116 +10945632,All to yourself home away from home,56758927,Carol,Queens,Queens Village,40.70684,-73.74627,Entire home/apt,97,2,252,2019-06-23,6.08,1,290 +7693040,"Park Facing, Spacious 1 BR APT",4073947,Chris,Brooklyn,Crown Heights,40.665420000000005,-73.96061999999999,Entire home/apt,110,1,0,,,1,0 +4550747,Cozy & Clean #4,23533897,Fatou,Brooklyn,Crown Heights,40.67565,-73.95121,Private room,85,2,37,2019-05-19,0.67,7,325 +17743697,Glam Private Bedroom 6 stops to Time Square,14746465,Brooklyn,Manhattan,Harlem,40.81184,-73.94488,Private room,89,3,49,2018-07-15,1.76,1,157 +11503335,Small Room Double Bed and 25 x 15 ft livingroom,6502531,Andrea,Manhattan,Chelsea,40.74549,-73.99473,Private room,84,1,13,2018-08-27,0.36,2,23 +29391852,Room in heart of Bushwick with private entrance,131305000,David,Brooklyn,Bushwick,40.69552,-73.91165,Private room,65,3,16,2019-06-17,1.82,1,74 +17511694,4A-,17770287,Nina,Manhattan,Midtown,40.74896,-73.98277,Entire home/apt,115,30,8,2019-05-01,0.31,14,203 +25042316,Nikki Welcomes you! Private parking space!,112142263,Nicole,Brooklyn,Canarsie,40.63816,-73.91443000000001,Entire home/apt,65,1,119,2019-07-07,9.13,1,61 +12184956,Private Room in Greenpoint Brooklyn,36959636,Panagiotis,Brooklyn,Greenpoint,40.72099,-73.94566,Private room,75,3,0,,,1,0 +4449058,Cozy Private Room in Upper WestSide,23089516,Lisa,Manhattan,Harlem,40.81693,-73.95421,Private room,180,1,26,2019-06-25,0.47,1,0 +6506449,"Large, charming studio on UWS",34013546,Yelena,Manhattan,Upper West Side,40.79324,-73.97489,Entire home/apt,140,1,2,2015-06-22,0.04,1,0 +3716193,Beautiful 2 Bedroom Townhouse,18970667,"Erin, Avi, Kaleb & Shiloh",Brooklyn,Bedford-Stuyvesant,40.68205,-73.94239,Entire home/apt,100,3,168,2019-06-27,2.81,1,317 +13388210,Midtown West Private Sublet - Best Value,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76334,-73.98909,Entire home/apt,117,30,9,2019-04-30,0.4,91,105 +17825100,2 bedroom with patio in clinton hill,48243500,Carri,Brooklyn,Clinton Hill,40.69422,-73.96565,Entire home/apt,107,2,5,2017-05-30,0.18,1,0 +21989166,New Brooklyn HotSpot,105758291,Junior,Brooklyn,East Flatbush,40.6467,-73.94841,Entire home/apt,150,4,35,2019-06-25,2.82,1,105 +27225028,NYC Private 1BR Apartment - 116th Street,59591371,Dustin,Manhattan,East Harlem,40.79889,-73.94489,Entire home/apt,89,6,48,2019-07-02,4.21,1,15 +10249886,Cozy 1BR located in Midtown Manhattan,50914821,Ken,Manhattan,Hell's Kitchen,40.76577,-73.9855,Private room,135,1,101,2019-06-25,2.36,1,365 +8226137,1-Bedroom Apartment in Heart of UWS,37440683,Ben,Manhattan,Upper West Side,40.77832,-73.98069,Entire home/apt,225,2,0,,,1,0 +19162994,AMAZING VIEW COZY APARTMENT IN THE HEART OF NYC,95471685,Lys,Manhattan,Chelsea,40.74814,-73.98956,Entire home/apt,280,7,0,,,1,0 +5117339,Quiet Bdrm w/Private Bath & TV in BIG apartment!,26446036,Buddy,Manhattan,Upper West Side,40.78648,-73.9692,Private room,135,2,78,2019-06-02,1.68,1,0 +14790550,Large and inviting 3BR apartment,21426910,Allen,Brooklyn,Gravesend,40.59544,-73.97086999999999,Entire home/apt,150,2,145,2019-07-01,4.24,2,35 +17318207,"Attractive Room, Quiet Area . Easy commute Man.",116881616,June,Brooklyn,Bath Beach,40.60382,-74.01083,Private room,45,4,17,2019-06-07,0.65,2,17 +30439210,Charming 2 Bedroom in Park Slope,3548411,CASA Heidi,Brooklyn,Park Slope,40.67559,-73.97633,Entire home/apt,300,3,14,2019-06-28,2.22,1,311 +11470210,"Delightful, Cozy and Convenient Room in Brooklyn!!",60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69165,-73.943,Private room,50,1,210,2019-05-28,5.17,4,189 +22264586,Williamsburg lofted bedroom,50909072,Timothy,Brooklyn,Williamsburg,40.71291,-73.95959,Private room,100,3,3,2018-02-13,0.16,1,0 +12871708,ENTIRE PLACE,70396243,Yvelisse,Manhattan,Washington Heights,40.85558,-73.93777,Entire home/apt,95,1,104,2019-06-23,3.3,1,81 +10224998,Standard Room/kitchen(sleeps 4),51991283,Jennifer,Manhattan,Harlem,40.80033,-73.9528,Private room,199,1,1,2016-01-11,0.02,5,267 +2134697,Gorgeous New 1BR_Heart of Midtown,2119276,Host,Manhattan,Hell's Kitchen,40.76613,-73.98721,Entire home/apt,180,30,16,2019-04-22,0.25,39,337 +33829141,New Private Bedroom in Prime NYC / Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79834,-73.96117,Private room,60,30,1,2019-06-01,0.79,32,335 +27704612,Beautiful Historic Townhouse w/ Backyard(Duplex),1213248,Laurence,Manhattan,Harlem,40.80722,-73.9491,Entire home/apt,159,3,31,2019-07-03,3.07,1,358 +33667403,Contemporary Brooklyn Lifestyle Apt /JFK Airport 1,223375402,Joyce,Brooklyn,East New York,40.66067,-73.8931,Private room,65,2,1,2019-05-14,0.53,4,354 +27274799,RIVER VIEWS-EAST 52ND LUXURY 1 BR,200380610,Pranjal,Manhattan,Midtown,40.755790000000005,-73.9652,Entire home/apt,234,30,0,,,65,364 +34718342,★Pvt Room in 4BR House ★ Backyard ★Laundry ★Room 3,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91474000000001,Private room,43,30,0,,,5,221 +19929209,Cozy Studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74838,-73.97695,Entire home/apt,150,30,1,2017-09-17,0.05,50,365 +14466193,Spacious Bright Private Bedroom for 2,17466612,Tanya,Brooklyn,Bensonhurst,40.60909,-73.9769,Private room,65,2,14,2018-10-08,0.44,2,82 +18408236,All New! Vanderbilt Suite,124287074,Chaya,Brooklyn,Prospect Heights,40.6809,-73.96726,Entire home/apt,188,2,59,2019-06-14,2.25,1,28 +34759503,Sunny Private Room in Huge Manhattan Apartment,252356839,Leo,Manhattan,Harlem,40.82802,-73.94481999999999,Private room,65,2,2,2019-07-04,1.36,2,2 +32502180,1-Bedroom Newly Renovated Cozy Apartment,244217480,Vlad,Staten Island,Arden Heights,40.54857,-74.17628,Entire home/apt,83,30,3,2019-06-28,0.9,1,316 +26063550,Ocean hill home away from,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67758,-73.90841,Private room,59,1,24,2019-06-30,1.86,3,32 +21877219,MINIMALISTIC APARTMENT/DECK IN HISTORIC BROWNSTONE,159587137,Wene,Brooklyn,Clinton Hill,40.69087,-73.96639,Entire home/apt,280,3,1,2019-05-03,0.44,2,343 +16534156,#1 Large sunny Studio 5 blocks from CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77251,-73.95430999999999,Entire home/apt,100,30,26,2019-05-28,1.18,3,250 +13154343,Spacious Modern Alcove Studio in a Luxury Building,13739649,Alexander,Manhattan,Hell's Kitchen,40.76144,-73.99243,Entire home/apt,225,2,32,2019-06-25,0.85,1,44 +25736749,UpperWestSide/2B1BA/SHORT-TERM/FURNISHED,193521500,Amy-JPSU,Manhattan,Upper West Side,40.79874,-73.96649000000001,Entire home/apt,220,7,19,2019-06-14,1.45,1,23 +29920808,Nice and spacious 1-bedroom apartment in Astoria,182313432,Laura,Queens,Astoria,40.76635,-73.90812,Entire home/apt,100,5,2,2019-06-11,0.32,1,40 +14959966,2 Bedroom in Convenient Upper East Apartment,7903711,Abby,Manhattan,Upper East Side,40.779790000000006,-73.95379,Entire home/apt,260,2,8,2018-05-23,0.23,1,0 +32138645,Renovated townhouse near trendy Bushwick hotspots,16954523,Tessa,Brooklyn,Bushwick,40.687540000000006,-73.91230999999999,Private room,55,7,4,2019-06-06,0.92,1,95 +25568873,Newly renovated apartment in the heart of Brooklyn,192861009,Ish,Brooklyn,Crown Heights,40.67046,-73.91785,Private room,47,1,37,2019-06-30,2.82,2,89 +33955057,Splendid 1 bdrm in West Village NYC,4189194,Sandra,Manhattan,West Village,40.73286,-74.00463,Entire home/apt,160,3,3,2019-06-07,1.88,1,2 +35872009,Charming Room 1 with 2 Beds Close to 2 Metros,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95514,Private room,70,2,0,,,3,291 +20355009,The Enchanted Pearl Bed & Breakfast ️,142289760,Janae,Manhattan,Harlem,40.81698,-73.93968000000001,Private room,70,1,9,2017-11-12,0.39,1,89 +15974157,Gorgeous sun drenched 2BR in Jackson Heights,1753251,Abeer,Queens,Jackson Heights,40.751090000000005,-73.88049000000001,Entire home/apt,100,4,4,2018-11-11,0.13,1,157 +29563829,Beautiful Twin Room in Victorian Cottage,7878911,Summer & Kamilya,Brooklyn,Flatbush,40.63635,-73.95501999999999,Private room,90,3,5,2019-06-09,0.59,1,0 +4274595,Garden Oasis Apartment - 2 bedroom,22088164,Julia,Manhattan,East Harlem,40.80751,-73.94097,Entire home/apt,200,3,162,2019-06-15,2.84,1,208 +30157585,Master bedroom,226574177,Robert,Manhattan,Harlem,40.82894,-73.94568000000001,Private room,46,1,1,2018-11-21,0.13,1,179 +11737524,Sunny studio in Greenpoint,11544181,Aram,Brooklyn,Greenpoint,40.72522,-73.94124000000001,Private room,89,1,199,2019-06-23,5.07,1,114 +7775924,AUG 16-31 - LARGE FURNISHED 1 BDRM,3002111,Ana,Manhattan,Kips Bay,40.74056,-73.98389,Private room,70,15,0,,,1,0 +19296503,Fold-out futon on East Village/LES border!,9913035,George,Manhattan,Lower East Side,40.72195,-73.98861,Shared room,55,15,11,2019-05-25,0.44,3,347 +26431251,Captain's Cabin 001/Apmnt like,137999892,Simranjeet,Staten Island,Concord,40.60531,-74.08893,Private room,30,4,16,2019-07-01,1.3,7,334 +13221528,Doorman Lux Huge Studio Prime 5176,16098958,Jeremy & Laura,Manhattan,Theater District,40.762640000000005,-73.98569,Entire home/apt,160,30,3,2018-03-20,0.09,96,344 +7836591,True Brooklyn Loft,10786794,Fig,Brooklyn,Williamsburg,40.70492,-73.93831999999999,Private room,70,3,1,2015-08-23,0.02,1,0 +30879375,Cozy one bedroom in the heart of Greenpoint!,159336961,Dylan,Brooklyn,Greenpoint,40.7242,-73.95125999999999,Private room,100,1,18,2019-06-23,2.81,1,325 +31772802,A3 Excellent Budget Private Room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.6918,-73.90414,Private room,65,2,21,2019-05-22,3.84,8,321 +31223941,Neat & Tidy - East Village,1717520,Andrew,Manhattan,East Village,40.72405,-73.9845,Entire home/apt,187,3,1,2019-01-17,0.17,2,0 +23916900,Cozy Apartment - Try NYC Living!,83967077,Renata,Queens,Long Island City,40.75955,-73.93293,Entire home/apt,231,3,4,2018-06-03,0.27,1,0 +33828807,"Cozy room in Brooklyn Safe Area. 30m to D,N/Town",92897185,Nikolett,Brooklyn,Borough Park,40.63402,-74.0025,Private room,65,1,9,2019-06-29,3.38,2,46 +35609328,Central Park/ Times Square -Bright and Quiet 1 BDR,267175603,Sonia,Manhattan,Midtown,40.76551,-73.98217,Entire home/apt,190,3,2,2019-06-23,2.0,1,23 +25215426,Magic Brooklyn townhouse room fit for a wizard,189075482,Chloe,Brooklyn,Cypress Hills,40.68074,-73.89157,Private room,85,1,1,2019-05-20,0.6,3,0 +35215551,Charming East Village 1 Bedroom!,263707859,Sharon,Manhattan,East Village,40.72404,-73.98219,Entire home/apt,150,2,0,,,1,0 +9712126,••BEST Manhattan Downtown Location!••,9339714,Jessica,Manhattan,Gramercy,40.73304,-73.9843,Entire home/apt,140,3,103,2019-06-24,2.46,2,270 +24862077,The Perfect Escape,142455925,Hannah,Manhattan,Upper East Side,40.7661,-73.95419,Entire home/apt,118,3,3,2018-06-19,0.23,1,0 +34490361,Deluxe King Bed Mobility Accessible Roll-in Shower,260618374,The Knickerbocker,Manhattan,Midtown,40.75471,-73.98781,Private room,100,1,0,,,13,352 +21236786,MASTER Beautiful comfort room,145255423,Koothar,Queens,Astoria,40.76505,-73.93002,Private room,95,1,0,,,1,177 +15969097,Big Bright Alcove Studio in Upper East Side,64442357,Jaimie,Manhattan,Upper East Side,40.76323,-73.95916,Entire home/apt,200,4,2,2018-10-18,0.07,1,0 +22078453,Greenpoint Getaway!,15021288,Josh,Brooklyn,Greenpoint,40.7268,-73.94072,Entire home/apt,65,24,1,2018-01-08,0.05,1,0 +28314576,"1 Br in Brooklyn, near Williamsburg/Manhattan",3604985,Rebeca,Brooklyn,Greenpoint,40.73482,-73.95399,Private room,70,1,4,2018-12-31,0.45,1,97 +3963137,Beautiful Bed-Stuy Brownstone,5742948,Tommy,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91471999999999,Entire home/apt,199,4,9,2017-07-01,0.23,1,0 +31220573,Perfect Location: Times Square with skyline view,106825862,Anton,Manhattan,Hell's Kitchen,40.75953,-73.99019,Private room,308,3,0,,,1,37 +260451,Fort Greene brownstone 1BR- SUBLET,52335,Alexander,Brooklyn,Fort Greene,40.69142,-73.97203,Entire home/apt,70,7,4,2017-08-28,0.05,2,0 +848170,Gorgeous 1BR near Prospect Park,4428278,Rohit,Brooklyn,Kensington,40.64651,-73.97662,Entire home/apt,100,4,20,2017-09-10,0.26,1,0 +15449434,LARGE CENTRAL & COZY BEDROOM,64205687,Letty,Manhattan,Hell's Kitchen,40.76297,-73.98888000000001,Private room,69,4,126,2019-06-15,3.81,1,163 +10065056,Lovely West Village Studio,36905682,Adrian,Manhattan,West Village,40.73454,-74.00140999999999,Entire home/apt,125,1,0,,,1,0 +1981410,Spacious 1 bed near train!,6638763,Terry & Kristen,Queens,Ditmars Steinway,40.77906,-73.91265,Entire home/apt,135,3,38,2019-07-02,0.62,1,243 +30938864,"Large sunny bedroom in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76702,-73.90945,Private room,60,2,1,2019-01-05,0.16,3,51 +22105065,Sunny One bedroom w. Outdoor Space - Williamsburg,983477,Kaylan,Brooklyn,Greenpoint,40.71951,-73.95277,Entire home/apt,175,2,9,2018-09-23,0.56,1,0 +15054617,"Home 4 Medical Professionals - The ""Syncope""",26377263,Stat,Queens,Edgemere,40.59517,-73.77235999999999,Private room,43,30,2,2019-02-09,0.07,43,306 +31861671,Hamilton Loft. 2Queen. priv bath. full kitchen,238750007,Hamilton,Manhattan,Harlem,40.82163,-73.94757,Entire home/apt,145,4,17,2019-07-01,3.09,3,265 +33945711,Brand New Luxury 2 Bed Condo in East Williamsburg!,256341094,David,Brooklyn,Bushwick,40.6991,-73.92917,Entire home/apt,249,6,4,2019-07-01,1.97,2,177 +33618672,Beautiful Home in Heart of Brooklyn,17726658,T+Y+K+M,Brooklyn,East Flatbush,40.64673,-73.94686,Entire home/apt,95,1,28,2019-07-05,10.77,1,292 +21072318,Designer 1BR with Patio & FiOS! #10257,26640554,Harrison,Brooklyn,Williamsburg,40.7173,-73.96199,Entire home/apt,350,7,3,2017-10-28,0.14,1,0 +11100541,Garden Apartment in Carroll Gardens,48880382,Samaa,Brooklyn,Carroll Gardens,40.6785,-73.99594,Entire home/apt,180,4,37,2019-07-01,0.91,1,185 +7496824,Upper West Side Apt,39262419,Stacey,Manhattan,Upper West Side,40.7787,-73.98406999999999,Entire home/apt,125,3,2,2015-12-11,0.05,1,0 +35491409,Sunny Spacious Room in UWS near Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80155,-73.96732,Private room,150,1,7,2019-07-07,7.0,3,135 +36235154,Top on Manhattan,3850264,Jason,Manhattan,Harlem,40.80658,-73.95736,Private room,138,3,1,2019-07-03,1.0,2,65 +33684693,Cozy industrial loft in the heart of Williamsburg,253898121,Denis,Brooklyn,Williamsburg,40.72178,-73.95653,Entire home/apt,200,5,1,2019-05-19,0.59,1,13 +33996358,Paper moon private room. Best Bushwick location!,11297371,Maria,Brooklyn,Bushwick,40.69923,-73.93089,Private room,50,2,8,2019-05-30,3.38,2,292 +15338155,BEAUTIFUL BEDROOM IN COZY APARTMENT,22534244,Jose,Queens,Woodside,40.74845,-73.89665,Private room,85,1,42,2019-06-28,1.26,1,364 +164989,"*SoHo: Clean, Safe, Private, Peaceful Bedroom (A)*",69439,Jade,Manhattan,SoHo,40.72351,-73.99683,Private room,140,2,54,2019-06-16,0.56,1,221 +31836311,New(2015) Room & easy commute to Manhattan 35min,19303369,Hiroki,Queens,Elmhurst,40.74001,-73.87629,Private room,32,29,1,2019-03-31,0.3,37,31 +29333330,"Convenient, comfy, and bright",7389707,Yael,Manhattan,Washington Heights,40.84539,-73.93968000000001,Shared room,40,2,14,2019-06-13,2.82,2,0 +8654929,Tranquilo y soleado XL Bushwick loft w/breakfast,39031994,Florencia,Brooklyn,Bushwick,40.69428,-73.90679,Private room,45,2,4,2018-12-15,0.34,1,34 +3939041,Private cozy studio apartment,284199,Avijit,Queens,Jackson Heights,40.74946,-73.89505,Entire home/apt,65,1,1,2018-02-12,0.06,2,0 +25192722,"Clean, Conscious, Plant-Based Home in Bed-Stuy",6735192,Henry,Brooklyn,Bedford-Stuyvesant,40.68195,-73.94827,Private room,55,3,23,2019-04-17,1.69,1,0 +1137270,large Private room in UWS New York,6169516,Audra,Manhattan,Upper West Side,40.788920000000005,-73.97435,Private room,135,3,13,2016-08-23,0.17,1,219 +29881483,Apartment in greenwood heights /south slope,224706357,Fritz,Brooklyn,Sunset Park,40.66056,-74.00017,Entire home/apt,110,2,42,2019-06-24,5.21,1,90 +18721341,Unique Brooklyn Studio,130186732,Trilla,Brooklyn,Crown Heights,40.675740000000005,-73.94722,Entire home/apt,90,31,70,2019-06-22,2.79,1,263 +21381272,Cozy Bedroom in the Heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76152,-73.98959,Private room,91,1,32,2019-03-19,1.59,3,181 +6958924,Upper WestSide NYC Central Park II,36489857,Janice,Manhattan,Upper West Side,40.78768,-73.97238,Entire home/apt,85,3,29,2018-12-30,0.75,1,309 +15250435,"Huge Private Bedroom, Patio, + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.83014,-73.94655999999999,Private room,59,3,49,2019-06-03,1.51,2,203 +28960497,Cozy room in Astoria close to Manhattan,70800114,Olivia,Queens,Ditmars Steinway,40.7698,-73.91157,Private room,64,1,10,2018-12-09,1.12,1,0 +26785,Park Slope Green Guest House,42273,Dani,Brooklyn,South Slope,40.66853,-73.98912,Entire home/apt,120,30,467,2018-12-30,4.22,2,192 +36425863,Lovely Privet Bedroom with Privet Restroom,83554966,Rusaa,Manhattan,Upper East Side,40.78099,-73.95366,Private room,129,1,1,2019-07-07,1.0,1,147 +3378404,WHOLE LARGE 1-BEDROOM APARTMENT,3463555,David,Manhattan,Washington Heights,40.85304,-73.93555,Entire home/apt,88,2,0,,,1,0 +26186945,Bushwick Paradise!,45251482,Sheri,Brooklyn,Bedford-Stuyvesant,40.69222,-73.93171,Entire home/apt,300,5,5,2018-08-12,0.39,1,280 +32786275,Clean and Simple,82940021,Todd,Manhattan,Hell's Kitchen,40.76341,-73.99306,Entire home/apt,145,3,9,2019-07-01,3.55,1,6 +15498370,Room in Modern Apartment.,7529823,Sean,Brooklyn,Crown Heights,40.67453,-73.94537,Private room,45,2,109,2019-06-18,3.3,1,131 +26258306,Private Manhattan 1BR w/ a view & light,22090713,Abigail,Manhattan,Washington Heights,40.85068,-73.9372,Entire home/apt,65,2,4,2019-03-31,0.98,1,0 +34785861,Bohemian private space in Brooklyn's heart,2327518,Giulio,Brooklyn,Bedford-Stuyvesant,40.68511,-73.95283,Private room,75,2,7,2019-06-24,4.2,1,0 +31358401,Quiet cozy room in Prospect Heights,73640551,Courtney,Brooklyn,Prospect Heights,40.6771,-73.97174,Private room,55,2,21,2019-05-10,3.6,2,0 +6656441,Beautiful Room in Clinton Hill,1418498,Meryl,Brooklyn,Clinton Hill,40.68402,-73.96637,Private room,89,4,0,,,1,0 +813554,Historic Park Slope Gem - 1br,4275254,Valeria,Brooklyn,Park Slope,40.67228,-73.97248,Entire home/apt,185,30,36,2019-05-28,0.58,1,358 +13580148,"Sunny Rms w Utilities Incl, 15 mins to Manhattan",2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.68232,-73.94400999999999,Private room,75,2,1,2019-06-10,1.0,3,125 +17842111,1st flr full studio apartment- entire place/SAFE,122044895,Yerddy,Bronx,Kingsbridge,40.8781,-73.89998,Entire home/apt,99,3,116,2019-06-22,4.35,2,86 +29907852,Plantation House,224885898,Thomas,Brooklyn,Bedford-Stuyvesant,40.68135,-73.92121999999999,Entire home/apt,125,3,10,2019-07-01,1.6,1,361 +17435074,Spacious Bed and Bathroom in Brooklyn,117962524,Corley,Brooklyn,Sheepshead Bay,40.60913,-73.95254,Private room,100,1,1,2017-02-25,0.03,1,0 +19441240,Clean Cozy Close Comfortable,16566001,Ebin,Manhattan,Harlem,40.81611,-73.94419,Private room,36,2,11,2017-10-22,0.45,1,0 +27425011,Stylish New York Apartment,10428298,Sheila,Manhattan,Chelsea,40.73768,-73.99565,Entire home/apt,220,14,0,,,1,0 +18702075,Clean and large bedroom in a private house,130021104,Christoni,Bronx,Williamsbridge,40.873090000000005,-73.86326,Private room,60,1,5,2017-06-03,0.19,1,0 +31002972,"Sunny, Plant-filled Apt in Manhattan’s Chinatown",1602948,Allie,Manhattan,Chinatown,40.71513,-73.99791,Entire home/apt,91,5,2,2019-05-30,0.33,1,1 +12624890,Pull-out Sofa in Central Harlem,657869,J,Manhattan,Harlem,40.81027,-73.9408,Shared room,39,4,47,2019-06-09,1.22,2,131 +11431526,"Huge, Sunny Carroll Gardens 1BR Apt",1449155,Hadley,Brooklyn,Carroll Gardens,40.68285,-73.99495,Entire home/apt,125,5,1,2016-07-05,0.03,1,0 +11946206,Luxurious 1 Bedroom Apt!,2705455,Rei,Queens,Long Island City,40.74284,-73.95755,Entire home/apt,180,6,1,2016-05-20,0.03,1,0 +20650006,"Beautiful spacious room, easy city access",10414799,Katharina,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93864,Private room,65,3,15,2019-06-03,0.67,2,109 +4849864,Cozy Quiet Apt 10min to Manhattan,2464823,Andy,Queens,Astoria,40.7643,-73.92636999999999,Entire home/apt,112,7,5,2016-10-04,0.1,1,0 +28464829,Great cosy Studio. Just perfect.,24833181,Andres,Brooklyn,Bedford-Stuyvesant,40.69488,-73.94983,Entire home/apt,85,1,44,2019-07-05,4.51,2,208 +12252513,Cool Williamsburg Loft,9280078,Frederikke,Brooklyn,Williamsburg,40.70845,-73.96741999999999,Entire home/apt,120,1,1,2016-05-08,0.03,1,0 +13129607,Spacious Studio in the heart of NYC's East Village,11935406,Brandon,Manhattan,East Village,40.72684,-73.98938000000001,Entire home/apt,123,2,7,2017-02-05,0.2,1,0 +33828402,Trendy NYC Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79961,-73.95961,Private room,60,30,0,,,32,362 +5268045,Beautiful room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76578,-73.95509,Private room,95,1,21,2019-02-09,0.39,2,188 +22262419,AWESOME VIEWS * COLUMBUS CIRCLE * Pool/Gym/Balcony,13773574,Cecile,Manhattan,Midtown,40.76518,-73.98286999999999,Entire home/apt,225,30,0,,,12,343 +30541439,Brooklyn room with Empire State building view,56665831,Perrine,Brooklyn,Bedford-Stuyvesant,40.68947,-73.95269,Private room,99,5,1,2019-01-02,0.16,1,0 +36076758,"Sunny, Comfortable Room in Historic Heights!",271391825,Gloria,Manhattan,Washington Heights,40.84638,-73.93845999999999,Private room,46,2,0,,,1,121 +27494734,New York - Columbia/Harlem big Apartment,22896813,Jacqueline,Manhattan,Morningside Heights,40.81382,-73.95939,Private room,100,3,1,2018-08-12,0.09,1,0 +12342269,Newly Renovated Upper East Side Apartment,1892706,Madeleine,Manhattan,East Harlem,40.78993,-73.94718,Private room,70,1,0,,,1,0 +20761266,Spacious Brooklyn Bedroom Close to Manhattan et al,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69387,-73.94688000000001,Private room,62,3,51,2019-06-21,2.3,3,108 +34546192,"Large, Sunny, Quiet Room in Harlem, New York City",1542506,Ritty,Manhattan,Harlem,40.81721,-73.94593,Private room,49,1,0,,,1,2 +9595863,Cozy Private Room in Williamsburg,33906084,Manon,Brooklyn,Williamsburg,40.7171,-73.95273,Entire home/apt,80,4,1,2015-12-23,0.02,1,0 +17611001,Gorgeous bedroom 8mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68787,-73.78843,Private room,80,1,129,2019-06-23,5.19,3,180 +13805038,MODERN WILLIAMSBURG DUPLEX NEAR ALL THE ACTION,8539684,Robert,Brooklyn,Williamsburg,40.70875,-73.9467,Entire home/apt,250,4,10,2017-03-05,0.27,1,0 +21813560,"Private Room in Sunny, Spacious 3 Bdrm Apartment",19138757,Helen,Brooklyn,Crown Heights,40.67517,-73.9564,Private room,60,3,4,2018-09-30,0.22,1,302 +14167763,Beautiful + Private 1 Bedroom in North Park Slope,85734571,Wayne,Brooklyn,Park Slope,40.68083,-73.97823000000001,Entire home/apt,120,7,0,,,1,0 +34714207,"sunny quiet apartment, right next to subway",2468616,Arika,Brooklyn,Crown Heights,40.66873,-73.95243,Entire home/apt,120,2,0,,,2,311 +13130036,Upper-East Side 1 Bedroom Gem Duplex with Garden,12810744,Vivian,Manhattan,Upper East Side,40.77586,-73.95164,Entire home/apt,235,120,8,2016-10-27,0.23,1,12 +7826411,Private room in trendy LES,24881130,Fred,Manhattan,Lower East Side,40.72184,-73.9868,Private room,100,3,0,,,1,0 +23324479,"HARLEM HOME AWAY FROM HOME , SHORT - EXTENDED STAY",120167980,Judith,Manhattan,Harlem,40.80497,-73.94951999999999,Private room,125,1,7,2019-05-12,0.43,1,297 +9461187,Apartment 20 minutes from Manhattan,49027658,Loretta,Brooklyn,Greenpoint,40.73391,-73.95679,Entire home/apt,143,1,0,,,1,0 +32962319,Twin Bed in the heart of Downtown Manhattan,1022166,Roda,Manhattan,East Village,40.73216,-73.98937,Shared room,65,4,6,2019-06-08,2.07,1,35 +13449844,Upper West Side Apt. w/ Roof Deck,76809352,Kent,Manhattan,Upper West Side,40.78305,-73.97757,Entire home/apt,240,30,4,2017-01-02,0.11,1,0 +33523503,Comfortable master room in Brooklyn close to train,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91256,Private room,58,2,6,2019-06-01,2.47,5,213 +30441377,Great access/2min U can use 5 lines(EFMR7),200239515,Shogo,Queens,Woodside,40.74652,-73.89154,Private room,28,28,0,,,15,0 +19330704,Private room near Columbia University,134370506,Joseph,Manhattan,Morningside Heights,40.81237,-73.95985,Private room,80,1,39,2019-07-06,1.56,1,13 +15859962,1 Bd Kips Bay Luxury/Doorman. - Pool & Gym.,102792338,Henry,Manhattan,Kips Bay,40.74411,-73.98011,Shared room,65,4,0,,,1,0 +31319380,Spacious one bedroom apartment upper east side,234440538,Fatima,Manhattan,Upper East Side,40.77905,-73.9535,Entire home/apt,150,1,0,,,1,0 +23106361,★Spacious Private Room★ MANHATTAN + Close to Park!,171660157,Del,Manhattan,Harlem,40.82748,-73.95083000000001,Private room,65,4,10,2019-01-15,0.6,1,2 +30937595,Sonder | 11th Ave | Bright 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76188,-73.99616,Entire home/apt,185,29,1,2019-06-20,1.0,327,281 +11069190,"Mi Casa, Tu Casa.",390251,Lilly,Manhattan,Harlem,40.80129,-73.95389,Private room,95,2,2,2018-07-22,0.14,4,88 +34278532,3 Bedroom Loft Like Unit 5 minutes from train,258795923,Saf,Brooklyn,Gravesend,40.59145,-73.98546,Entire home/apt,129,3,4,2019-06-26,3.0,1,167 +8783567,Studio Apt on The Upper West Side,46039971,Brady,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,190,5,15,2019-03-21,0.35,1,0 +5004463,Spacious Private Room ,25807709,Shula,Brooklyn,Midwood,40.6216,-73.95315,Private room,60,10,27,2019-07-05,0.5,1,322 +15191882,★★SLEEP ON CLOUD 9 IN OUR DOUBLE BED SUITE★★,64065593,ResortShare5,Manhattan,Midtown,40.753240000000005,-73.97216999999999,Entire home/apt,198,2,16,2018-11-08,0.51,13,263 +18069745,Private bathroom bedroom near JFK 30min to NYC,91184602,Sonia,Queens,Richmond Hill,40.68821,-73.83411,Private room,95,3,26,2019-01-01,1.38,1,160 +21293326,Huge Designer Room | Lower East Side /East Village,10994839,Michael,Manhattan,Lower East Side,40.71994,-73.98184,Private room,150,2,32,2019-05-26,1.58,1,76 +9824463,BK's Finest Courtyard Rm close to transportation,50600973,Joyell,Brooklyn,Bushwick,40.69452,-73.9284,Private room,42,1,216,2019-06-24,5.0,7,61 +4277614,Private Room in a Spacious & Bright Apartment,14279331,James,Brooklyn,Gowanus,40.67044,-73.99157,Private room,70,4,91,2018-12-29,3.64,1,0 +25288759,Aventurine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95522,Private room,65,2,13,2019-05-20,0.96,34,308 +4760504,Williamsburg Loft Bedroom,302865,Gamze,Brooklyn,Williamsburg,40.71337,-73.9642,Private room,85,8,0,,,1,0 +34282410,1 BD Apt in Luxury Building - Crown Heights NYC,258826234,Stephanie,Brooklyn,Crown Heights,40.67708,-73.95489,Entire home/apt,175,7,1,2019-05-23,0.63,1,35 +30748041,Best Manhattan location & best room for the price!,7883985,Clarissa,Manhattan,Upper East Side,40.77221,-73.95528,Private room,79,1,23,2019-06-25,3.59,1,7 +16603730,Luxury High-Floor Oversized Studio w/ Park View,4494498,Micah,Manhattan,Harlem,40.80371,-73.94377,Entire home/apt,225,3,0,,,1,0 +34201544,"5min walk to Metro+Laundry, Cleaning, & AC!",155299207,Casey,Brooklyn,Crown Heights,40.67648,-73.93881,Private room,33,30,0,,,1,45 +9477359,"Bright, airy East Village apartment",22063782,Jennifer,Manhattan,East Village,40.72311,-73.98389,Entire home/apt,180,7,1,2016-01-03,0.02,1,0 +25860068,JULY SALE ! PRIVATE ROOM UPPER EAST SIDE NYC,23827868,Gal,Manhattan,Upper East Side,40.77655,-73.94651,Private room,55,21,2,2018-12-29,0.25,1,131 +21907916,Áines place.,4076045,Aine,Queens,Astoria,40.76347,-73.90928000000001,Private room,50,2,0,,,1,0 +9273161,Located in the heart of Soho!!,48161896,Kate,Manhattan,SoHo,40.72356,-74.00471999999999,Entire home/apt,78,5,2,2017-05-22,0.08,1,0 +36395366,Deluxe Bedroom w/ 2 Beds - 3 stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75415,-73.93144000000001,Private room,89,1,0,,,5,358 +18823930,Manhattan Luxury High-Rise Apt w/ Unbeatable Views,41382247,Dan,Manhattan,Hell's Kitchen,40.76011,-73.98828,Entire home/apt,275,1,0,,,1,0 +12696421,2BR-E 60TH RESIDENCIES WITH DOORMAN,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96252,Entire home/apt,200,30,0,,,49,324 +22612874,Private Bedroom with en Suite Bathroom in Bushwick,166415629,Anthony,Brooklyn,Bushwick,40.69859,-73.93534,Private room,85,1,0,,,1,0 +3283729,"Beautiful, Furnished Studio!",16596651,Gautam,Manhattan,Upper East Side,40.77787,-73.95104,Entire home/apt,125,4,7,2015-11-15,0.11,1,0 +12001322,NYC Midtown-West Luxury 1BR Apt.,30283594,Kara,Manhattan,Midtown,40.76554,-73.98289,Entire home/apt,239,30,0,,,121,352 +20040994,Private room in 3br apt in West Village,29750315,Myles,Manhattan,West Village,40.7331,-74.01021999999999,Private room,108,3,3,2017-08-31,0.13,1,0 +16814536,Prime location homestay in Brooklyn sunset park,30576651,Lun,Brooklyn,Sunset Park,40.63964,-74.01975,Private room,55,4,1,2017-01-30,0.03,1,0 +19827778,Mi Casa su Casa!,71749435,Paul,Manhattan,Washington Heights,40.84102,-73.93822,Entire home/apt,80,3,37,2019-06-30,1.55,1,28 +3860762,Amazing Big Sunny Room with Porch,1908606,Suleman,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.95428000000001,Private room,72,5,0,,,1,88 +29337285,Studio in Prime Williamsburg w/ Private Balcony,220688207,Alan,Brooklyn,Williamsburg,40.709590000000006,-73.96110999999999,Entire home/apt,150,1,77,2019-07-02,8.95,1,77 +19673076,Modern and Private Duplex Apartment,2983089,Robert,Brooklyn,Carroll Gardens,40.68308,-73.9912,Entire home/apt,175,30,57,2019-07-06,2.74,1,84 +20010930,Spacious & Quiet 1 Bedroom,18987217,Griffin,Queens,Ridgewood,40.70792,-73.89808000000001,Entire home/apt,90,4,0,,,1,0 +32831206,Cozy private room in the heart of NYC 51E1,190921808,John,Manhattan,Hell's Kitchen,40.75378,-73.9955,Private room,99,7,4,2019-06-07,1.69,47,318 +656281,"QUIET, SPACIOUS, COMFORTABLE, & GREAT LOCATION",3180741,Manon,Brooklyn,Kensington,40.64573,-73.98013,Private room,72,1,48,2019-02-28,0.59,1,312 +14239259,West Village Apt in the Heart of the Action,5064742,Alex,Manhattan,West Village,40.73342,-74.00362,Entire home/apt,200,2,0,,,1,0 +29825825,Home away from home. Private apt across from park.,224350246,Marceline,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91792,Entire home/apt,175,2,4,2019-06-16,0.54,1,326 +25546901,Green home by Prospect Park,29506,Clare,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95902,Entire home/apt,200,5,4,2019-01-01,0.33,1,1 +10052289,,49522403,Vanessa,Brooklyn,Brownsville,40.66409,-73.92314,Private room,50,3,3,2016-08-18,0.07,1,362 +14952649,"Eclectic, relaxing yet steps away from the action",94118056,Steve,Manhattan,Washington Heights,40.8419,-73.93866,Entire home/apt,130,3,10,2018-09-03,0.29,1,188 +20156079,Chic Williamsburg Apartment 2 Bedroom,126531152,Francesca,Brooklyn,Williamsburg,40.713,-73.94381,Entire home/apt,150,1,4,2017-08-14,0.17,1,0 +18686508,Modest Room in a Quiet Brooklyn Home,129161153,Hermann,Brooklyn,East Flatbush,40.6327,-73.93921999999999,Private room,60,1,5,2018-05-13,0.19,1,342 +8408695,15 MIN FROM MANHATTAN,10181589,Jodi,Queens,Sunnyside,40.74592,-73.92399,Entire home/apt,95,1,0,,,1,0 +8845805,Large Sunny Private Room,46322730,Tia,Manhattan,Washington Heights,40.844440000000006,-73.9399,Private room,95,2,32,2019-06-30,0.72,1,170 +5728500,Cozy Private Room in Astoria,23185328,Deniz,Queens,Ditmars Steinway,40.77842,-73.90994,Private room,58,1,34,2017-01-23,0.66,2,129 +13052968,Charming 1-BR Fort Greene Apartment,26959668,Flo And Erin,Brooklyn,Fort Greene,40.68748,-73.97397,Entire home/apt,125,3,19,2019-05-28,0.51,1,0 +4632852,"Spacious, rustic barn style bedroom",23991556,Natasha,Bronx,Concourse,40.83719,-73.92015,Private room,85,1,9,2017-10-16,0.18,1,342 +31556307,G/F Woodside room mins to LaGuardia Airport,137358866,Kazuya,Queens,Woodside,40.744240000000005,-73.90146,Private room,49,30,0,,,103,247 +7024538,Sublet entire apt in Brooklyn,16112564,Laszlo Jakab,Brooklyn,Brooklyn Heights,40.69382,-73.99334,Entire home/apt,130,7,1,2015-06-29,0.02,1,0 +26099303,Heart of South Williamsburg,27966935,Lara,Brooklyn,Williamsburg,40.71033,-73.9647,Private room,100,28,20,2019-05-31,1.62,1,309 +20404264,Charming cozy apt in the Heart of Manhattan!,44964062,Edwina,Manhattan,East Harlem,40.7889,-73.9482,Private room,73,3,0,,,1,0 +10021499,Comfy Private Room in Williamsburg,48446355,Alexandra,Brooklyn,Williamsburg,40.71074,-73.95145,Private room,61,1,1,2016-01-02,0.02,1,0 +9062257,Spacious 1-bedroom in Crown Heights,6075567,Yasmin,Brooklyn,Crown Heights,40.67089,-73.94825,Entire home/apt,100,2,13,2018-09-09,0.31,1,0 +10104130,"Bright, Spacious Brooklyn Space w/ Private Bath",51851212,Ugi,Brooklyn,Crown Heights,40.67418,-73.95958,Private room,60,1,4,2018-08-26,0.09,1,0 +36043243,Small Private Room in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78189,-73.9455,Private room,69,3,0,,,9,30 +8506167,Brooklyn Basement Apartment,44791079,Mike,Brooklyn,Kensington,40.64291,-73.97928,Entire home/apt,70,1,1,2015-11-02,0.02,1,0 +4241486,Floor Through East Village Lux Apt,22009089,Lorcan,Manhattan,East Village,40.72685,-73.98638000000001,Entire home/apt,280,2,92,2019-07-04,1.59,1,173 +726422,Grand Brooklyn Apartment,3759301,Natalia,Brooklyn,Crown Heights,40.67942,-73.96248,Entire home/apt,50,4,8,2019-04-29,0.12,1,220 +7269771,CLEAN COZY & COMFY E. VILLAGE PAD,16155254,Lina,Manhattan,Stuyvesant Town,40.7305,-73.98043,Entire home/apt,160,1,150,2019-06-01,3.21,4,238 +26167567,Common Single Room #2,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68643,-73.93007,Private room,40,1,148,2019-07-01,11.68,6,174 +20722247,Private Bedroom in the Heart of Chelsea (3FL/3FR ),40712207,Elsa,Manhattan,Chelsea,40.7416,-74.00081999999999,Private room,75,30,2,2019-05-11,0.17,1,188 +22545036,Cozy Room Close to Columbia,12541753,Yiou,Manhattan,Upper West Side,40.800340000000006,-73.96127,Private room,39,3,1,2018-01-13,0.06,1,0 +17545558,Private Room 2 in East Village (Large Window),12302104,Anna,Manhattan,East Village,40.72208,-73.98109000000001,Private room,73,1,116,2019-06-02,4.07,2,238 +30957964,Javits center 1 bedroom,231322933,Marisa,Manhattan,Hell's Kitchen,40.75605,-73.99710999999999,Entire home/apt,134,1,33,2019-06-23,5.08,1,20 +34772058,"Entire home in Crown Heights, Brooklyn",30873439,Margarita,Brooklyn,Crown Heights,40.66752,-73.95466,Entire home/apt,90,2,5,2019-06-22,5.0,1,22 +34974525,Amazing Furnished 2 Bed on Park Ave with Gym #6110,113723310,Joe,Manhattan,Murray Hill,40.74812,-73.98046,Entire home/apt,300,30,0,,,8,342 +36455402,Cute plant friendly studio in hip Brooklyn area!,184501278,Em,Brooklyn,Crown Heights,40.67198,-73.95329,Entire home/apt,180,1,0,,,1,165 +16822398,!!!Co-Housing taken to the Next Level /Flatbush/2,2092314,Valentin,Brooklyn,East Flatbush,40.64471,-73.9495,Shared room,20,30,1,2018-08-10,0.09,7,365 +31221208,"Sunny 1 bedroom in Greenpoint, great location!",105584927,Lilly,Brooklyn,Greenpoint,40.72173,-73.94664,Entire home/apt,75,2,8,2019-04-07,1.3,1,0 +19475058,Spacious Chinatown Loft,12038925,Keir,Manhattan,Chinatown,40.71585,-73.99171,Entire home/apt,250,2,15,2018-08-26,0.63,1,0 +19408914,Spacious one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74818,-73.97537,Entire home/apt,175,30,1,2018-01-17,0.06,50,342 +15706724,"Ground floor,Private garden Patio - sleeps 6 - UES",78832142,Rory,Manhattan,Upper East Side,40.77851,-73.94985,Entire home/apt,218,2,60,2019-06-19,1.85,1,305 +31913609,Stuy Heights Brownstone Passive House Garden Unit,21019302,Bobby And Ruth,Brooklyn,Bedford-Stuyvesant,40.68489,-73.92087,Entire home/apt,200,2,15,2019-07-05,3.69,1,300 +21932693,Big loft in Williamsburg,43600815,Rafael,Brooklyn,Williamsburg,40.70572,-73.93823,Private room,65,8,1,2018-01-01,0.05,2,0 +16534337,Spacious Private room in Charming Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71348,-73.93748000000001,Private room,85,2,22,2019-06-07,0.72,3,36 +9351679,"1Bdr APARTMENT, Astoria, NY [10min from Manhattan]",48534909,Despina,Queens,Astoria,40.76483,-73.91521999999999,Entire home/apt,99,4,4,2019-01-04,0.09,1,0 +35262444,Room in Minimalist Apartment,446512,Héctor,Manhattan,Washington Heights,40.85457,-73.92778,Private room,66,1,5,2019-07-06,4.69,1,130 +995469,Beautiful Large Furnished Bedroom on UES,5468901,Sanya,Manhattan,Upper East Side,40.76896,-73.95898000000001,Private room,60,7,1,2015-12-22,0.02,1,0 +9343350,Charming 2 bd 1 br Apartment in LES,11824700,Rachel,Manhattan,Lower East Side,40.71549,-73.9834,Entire home/apt,220,2,3,2016-12-23,0.07,2,0 +30256311,The Hampton,129162333,Mo,Queens,Howard Beach,40.66146,-73.85638,Entire home/apt,207,1,13,2019-06-23,1.84,1,346 +20089288,"#4 Cozy And Bright Room, 30 Minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68863,-73.8706,Private room,38,30,43,2019-06-01,1.87,6,193 +36139906,NYC full spacious apartment.,34274867,Sarah,Manhattan,Washington Heights,40.85453,-73.93562,Entire home/apt,300,4,0,,,1,319 +32020961,Full Sized Bed(in bunk) in Inwood *entire apt*,21836588,Kimberly,Manhattan,Inwood,40.864540000000005,-73.9246,Entire home/apt,35,1,33,2019-06-25,6.56,1,5 +23691189,"Bright cozy room near Subway (M, J, Z, G trains)",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69475,-73.9405,Shared room,37,30,3,2019-01-13,0.21,10,342 +18869228,CHARMING STUDIO HALF BLOCK TO CENTRAL PARK UWS,9293730,Inna,Manhattan,Upper West Side,40.78569,-73.97048000000001,Entire home/apt,79,30,1,2017-10-16,0.05,16,329 +34934218,Sonder | 116 John | Stylish 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.706590000000006,-74.00632,Entire home/apt,137,29,0,,,327,318 +19439068,Newly Renovated 2BR private basement unit.,69427329,Michelle & Eddie,Queens,Elmhurst,40.739,-73.87609,Entire home/apt,120,2,82,2019-07-05,3.31,6,230 +22279575,"Comfort, convenience, elegance near Prospect Park",96379938,Alexander,Brooklyn,East Flatbush,40.65381,-73.94819,Private room,30,2,48,2019-01-03,2.58,2,0 +20836753,Apartment-Styled space in Queens. 10Min from JFK.,148737806,Daré,Queens,Rosedale,40.66183,-73.72943000000001,Private room,58,1,65,2019-06-30,2.92,2,84 +4103970,Private room in hip east Williamsburg/Greenpoint,1637916,Mandy,Brooklyn,Greenpoint,40.72122,-73.94121,Private room,100,1,36,2019-06-21,2.69,1,335 +29897019,Bright and spacious townhouse apartment in Soho,224808776,Pietro,Manhattan,Greenwich Village,40.72841,-74.00045,Entire home/apt,300,4,28,2019-07-01,3.82,1,217 +30186710,Private bedroom at East Williamsburg,13608859,Ceren,Brooklyn,Williamsburg,40.70316,-73.94914,Private room,110,1,13,2019-05-26,1.85,1,6 +3043029,2 bedroom in the East Village,1451702,Paco,Manhattan,East Village,40.72687,-73.97995,Entire home/apt,225,8,0,,,1,0 +21801514,Apartment in trendy Nolita,3644416,Kaaran,Manhattan,Nolita,40.72207,-73.99596,Entire home/apt,270,7,0,,,1,0 +21651023,Private room two blocks from Times Square.,38530455,Aleksey,Manhattan,Hell's Kitchen,40.76291,-73.98976,Private room,105,1,135,2019-07-01,6.78,1,68 +23221581,Cozy Renovated 2 Bedroom Apartment Heart of Brklyn,41398005,Mirco,Brooklyn,Sunset Park,40.642790000000005,-74.00515,Entire home/apt,70,30,10,2019-06-29,0.62,3,183 +2723515,Stylish Pre-war,9652075,Devin,Brooklyn,Clinton Hill,40.69418,-73.9677,Entire home/apt,124,4,65,2019-07-01,1.06,1,165 +19179863,Periwinkle in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.67977,-73.89022,Private room,39,3,30,2019-05-20,1.2,3,344 +33512766,STEINWAY..The heart of Astoria,73227284,Bidhya,Queens,Astoria,40.7577,-73.91728,Private room,60,2,6,2019-05-10,1.94,1,333 +4339202,"**ASTORIA one private cozy, cute room** Nihongo ok",22527661,Mio,Queens,Astoria,40.76261,-73.91767,Private room,70,3,2,2019-05-23,0.05,1,23 +35040805,Amazing Location! 1 Bedroom Apartment Downtown,57291971,Regina,Manhattan,Midtown,40.76044,-73.97012,Entire home/apt,199,2,3,2019-07-01,3.0,1,67 +13589415,Cozy studio with HUGE PRIVATE terrace and grill,21283171,Valeryia,Manhattan,East Harlem,40.78706,-73.94798,Entire home/apt,140,1,6,2018-01-17,0.18,1,0 +887129,Comfortable and Large Duplex with Private Terrace,3490818,Jon,Brooklyn,Williamsburg,40.71437,-73.96054000000001,Entire home/apt,191,3,156,2019-06-30,2.08,1,21 +30933599,Gorgeous Bedroom in spacious Brooklyn apt,17259675,Christine,Brooklyn,Bushwick,40.70018,-73.91573000000001,Private room,60,1,3,2019-03-17,0.48,1,0 +22471517,Entire apartment in Ditmas Park/Flatbush,89363555,Nitika,Brooklyn,Flatbush,40.641490000000005,-73.96157,Entire home/apt,100,1,5,2018-02-27,0.27,1,0 +17380431,Large sunny park slope apartment,1012628,Elizabeth,Brooklyn,Park Slope,40.67135,-73.97759,Entire home/apt,150,1,0,,,1,0 +12854022,Cozy room in new duplex apartment!!,70235809,Sandra,Brooklyn,Bushwick,40.69301,-73.92683000000001,Private room,95,1,0,,,1,0 +8775324,Fantastic Private Room with Own Bathroom -,6408132,Michael,Brooklyn,Crown Heights,40.67553,-73.94195,Private room,50,5,1,2016-01-02,0.02,1,35 +19847655,Peaceful space,140323391,Adi,Brooklyn,Bushwick,40.70255,-73.92103,Private room,45,3,0,,,1,0 +6156278,Cozy Studio - Midtown West,10154856,Ayumu,Manhattan,Hell's Kitchen,40.76881,-73.98832,Entire home/apt,200,5,0,,,1,0 +818337,Newly Reno Room with Private Bath^,4241953,Celeste,Queens,Flushing,40.75979,-73.81016,Private room,57,2,17,2019-06-22,0.21,4,308 +820946,Charm&Quiet in Hip Greenpt Brooklyn,4311270,Annie,Brooklyn,Greenpoint,40.73319,-73.95623,Private room,110,1,4,2017-12-28,0.18,1,0 +31760509,"Morningside Park, near Columbia U., private room",219505617,Karen,Manhattan,Harlem,40.80351,-73.95822,Private room,85,1,18,2019-06-25,3.62,1,92 +14177028,"Private Floor, Room and bathroom In Townhouse, BK",29219991,Doug,Brooklyn,Williamsburg,40.71555,-73.96325,Private room,98,10,62,2019-07-02,1.78,2,211 +36116772,"Sunny room in Brooklyn, Sunset Park",271681014,Ying Hua,Brooklyn,Borough Park,40.64531,-73.99757,Private room,45,2,0,,,3,139 +33310062,"Beautiful 1.5 Bedroom Oasis, Heart of Williamsburg",2196083,Bridgette,Brooklyn,Williamsburg,40.71699,-73.96167,Entire home/apt,214,3,6,2019-07-01,1.94,1,32 +25841768,"Entire Garden Level Home in Greenpoint, Brooklyn",159204067,Maggie,Brooklyn,Greenpoint,40.72488,-73.94932,Entire home/apt,124,1,6,2019-03-24,0.5,1,6 +7714405,"Ideal Apt for US Tennis Open, 2BR",40527701,Christine,Queens,Elmhurst,40.73726,-73.88065,Entire home/apt,150,2,2,2015-08-17,0.04,1,0 +12681730,"Sunny, Chelsea Manhattan apartment",12534916,Jonathan,Manhattan,Chelsea,40.74187,-74.00175,Private room,125,2,0,,,1,0 +30789463,Modern Cozy 2 Bedroom Apt on UES -Near subways!,93822547,Laura,Manhattan,Upper East Side,40.77515,-73.95173,Entire home/apt,185,2,3,2019-05-26,1.11,1,0 +7692701,My home in Harlem,40401163,Stefan,Manhattan,Harlem,40.80591,-73.95525,Private room,75,14,0,,,1,0 +387324,Cozy Room in Sunny Apartment (Long/Short Term),1828506,Yogi,Manhattan,Kips Bay,40.74238,-73.98122,Private room,74,240,15,2018-09-04,0.17,1,90 +6544899,Beautiful Greenwich Village Apartment,34233009,Carol,Manhattan,West Village,40.73638,-74.00393000000001,Entire home/apt,180,28,0,,,1,0 +14283423,LUXURY BLDG - PRIVATE TERRACE/DOORMAN,40405299,Andra,Manhattan,Upper West Side,40.77174,-73.98934,Entire home/apt,200,3,16,2019-05-07,0.48,1,0 +22463977,Amazing Master Bedroom in Historic Brooklyn,164650025,Chris,Brooklyn,Prospect Heights,40.67757,-73.97023,Private room,35,1,204,2019-06-30,11.17,1,19 +7461611,Extraordinary One Bedroom Apartment,28316637,Lisa,Brooklyn,Crown Heights,40.66514,-73.95688,Entire home/apt,185,3,56,2019-06-26,1.25,1,333 +13926549,Beautiful 1 Bedroom 2 blocks from Central Park,82719112,Adam,Manhattan,Upper West Side,40.78296,-73.97743,Entire home/apt,250,1,1,2016-08-14,0.03,1,0 +4263488,Columbus Circle 2br,7651028,Jesse,Manhattan,Hell's Kitchen,40.76842,-73.98589,Entire home/apt,150,1,0,,,1,0 +9107788,Brownstone in Heart of West Village,301887,Andres,Manhattan,West Village,40.73658,-74.00121,Entire home/apt,295,4,2,2016-07-23,0.05,1,0 +12806356,"Elegant/Classy Artist Loft, 2 Priv bdms/CLEAN",8416362,Margaret,Queens,Long Island City,40.74321,-73.95533,Entire home/apt,260,21,17,2018-12-16,0.46,1,42 +1106284,Modern Loft Space on Gramercy Park,2757621,James,Manhattan,Gramercy,40.73708,-73.98455,Entire home/apt,250,4,23,2019-06-30,0.31,1,11 +25492295,"Style, Comfort & Convenience in NYC getaway",8067740,C. Jack,Manhattan,Harlem,40.80462,-73.95622,Entire home/apt,180,2,32,2019-07-01,3.69,1,90 +767967,Studio in Chelsea,3949235,Lior,Manhattan,Chelsea,40.75039,-74.00287,Entire home/apt,105,7,2,2019-03-19,0.5,1,0 +35618798,Private room!,175276860,Hae Li,Queens,Jamaica Hills,40.71512,-73.79391,Private room,100,3,0,,,1,179 +18876659,Private House Near Bay and Coney Island Park,131530792,Anton,Brooklyn,Sheepshead Bay,40.59019,-73.96123,Entire home/apt,105,2,22,2018-09-30,0.87,1,0 +13098805,"Clean, quiet, cozi Upper East Side studio apt",24494897,Isabella,Manhattan,Upper East Side,40.76704,-73.95721999999999,Entire home/apt,159,6,0,,,1,0 +30940780,Waterfront Room with Manhattan View and Balcony,6983558,Ben,Manhattan,Roosevelt Island,40.76358,-73.94761,Private room,150,2,14,2019-07-07,2.25,1,7 +19877695,1 Room in Spacious Harlem Manhattan 3BR Home,25653961,Tatianna,Manhattan,Harlem,40.81566,-73.93914000000001,Private room,50,3,5,2018-12-30,0.22,1,0 +4472904,Dorm Sz Room. Near 2 & 5 train 180 st Bronx zoo,1532337,Monica,Bronx,Van Nest,40.8423,-73.87055,Private room,25,30,6,2019-05-28,0.17,4,219 +9410527,Spacious modern 3 BR in Park Slope,1401316,Karoline,Brooklyn,South Slope,40.66548,-73.98279000000001,Entire home/apt,200,4,3,2016-01-03,0.07,1,0 +10514203,Giant Landmark Apartment in the Sky,3710888,Lisa,Brooklyn,Park Slope,40.67546,-73.97528,Private room,350,365,0,,,1,364 +19362079,Garden Apartment in Carroll Gardens Townhouse,76854135,Sarah,Brooklyn,Carroll Gardens,40.67811,-74.00102,Entire home/apt,160,2,52,2019-06-20,2.16,1,9 +15704213,Room w/ Private Balcony River View,2134232,Crystal,Manhattan,Tribeca,40.71916,-74.01177,Private room,95,1,22,2017-08-18,0.68,2,0 +6622389,Bright and Spacious in Trendy Area,5025809,Sarah,Brooklyn,Crown Heights,40.6737,-73.95913,Entire home/apt,100,1,1,2015-07-06,0.02,1,0 +32126612,"Super Sunny, Massive East Village Getaway",238779678,Dustin,Manhattan,East Village,40.72689,-73.98906,Private room,69,30,0,,,9,310 +12403816,Cozy and privat studio near Times Sq,67073298,K.Arina,Manhattan,Hell's Kitchen,40.76058,-73.99603,Entire home/apt,140,7,131,2019-06-28,3.37,1,111 +9899132,Spacious Private 1-Bedroom Apartment,9995094,Jim,Queens,Long Island City,40.74691,-73.95348,Entire home/apt,200,3,93,2019-07-03,2.17,1,86 +16158314,Cozy Apartment in Williamsburg,20195183,Yossi,Brooklyn,Williamsburg,40.717490000000005,-73.95246,Entire home/apt,200,2,9,2019-04-23,0.29,1,0 +28082095,The BEST of SoBro,135412962,Charlie,Bronx,Mott Haven,40.80769,-73.91617,Entire home/apt,130,1,38,2019-06-30,3.68,1,349 +4782569,Private 1st level studio near NYC,5071632,Rose,Brooklyn,Borough Park,40.61959,-73.97856999999999,Entire home/apt,81,3,47,2019-03-28,1.06,1,287 +29609716,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6363,-73.95168000000001,Private room,98,3,0,,,5,0 +32468788,Huge 1-bedroom available from April through July,33783958,Paul,Brooklyn,Prospect Heights,40.68106,-73.97304,Entire home/apt,150,4,1,2019-04-27,0.41,1,63 +10544439,Room in Soho Apartment,54375099,Rob,Manhattan,SoHo,40.72566,-74.00275,Private room,75,1,1,2016-03-13,0.02,1,0 +28780515,2 bedrooms available• private garden • 2/5 train,5166260,Jenni & Eric,Brooklyn,East Flatbush,40.65241,-73.95088,Private room,80,2,51,2019-06-24,5.5,1,34 +33364906,sofa bed room with outdoor event space,250928371,Kenisha,Brooklyn,Bedford-Stuyvesant,40.69644,-73.94113,Private room,100,1,0,,,1,359 +71366,Beautiful One Bed West Village - 4 Month Special,364955,Ruperto,Manhattan,West Village,40.72966,-74.00243,Entire home/apt,200,30,39,2019-06-25,0.44,1,251 +14582793,Nice and comfortable 2/B Apartment,1094833,Meng,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92671999999999,Entire home/apt,110,2,0,,,1,0 +27387286,"Modern 1 bedroom with office, 2 minutes to R Train",84683441,Brian,Brooklyn,Sunset Park,40.65945,-73.99383,Entire home/apt,100,2,12,2019-07-01,1.08,1,2 +16855055,"Spacious, bright room in luxury building",283944,Tim,Brooklyn,Williamsburg,40.70669,-73.94648000000001,Private room,85,1,16,2019-05-03,0.55,1,7 +19332658,Big & Sunny Brooklyn Room | TV/AC/Private Bath,3734323,Colin,Brooklyn,Bushwick,40.6883,-73.91383,Private room,65,5,5,2017-09-25,0.2,3,0 +21766776,Spacious Renovated Duplex in Central Harlem,4379024,Claire,Manhattan,Harlem,40.80486,-73.94889,Entire home/apt,225,3,2,2018-08-09,0.13,1,1 +2349737,NYC Apt - Close to Metro & Mnhtn,11722972,Karen,Queens,Rego Park,40.73243,-73.86773000000001,Entire home/apt,275,30,9,2017-08-03,0.14,1,342 +2255005,Quiet Gramercy Apartment,7748022,Jeff,Manhattan,Kips Bay,40.73876,-73.98108,Entire home/apt,100,1,5,2016-03-29,0.12,1,0 +9162161,Huge new modern chic reno 2 bed TSQ,914838,Lior,Manhattan,Hell's Kitchen,40.76321,-73.99297,Entire home/apt,70,20,2,2018-05-18,0.06,7,341 +28670432,X 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.64036,-74.00822,Private room,26,1,13,2019-04-12,1.36,5,141 +16298489,Sunny Room,47675184,Antonio,Brooklyn,Bedford-Stuyvesant,40.69201,-73.9475,Private room,35,1,7,2017-01-12,0.22,1,0 +6924363,Private bedroom in NYC,12072392,Valerie,Manhattan,Harlem,40.80286,-73.94997,Private room,120,1,0,,,1,0 +34808422,Vibrant Spacious Artist Friendly Apt in Brooklyn!,7952814,Imani,Brooklyn,Bedford-Stuyvesant,40.69064,-73.95664000000001,Entire home/apt,100,1,3,2019-06-23,2.65,1,43 +29674137,SOUTH RIVER VIEWS/DOORMAN-E 52nd ST,2856748,Ruchi,Manhattan,Midtown,40.75565,-73.9634,Entire home/apt,330,30,0,,,49,365 +7454585,Private Room in Shared Apartment,8670155,Jason,Manhattan,Kips Bay,40.74085,-73.98153,Private room,69,1,1,2015-09-02,0.02,1,0 +4823959,Private room for 2 in cool BK apt,24633966,Phil,Brooklyn,Kensington,40.64469,-73.97086,Private room,50,14,0,,,1,0 +2569808,"Williamsburg, Brooklyn Apartment",10302140,Zandy,Brooklyn,Williamsburg,40.71075,-73.95676,Entire home/apt,85,10,40,2019-06-26,0.64,1,324 +32672719,"Newest,sunny,room with separate entrance & balcony",245564705,Sergii,Brooklyn,Brighton Beach,40.57921,-73.96419,Private room,85,1,18,2019-06-20,4.43,1,222 +7003788,Luxury Apt 10mins Manhattan,21773199,Joo,Queens,Long Island City,40.74406,-73.94504,Entire home/apt,149,4,4,2015-10-17,0.09,1,0 +14817571,Private room in astoria for a month!,90043913,Yudum,Queens,Astoria,40.77013,-73.92092,Private room,60,2,2,2019-06-10,1.22,2,34 +33530151,"West Village Town House +With Private Backyard",23532686,Donald,Manhattan,West Village,40.73103,-74.00778000000001,Entire home/apt,350,3,0,,,1,16 +26735765,Bright room in beautiful Park Slope apartment,15500498,Tiffany,Brooklyn,Sunset Park,40.65828,-73.98983,Private room,55,2,7,2018-11-04,0.58,1,0 +33738412,Instagram Dream Townhouse in Times Sq.,254320440,Laura + John,Manhattan,Hell's Kitchen,40.75823,-73.99065999999999,Entire home/apt,300,3,8,2019-06-19,3.33,1,54 +892463,Ideal Location + Shower In Kitchen!,1758019,Wil,Manhattan,West Village,40.73084,-74.00431,Entire home/apt,150,3,9,2015-03-30,0.12,1,0 +11827175,Cozy one bedroom City College,3716130,Nina,Manhattan,Harlem,40.82325,-73.9478,Entire home/apt,100,1,7,2017-01-01,0.18,1,0 +9725508,"Super Quiet, Your Oasis",16437254,Benjamin,Brooklyn,Boerum Hill,40.68788,-73.98550999999999,Entire home/apt,123,30,10,2019-05-10,0.27,21,246 +14152806,"Large & unique, über-modern studio",31301220,Helen,Brooklyn,Williamsburg,40.71192,-73.9628,Entire home/apt,249,9,19,2017-10-04,0.66,1,0 +8173563,Cosy double bedroom in Brooklyn #1,27990825,Sophie,Brooklyn,Bushwick,40.70128,-73.92666,Private room,45,2,7,2016-01-02,0.15,2,0 +6619187,Stylish NYC Art Loft,34643568,Dave,Manhattan,East Harlem,40.79229,-73.93954000000001,Private room,95,3,24,2019-07-02,0.49,6,334 +34975527,3bdrm 1fl home w/parking!Close to ManhattanAirport,261028352,Young,Queens,Woodside,40.74305,-73.9007,Entire home/apt,169,2,0,,,2,91 +30232726,Private Room 15 minutes away to Central Park,154843406,Eugene,Manhattan,Harlem,40.83001,-73.94925,Private room,69,3,11,2019-06-25,1.45,2,167 +34475000,Quiet & Peaceful Duplex Garden Apartment,220847379,Lorraine,Brooklyn,Crown Heights,40.67898,-73.95725,Entire home/apt,150,3,3,2019-07-01,2.43,1,345 +20775370,"Comfy, cozy, private NYC Studio for One!",2650097,Jennifer,Brooklyn,Sunset Park,40.66273,-73.99384,Entire home/apt,58,4,10,2018-07-31,0.45,1,0 +33365859,Less is More - in West Chelsea,1842737,L,Manhattan,Chelsea,40.74477,-74.00622,Entire home/apt,185,2,5,2019-06-20,1.69,1,137 +10414065,Large Private Minimalist Loft Room,525663,Steven,Manhattan,Chinatown,40.71489,-73.991,Private room,100,1,0,,,1,0 +4497294,"Clean, quiet, safe 25Min Dwntn NYC",22831759,Ruth,Brooklyn,Flatbush,40.64617,-73.97018,Private room,80,2,11,2015-10-11,0.19,1,0 +1023529,Convenient and private,5634395,Sarah,Manhattan,Harlem,40.82153,-73.95512,Private room,52,3,163,2019-06-05,2.17,2,0 +12941306,Penthouse studio 25min to Manhattan,14035480,Joseph,Brooklyn,Crown Heights,40.67493,-73.96195,Entire home/apt,160,3,0,,,1,0 +8925072,Big Bright Room in Bushwick NEXT to L and M Train,4077292,Unue,Brooklyn,Bushwick,40.69744,-73.90773,Private room,70,4,57,2019-06-23,1.44,2,333 +7174067,Quiet 1 bedroom near Fort Greene Park,25912623,Allison,Brooklyn,Fort Greene,40.68726,-73.97616,Entire home/apt,129,1,9,2019-06-15,0.41,1,157 +742795,Spacious Heart of Ft. Greene Studio,3889383,Elizabeth,Brooklyn,Fort Greene,40.68736,-73.97496,Entire home/apt,100,1,273,2019-06-20,3.35,1,45 +2273733,Heart of the West Village!,8730513,Corey,Manhattan,Greenwich Village,40.73357,-73.99767,Private room,175,3,1,2018-05-18,0.07,1,0 +21139788,Sunny room in a spacious Williamsburg apt,17344471,Chris,Brooklyn,Williamsburg,40.71655,-73.94162,Private room,85,1,28,2018-08-28,1.35,2,0 +15232776,2 Bedroom in the heart of Williamsburg,12334451,Nina,Brooklyn,Williamsburg,40.71958,-73.96123,Entire home/apt,350,2,19,2019-06-30,0.58,1,179 +3103596,BIG Private Room in NYC APT.,15778597,Ayo,Manhattan,Harlem,40.82243,-73.94785999999999,Private room,50,2,2,2016-01-03,0.04,1,321 +21967562,Old World Charm in the Heart of Brooklyn R1,160300400,Tina,Brooklyn,Bay Ridge,40.63014,-74.03126,Private room,79,4,27,2019-06-27,1.44,2,176 +13231961,Cozy Brooklyn Nest,62805890,Millie,Brooklyn,Prospect-Lefferts Gardens,40.6557,-73.95470999999999,Entire home/apt,99,3,15,2019-05-22,0.43,1,167 +36380964,Cozy bedroom in East Village apt!,271590063,Mariel,Manhattan,Stuyvesant Town,40.7338,-73.97972,Private room,70,1,0,,,1,270 +35720329,Amazing Location in Williamsburg with 4 Bedrooms,222287033,Francis,Brooklyn,Williamsburg,40.71151,-73.96515,Entire home/apt,350,3,2,2019-06-20,2.0,5,347 +14843553,Beautiful Alcove Studio in West Midtown,493093,Eyal,Manhattan,Chelsea,40.75122,-73.99658000000001,Entire home/apt,215,3,88,2019-07-01,2.59,1,200 +22174482,Paradise in New York,161983650,Edmarine,Queens,Bayside,40.75236,-73.75519,Private room,41,2,2,2018-01-31,0.11,1,0 +8643939,Private Bedroom in Upper East Side,32970856,Jason,Manhattan,Upper East Side,40.78406,-73.95294,Private room,94,14,1,2015-11-25,0.02,1,0 +19906070,Lovely 1 bedroom Manhattan flat in Spanish Harlem,140964310,Shiv,Manhattan,East Harlem,40.79405,-73.94242,Private room,150,7,0,,,1,0 +623747,Great deal! Manhattan 1-bedroom 1 month sublet,3050955,Laura And Bernard,Manhattan,Kips Bay,40.74285,-73.97986,Entire home/apt,50,30,8,2018-08-21,0.11,1,91 +2924528,Spacious room in the heart of Manhattan (Downtown),14932802,Winona,Manhattan,Chinatown,40.71782,-73.99422,Private room,87,4,9,2018-11-04,0.63,1,89 +11850900,"STYLISH SPACIOUS WILLIAMSBURG LOFT APT, SLEEPS 4.",63157598,Luca,Brooklyn,Williamsburg,40.70807,-73.94006999999999,Entire home/apt,175,4,6,2019-04-26,0.16,1,157 +28550680,Bright Room w own Bathroom & Views. Central Park.,7720459,Angie,Manhattan,Harlem,40.804590000000005,-73.9558,Private room,150,5,33,2019-06-26,3.69,1,58 +11529406,"Cozy 1 Bedroom in Bay Ridge, NYC",14406362,Melissa,Brooklyn,Bay Ridge,40.62637,-74.02989000000001,Entire home/apt,100,4,2,2017-10-23,0.09,1,0 +30883546,Amazing Roommate Share in Prime NY Near Transit!,230192510,Zach,Brooklyn,Fort Greene,40.69738,-73.97395999999999,Private room,48,30,1,2019-06-14,1.0,25,59 +12366762,Bergen Beach 3 or 4 Bedrooms 2 bath,66810906,Carmen,Brooklyn,Bergen Beach,40.6235,-73.91056,Entire home/apt,235,4,32,2019-06-11,0.88,1,322 +4163781,Sun Soaked & Cozy PR Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.71007,-73.95653,Private room,99,3,19,2019-07-06,0.33,3,354 +19963641,Bright kid-friendly apartment near the Navy Yard.,2073124,Chris,Brooklyn,Fort Greene,40.69653,-73.97439,Entire home/apt,136,2,2,2017-08-28,0.09,1,0 +21441613,Exquisitely clean and beautiful UES apt home.,59405516,Anthony,Manhattan,Upper East Side,40.77183,-73.95534,Entire home/apt,233,6,15,2019-06-23,0.72,2,154 +14176286,Unique Cozy Designer Loft 1 stop to Manhattan,4043259,Tiffany,Brooklyn,Greenpoint,40.72521,-73.95575,Private room,67,2,103,2019-07-07,2.94,2,126 +17717593,Plymouth Loft,7854459,Christina,Brooklyn,DUMBO,40.70208,-73.98568,Entire home/apt,225,2,1,2018-04-14,0.07,1,88 +28911775,LUXURY PRIVATE BEDROOM & Bath Mins from JFK,217621677,Joseph,Queens,St. Albans,40.687540000000006,-73.77488000000001,Private room,50,1,16,2019-07-07,1.78,4,137 +15998231,Cozy Room in Brownstone,20327528,Miller,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95597,Private room,35,3,0,,,1,0 +28205535,Cozy private room for females in the heart of BR,85495151,Zineb,Brooklyn,Fort Hamilton,40.62274,-74.03277,Private room,60,3,6,2018-10-29,0.61,1,38 +11800108,"Clean, comfortable and convenient UES Studio",28551360,Kate,Manhattan,Upper East Side,40.78226,-73.95331999999999,Entire home/apt,120,1,11,2016-11-13,0.3,1,0 +27623360,"Studio at Upper East Side Manhattan, New York",95642648,Тest,Manhattan,Upper East Side,40.77713,-73.95309,Entire home/apt,95,4,3,2018-08-21,0.27,2,0 +28484028,9.Clean Bed just 20 mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73892,-73.92397,Shared room,39,2,18,2019-06-23,1.96,6,344 +65813,"Suite Sugar Hill, Harlem, Private Rm in Hosted Apt",321756,Eric,Manhattan,Harlem,40.82888,-73.94306999999999,Private room,75,3,20,2019-01-02,0.26,1,364 +30031,NYC artists’ loft with roof deck,129352,Sol,Brooklyn,Greenpoint,40.73494,-73.9503,Private room,50,3,193,2019-05-20,1.86,1,0 +1683968,Landmark Loft in Williamsburg Brooklyn 1 month min,274702,Sabina Giovanna,Brooklyn,Williamsburg,40.71108,-73.96318000000001,Entire home/apt,224,31,14,2018-08-05,0.2,1,219 +32894678,Brooklyn Awesomely Huge and Hip Apartment,9864136,Anthony,Brooklyn,Bushwick,40.686240000000005,-73.9144,Entire home/apt,80,30,2,2019-05-31,0.5,26,317 +3772256,Modern Studio at The Manhattan Club,15765273,Schatzie,Manhattan,Midtown,40.76514,-73.98058,Private room,350,1,9,2018-08-25,0.2,1,0 +12504542,Charming Brooklyn Brownstone!,3982538,Joel,Brooklyn,Prospect Heights,40.67908,-73.97333,Private room,75,1,0,,,1,0 +18005835,Cozy 1 bedroom in Heart of East Village,32806463,Eugene,Manhattan,East Village,40.72886,-73.9883,Private room,150,1,0,,,1,0 +13280923,A room for mom or woman on adventure,74879324,Sophia,Manhattan,Harlem,40.80515,-73.95595,Private room,79,3,50,2018-10-14,1.33,1,36 +16568275,"BEST DEAL, PERFECT LOCATION in Downtown, Manhattan",109142193,Liang,Manhattan,Greenwich Village,40.73083,-73.9943,Private room,69,4,0,,,1,0 +17752493,Private Room in Large Two-floor Apt w/ Backyard,20926711,Ashek,Manhattan,Chelsea,40.74864,-73.99398000000001,Private room,89,2,2,2017-04-02,0.07,1,113 +1445250,"1Bedroom, Seconds from L train",5109475,Liam,Brooklyn,Bushwick,40.704440000000005,-73.92005,Private room,60,2,64,2019-06-01,0.89,2,87 +30984803,Bright Spacious 2Bedrooms private Apt in Bay Ridge,35253342,Tee,Brooklyn,Bay Ridge,40.63284,-74.02271999999999,Entire home/apt,120,9,1,2019-05-20,0.6,3,3 +26663094,"Great room in Bushwick, Brooklyn.",107579819,Tal,Brooklyn,Bushwick,40.69417,-73.92589,Private room,55,5,6,2019-05-01,0.51,2,0 +23528984,"L’AFRIQUE, C’EST CHIC! - 2 Bedroom Apartment",37541532,Daapo,Brooklyn,Bedford-Stuyvesant,40.67716,-73.91418,Entire home/apt,110,1,59,2019-06-20,3.7,1,248 +29351570,DESIGNER ARTIST 2 BEDROOM APARTMENT . E.V.,1810885,Alex,Manhattan,East Village,40.72628,-73.97981,Entire home/apt,199,4,4,2019-05-27,0.77,3,204 +35197281,BEAUTIFUL APARTMENT IN THE CENTER OF WEST VILLAGE,131083549,Brian,Manhattan,Greenwich Village,40.73359,-73.99772,Entire home/apt,250,3,2,2019-06-23,2.0,1,32 +10252499,Great Hells Kitchen sofa,2782391,Jeff,Manhattan,Hell's Kitchen,40.76646,-73.98704000000001,Shared room,50,2,2,2016-05-11,0.05,2,0 +15500460,My tiny Chateau,72596124,Vincent,Queens,Jackson Heights,40.74912,-73.88667,Entire home/apt,80,1,202,2019-06-24,6.13,1,143 +36205494,bensonhurst area,60456157,Muhammad Tahir Khan,Brooklyn,Gravesend,40.59671,-73.98741,Private room,85,7,0,,,1,365 +22051488,"法拉盛高档,奢华大套房(带按摩浴缸和淋浴的独立卫生间)",135530716,Angela,Queens,Flushing,40.76355,-73.79460999999999,Private room,120,2,1,2017-12-26,0.05,4,6 +19248045,Beautiful bedroom in Historic Forest Hills Gardens,121732047,Aaron,Queens,Forest Hills,40.710640000000005,-73.84614,Private room,40,14,0,,,1,19 +21138538,Lavish 2 BR minutes from Central Park!,149977050,Ivan,Manhattan,Upper West Side,40.78631,-73.97752,Entire home/apt,199,2,27,2019-06-18,1.34,1,335 +13744765,Large family loft in the best Chelsea location,42782892,Masha,Manhattan,Chelsea,40.74107,-73.99595,Entire home/apt,250,5,4,2019-01-02,0.11,1,0 +29209396,Room with King sized bed in the heart of Bushwick,200182757,Rosie,Brooklyn,Bushwick,40.70696,-73.9199,Private room,50,2,31,2019-06-20,3.86,2,273 +3224913,Private Nook in Bushwick Improved Response Rate,16245414,Shae,Brooklyn,Bushwick,40.69436,-73.9253,Entire home/apt,55,1,115,2019-06-23,1.91,4,64 +31672538,Home away from home,237482248,Jacob,Queens,Sunnyside,40.74372,-73.92416,Entire home/apt,200,1,1,2019-06-21,1.0,1,179 +13811866,Cozy 1BR in Murray Hill,79086338,Enrique,Manhattan,Kips Bay,40.74077,-73.98245,Private room,70,1,1,2016-07-25,0.03,1,0 +15981196,Bedroom w/ living room in heart of Crown Heights,100806,Madeline,Brooklyn,Crown Heights,40.67302,-73.94815,Private room,65,3,10,2019-05-26,0.93,1,12 +16449480,Entire 1BR Apt in Manhattanville,43490434,Corey,Manhattan,Harlem,40.82003,-73.95194000000001,Entire home/apt,100,2,68,2019-06-11,2.33,1,9 +27484611,Apartment in Tribeca with huge private terrace,64971854,Ana Sophia,Manhattan,Tribeca,40.71793,-74.00594,Entire home/apt,160,1,8,2019-04-21,0.73,1,0 +32802904,COZY COLORFUL CITY PAD BY ALL TRANSPORTATION LINES,207000645,Tk,Manhattan,East Village,40.724,-73.98933000000001,Entire home/apt,190,1,1,2019-05-22,0.63,1,365 +1697047,Charming Private Room with a View,4184612,Lynne,Brooklyn,Williamsburg,40.71251,-73.947,Private room,115,3,146,2019-06-09,2.08,1,277 +27985235,Large Lux Apt with Amazing NYC Views - Location!,128447,Raul,Manhattan,Kips Bay,40.74371,-73.97946,Entire home/apt,200,3,3,2019-01-01,0.28,2,13 +20304656,Big room in West Harlem/Morningside,23741614,Kristin,Manhattan,Harlem,40.80416,-73.95557,Private room,60,7,0,,,1,0 +2563440,Big & Cozy Private Room,8785876,Alessandro,Manhattan,Harlem,40.8235,-73.95144,Private room,68,1,86,2019-06-10,1.36,1,64 +29674710,Great New York-korea town1~2,179336958,Ruby,Manhattan,Midtown,40.74595,-73.98509,Private room,65,3,3,2019-06-03,1.53,6,359 +31076667,"Luxury Astoria 1BD apt, 15 min from Manhattan",19630705,Eugene,Queens,Long Island City,40.75576,-73.93070999999999,Entire home/apt,70,3,2,2019-03-18,0.32,1,4 +35705568,Trendy Queen Bed room w/private Bath in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69624,-73.92554,Private room,59,1,4,2019-07-06,4.0,6,160 +800051,Bright & Beautiful 3bdr apt in Prime Williamsburg,195932,Zoe,Brooklyn,Williamsburg,40.7176,-73.95234,Entire home/apt,200,10,6,2018-04-30,0.09,1,174 +7733241,Amazing room in Williamsburg House,16683784,Charles,Brooklyn,Williamsburg,40.71375,-73.94341999999999,Private room,72,2,5,2017-06-30,0.11,1,0 +22972328,"The best safest area, 15mins to midtown Manhattan",110966607,Rika,Queens,Astoria,40.76097,-73.92191,Private room,47,3,24,2018-11-05,1.44,1,0 +20622825,Sunny loft,9704072,Staccey,Brooklyn,Bushwick,40.70763,-73.92223,Private room,90,1,0,,,1,0 +35090587,Girls only,264327510,Yaren,Queens,Sunnyside,40.74351,-73.92281,Private room,50,3,4,2019-06-28,4.0,1,0 +28739873,Arverne Bayside,195887266,Antonia,Queens,Arverne,40.59843,-73.79844,Entire home/apt,100,1,12,2019-05-30,2.29,1,65 +36237913,Spacious Soho Loft,49346143,Nicole,Manhattan,Nolita,40.72309,-73.99412,Entire home/apt,270,3,0,,,1,152 +3358937,ADORABLE 2BR in Chelsea!!,16947051,Cayla,Manhattan,Chelsea,40.74722,-74.00466,Entire home/apt,300,3,11,2016-04-17,0.19,1,0 +28215216,Queens House bedroom 1,213111794,Desmond,Queens,Cambria Heights,40.6844,-73.74601,Private room,250,1,2,2018-10-08,0.2,4,365 +13883303,Sunny Bushwick room on Jefferson st,1932969,Chris,Brooklyn,Bushwick,40.70296,-73.92919,Private room,40,30,0,,,1,0 +33346762,2BR Apartment in Brownstone Brooklyn!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.682,-73.95681,Entire home/apt,140,2,4,2019-06-14,1.58,3,4 +2045727,Cozy Room in Family Home..BKLYN!!!,320284,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93346,Private room,52,2,203,2019-05-26,3.13,1,323 +8234510,"Beautiful Astoria Apt 1BR, 2bath",7853503,Lindsay,Queens,Astoria,40.7713,-73.92628,Entire home/apt,140,1,2,2016-01-02,0.05,1,0 +18486698,Conveniently located private room in Brooklyn,81712146,Emanuele,Brooklyn,Bushwick,40.70113,-73.91385,Private room,50,1,9,2017-07-03,0.34,1,0 +17590729,Private BR in South Harlem close to 2/3,35529867,Laura And Robert,Manhattan,Harlem,40.80339,-73.95034,Private room,99,3,9,2018-02-24,0.42,1,0 +32802231,"Perfect, charming apartment on Upper East Side",29602688,Lindsey,Manhattan,East Harlem,40.7889,-73.94925,Entire home/apt,130,2,6,2019-06-24,1.82,1,2 +33293218,1860’s Vanderbilt Mansion - 19th century details,141124307,Stratis,Brooklyn,Bedford-Stuyvesant,40.68579,-73.9358,Entire home/apt,249,3,12,2019-06-29,4.19,1,38 +17231011,Clean 1br w/Parking Incl. also 10min near JFK/LGA,116056294,Kabak,Queens,Rego Park,40.73048,-73.85331,Private room,50,1,34,2019-07-06,1.17,1,347 +4889948,Cozy Quiet Room in Williamsburgs,17928071,Mabel,Brooklyn,Williamsburg,40.71009,-73.9575,Private room,85,3,23,2019-04-01,0.42,2,280 +26925980,Cozy Williamsburg room,38593087,Russell,Brooklyn,Williamsburg,40.70685,-73.96663000000001,Private room,82,1,25,2019-07-05,2.17,2,64 +30739988,Quite Spacious studio easy access to ALL,103922915,Shu,Manhattan,Midtown,40.75816,-73.97004,Entire home/apt,149,2,3,2019-01-01,0.46,1,0 +20026998,1 Bed garden apt in Classic Brownstone - sleeps4,1748382,Kenna,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93299,Entire home/apt,200,2,39,2019-06-30,1.69,1,253 +21805468,ELEGANT BROOKLYN GARDEN STUDIO,158925455,Marlene,Brooklyn,East Flatbush,40.63794,-73.93125,Entire home/apt,60,2,46,2019-07-02,2.34,1,300 +15101577,"Beautiful New Studio, perfect for couples!",278624,Joshua,Brooklyn,Fort Greene,40.69415,-73.97131,Entire home/apt,100,3,26,2018-05-04,0.76,1,0 +32864955,Cozy Apartment near NYC Central Park & Riverside,235905088,Dominique,Manhattan,Upper West Side,40.8022,-73.9666,Entire home/apt,325,7,8,2019-06-22,2.53,1,176 +22085892,THANKSGIVING IN NYC,7241732,Jason,Queens,Woodside,40.74602,-73.90604,Private room,55,1,0,,,1,0 +15818253,Private room in Red Hook Artist House,9549442,Lynn,Brooklyn,Red Hook,40.67749,-74.00761,Private room,62,5,6,2018-11-01,0.19,1,0 +356230,It's so easy to get to EVERYthing!,1251762,Molly,Brooklyn,Crown Heights,40.66898,-73.9571,Entire home/apt,185,3,34,2014-06-09,0.39,1,0 +30105022,SUNLIT PRIVATE ROOM,126449349,John,Manhattan,Lower East Side,40.71436,-73.98855999999999,Private room,80,1,6,2019-06-19,0.77,2,151 +35879684,McCarren Park 3 Bed/2 Bath with private terrace,179237742,R David,Brooklyn,Williamsburg,40.71698,-73.95003,Entire home/apt,299,2,2,2019-06-30,2.0,1,298 +26232008,Large Private Room btwn Central/Riverside Parks,28071093,Kathleen,Manhattan,Upper West Side,40.79973,-73.9656,Private room,60,2,5,2018-09-25,0.45,1,0 +27375467,Fashion Of The City: Apartment in TIMES SQUARE NYC,9738823,Sam,Manhattan,Hell's Kitchen,40.76335,-73.98737,Private room,150,2,41,2019-06-16,4.17,1,67 +29905327,Coney İsland beach,224867226,İlyas,Brooklyn,Coney Island,40.577290000000005,-73.98728,Entire home/apt,101,5,2,2019-06-19,0.26,1,323 +5065276,"Sunny, comfy room in quiet Park Slope apmt",25963759,Andrew,Brooklyn,South Slope,40.66135,-73.98725999999999,Private room,70,1,3,2015-10-05,0.06,1,363 +25588085,ELEGANT 2 BEDROOM private apt in BROOKLYN,158399244,Ted,Brooklyn,Crown Heights,40.6708,-73.94011,Entire home/apt,159,1,52,2019-06-21,4.07,4,110 +9525925,Brooklyn Best - Sunny&Spacious Apt,8702561,Kat,Brooklyn,Fort Greene,40.69027,-73.97847,Entire home/apt,140,90,78,2019-05-16,1.83,1,126 +12917834,1BR Hell's Kitchen w balcony & view,3988031,Lee,Manhattan,Hell's Kitchen,40.76172,-73.99706,Entire home/apt,200,1,6,2016-09-27,0.16,1,0 +7419230,East Village Penthouse With Rooftop,22805576,Will,Manhattan,East Village,40.72163,-73.97888,Private room,100,1,0,,,1,0 +35790417,Cozy 1 Bedroom Apartment next to Manhattan!!!,258089128,Evelina,Queens,Astoria,40.76019,-73.92489,Entire home/apt,135,3,0,,,1,109 +25193752,Cozy private living in Queens,14323652,Brandon,Queens,Elmhurst,40.73873,-73.88147,Entire home/apt,85,2,36,2019-03-31,2.65,1,130 +33739054,Family Friendly East Village Brownstone 2-Floors,52826,Tom,Manhattan,East Village,40.72235,-73.97771999999999,Entire home/apt,165,30,0,,,2,56 +2028625,"SB 2014/Winter in NYC, PH, 860 sf!!",10419406,Scott,Manhattan,Harlem,40.82486,-73.93993,Entire home/apt,300,3,0,,,1,0 +9861196,Luxury 1-Bedroom Apartment in Midtown Gym+Pool,30283594,Kara,Manhattan,Theater District,40.76105,-73.98638000000001,Entire home/apt,239,30,1,2018-04-28,0.07,121,363 +32519119,Sunny Private BR in Ridgewood Woodbine 1L-3,244171850,Jocelyn,Queens,Ridgewood,40.70075,-73.90741,Private room,47,45,0,,,10,330 +29636554,Cozy room in hip Lower East Side neighborhood,5855485,Sarah,Manhattan,Lower East Side,40.71924,-73.98507,Private room,83,2,3,2019-06-30,3.0,1,6 +1408914,"Modern, Art Deco Chelsea Studio",2594389,Arsen,Manhattan,Chelsea,40.74206,-73.99499,Entire home/apt,200,3,0,,,1,345 +17255913,Newly Renovated / No cleaning Fee / Hell's Kitchen,4454849,Chase,Manhattan,Hell's Kitchen,40.76407,-73.99203,Entire home/apt,131,2,0,,,1,0 +17694203,Sun drenched Park Slope getaway..,50755667,Kyla,Brooklyn,South Slope,40.66865,-73.9865,Entire home/apt,85,3,6,2019-02-20,0.23,3,98 +24204338,Private Cozy Room on Manhattan,63929490,Lidziya,Manhattan,East Harlem,40.78719,-73.95201,Private room,100,7,18,2019-06-19,1.25,1,45 +19737173,"NYC Room Sublet, Private Space, Air conditioner",139170973,Wonkyung,Manhattan,Harlem,40.81949,-73.95521,Private room,45,7,0,,,1,0 +6597854,Charming Spacious Harlem Share,5280006,Jennifer,Manhattan,Harlem,40.82606,-73.95075,Private room,58,3,27,2016-12-10,0.54,1,0 +25335433,kiwi,191343281,Mark,Manhattan,Upper West Side,40.77255,-73.99056999999999,Shared room,220,1,1,2018-05-26,0.07,1,89 +19912256,"Luxury Williamsburg duplex, private roof terrace",1927824,Helen,Brooklyn,Williamsburg,40.71466,-73.94448,Entire home/apt,250,4,7,2019-05-30,0.33,1,118 +8920794,Charming Lower-East Side apartment,15995278,Camille,Manhattan,Lower East Side,40.72189,-73.99186999999999,Entire home/apt,139,3,6,2016-10-27,0.13,1,0 +5252343,Close to LGA/JFK & 15min to Midtown,419629,Nicky,Queens,Elmhurst,40.74125,-73.89035,Private room,47,2,2,2015-02-23,0.04,1,17 +36210915,Beautiful apartment in old-style Brooklyn,60983246,Carlos,Brooklyn,Borough Park,40.630320000000005,-73.9936,Entire home/apt,103,6,0,,,1,18 +4121363,Large Garden Alcove Studio Apartment in Manhattan,21380762,Rachel,Manhattan,East Harlem,40.80738,-73.93706999999999,Entire home/apt,75,30,6,2019-05-22,0.12,1,203 +30466608,Manhattan studio near Central Park & Times Square.,38407262,Kay,Manhattan,Upper West Side,40.80017,-73.96882,Entire home/apt,115,3,9,2019-06-22,1.34,1,315 +27467399,Quality accommodation in a prime location!,100704594,Kate,Manhattan,Chelsea,40.74752,-73.9976,Private room,225,3,21,2019-05-21,2.03,1,8 +1869202,Cozy & Sunny central Manhattan APT!,5008954,Mich,Manhattan,Midtown,40.7582,-73.96692,Entire home/apt,100,2,19,2016-02-20,0.28,1,0 +618836,1 BR Apartment near Prospect Park!,3065891,Sarah,Brooklyn,Crown Heights,40.66959,-73.95718000000001,Entire home/apt,115,3,0,,,1,0 +13183047,2 bedroom Kid Friendly Cobble Hill,40306612,Christina,Brooklyn,Carroll Gardens,40.685,-73.99369,Entire home/apt,250,3,12,2019-03-14,0.32,1,0 +26641779,Clean and modern space in Clinton Hills,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95884000000001,Entire home/apt,148,2,38,2019-07-01,3.28,2,102 +6693612,Beautiful One Bedroom Apartment (Midtown) NYC,4316973,Alberto,Manhattan,Hell's Kitchen,40.75335,-73.99525,Entire home/apt,180,3,2,2019-05-19,0.76,1,2 +3569374,"Lovely 1BR Park Slope, near trains!",1673750,Valerie,Brooklyn,Park Slope,40.66617,-73.97593,Entire home/apt,230,2,7,2016-01-02,0.15,1,0 +476570,3RE - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.73009,-73.9827,Entire home/apt,89,30,70,2019-03-09,0.83,6,4 +6198636,Studio steps from park & train!,31877774,Alexandra,Manhattan,Upper West Side,40.77889,-73.98155,Entire home/apt,190,2,1,2015-05-22,0.02,1,0 +424767,"Chic, Spacious Loft + Backyard",2103888,Akari,Manhattan,Midtown,40.74406,-73.98273,Entire home/apt,325,2,197,2019-06-20,2.25,1,207 +29906273,Adorable Chelsea Studio in best neighborhood!,53443367,Kathryn,Manhattan,Chelsea,40.74333,-74.00106,Entire home/apt,175,1,8,2019-06-16,1.22,1,0 +35567269,Private Studio Upper East Side,60117043,Ray,Manhattan,Upper East Side,40.76209,-73.96181,Entire home/apt,125,5,0,,,1,58 +4508885,Upper West Apartment Block Away from Central Park!,301549,Michelle,Manhattan,Upper West Side,40.76885,-73.98254,Entire home/apt,180,14,0,,,1,0 +21861551,Brand-new Luxury apt. Stunning views by Penn st.,2431679,Danish,Manhattan,Chelsea,40.75117,-73.99305,Private room,155,2,7,2018-04-08,0.36,1,0 +29255501,Private Brooklyn Basement Apartment,59627203,Majd,Brooklyn,Windsor Terrace,40.65116,-73.97881,Entire home/apt,125,5,2,2019-05-26,0.27,1,0 +9837588,Bright Brooklyn Apartment,46080859,Ellery,Brooklyn,Bedford-Stuyvesant,40.68307,-73.92894,Entire home/apt,119,5,13,2019-06-19,0.3,1,3 +19153259,BedStuy Fly Flat,36009953,Sharon,Brooklyn,Bedford-Stuyvesant,40.68099,-73.92145,Private room,70,3,13,2018-09-16,0.53,1,48 +16649773,2 ROOMS: Bedroom & Study + Priv. Bath - CP North,110050850,Cecil,Manhattan,Harlem,40.8012,-73.95589,Private room,115,2,27,2019-06-05,0.94,1,363 +959871,Bask in the light! Studio bedroom in Williamsburg,1822729,Derek,Brooklyn,Williamsburg,40.71081,-73.96121,Private room,120,6,15,2019-01-01,0.21,2,9 +14723166,Spacious studio in amazing location,59954257,Sara,Manhattan,Gramercy,40.73711,-73.98573,Entire home/apt,250,5,7,2018-07-05,0.2,1,0 +16374376,Large 2 bed 2 bath modern apt. - Brooklyn Bridge,27275952,Andrew,Brooklyn,Downtown Brooklyn,40.69584,-73.98465999999999,Entire home/apt,285,4,0,,,2,102 +26236138,Spacious private bedroom in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85392,-73.93139000000001,Private room,58,1,20,2019-06-20,2.01,5,315 +34126627,Woodside condo room close to Midtown / LGA.,137358866,Kazuya,Queens,Woodside,40.74165,-73.90155,Private room,59,30,1,2019-06-15,1.0,103,260 +30129493,"Wall St Condo with Gym, Lounge & a 360° Rooftop",24131677,Eve,Manhattan,Financial District,40.70636,-74.0096,Entire home/apt,240,7,14,2019-06-07,1.98,2,305 +20188787,Charming and Light-filled 1 BR in Crown Heights,83550011,Rubyn,Brooklyn,Crown Heights,40.67015,-73.95662,Entire home/apt,89,2,8,2018-04-23,0.34,1,0 +4678795,sunny & spacious one-bedroom ,24048208,Maura,Brooklyn,Bedford-Stuyvesant,40.6848,-73.95728000000001,Entire home/apt,140,3,0,,,1,0 +13622777,Sunny bedroom in Bedstuy,68760676,Gina,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91507,Private room,44,1,1,2016-08-01,0.03,1,0 +9112776,"Spacious, Comfortable BK Room",47489718,Eric,Brooklyn,Bedford-Stuyvesant,40.68516,-73.9533,Private room,55,2,0,,,1,0 +30273352,Spacious Lovely 1B1B in UP Manhattan 4Min to Train,128293264,Sizhu,Manhattan,Washington Heights,40.83956,-73.94102,Entire home/apt,135,1,13,2019-06-21,2.0,1,0 +4225745,Cute Studio in Trendy Neighborhood,21930475,Whitney,Brooklyn,Clinton Hill,40.68275,-73.96542,Entire home/apt,73,2,7,2018-08-13,0.13,1,0 +30950573,Brooklyn 3 persons shared room close to subway,17706542,Sergey,Brooklyn,Bushwick,40.6919,-73.90626,Shared room,32,30,0,,,6,342 +2298373,Luxury private apartment/Suite/with balcony,10149317,Lana,Queens,Rego Park,40.72988,-73.85773,Entire home/apt,88,3,33,2019-04-20,0.77,5,262 +11529467,"Comfy, Convenient and a Balcony!",60802539,Hannah,Brooklyn,Crown Heights,40.67509,-73.9572,Entire home/apt,133,2,0,,,1,0 +8439030,One Room in Murray Hill / Midtown,44433249,Sarah,Manhattan,Murray Hill,40.7465,-73.97734,Private room,85,5,2,2015-10-10,0.04,1,0 +33617342,Brooklyn Spacious Sunny Apartment,39828340,Pascale,Brooklyn,Crown Heights,40.66431,-73.95083000000001,Private room,200,1,0,,,1,0 +24022943,Large Opulent Studio Apartment Near Prospect Park,20805,Bridget,Brooklyn,Crown Heights,40.66996,-73.956,Entire home/apt,90,4,0,,,1,0 +20332555,Beautiful Apartment near Times Square Central Park,143944704,Ash,Manhattan,Theater District,40.76302,-73.98210999999999,Entire home/apt,239,3,104,2019-06-22,4.53,1,0 +29889800,Large private room overlooking the skyline,16152090,Amna,Manhattan,Roosevelt Island,40.764140000000005,-73.949,Private room,175,4,3,2019-04-27,0.43,2,362 +609559,Queens Quality Convenient Apartment,3647,Rafael,Queens,Elmhurst,40.73587,-73.88279,Entire home/apt,99,3,48,2019-06-23,0.58,2,301 +17267665,"Spacious, Private 1BR with more sleeping space",95341719,Estie,Brooklyn,Crown Heights,40.66977,-73.94341,Entire home/apt,169,2,31,2019-06-26,1.15,3,175 +14851247,Clean bright comfy 1BR east Harlem,51843917,John,Manhattan,East Harlem,40.79853,-73.93772,Entire home/apt,110,29,9,2018-04-02,0.26,1,35 +10449807,Charming Lofty 1bd on Quiet Street,2981910,Daphne,Manhattan,Greenwich Village,40.73466,-73.99539,Entire home/apt,229,1,0,,,1,0 +22072423,3BR ON FINANCIAL DISTT~MINUTES FROM EAST RIVER,2856748,Ruchi,Manhattan,Financial District,40.7043,-74.00923,Entire home/apt,300,30,0,,,49,346 +35603798,Effortlessly Tasteful 1BR in Prime East Village,263049454,Conor & Rose,Manhattan,East Village,40.7294,-73.98664000000001,Entire home/apt,290,1,0,,,1,355 +30713613,"Artsy duplex for 6, close to US Open & Manhattan",227647873,Samanta,Queens,Astoria,40.76167,-73.91346,Entire home/apt,179,2,29,2019-07-07,5.15,3,116 +27758379,"Spacious, Quiet Apt- Heart of West Village",52889401,Teen,Manhattan,West Village,40.73223,-74.00499,Entire home/apt,290,2,9,2019-04-28,0.87,1,41 +35353949,Spacious Two Bedroom-Prime Manhattan Midtown Loc,17689167,Steph,Manhattan,Midtown,40.75124,-73.98451,Entire home/apt,342,3,2,2019-06-23,2.0,1,40 +5729222,Cozy and bright room with a closet,27281731,Sergii,Brooklyn,Flatbush,40.64295,-73.95276,Private room,40,3,20,2019-07-07,0.38,1,131 +30251760,Private bedroom in Manhattan close to subway,29688249,Habibi,Manhattan,Harlem,40.82582,-73.94275999999999,Private room,82,1,6,2019-06-23,1.94,1,180 +6836485,Lovely and quiet garden studio,14261988,Gretchen,Brooklyn,Flatbush,40.6412,-73.95302,Entire home/apt,70,2,150,2019-06-22,3.34,1,222 +33726859,Private bedroom in new and spacious apartment,60127679,Jason,Brooklyn,Bedford-Stuyvesant,40.68553,-73.92569,Private room,65,1,20,2019-06-15,6.59,2,23 +9996793,BEDROOM3 FOR RENT 10min from Manh,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94839,Private room,70,30,1,2018-07-01,0.08,4,249 +15220143,Cozy Clean Room in Manhattan's Upper West Side,1317884,Angela,Manhattan,Upper West Side,40.79512,-73.9733,Private room,100,2,45,2019-05-24,1.36,1,83 +22067764,Williamsburg - great view and elevator into apt,24051464,Martin,Brooklyn,Williamsburg,40.71811,-73.94414,Private room,75,1,1,2017-12-12,0.05,1,0 +21192364,Immaculate studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74877,-73.977,Entire home/apt,150,30,2,2019-05-31,0.21,50,364 +32900798,The Inspired Artist,21967943,Elise,Brooklyn,Bushwick,40.7006,-73.93018000000001,Private room,95,1,6,2019-05-10,1.58,1,0 +27205234,Guest Room With a Cute Backyard!,928165,Meg,Brooklyn,Bushwick,40.6969,-73.9114,Private room,52,2,12,2019-01-04,1.19,1,0 +13192944,"Private, cozy, Bedroom",73857837,Ling,Brooklyn,Dyker Heights,40.63009,-74.01342,Private room,43,1,30,2019-07-07,1.15,1,6 +24348078,Large and bright room 15 min away from Manhattan,176427055,Adam,Queens,Astoria,40.766490000000005,-73.92643000000001,Private room,74,1,102,2019-07-07,6.77,1,348 +14586448,★ Luxury FiDi Studio - Elevator and Gym ★,90270616,Shaun,Manhattan,Financial District,40.70617,-74.01529000000001,Entire home/apt,279,3,5,2016-12-31,0.15,1,0 +28437554,New York roomers,131705586,Freddy,Brooklyn,Fort Greene,40.69379,-73.97111,Private room,67,1,36,2019-06-05,3.59,2,329 +32036850,Charming lower east side room,165863135,Amanda,Manhattan,Lower East Side,40.72026,-73.98787,Private room,80,20,2,2019-04-19,0.48,1,3 +18156961,Sunny Private Room with patio access in the EV!,10121204,Meredith,Manhattan,East Village,40.72269,-73.98428,Private room,50,5,0,,,1,0 +28028868,Private Bedroom B in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.68993,-73.91139,Private room,60,2,32,2019-06-17,3.1,3,78 +14536003,Comfort in Manhattan,40238258,Francesca,Manhattan,Upper East Side,40.77715,-73.94802,Private room,175,4,7,2019-05-23,0.21,1,365 +1209887,East Village Bright & Spacious Artist Loft,2910509,Tamar,Manhattan,East Village,40.724340000000005,-73.97715,Entire home/apt,120,29,10,2019-01-18,0.17,1,3 +35091010,Luxurious cozy private room near LGA (#02),264092618,Ajmol,Queens,East Elmhurst,40.76625,-73.87347,Private room,60,1,12,2019-07-04,8.18,5,87 +25582365,Lovely 1 bedroom in Washington heights!,4463195,Lenny,Manhattan,Washington Heights,40.8522,-73.93456,Entire home/apt,100,1,1,2018-06-03,0.07,1,0 +21618022,Bedroom in charming apartment in Bushwick,129627879,Megan,Brooklyn,Bushwick,40.70253,-73.92362,Private room,44,2,1,2017-11-25,0.05,1,0 +20758861,Duplex w private garden - up to 6 guests,148689791,Katherine,Manhattan,East Village,40.72475,-73.97788,Entire home/apt,260,30,0,,,1,330 +2074653,Cozy East Village Bedroom,1468247,Kris,Manhattan,East Village,40.73033,-73.98742,Private room,100,5,2,2016-10-22,0.06,1,0 +10702865,Sunny and chic NYC apartment,55300400,Katherine,Manhattan,SoHo,40.72523,-74.00126999999999,Entire home/apt,200,1,0,,,1,0 +35789093,Renovated 2 Bedroom next to Manhattan!!!,258094448,Anna,Queens,Astoria,40.75916,-73.92541,Entire home/apt,120,3,0,,,1,105 +637228,"Beautiful, bright room w/priv bath",1363434,Daniel,Brooklyn,Bushwick,40.70074,-73.92333,Private room,80,14,2,2019-06-23,0.11,1,67 +30126274,Cute 1/1 Available for the Holidays in NYC!,216903925,Victoria,Manhattan,Washington Heights,40.8375,-73.94181999999999,Entire home/apt,99,1,2,2019-01-07,0.31,1,0 +27906833,Simple and cozy studio apartment in Williamsburg,66744930,Lana,Brooklyn,Williamsburg,40.71207,-73.95784,Entire home/apt,122,3,18,2019-06-24,1.87,1,61 +10789911,One Bedroom in Astoria,32003714,Christopher,Queens,Ditmars Steinway,40.77567,-73.92201999999999,Private room,90,7,3,2018-08-05,0.09,1,358 +9992903,Williamsburg Large Modern Studio,431884,Morgan,Brooklyn,Williamsburg,40.71532,-73.93951,Entire home/apt,115,4,38,2019-01-02,0.89,1,0 +2786015,Comfortable Strivers Row Hideaway - Monthly Rental,8925763,Joy,Manhattan,Harlem,40.81781,-73.94577,Entire home/apt,110,30,101,2019-03-09,1.61,2,331 +13509320,Cosy private bedroom and bathroom in a 3 bedroom,13482882,Kanak,Queens,Ridgewood,40.70756,-73.914,Private room,65,5,0,,,1,0 +5353431,Charming Studio close to everything,16548665,Britta,Brooklyn,Bedford-Stuyvesant,40.69365,-73.95841,Entire home/apt,80,5,5,2016-01-05,0.09,1,0 +12780993,Washington Heights Studio,18111963,Patricia,Manhattan,Washington Heights,40.84205,-73.93715999999999,Entire home/apt,75,5,0,,,1,0 +28833210,Bright Room 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.63867,-74.00681,Private room,29,1,12,2019-04-03,1.37,5,66 +439870,"Gorgeous Park Slope, BK triplex 4BD",1903758,Andrij,Brooklyn,Park Slope,40.66859,-73.98235,Entire home/apt,299,20,0,,,1,149 +28186096,Studio apt. w/ lofted queen bed in East Village,97395286,Grayson,Manhattan,East Village,40.72899,-73.98334,Entire home/apt,160,4,6,2019-04-24,0.65,1,6 +1524711,Sunny 1-Bedroom Apartment: Astoria,8135210,Milena,Queens,Astoria,40.76387,-73.92593000000001,Entire home/apt,108,4,3,2015-12-01,0.06,1,0 +34753453,Extra room 420friendly & breakfast,218116366,Yankee,Bronx,East Morrisania,40.82831,-73.88746,Private room,80,1,3,2019-07-01,3.0,2,89 +27681015,Amazing 3BR/2Bath Apt in the coolest Brooklyn Spot,118226205,Sahar,Brooklyn,Williamsburg,40.71582,-73.94191,Entire home/apt,172,3,32,2019-06-13,3.12,3,78 +32699916,Harlem Hideaway,180523383,Richardene,Manhattan,East Harlem,40.80305,-73.94163,Entire home/apt,185,1,5,2019-05-05,1.2,1,338 +7619996,"Relaxing, cozy corner of Harlem",16662303,Grace,Manhattan,Harlem,40.81835,-73.94138000000001,Private room,50,1,2,2015-09-14,0.04,1,0 +1416631,Family-Friendly Artist Loft in West Village,7633037,Jesse,Manhattan,West Village,40.73721,-74.00973,Entire home/apt,110,6,1,2018-09-01,0.1,2,0 +29152899,Private room in E. Williamsburg! Budget friendly!,9770822,Andrea,Brooklyn,Williamsburg,40.71233,-73.93781,Private room,55,3,13,2019-06-22,1.55,1,36 +21249716,MidtownWest Home close to Times Square & Broadway,4144536,Guillermo,Manhattan,Hell's Kitchen,40.76234,-73.99036,Private room,160,2,30,2019-07-02,1.55,1,162 +29966514,ChinitaBhost QUEENS,225307360,Cris,Queens,Woodhaven,40.68706,-73.8645,Private room,45,2,3,2019-06-07,1.5,1,47 +21660742,"1 Private Bedroom, private bathroom, Brooklyn",2079633,Fayna,Brooklyn,Fort Greene,40.68558,-73.96965,Entire home/apt,150,5,0,,,1,0 +15958090,"Gorgeous, cozy, clean - 25mins to Times Square.",9112269,Tn,Queens,Astoria,40.75669,-73.91974,Entire home/apt,74,2,21,2018-09-13,0.89,1,0 +2727766,Convenient Private Room in Spanish Harlem (SpaHa),4992804,Zachary,Manhattan,East Harlem,40.79121,-73.94793,Private room,75,2,1,2014-04-17,0.02,1,0 +10071464,Christopher Street: Heart of The West Village,51678353,Robert,Manhattan,West Village,40.73326,-74.00577,Private room,85,2,2,2016-01-01,0.05,1,0 +3741728,Missy's Place,19133023,Melissa,Brooklyn,Bedford-Stuyvesant,40.68667,-73.93897,Entire home/apt,117,5,105,2019-06-27,1.77,1,6 +12797920,Large Bedroom near Subway,69715276,Yan,Manhattan,Upper West Side,40.79806,-73.96167,Private room,100,1,1,2016-07-31,0.03,2,0 +32517547,"Private Room In Quiet & Charming 3 Br, 1.5 Ba",244197139,Brooke,Manhattan,Nolita,40.72004,-73.99486,Private room,62,30,0,,,5,249 +19209477,Nice comfy private room with backyard included!,20804098,Tenzin,Queens,Maspeth,40.72815,-73.89945,Private room,70,1,0,,,1,0 +21028467,Garden Apartment in South Slope,76450538,Pat,Brooklyn,Sunset Park,40.65331,-74.00814,Private room,80,4,0,,,1,0 +27034834,UWS Luxury 2 bdrm 2 bath Penthouse,17477908,Mat,Manhattan,Upper West Side,40.79473,-73.96744,Entire home/apt,350,30,2,2019-01-02,0.19,10,365 +18306436,Biggest and Brightest in Brooklyn,33646389,Sally,Brooklyn,Greenpoint,40.730340000000005,-73.9527,Private room,69,10,6,2018-09-02,0.23,2,156 +28039292,My wife is not used to the noisy environment. How,5687436,Jane,Manhattan,Financial District,40.70535,-74.01276999999999,Entire home/apt,200,1,0,,,1,0 +13876681,Cozy Room Times Square + ALL Museums Free Pass,82096395,Sergio,Manhattan,Hell's Kitchen,40.75981,-73.99118,Private room,150,5,20,2019-01-04,0.55,1,178 +7428365,"City retrieve1 -large bedroom, comfortable / quite",3542562,Jana,Manhattan,Harlem,40.82622,-73.9498,Private room,69,31,1,2017-01-07,0.03,4,64 +30690149,Upscale Artsy Apartment in Brooklyn - Free Parking,22205488,Allie,Brooklyn,Crown Heights,40.6751,-73.91035,Entire home/apt,100,2,7,2019-03-11,1.03,1,0 +35808578,"Sunny, Comfortably Cozy, Private Room",269375490,Rena,Brooklyn,Canarsie,40.64567,-73.89090999999999,Private room,45,1,7,2019-07-06,7.0,1,68 +16768336,Private Room in Brooklyn (E.Williamsburg),74896042,Agona,Brooklyn,Williamsburg,40.70811,-73.9326,Private room,45,4,3,2017-06-04,0.12,1,0 +15361785,Central Park Sanctuary,97833986,Caro & Allen,Manhattan,Upper West Side,40.77851,-73.97645,Private room,77,4,93,2019-06-18,2.87,1,115 +9077858,Beautiful shared apartment / Coliving in Brooklyn,27974952,Alex,Brooklyn,East Flatbush,40.64509,-73.94825,Shared room,27,30,7,2019-03-20,0.16,7,342 +13266202,Spacious living space in Williamsburg/Bushwick,14291958,Yiming (Steven),Brooklyn,Williamsburg,40.70644,-73.93968000000001,Private room,60,3,2,2016-10-10,0.06,1,0 +27573483,"Fort Greene two bedroom, quiet and peaceful",1180925,Mark,Brooklyn,Fort Greene,40.69488,-73.97222,Entire home/apt,200,7,1,2018-09-21,0.1,3,163 +33926074,Cozy Artist's Haven Brooklyn Apartment,83615522,Constance,Brooklyn,Crown Heights,40.66681,-73.9549,Private room,45,2,4,2019-06-29,2.26,1,10 +6706703,"Cheap, basic room",8556751,Adam,Queens,Ditmars Steinway,40.77583,-73.9131,Private room,50,3,0,,,1,0 +14666899,Modern Room in Great Location (Bushwick),91131716,Colin,Brooklyn,Bushwick,40.70061,-73.92721,Private room,40,3,2,2016-08-27,0.06,1,0 +19951681,"Great apartment , Astoria , NYC .",40008714,Vladimir,Queens,Astoria,40.76254,-73.91533000000001,Private room,65,1,5,2019-02-26,0.56,1,328 +17268091,Entire Studio Apt in Trendy Brooklyn - Sunny&clean,6396827,Gyaltsen Benita,Brooklyn,Crown Heights,40.67083,-73.94808,Entire home/apt,135,2,18,2017-11-20,0.64,1,0 +16620082,"Huge room, sunlight, plants, books",109733032,Ian,Brooklyn,Williamsburg,40.70436,-73.94123,Private room,60,2,14,2019-06-29,0.58,1,3 +4966559,cozy room 5 minutes to manhattan,25602663,Mizo,Queens,Long Island City,40.75202,-73.93588000000001,Shared room,65,4,1,2018-10-16,0.11,2,1 +30746904,WOW LOFT LONG TERM STAY & SHORT TERM EVENTS/SHOOTS,76192815,Sam,Manhattan,Chinatown,40.71387,-73.99414,Entire home/apt,175,1,1,2019-03-10,0.25,5,364 +30854475,Luxury Brooklyn Stay,69226908,Chassity,Brooklyn,East Flatbush,40.636590000000005,-73.94734,Private room,40,1,15,2019-06-30,2.37,1,90 +33800016,COZY ROOM IN PRIME MID EAST CLOSE TO EVERYTHING!!!,28580275,Sommy,Manhattan,Midtown,40.75661,-73.96396,Private room,100,2,4,2019-05-22,1.82,4,314 +20552326,Bedroom #1 in Queens,137838298,Norma,Queens,Jamaica,40.68156,-73.76844,Private room,80,1,19,2019-06-23,0.85,2,177 +25085133,The dreamed aparment- World Trade Center area,704043,Claudia,Manhattan,Financial District,40.70907,-74.01371,Private room,89,3,5,2018-09-11,0.38,1,0 +30715488,New york Multi-unit building,5954813,Sarah,Brooklyn,Clinton Hill,40.68983,-73.96553,Private room,120,15,0,,,1,179 +11575101,Private studio apartment,61175876,Raquel,Brooklyn,Bushwick,40.69549,-73.92249,Entire home/apt,79,4,97,2019-07-01,2.42,2,250 +14055238,Spacious Prospect Park Garden Apt,84303682,Brian And Rachel,Brooklyn,Park Slope,40.67003,-73.97399999999999,Entire home/apt,240,2,144,2019-06-30,4.04,1,217 +9422573,Private Light-Filled 2-Room Space,248490,Leecia,Brooklyn,Bedford-Stuyvesant,40.68041,-73.93611999999999,Entire home/apt,100,3,83,2019-05-31,1.9,2,224 +19407781,Bed-Stuy Brownstone huge sunny room 25mins to LES,127357582,Shannon,Brooklyn,Bedford-Stuyvesant,40.6834,-73.92035,Private room,69,2,63,2019-06-29,2.53,2,102 +19412140,Sunny Bed-Stuy apartment with rooftop access,61483702,Sasha,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93446,Private room,70,2,3,2017-07-16,0.12,2,0 +25996892,"Lovely Apartment in Greenwich Village, NYC",155627,Katherine,Manhattan,Greenwich Village,40.73177,-73.99936,Entire home/apt,90,42,2,2019-05-04,0.41,1,91 +35371114,August 25-28 Manhatten! Total suite sleeps 4 or 5.,96019,Ruth,Manhattan,Midtown,40.76527,-73.98139,Private room,299,3,0,,,1,3 +6447136,Magical Oasis in Bushwick! 20 min to City,33648474,Leah,Brooklyn,Bushwick,40.6971,-73.92045999999999,Entire home/apt,120,2,56,2019-07-04,1.11,1,314 +258838,"Oceanview,close to Manhattan",1360198,Marina,Staten Island,Arrochar,40.59251,-74.06479,Entire home/apt,250,2,21,2019-05-22,0.26,4,333 +12945400,Private Bedroom in Williamsburg,49836177,Ian,Brooklyn,Williamsburg,40.71264,-73.94751,Private room,66,1,1,2017-01-02,0.03,1,0 +28138840,Big and bright private room,210408018,Katelyn,Manhattan,East Harlem,40.7961,-73.94366,Private room,100,2,16,2019-01-05,1.55,1,0 +16851973,!!! Beautiful private room with backyard.,2092314,Valentin,Brooklyn,East Flatbush,40.6392,-73.94731999999999,Private room,32,30,1,2017-07-30,0.04,7,124 +10032495,Private Room on Upper West Side,2830735,Joshua,Manhattan,Upper West Side,40.80195,-73.96714,Private room,49,5,1,2015-12-22,0.02,1,0 +13312968,"Perfect, Charming Greenpoint Bedroom in 3BR Apt",52699613,Julia,Brooklyn,Greenpoint,40.73356,-73.96001,Private room,79,1,0,,,1,0 +24131620,Luxury One Bedroom Apartment in Financial District,26930091,Cindy,Manhattan,Financial District,40.70745,-74.01521,Entire home/apt,265,30,4,2019-01-02,0.35,1,322 +35616402,Cozy room for NYC summer rental,152132335,Ursula,Queens,Woodside,40.74164,-73.90289,Private room,100,5,0,,,1,197 +24156857,BEAUTIFULLY DESIGNED 2BD Brooklyn Apt +GREAT VIEWS,3156480,Margaret,Brooklyn,Boerum Hill,40.686690000000006,-73.98498000000001,Entire home/apt,172,5,4,2019-01-03,0.27,1,0 +36253150,Quaint And Cozy Beach House Close To All!!,43282809,Sue Ellen,Queens,Rockaway Beach,40.58954,-73.81361,Entire home/apt,125,1,0,,,1,67 +23093320,Your Bed Room in Bed-Stuy,171522181,Brandon,Brooklyn,Bedford-Stuyvesant,40.69552,-73.94835,Private room,45,7,11,2018-03-25,0.64,1,0 +981494,Large and sunny one BR (600 sq.ft),5207582,Olivia,Manhattan,Morningside Heights,40.81062,-73.96015,Entire home/apt,100,1,0,,,1,0 +29215351,Private! Entire loft near the waterfront!,220121415,Min,Brooklyn,Williamsburg,40.7075,-73.96576,Entire home/apt,96,3,22,2019-06-04,2.59,1,58 +8247721,Charming Crown Heights Brownstone,43494916,Tilly,Brooklyn,Crown Heights,40.67791,-73.95336999999999,Entire home/apt,80,3,0,,,2,0 +30168118,Comfy private BR for a couple! Near train & mall,137358866,Kazuya,Queens,Woodside,40.74041,-73.89029000000001,Private room,49,30,3,2019-05-31,0.5,103,195 +7437824,2BR + Roof Top-20min from Manhattan,17942384,Maud,Brooklyn,Park Slope,40.66835,-73.97981,Entire home/apt,129,5,2,2015-08-23,0.04,1,0 +18546787,Charming safe beautifully furnished,127501584,Aminata Mody,Bronx,Hunts Point,40.81406,-73.88996999999999,Private room,65,4,36,2019-06-07,1.36,1,365 +17702057,Upper East Side Cozy Apartment,26177358,Vladimir,Manhattan,Upper East Side,40.7683,-73.95919,Entire home/apt,230,4,34,2019-06-25,1.33,1,4 +22101696,"CLEAN, BRIGHT, and MODERN 3 bedroom Brooklyn apt.",20951849,Elaine,Brooklyn,Bedford-Stuyvesant,40.692240000000005,-73.93219,Entire home/apt,185,1,90,2019-07-01,4.68,2,181 +20356917,SoHa Jewel,145199414,Ronald,Manhattan,Harlem,40.80041,-73.95401,Private room,70,1,68,2019-06-23,2.97,1,330 +13848005,Harlem Vibrant Garden Apartment,81763260,Frédérique,Manhattan,Harlem,40.81106,-73.94467,Entire home/apt,200,3,48,2019-06-19,1.4,1,53 +28162058,Garden Loft Manhattan Apartment,4562182,Florence,Manhattan,Harlem,40.81084,-73.94481999999999,Entire home/apt,225,30,9,2019-06-22,0.95,4,326 +4554577,Bright and Cheerful Prospect Heights 1-bedroom,22568612,Ilana,Brooklyn,Prospect Heights,40.6803,-73.97185,Entire home/apt,115,6,3,2017-08-27,0.06,1,0 +13924403,Private Room in Kelly&Joes Loft Apt,78529013,Johannes,Queens,Astoria,40.75951,-73.91963,Private room,55,1,0,,,1,0 +34336004,BEAUTIFUL Cozy 2 BEDS APT Upper East Side,51027036,Roe,Manhattan,Upper East Side,40.78016,-73.95029,Entire home/apt,280,3,0,,,1,45 +34485699,Modern Two Queen Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.764790000000005,-73.98307,Private room,100,1,0,,,6,299 +11399898,"Huge, spacious 2 bdrm, 2 bath apartment on the LES",23590752,Neriza,Manhattan,East Village,40.72201,-73.98277,Entire home/apt,200,2,7,2019-07-07,3.68,1,36 +1614869,"Cute, quirky Park Slope Jr 1 bdroom",1254489,Randy,Brooklyn,Park Slope,40.67477,-73.97404,Entire home/apt,142,4,41,2019-06-18,0.58,1,151 +12780595,Luxury White Glove Apartment 57th St and Broadway,69545387,Marion,Manhattan,Midtown,40.76628,-73.98308,Entire home/apt,95,14,3,2018-08-26,0.13,1,159 +20886432,Gorgeous single room in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74722,-73.9186,Private room,78,2,20,2019-07-01,0.91,4,365 +24758512,NYC living,60975812,Johan,Manhattan,Hell's Kitchen,40.75417,-73.99435,Private room,70,4,0,,,1,0 +30393018,"Stunning Tribeca Studio w/ City views, Gym + Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71479,-74.00621,Entire home/apt,269,30,0,,,232,310 +1180618,One-Bedroom Apt. on Upper East Side,6459215,Aryn,Manhattan,Upper East Side,40.76841,-73.95213000000001,Entire home/apt,130,14,8,2016-01-09,0.11,1,332 +14763255,Private Large Studio-size Room,43585545,Angelo,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95004,Private room,50,1,25,2019-06-29,2.08,1,28 +28956510,Private room in full floor Soho Loft,23397935,John,Manhattan,SoHo,40.72039,-73.99851,Private room,249,5,3,2019-01-27,0.33,1,5 +13715977,Cozy room in Central Harlem. Lively neighborhood.,60812510,Lisa,Manhattan,Harlem,40.81818,-73.93905,Private room,49,1,12,2017-08-24,0.33,1,0 +28986154,3rd Fl bright two bedroom,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93875,Entire home/apt,139,1,4,2019-06-06,0.5,9,7 +32363924,"Private Room in Bushwick, Brooklyn",2210374,Nathalie,Brooklyn,Bushwick,40.70188,-73.9258,Private room,43,1,2,2019-06-16,0.61,1,0 +16678104,"Wyndham Midtown: E 45th St., NYC",3843799,BNB-Resorts By RC,Manhattan,Midtown,40.753820000000005,-73.97192,Entire home/apt,165,3,4,2017-11-07,0.18,1,0 +11098018,Sunny private room in Bushwick,10199059,Manasvi,Brooklyn,Bushwick,40.69712,-73.93055,Private room,70,1,0,,,1,0 +27656104,Charming bedroom w private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71015,-73.94654,Private room,85,4,1,2018-09-13,0.1,2,0 +29989586,Cozy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59894,-73.75629,Private room,85,1,2,2019-06-09,0.38,4,362 +34169778,22min from Manhattan,28096614,Bruno,Queens,Woodside,40.74249,-73.90603,Private room,50,2,10,2019-07-02,4.76,2,257 +10476782,Artist Apartment with Tons of Space,47573846,Jemier,Bronx,Wakefield,40.88808,-73.86017,Entire home/apt,85,20,10,2019-06-04,0.24,1,277 +8775344,Private spacious master bedroom,4205149,La,Brooklyn,Crown Heights,40.67869,-73.95498,Private room,75,1,1,2015-10-27,0.02,1,0 +21549898,"UWS Jewel, oval living room in a charming hometown",6420489,Lorena,Manhattan,Upper West Side,40.77845,-73.98198000000001,Entire home/apt,315,4,16,2019-05-31,0.84,1,7 +26635867,Prospect Park Oasis in the City,2208401,Sarah & Bruce,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.96276999999999,Entire home/apt,125,2,11,2019-04-28,0.94,1,0 +28610567,Nice Clean Official Cozy Suite 2 In Brooklyn,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91181,Private room,65,3,17,2019-07-04,2.26,3,365 +2424199,"Bright, Eclectic, Happy Brooklyn Apartment",10434821,H. Erin,Brooklyn,Crown Heights,40.67422,-73.95569,Entire home/apt,85,10,9,2018-01-02,0.14,1,12 +3915796,Central Park Life! Beautiful 1 Bed.,1475015,Mike,Manhattan,Upper West Side,40.76904,-73.98494000000001,Entire home/apt,113,30,8,2018-07-01,0.13,52,258 +25626932,10 mins to Free Ferry to Manhattan NYC new mall,182272609,Denada,Staten Island,Tompkinsville,40.63369,-74.09489,Entire home/apt,161,1,24,2019-06-02,1.82,2,87 +7699703,Private Brooklyn room by the L line,15420345,Anastassia,Brooklyn,Bushwick,40.70005,-73.91882,Private room,65,1,0,,,1,0 +35463471,West 15th Street Cozy Chelsea 1bd Serviced Apt,22541573,Ken,Manhattan,West Village,40.74,-74.00399999999999,Entire home/apt,209,30,0,,,87,364 +9075249,Spacious Ft. Greene room near subway/restaurants,7019923,Allison,Brooklyn,Clinton Hill,40.69161,-73.96571999999999,Private room,65,30,8,2019-01-05,0.18,1,18 +6848,Only 2 stops to Manhattan studio,15991,Allen & Irina,Brooklyn,Williamsburg,40.70837,-73.95352,Entire home/apt,140,2,148,2019-06-29,1.2,1,46 +28838875,Charming 2 Bedroom Apartment in Ideal Location,1228328,Hedda,Brooklyn,Downtown Brooklyn,40.69769,-73.98385999999999,Entire home/apt,250,2,8,2019-05-21,0.85,1,29 +26655705,CESAR'S PALACE,24195130,Cesar,Bronx,Pelham Gardens,40.86153,-73.83655999999999,Entire home/apt,102,1,50,2019-06-23,4.19,1,349 +2267006,Stunning 1BR Brooklyn Loft,7503643,Vida,Brooklyn,Greenpoint,40.72537,-73.94076,Entire home/apt,149,30,0,,,52,330 +9344858,Beautiful room in Center of Williamsburg!,17433287,Efrat,Brooklyn,Williamsburg,40.71896,-73.95423000000001,Private room,118,3,5,2017-05-31,0.16,2,0 +7902556,Room in NYC Financial district apt,3041587,Richy,Manhattan,Financial District,40.70395,-74.00995,Private room,98,14,121,2019-06-01,2.58,1,204 +31697123,Montauk Guest Suite,237715800,Joseph & Teresa,Brooklyn,East New York,40.66996,-73.87637,Entire home/apt,85,1,43,2019-07-08,7.87,1,161 +16148374,Stunning 2BR Apt by Central Park and Subway,60628529,Saygin,Manhattan,East Harlem,40.796,-73.94863000000001,Entire home/apt,265,3,111,2019-06-22,3.53,1,155 +14507274,Large Bright East Village Flat,849356,Margo,Manhattan,East Village,40.72652,-73.97938,Entire home/apt,162,5,22,2019-07-02,0.64,1,156 +1961361,Private Master BR in 3 BR Apt,10134825,Kara,Manhattan,Lower East Side,40.71286,-73.98437,Private room,102,2,6,2016-01-02,0.13,4,0 +14233670,Luxury 1 Bedroom Condo in Central Park South,86538929,Stella,Manhattan,Midtown,40.76566,-73.97748,Entire home/apt,349,2,6,2017-01-01,0.17,1,0 +31100684,HUGE room in Grammercy,9420910,Alyona,Manhattan,Kips Bay,40.73885,-73.97938,Private room,150,1,1,2019-05-25,0.67,2,157 +30047357,BEAUTIFUL COZY ROOM IN HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.59021,-73.94800000000001,Private room,55,1,45,2019-06-15,5.74,3,83 +5115534,Large williamsburg apt. Sleeps 4.,26433326,Martha,Brooklyn,Williamsburg,40.70783,-73.94858,Entire home/apt,195,2,3,2015-12-30,0.06,1,0 +29004967,"Large, sunny WBurg apartment steps from L train",14453908,Andrew,Brooklyn,Williamsburg,40.70946,-73.94966,Entire home/apt,85,7,4,2019-07-01,0.59,1,357 +21263120,Luxury studio,44295724,Darien,Manhattan,Harlem,40.81875,-73.94467,Entire home/apt,200,3,25,2019-06-18,1.8,1,0 +23970993,Comfort & Convenience in the middle of NYC!,32909393,Tanya & Mirjan,Manhattan,Upper West Side,40.80228,-73.96334,Private room,75,2,70,2019-06-24,4.6,1,1 +23879156,"Best Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67936,-73.9072,Private room,40,2,41,2019-04-28,2.59,3,0 +34369031,Heart of Times Square modern apartment,205386178,Ruby,Manhattan,Theater District,40.75977,-73.98245,Entire home/apt,160,2,1,2019-06-11,1.0,1,4 +21669411,"1 Cozy, Sun-filled Private Room",5140888,Ciru,Brooklyn,Crown Heights,40.67315,-73.94534,Private room,31,7,0,,,1,0 +6553874,"PERFECT 1 BR, Elevator, BEST Area!!",34276823,Mike,Manhattan,West Village,40.73626,-74.00180999999999,Entire home/apt,264,2,5,2017-01-01,0.12,1,0 +8087725,Beautiful Upper East 1 Bedroom,12483260,Chris,Manhattan,Upper East Side,40.77343,-73.95651,Entire home/apt,118,1,1,2015-08-31,0.02,1,0 +34938166,(C) Private Single Room Twin LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.7274,-73.86537,Private room,55,1,0,,,10,95 +13045629,Chic stylish amazing Manhattan room,5288991,Tanya,Manhattan,Upper East Side,40.77736,-73.95144,Private room,90,30,79,2019-06-18,2.08,6,246 +33422954,Spacious Studio,251781156,Trinize,Bronx,Tremont,40.84581,-73.8889,Shared room,25,2,5,2019-07-01,1.6,1,146 +33636410,The Sunshine Palace,236018119,Lucy,Queens,Queens Village,40.70303,-73.74906,Entire home/apt,125,1,38,2019-07-05,12.0,3,362 +17893008,Exclusive 2 bedrooms in lovely apartment in Nolita,39832770,Laura,Manhattan,Chinatown,40.71816,-73.99538000000001,Private room,90,6,0,,,1,0 +1349658,"A Comfortable Room in a Great Location, Manhattan",5569141,Jiajia,Manhattan,Morningside Heights,40.80998,-73.95898000000001,Private room,75,2,20,2019-06-07,0.33,1,29 +155296,Incredible Prime Williamsburg Loft!,656841,Meredith,Brooklyn,Williamsburg,40.71624,-73.96271999999999,Entire home/apt,255,45,39,2019-05-02,0.5,1,89 +35948934,Fully Furnished Studio Apartment Midtown East,270414459,Kevin,Manhattan,Midtown,40.75836,-73.96289,Entire home/apt,135,30,0,,,1,99 +21935569,Tiny (but comfy!) Private room Manhattan,43352661,Charles,Manhattan,Washington Heights,40.84344,-73.93921999999999,Private room,20,1,21,2019-06-20,1.1,3,291 +25265496,Beautiful large 2 br appartement in Brooklyn!,22935245,Anne,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95397,Entire home/apt,145,21,1,2018-07-14,0.08,1,25 +22686497,"Backyard BK! Live like a NY’er in modern, new reno",24124835,Danielle,Brooklyn,Bedford-Stuyvesant,40.6886,-73.92936999999999,Entire home/apt,130,4,53,2019-07-06,3.66,2,41 +22961758,Amazing huge sunny room in the historical building,80331757,Ivan,Brooklyn,Sheepshead Bay,40.60407,-73.95302,Private room,50,2,13,2019-03-10,1.38,1,71 +36149658,Bedstuy Home of The Greats (Stuyvesant Heights),271901058,Fernando,Brooklyn,Bedford-Stuyvesant,40.68795,-73.9374,Private room,65,1,1,2019-06-29,1.0,1,335 +16675965,Large and cosy apartment - Upper east!,13257873,Maria,Manhattan,Upper East Side,40.776720000000005,-73.95559,Private room,120,3,14,2019-06-16,0.53,1,36 +18506359,"Luxurious, Spacious Loft in Williamsburg",123953239,Philippe,Brooklyn,Williamsburg,40.71058,-73.96401999999999,Entire home/apt,260,2,34,2019-06-14,1.31,2,330 +16527938,Beautiful room in a Sunny Apartment West Harlem!,76767234,Ac,Manhattan,Harlem,40.82128,-73.95835,Private room,100,2,0,,,1,40 +8005645,BEST DEAL – 1BR APT – 15 MIN from MANHATTAN!,11360525,James,Queens,Sunnyside,40.74667,-73.92361,Entire home/apt,130,5,4,2019-01-03,0.09,1,0 +14161351,Trendy 2BR Apt Next to Prospect Park -Kid Friendly,1876539,Stephanie,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95773,Entire home/apt,150,6,9,2019-01-02,0.26,1,0 +30137792,Small cozy private room near time square,215944788,Kay,Manhattan,Chelsea,40.74337,-73.99423,Private room,85,3,15,2019-03-17,2.13,3,1 +19476873,Luxurious Modern Apt In the Heart of Brooklyn,76785138,Ibrahim,Brooklyn,Bay Ridge,40.62298,-74.02601,Entire home/apt,256,2,61,2019-07-01,2.52,1,166 +9786021,"Beautiful & spacious room, Brooklyn",50442604,Beatriz,Brooklyn,Flatbush,40.63655,-73.95424,Private room,60,1,1,2016-01-01,0.02,1,0 +15180279,2 br in prime bushwick brooklyn,40611169,Sol,Brooklyn,Bushwick,40.69951,-73.91641,Entire home/apt,113,30,6,2018-09-30,0.18,5,365 +9445501,Modern reno 2 room Times Sq quiet!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76376,-73.99323000000001,Entire home/apt,80,30,5,2018-06-16,0.12,5,365 +7928219,Crown Heights Gem w/ pvt. balcony,6238742,Kilolo,Brooklyn,Crown Heights,40.67702,-73.959,Entire home/apt,115,1,0,,,1,0 +33197913,Entire place on the upper east side,130827164,Julia,Manhattan,Upper East Side,40.77195,-73.9537,Entire home/apt,199,2,0,,,2,364 +10021643,Spacious Room -- Upper West Side,44118283,Guillaume,Manhattan,Upper West Side,40.79546,-73.97497,Private room,100,15,1,2016-02-15,0.02,1,0 +26310218,!!Cozy 3-person shared room near L train!!,178543960,Sergii,Brooklyn,Greenpoint,40.72166,-73.9399,Shared room,36,30,0,,,10,311 +294263,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73661,-73.95479,Entire home/apt,199,3,89,2019-07-01,1.06,28,62 +24655787,NYC: Across from Central Park,32008804,David,Manhattan,East Harlem,40.79707,-73.94739,Private room,69,2,68,2019-06-23,4.83,1,0 +3352030,Delightful & Modern 1 Bedroom,317692,Tara,Brooklyn,Boerum Hill,40.68687,-73.98472,Entire home/apt,120,2,4,2015-09-27,0.08,1,0 +33932806,Trendy Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70885,-73.89634000000001,Private room,34,30,0,,,23,136 +732700,Centrally located and spacious apt.,3815537,Reshma,Manhattan,Midtown,40.751540000000006,-73.97104,Entire home/apt,106,7,10,2019-07-06,10.0,1,0 +13460498,Beautiful Brownstone Parlor Floor Apartment,76931387,Kris,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95479,Entire home/apt,130,2,16,2019-01-01,0.59,1,0 +22840839,Quiet Studio in the Heart of it All,98956556,Mark,Brooklyn,Boerum Hill,40.68531,-73.97948000000001,Entire home/apt,150,2,19,2019-06-05,1.13,1,1 +11840057,BedRoom in lower East Side,51447330,Nicolas,Manhattan,Lower East Side,40.720490000000005,-73.98821,Private room,112,1,0,,,1,0 +257097,Sunny! 2br Steps to train/restaurants - 15 to NYC,315401,Jaime,Brooklyn,Bedford-Stuyvesant,40.68226,-73.95473,Entire home/apt,125,30,31,2019-01-28,0.33,1,218 +4932139,Luxury in Best Location,25404246,Stacey,Manhattan,Nolita,40.72139,-73.99688,Entire home/apt,346,198,163,2018-11-21,2.96,1,0 +5779752,East Village with 2x Balcony + Roof,19498957,Peter,Manhattan,East Village,40.72481,-73.98216,Private room,125,3,4,2015-10-07,0.08,1,0 +391955,Charming brownstone apartment,1960189,Rebecka,Brooklyn,Columbia St,40.68636,-74.00345,Entire home/apt,159,2,106,2019-06-24,1.22,1,34 +22312190,Art Lover’s Dream! Chelsea Delight!,52602009,Norman,Manhattan,Chelsea,40.75071,-74.00247,Private room,84,2,119,2019-06-19,6.44,1,20 +17923261,Quality cozy studio in a quiet neighborhood,122884945,Hind,Queens,Middle Village,40.71774,-73.89180999999999,Entire home/apt,90,6,26,2019-07-04,2.7,1,237 +27977824,Modern chic studio in luxury building,120237085,Camilla,Brooklyn,Bedford-Stuyvesant,40.69217,-73.95837,Entire home/apt,170,4,3,2018-12-01,0.37,1,0 +1069266,Stay like a real New Yorker!,5867023,Michael,Manhattan,Midtown,40.75783,-73.96383,Entire home/apt,145,2,146,2019-06-09,1.94,1,148 +30404664,A Large Private Room in Greenpoint- 15 min to Manh,72512761,Erik,Brooklyn,Greenpoint,40.72325,-73.94911,Private room,44,1,29,2019-05-30,4.07,3,0 +9219569,"Quiet, cozy, and big Bushwick Apt!",47672228,Danielle,Brooklyn,Bushwick,40.69064,-73.921,Entire home/apt,125,1,9,2016-07-23,0.21,1,0 +20714992,Large sunny and beautiful room,75587530,Annie,Manhattan,Upper East Side,40.78079,-73.95499000000001,Private room,150,10,0,,,2,0 +15468765,Quiet & Spacious Brooklyn Apt for Cat-Lovers,12063606,Nicole,Brooklyn,Crown Heights,40.67747,-73.9466,Entire home/apt,90,9,7,2019-05-12,0.54,1,0 +30007128,Newly renovated apartment in Brooklyn Townhouse,157410883,Chiara,Brooklyn,Bushwick,40.69372,-73.92283,Entire home/apt,120,1,39,2019-06-22,5.27,1,196 +16005960,Cozy Artsy Little Italy Apt!,104060705,Scott,Manhattan,Little Italy,40.71828,-73.99761,Entire home/apt,115,30,4,2019-05-05,0.12,1,35 +28681181,Clinton Hill/Bedstuy Brooklyn stylish and artsy,8859112,Navin,Brooklyn,Bedford-Stuyvesant,40.693940000000005,-73.95183,Entire home/apt,100,2,27,2019-07-05,2.79,2,255 +10403922,Brooklyn Park Slope Queen Bed,33213436,Alec,Brooklyn,Gowanus,40.67991,-73.98368,Private room,149,1,93,2019-02-18,2.48,8,365 +7955984,Elegant Accommodation On A Budget!,6263244,Nkatha,Manhattan,Harlem,40.81944,-73.9408,Private room,73,1,27,2019-06-19,0.59,2,340 +4444204, 2-3 bedroom UWS garden triplex ,5162192,Amy,Manhattan,Upper West Side,40.79795,-73.96175,Entire home/apt,300,30,4,2015-10-06,0.07,12,310 +12081254,Sunny Private Brooklyn Bedroom w/ Backyard Access,31230100,Elissa,Brooklyn,Crown Heights,40.67298,-73.95561,Private room,35,7,1,2016-07-15,0.03,3,157 +9237142,"Charming, Clean 1BR in Brooklyn",11013791,Guy,Brooklyn,Clinton Hill,40.68864,-73.96154,Entire home/apt,100,30,4,2017-07-25,0.11,1,0 +6971141,Upper East Side 2 bedroom- close to Hospitals-,25237492,Juliana,Manhattan,Upper East Side,40.76222,-73.9603,Entire home/apt,325,30,2,2019-06-08,0.21,34,191 +12420694,Spacious room with private rooftop!,20471565,Harry,Manhattan,East Village,40.72522,-73.98114,Private room,150,3,0,,,1,0 +33406391,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70922,-74.00571,Private room,169,7,0,,,13,365 +21308702,NYミッドタウン高級コンドのリビングルームに宿泊,154217970,Mk,Manhattan,Theater District,40.76174,-73.98306,Private room,80,3,88,2019-07-07,5.42,1,137 +15830677,Upper East Side Gem Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77789,-73.95473,Entire home/apt,117,30,1,2019-05-30,0.75,91,311 +30015813,Newly renovated house with a rooftop near Downtown,225618164,Sergii,Brooklyn,Gowanus,40.68198,-73.98962,Private room,77,30,0,,,3,365 +820801,"Sunny 2BD, 2 balconies",25632,LeeAnn,Brooklyn,Greenpoint,40.72103,-73.94798,Entire home/apt,300,30,1,2014-09-12,0.02,1,0 +29856229,GREAT FURNISHED BEDROOM NEAR MIDTOWN MANHATTAN,221836975,Jon,Queens,Jackson Heights,40.74945,-73.89299,Private room,50,2,9,2019-07-02,1.38,3,365 +27284564,"Great Bedroom in Ridgewood, Queens!",205530337,Nina,Queens,Ridgewood,40.70176,-73.90435,Private room,45,30,1,2019-05-29,0.71,8,347 +25125914,Perfect Space & Private Garden,16437254,Benjamin,Brooklyn,Clinton Hill,40.68432,-73.96025999999999,Entire home/apt,186,30,2,2019-05-01,0.16,21,342 +11162285,"Charming Brownstone Two-Bedroom, Fort Greene",4302160,Erica + Jonathan,Brooklyn,Fort Greene,40.68642,-73.97700999999999,Entire home/apt,200,1,0,,,1,12 +31511088,Blissful Boudiors Your Home Away From Home,167383560,Toni,Brooklyn,Bedford-Stuyvesant,40.680690000000006,-73.94264,Private room,125,1,2,2019-06-10,1.02,1,199 +21728681,East Village True 1 Bedroom Apartment,30723568,Jeff,Manhattan,East Village,40.72672,-73.98810999999999,Entire home/apt,250,1,0,,,1,0 +23723970,"Room w private bathroom, shower & patio",10331194,Lauren,Brooklyn,Bedford-Stuyvesant,40.68872,-73.92425,Private room,49,5,0,,,1,0 +33797564,SUNNY SUMMER SUBLET,73049484,Kumru,Brooklyn,Crown Heights,40.66623,-73.92874,Entire home/apt,100,50,0,,,2,225 +34976241,Cozy Apartment perfect for NYC vacation,254119216,Zeyna,Queens,Woodside,40.74479,-73.91193,Entire home/apt,108,2,2,2019-06-23,2.0,1,5 +23683520,Brownstone 439,90834217,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6832,-73.93469,Entire home/apt,125,2,53,2019-06-26,3.44,1,215 +22331268,Charming West Village Apartment,4457329,Mia,Manhattan,West Village,40.7375,-74.00493,Entire home/apt,220,2,0,,,1,0 +17651607,Cozy room in a 2B with backyard access,9683962,Cristina,Queens,Astoria,40.76987,-73.92679,Private room,55,1,9,2019-04-25,0.91,1,0 +12084100,Lux 1 BR NYC Midtown West Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76642,-73.98326,Entire home/apt,239,30,0,,,121,364 +32232908,Urban Zen in the Heart of Williamsburg,29775337,Amanda,Brooklyn,Williamsburg,40.7185,-73.95600999999999,Private room,150,2,7,2019-05-26,1.48,1,20 +23072308,Charming WaHi apartment!,92192182,Alyssa,Manhattan,Washington Heights,40.84861,-73.93715999999999,Entire home/apt,72,2,11,2018-07-08,0.64,2,0 +36387905,Manhattan Apartment Private Close to Subway,273613106,Jose L.,Manhattan,East Harlem,40.79031,-73.94269,Entire home/apt,139,1,0,,,1,354 +23820465,Suite Dante-15 min Central Park+free street park,116839989,Ez,Queens,Astoria,40.75941,-73.92498,Entire home/apt,105,30,25,2019-06-08,2.54,5,235 +17009057,Beauty Brooklyn 2BR close to trains 30+ days only,1410860,Sara Kate,Brooklyn,Bedford-Stuyvesant,40.683240000000005,-73.95174,Entire home/apt,300,30,67,2019-06-20,2.43,1,360 +25054120,DREAMY! Huge + sunny mid-century apt with balcony,8440,Michelle,Brooklyn,Flatbush,40.6397,-73.96554,Entire home/apt,197,4,10,2019-05-18,0.78,1,228 +23650831,Spacious room in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.713840000000005,-73.94228000000001,Private room,55,15,0,,,2,1 +18386307,"Sunny, Chelsea Studio has queen bed and sleep loft",7245581,Michael,Manhattan,Chelsea,40.74988,-73.99553,Entire home/apt,89,110,6,2019-05-25,0.26,19,332 +74680,One Bedroom Mini studio - Free WIFI,265109,Nazleen,Queens,Astoria,40.77635,-73.93426,Entire home/apt,115,2,198,2019-05-31,2.01,1,257 +7101296,Cute apartment in Upper West Side,37011739,Stacey,Manhattan,Upper West Side,40.79435,-73.9745,Entire home/apt,145,5,7,2018-08-01,0.16,1,0 +5402239,Full Apt. in PRIME Williamsburg!,27159364,Brett,Brooklyn,Williamsburg,40.71475,-73.95557,Entire home/apt,90,4,1,2015-03-14,0.02,1,0 +21679463,"Clean, Comfortable Home away from home",122942281,Natalie,Brooklyn,Brownsville,40.66621,-73.92073,Entire home/apt,95,7,28,2019-07-05,1.51,1,19 +8799559,ROOM WITH VIEW IN MANHATTAN!,37818581,Sofia,Manhattan,East Harlem,40.80109,-73.93887,Private room,150,1,207,2019-02-21,4.55,4,0 +11573292,Cool East Village apt,59493714,Mirinda,Manhattan,East Village,40.72367,-73.98401,Private room,109,3,0,,,1,0 +30453281,☯ Ur Cool & Cozy Chambers ☯,69189948,Ella,Manhattan,Washington Heights,40.84878,-73.93449,Private room,50,1,12,2019-07-02,1.69,3,0 +27531821,Beautiful Private Bedroom/Kitchen studioPark Slope,147638312,George,Brooklyn,Park Slope,40.67246,-73.97707,Private room,125,5,7,2019-05-29,0.84,1,180 +29929095,"Spacious studio by the LIRR, Q3-Q85 to JFK, trains",206229239,Mamadou,Queens,Jamaica,40.67748,-73.76375999999999,Entire home/apt,100,1,12,2019-02-17,1.69,1,161 +29419330,Female Only: Prime Location-East 60s-Central Park,221612013,Inhee,Manhattan,Upper East Side,40.76105,-73.96294,Private room,80,1,27,2019-06-29,3.45,1,0 +24580129,Quiet Space,143070465,Kai,Brooklyn,Bedford-Stuyvesant,40.6977,-73.94781,Private room,35,2,10,2018-10-11,0.7,1,0 +21200993,Lower East Side Bedroom w. A/C and Cappuccinos!,147536196,Marina,Manhattan,Lower East Side,40.7198,-73.98209,Private room,135,1,50,2019-06-27,2.35,1,32 +6690696,Sunny Prewar 2BR/2BA in Fort Greene,3131306,Alissa,Brooklyn,Clinton Hill,40.68623,-73.96755,Entire home/apt,220,30,1,2015-08-09,0.02,1,0 +23785875,Large Manhattan Duplex 30 mins to Times Square!,137916804,Asia,Manhattan,Washington Heights,40.85395,-73.93335,Entire home/apt,300,4,31,2019-07-01,2.16,1,286 +19072587,Clean Midtown Rooms in heart of NYC,60993452,Charles,Manhattan,Murray Hill,40.74763,-73.97601999999999,Private room,52,3,4,2017-06-23,0.16,2,0 +13997894,1 bedroom full apartment completely private!,83616984,Horacio,Queens,Corona,40.74598,-73.85683,Entire home/apt,85,7,60,2019-06-30,1.65,1,284 +9461803,Private room in classic SoHo loft,2611503,Ronnie,Manhattan,SoHo,40.72675,-74.00757,Private room,225,3,49,2019-06-06,1.44,1,322 +7651547,New York 3 Bedroom 3 Bath & Backyard City College,9209691,Anatha Angèle,Manhattan,Harlem,40.82206,-73.95234,Entire home/apt,275,4,5,2019-06-29,2.78,2,284 +30676992,ENTIRE bushwick studio,141735689,Jocelyn,Brooklyn,Bushwick,40.69227,-73.91724,Entire home/apt,100,3,3,2019-05-27,0.42,1,0 +13100152,"BEAUTIFUL TOP-FLOOR SUBLET IN ASTORIA, NYC",620810,Jay,Queens,Astoria,40.76555,-73.9169,Entire home/apt,110,13,1,2016-09-01,0.03,1,0 +27029894,Central Park West Room,194843581,Hongzhi,Manhattan,Upper West Side,40.79936,-73.96243,Private room,79,1,49,2019-07-04,4.16,4,1 +34607651,Comfortable home for all your needs!!!,173311396,Lyuba,Manhattan,East Harlem,40.80013,-73.93741999999999,Entire home/apt,150,1,5,2019-06-23,2.88,1,21 +29419129,Brooklyn Hideaway right in Williamsburg,25352847,Rachel,Brooklyn,Williamsburg,40.71421,-73.95421,Private room,130,1,13,2019-06-10,1.63,2,64 +670767,Bookcase Room with Hidden Door!,3363720,Kate,Brooklyn,Bushwick,40.68796,-73.91906,Private room,42,5,70,2019-04-29,0.88,3,236 +15615535,Spacious Upper West Side Studio near Central Park,74815132,Kristen,Manhattan,Upper West Side,40.78825,-73.97231,Entire home/apt,115,5,5,2017-04-09,0.16,1,0 +34788703,Clean comfortable room,260902999,Debera,Manhattan,Harlem,40.81737,-73.93781,Private room,150,5,0,,,1,269 +33974640,BEAUTIFUL PRIVATE ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75771,-73.92724,Private room,50,1,3,2019-05-31,1.34,5,318 +20535577,1 bedroom Aptm+ Guest room close to Prospect Park,59442523,Josh,Brooklyn,Flatbush,40.6531,-73.96330999999999,Entire home/apt,80,1,2,2017-08-25,0.09,2,0 +13299243,Single family BBQ - 15 min to midtown,75092148,Sarah,Queens,Astoria,40.76026,-73.92235,Entire home/apt,300,4,4,2018-08-05,0.11,1,0 +8513839,Huge Gorgeous1 Bed Apt Williamsburg,2876700,Anais,Brooklyn,Williamsburg,40.71369,-73.95523,Entire home/apt,130,10,2,2017-07-25,0.04,1,0 +30089600,Spacious Apt with Charm & Character,113569564,Talia,Bronx,Riverdale,40.88511,-73.90831,Entire home/apt,175,3,5,2019-04-08,0.77,1,0 +4860876,Huge Classic Williamsburg 2BR loft,2503221,Shuang,Brooklyn,Williamsburg,40.72104,-73.96034,Entire home/apt,295,2,75,2019-06-17,1.5,1,339 +27375052,Super clean! 2 Bedrooms in Bensonhurst -Sleeps 8,206313609,Lily,Brooklyn,Bensonhurst,40.60557,-73.99799,Entire home/apt,123,2,27,2019-06-25,2.57,2,128 +31822089,Artist’s apartment in Harlem!,552627,Brandy,Manhattan,Harlem,40.82458,-73.93883000000001,Private room,39,2,0,,,2,315 +30393638,Adorable Theater District Studio w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.7601,-73.98504,Entire home/apt,278,30,0,,,232,304 +30059491,Cozy Brooklyn Nook,46093850,Caroline,Brooklyn,Bedford-Stuyvesant,40.68137,-73.95714,Private room,100,1,2,2018-12-29,0.26,1,311 +3376567,Luxury Duplex in Williamsburg with private bath,2042864,Anna,Brooklyn,Williamsburg,40.70926,-73.94673,Private room,125,4,14,2018-03-20,0.3,1,0 +26409175,"1BR in Newly Renovated Apartment - Rm B, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70522,-73.93075,Private room,51,1,10,2019-05-23,0.84,7,310 +25073155,Beautiful one bedroom in the heart of Harlem!,16237288,Etty,Manhattan,Harlem,40.80973,-73.9457,Private room,80,1,23,2019-06-19,1.75,1,323 +34479995,Penn room 12,244817841,Aminul,Brooklyn,East New York,40.66929,-73.89421,Private room,38,7,4,2019-06-29,2.35,13,282 +2590590,Washer&Dryer - 6 Subway stops to NYC / 15 min ride,727585,Frances,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95644,Entire home/apt,92,3,227,2019-07-01,3.61,1,173 +9903132,large Tribeca loft,50925964,Patrice,Manhattan,Chinatown,40.71844,-74.00228,Entire home/apt,152,3,16,2019-06-03,0.37,1,0 +6404584,Tree-lined block+Roof+private rooms,33403059,Joshua,Brooklyn,Crown Heights,40.67725,-73.95994,Private room,79,5,3,2015-10-16,0.06,3,0 +18828134,Manhattan Central Location Clean Big ENTIRE Studio,131109595,Xinchen,Manhattan,East Village,40.72772,-73.98091,Entire home/apt,75,4,0,,,1,0 +22343658,"+Williamsburg Private Bedroom, Private backyard!",2772294,Nicolas,Brooklyn,Williamsburg,40.71136,-73.94527,Private room,55,14,5,2019-05-26,0.27,1,90 +20584605,Super suite to stay in New York,45623372,Maria Ines,Brooklyn,Williamsburg,40.71358,-73.96421,Entire home/apt,160,7,4,2018-09-28,0.18,1,0 +11868495,Heart of the West Village!,1633721,Meg,Manhattan,West Village,40.733540000000005,-74.00549000000001,Entire home/apt,250,2,23,2017-01-01,0.58,1,0 +28245313,Garden Oasis in Historic Hamilton Heights,17893196,Jillian,Manhattan,Harlem,40.8238,-73.94794,Entire home/apt,145,2,5,2019-05-19,0.57,1,5 +24392461,Master bedroom W/ Ensuite in centre of EVERYTHING,24405003,Bianca,Manhattan,Chinatown,40.7138,-73.99371,Private room,125,3,4,2018-10-16,0.31,3,90 +31201905,"Sam and Mala""s Place",226664611,Samuel,Queens,South Ozone Park,40.67993,-73.81249,Entire home/apt,72,3,29,2019-06-22,4.55,2,293 +819893,MANHATTAN CONVENIENT NICE ROOM IN NYC,4299040,Ale,Manhattan,Harlem,40.82233,-73.95568,Private room,60,2,36,2019-05-19,0.54,4,133 +24799807,Furnished Midtown One Bedroom Beauty,120762452,Stanley,Manhattan,Murray Hill,40.75028,-73.97702,Entire home/apt,210,30,1,2018-07-14,0.08,50,365 +6728550,"Cozy, Spacious Bedstuy Pad",34058193,Beverly,Brooklyn,Bedford-Stuyvesant,40.68972,-73.95629,Entire home/apt,60,5,5,2015-11-25,0.1,1,0 +683084,Midtown West- A COZY ONE bedroom.,3480879,Danny,Manhattan,Chelsea,40.75286,-74.00161999999999,Entire home/apt,199,6,40,2017-10-15,0.5,1,0 +15598548,Charming Brooklyn Garden Apartment,263882,Eva Maria,Brooklyn,Bedford-Stuyvesant,40.68084,-73.91116,Entire home/apt,139,2,151,2019-06-30,4.64,2,284 +23116453,Perfect Place to Stay,121379512,Maria,Bronx,Longwood,40.8273,-73.88906,Private room,37,1,7,2018-10-20,0.41,2,0 +35259405,"Furnished Apartment in Queens, NY",236530772,Maria,Queens,Jamaica Estates,40.72085,-73.79179,Entire home/apt,65,2,0,,,2,19 +26662052,Beautiful room in Bushwick right next to JMZ train,19704368,Zephyr,Brooklyn,Bushwick,40.69227,-73.92520999999999,Private room,44,5,3,2018-09-19,0.25,1,4 +20874344,Green Oasis 15 min from Downtown Manhattan!,36920690,Nik,Brooklyn,Williamsburg,40.71244,-73.94384000000001,Entire home/apt,114,6,2,2018-12-29,0.11,1,0 +13408765,Upper East Side Getaway,51001469,Taylor,Manhattan,East Harlem,40.787490000000005,-73.9504,Private room,70,1,4,2016-07-06,0.11,1,0 +21785385,3.5 MLN usd 2 bedroom LOFT in TriBeCa (2),68707439,Gipsy Properties,Manhattan,Tribeca,40.71953,-74.00386,Entire home/apt,339,14,10,2019-02-25,0.53,3,335 +1742610,Studio in the Upper East Side ,2548224,Melissa,Manhattan,Upper East Side,40.78031,-73.94653000000001,Entire home/apt,123,5,14,2019-05-30,0.2,1,0 +5052897,Beautiful Manhattan 1br apartment close to subway!,26079021,Michael,Manhattan,Upper East Side,40.76173,-73.96183,Entire home/apt,249,3,85,2019-06-28,1.59,1,158 +27111881,Lovely Midtown Railroad Flat with Private Patio,6791240,Mary,Manhattan,Midtown,40.75546,-73.98085999999999,Entire home/apt,200,4,12,2019-05-26,1.24,1,0 +32743787,Brooklyn Best Kept Secrete!,2839817,Rain,Brooklyn,Bedford-Stuyvesant,40.68659,-73.91883,Private room,150,4,0,,,1,179 +8468180,Upper Westside 1 BR/1.5 Bath Apt,44593642,Charlie,Manhattan,Upper West Side,40.78385,-73.97466,Entire home/apt,225,30,1,2016-01-05,0.02,1,0 +4227554,"Big 2BR, just minutes to Manhattan!",21941065,David,Queens,Woodside,40.7426,-73.90706,Entire home/apt,195,3,124,2019-06-26,2.2,1,305 +1806651,Bright and Airy Brooklyn Loft,3267818,Allison,Brooklyn,Williamsburg,40.70498,-73.92868,Entire home/apt,120,3,2,2015-01-02,0.03,1,0 +36354776,Cozy bedroom in diverse neighborhood near JFK,273393150,Liza,Queens,Richmond Hill,40.68639,-73.81846999999999,Private room,28,2,0,,,1,24 +22292535,Söderläge - Spacious Queen bedroom in Williamsburg,13262918,Glenn,Brooklyn,Williamsburg,40.71153,-73.95743,Private room,85,1,13,2019-04-27,0.73,3,11 +26802372,Cozy private room near the center of NYC 12AL,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99668,Private room,50,3,15,2018-12-16,1.3,47,238 +21451138,B) Comfy Full Bed Wifi near JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69938,-73.81304,Private room,40,1,119,2019-07-08,5.8,4,229 +1621235,An artist place in Bedstuy,1345611,Bahiyyah,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95223,Private room,87,1,4,2019-06-30,2.26,1,12 +30187850,Cozy room one block away from Central Park!,226772729,Lucía,Manhattan,Upper West Side,40.79535,-73.9641,Private room,120,5,1,2019-01-19,0.18,1,0 +35512965,Quiet Cozy Clean Home,256502464,Paul,Manhattan,Harlem,40.82784,-73.94559,Private room,55,1,0,,,3,21 +20000184,"Master Bedroom with Own Bathroom, near subway",102482048,Susy,Brooklyn,Bushwick,40.681740000000005,-73.90733,Private room,50,2,28,2019-04-22,1.22,4,341 +13596286,Bright Top-Floor Suite in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66282,-73.98714,Private room,99,7,10,2018-10-09,0.28,4,36 +21549636,AMAZING PRE-WAR 2 BR APT IN WILLIAMSBURG,605589,Patricio,Brooklyn,Williamsburg,40.71547,-73.94346,Entire home/apt,150,10,1,2019-05-29,0.73,1,160 +5337757,"Beautiful, Sunny, by Park, with Private Entrance",117949,Ariel,Brooklyn,Greenpoint,40.72722,-73.94209000000001,Private room,49,3,59,2019-06-08,1.12,1,99 +3245000,Spacious prewar apartment in heart of Greenpoint,13561307,Katy,Brooklyn,Greenpoint,40.7238,-73.94859,Entire home/apt,149,1,2,2019-03-18,0.28,1,0 +4930306,Charming One Bedroom in Chelsea,25394253,Pete,Manhattan,Chelsea,40.74141,-73.99996,Entire home/apt,175,1,1,2015-02-20,0.02,1,0 +24966197,"Quiet, private room (Hell's Kitchen/West Midtown)",28808740,Robert,Manhattan,Hell's Kitchen,40.76491,-73.98956,Private room,94,3,11,2019-06-23,0.78,2,0 +444430,comfy room minutes from museums,420542,Danielle,Bronx,Mott Haven,40.81128,-73.92399,Private room,49,1,23,2018-03-27,0.27,1,333 +31254505,Spacious Studio Sublet in Hell's Kitchen,77657991,Dawn,Manhattan,Hell's Kitchen,40.76138,-73.99825,Entire home/apt,104,28,1,2019-04-28,0.42,1,0 +5606308,Amazing 1 BR in Loft in Williamsburg,4514390,Stephanie,Brooklyn,Williamsburg,40.71061,-73.96764,Private room,99,2,41,2019-06-22,0.82,1,143 +27301897,Delightful Sanctuary in Nolita for 4 Guests~,10457196,Richard,Manhattan,Little Italy,40.71927,-73.99450999999999,Entire home/apt,140,30,3,2018-11-25,0.31,11,104 +14375153,Call it Home.,75506967,Mimie,Bronx,Claremont Village,40.83796,-73.9016,Private room,38,15,8,2018-08-02,0.23,2,24 +26869417,UES apt right above the Q PRIVATE BATHROOM,143330625,Jessie,Manhattan,Upper East Side,40.76943,-73.95971,Private room,82,2,8,2018-09-02,0.68,1,0 +21628183,Cozy Manhattan male room for a long term IV,39528519,Max,Manhattan,Lower East Side,40.71165,-73.98708,Shared room,33,100,2,2019-01-03,0.11,28,201 +20328568,"Insane Manhattan Views, Top Williamsburg Location",1533756,Yusuf,Brooklyn,Williamsburg,40.72106,-73.95974,Entire home/apt,269,5,1,2017-08-28,0.04,1,0 +8320702,Convenient full 1 bdrm + loft apt,39047190,Stacy,Manhattan,Gramercy,40.73858,-73.98881999999999,Entire home/apt,180,4,2,2015-10-19,0.04,1,0 +21857734,Williamsburg Private Room in 4 BR Apt off L train,20346657,Leah,Brooklyn,Williamsburg,40.70941,-73.93862,Private room,42,7,4,2019-03-25,0.22,1,53 +20532490,Beautiful Designer Loft in Williamsburg,2789221,Alex,Brooklyn,Williamsburg,40.70743,-73.96786,Entire home/apt,150,2,8,2018-12-02,0.35,1,0 +1130138,West Harlem Clean Park 1 Bedroom,1124797,Marianna,Manhattan,Harlem,40.82101,-73.94582,Entire home/apt,110,3,82,2019-06-30,1.09,1,15 +7389278,Bushwick! Unlimited Metro Card!,38712916,Taylor,Brooklyn,Bushwick,40.69927,-73.92133000000001,Private room,60,1,0,,,1,0 +29824401,"Large private room Williamsburg, Luxury Building",224340103,Vincent,Brooklyn,Williamsburg,40.70933,-73.94651,Private room,80,2,3,2019-02-17,0.4,2,0 +22845926,"Spacious, Manhattan Home has a private room!",74410137,Jordan,Manhattan,Harlem,40.80684,-73.94612,Private room,46,3,10,2018-12-20,0.57,1,0 +33549215,Entire apartment in the heart of Williamsburg,128914189,Edgar,Brooklyn,Williamsburg,40.71285,-73.96535,Entire home/apt,190,30,0,,,2,188 +29897911,NY HUDSON RIVER DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.755,-73.99784,Private room,249,1,6,2019-06-23,1.06,8,87 +22452129,Private Guest Bedroom with beautiful back yard.,164516331,Hamza,Brooklyn,Bedford-Stuyvesant,40.68108,-73.92729,Private room,85,2,33,2018-09-30,1.86,1,0 +34123251,Charming Park Slope 2BR (15 Minutes to Manhattan!),257629980,William,Brooklyn,Gowanus,40.66907,-73.99221,Entire home/apt,195,2,6,2019-07-04,3.46,1,330 +6956956,SPACIOUS Room Near Manhattan!,18091740,Brittany,Brooklyn,Williamsburg,40.70198,-73.947,Private room,70,4,1,2016-12-08,0.03,1,0 +14577930,2 Bedroom 2 Bathroom Upper West,10549144,Anne,Manhattan,Upper West Side,40.80065,-73.96944,Entire home/apt,225,5,18,2019-04-24,0.58,2,96 +18086664,A place to feel like home; cozy room,124554019,Eric,Brooklyn,Crown Heights,40.67358,-73.93502,Private room,57,1,32,2019-06-27,1.38,2,95 +9371009,"Neat, Safe and Well Located Apt.",5993775,Vanessa K,Manhattan,Upper East Side,40.775,-73.94842,Entire home/apt,110,3,4,2016-08-16,0.09,1,0 +36277331,Gossip Girl Pied-à-terre @ Central Park and Plaza,272842040,Aly,Manhattan,Upper East Side,40.76703,-73.96979,Entire home/apt,225,2,0,,,1,39 +16673954,Charming West Village Brownstone w/Private Terrace,10437339,Ro,Manhattan,West Village,40.73898,-74.00415,Entire home/apt,250,5,10,2019-06-13,0.37,2,198 +6487933,BK Heights Apartment for cat lovers,14063,Meredith & Dave,Brooklyn,Brooklyn Heights,40.7007,-73.99257,Entire home/apt,150,5,15,2017-08-04,0.31,1,0 +1336390,"Charming, Quiet, & Clean 1BR APT",1673136,Erin,Manhattan,Chelsea,40.73981,-74.0016,Entire home/apt,199,3,35,2019-06-28,0.49,1,69 +15930495,Great apt in amazing East Village!,1778121,Jay,Manhattan,East Village,40.72692,-73.98781,Private room,119,3,8,2018-11-02,0.25,1,76 +12999167,Charming & Sunny Studio in the Heart of NYC,19726948,Willow,Manhattan,Lower East Side,40.72151,-73.98814,Entire home/apt,158,2,145,2019-06-24,4.81,1,193 +748656,Cozy Vintage Studio in Flushing (Close to LGA/JFK),1687335,Aimée,Queens,Flushing,40.76372,-73.79201,Shared room,108,5,2,2017-08-01,0.08,1,0 +33680582,Beautiful Apt in the Heart of the Upper East Side,245174862,Alexandra,Manhattan,Upper East Side,40.78091,-73.95384,Entire home/apt,175,2,0,,,1,38 +36266227,LaGuardia airport hub and very close to Manhattan,116027328,Aymen,Queens,East Elmhurst,40.76565,-73.88278000000001,Private room,45,1,0,,,1,45 +32223111,Clean/convenient apartment w/rooftop & gym.,9163877,Brian,Brooklyn,Bedford-Stuyvesant,40.69116,-73.95444,Entire home/apt,132,3,4,2019-06-09,1.03,1,205 +7712750,светлая комната с балконом,40516440,Galina,Brooklyn,Sheepshead Bay,40.58851,-73.9558,Private room,45,4,52,2019-06-12,1.09,1,341 +35461885,Stylish Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69768,-73.97564,Private room,48,30,0,,,25,337 +36144933,BEST DEAL 2 BR APT IN MANHATTAN! 6 BEDS AVAILABLE!,270583057,Reccie M.,Manhattan,Washington Heights,40.84366,-73.94018,Entire home/apt,195,5,0,,,1,270 +1732498,Hip Two Story BK Apt w/Private Yard,1818792,Clarissa & Rich,Brooklyn,Greenpoint,40.72716,-73.94971,Entire home/apt,199,2,25,2016-10-18,0.44,1,5 +57754,Stylish Large Gramercy Loft!,275578,R,Manhattan,Flatiron District,40.7403,-73.98498000000001,Entire home/apt,305,2,108,2019-06-30,1.09,1,201 +19642050,"Sparkling 2nd Flr Apt, Near JFK, LGA & NY City",138235784,Kay,Queens,Forest Hills,40.70838,-73.85155999999999,Entire home/apt,105,2,60,2019-06-28,2.49,2,319 +36025938,Cute & Clean Chinatown 1 bedroom!,271030049,Joy,Manhattan,Chinatown,40.71554,-73.9982,Entire home/apt,146,4,0,,,1,36 +30674463,Prime Location Affordable 2 Bedrooms,229284767,Ned,Manhattan,Midtown,40.75234,-73.98591,Entire home/apt,152,30,2,2019-04-08,0.38,1,0 +33751577,Luxury 3 Bed FiDi Charm Doorman Elevator | Laundry,254429373,James,Manhattan,Financial District,40.70563,-74.00919,Entire home/apt,325,5,7,2019-06-09,2.84,1,131 +25812723,Sunny 2 bdrm / 2 bath top floor brownstone,3245072,Brooke,Brooklyn,Bedford-Stuyvesant,40.68905,-73.95241999999999,Entire home/apt,175,2,5,2019-06-23,0.45,1,0 +28896237,"Sunlight, comfort, & Brooklyn charm near the Park",96379938,Alexander,Brooklyn,East Flatbush,40.65358,-73.94965,Private room,99,4,13,2019-05-09,1.41,2,48 +12652833,Spacious Penthouse Bedroom,68729548,Sebastian,Manhattan,Greenwich Village,40.72994,-73.99455,Private room,100,1,0,,,1,0 +2821079,Spacious 1 BR apt in the UWS,2333304,Roger,Manhattan,Upper West Side,40.77589,-73.98188,Entire home/apt,200,1,1,2014-07-15,0.02,1,0 +7742287,Spacious furnished room,40694772,Data05,Queens,Flushing,40.73331,-73.80811,Private room,55,2,0,,,1,0 +5760510,Lower East Side Studio !,1613244,Ariel,Manhattan,Lower East Side,40.72292,-73.99242,Entire home/apt,110,30,17,2019-05-25,0.34,9,276 +616585,Great house in Williamsburg ,10889,Bob,Brooklyn,Williamsburg,40.72091,-73.96133,Entire home/apt,250,3,25,2017-11-21,0.3,2,188 +23747870,Gjob,174838527,Weeks,Queens,Richmond Hill,40.692820000000005,-73.82849,Shared room,100,1,0,,,1,0 +24140119,"Cozy space with privacy near JFK, CASINO & NYC",181885526,Ling,Queens,South Ozone Park,40.67344,-73.82096,Private room,69,1,91,2019-07-05,5.95,1,90 +9349116,Great place - heart of Williamsburg,5854655,Ian,Brooklyn,Williamsburg,40.71824,-73.95455,Entire home/apt,200,1,1,2016-01-01,0.02,1,0 +16874685,MASSIVE ROOM IN HEART OF NYC!!! (CHELSEA/FLATIRON),13492085,Teri,Manhattan,Chelsea,40.74512,-73.99179000000001,Private room,200,1,8,2017-05-18,0.28,2,0 +9724452,Small cozy studio WashingtonHeights,45198805,Erika,Manhattan,Washington Heights,40.83288,-73.93821,Entire home/apt,70,1,0,,,1,0 +23213107,NYCTH Master Room,172640229,Jirapong,Queens,Woodside,40.74301,-73.8954,Private room,46,1,2,2019-04-22,0.16,1,96 +2539759,/,4358702,Bram,Manhattan,Harlem,40.82277,-73.94981,Private room,200,1,0,,,1,0 +24583645,"Best Location, Cozy Modern Room in Midtown",48805583,Gareth,Manhattan,Midtown,40.7496,-73.98244,Entire home/apt,170,6,35,2019-06-30,2.48,1,0 +2771126,Large Loft in Brooklyn w/ Deck,2333018,Max,Brooklyn,Clinton Hill,40.68998,-73.96072,Entire home/apt,142,10,8,2019-01-03,0.13,1,157 +21365714,Queens Village relaxing place,154700793,Evens And Charlene,Queens,Queens Village,40.70601,-73.73737,Entire home/apt,67,3,93,2019-06-29,4.46,1,134 +25290477,Beautiful bedroom on Riverside!,5887537,Margarita,Manhattan,Harlem,40.82297,-73.95481,Private room,80,5,1,2019-01-02,0.16,1,18 +31818320,Private room in center of Manhattan I,39528519,Max,Manhattan,Lower East Side,40.70988,-73.98686,Private room,73,15,0,,,28,185 +68403,The Cozy Brownstone Inn (discount)!,240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.683,-73.91981,Entire home/apt,145,3,127,2019-06-24,1.25,2,72 +20567374,Top floor apartment above the park,28190733,Richard,Bronx,Kingsbridge,40.88883,-73.90046,Entire home/apt,175,1,10,2018-11-02,0.54,1,0 +12587102,Spacious Loft in Williamsburg,1623346,Christopher,Brooklyn,Williamsburg,40.71468,-73.95841,Private room,53,2,2,2018-05-21,0.14,1,0 +4232356,Studio Apartment ,9368118,Peter,Manhattan,Upper East Side,40.77065,-73.95163000000001,Entire home/apt,150,1,0,,,1,0 +3835766,Oasis in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68565,-73.93249,Private room,57,2,43,2019-05-26,0.72,7,58 +30531143,Cozy Home 家 5,213781715,Anting,Brooklyn,Greenpoint,40.73378,-73.95569,Private room,199,1,0,,,33,180 +1367775,Furnished room with private bathroom,7419960,Marilyn,Manhattan,Roosevelt Island,40.76175,-73.95012,Private room,54,30,5,2018-08-18,0.15,1,2 +20182193,Not active,50740281,Jake,Manhattan,Chelsea,40.73686,-73.99349000000001,Entire home/apt,175,5,0,,,1,0 +22007011,Private room. Bushwick. 18 min train to NYC,160702123,Roxanne,Brooklyn,Bushwick,40.69234,-73.90889,Private room,50,1,13,2019-01-02,0.7,1,0 +34749431,Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69055,-73.91035,Private room,80,1,1,2019-06-02,0.79,2,314 +20864325,Private 1BR w/ Queen bed & TV next to Central Park,5582262,Anh,Manhattan,East Harlem,40.7954,-73.94926,Private room,99,2,56,2019-06-05,2.54,1,14 +34647032,Your Dreamaker on Times Square NYC,259087876,Dennis,Manhattan,Theater District,40.75896,-73.98216,Private room,91,1,5,2019-07-01,3.49,7,63 +8152675,CLEAN & COZY 2 bedroom apartment,34920172,Angela,Manhattan,East Village,40.72995,-73.98135,Entire home/apt,200,1,101,2019-06-24,2.19,1,247 +21848241,Artsy and charming retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.96042,Private room,95,1,48,2019-06-23,2.63,2,77 +803237,Duplex with two terraces and a view,3642035,Arsenio,Brooklyn,Crown Heights,40.67504,-73.95273,Entire home/apt,250,4,6,2019-01-02,0.08,1,250 +21978019,Sunny and Spacious Nolita 1BR apartment!,7650212,Alana,Manhattan,Nolita,40.72224,-73.99438,Entire home/apt,300,5,7,2018-11-14,0.46,1,0 +33847217,BIG BEDROOM CLOSE TO LA GUARDIA AIRPORT FREE WIFI,22784412,Stephanie,Queens,East Elmhurst,40.76402,-73.89098,Private room,44,1,0,,,2,0 +3848324,West Village apt - 2 Bedroom,11495251,(Email hidden by Airbnb),Manhattan,West Village,40.73123,-74.00428000000001,Entire home/apt,200,5,1,2014-08-30,0.02,1,0 +883306,1 Bedroom in Clinton Hill Share,4310378,Autumn,Brooklyn,Clinton Hill,40.69494,-73.96372,Private room,79,2,102,2019-06-17,1.41,3,361 +32085580,No Fee MASSIVE West Village Two bedrooms,24975940,William,Manhattan,Greenwich Village,40.73365,-73.99727,Entire home/apt,159,90,0,,,2,90 +36188287,Available for 4th July to 6th July,129250918,Manthan,Brooklyn,Fort Greene,40.68781,-73.98012,Shared room,200,1,0,,,1,9 +18043457,Spacious Private Room in Nolita,15651644,Alan,Manhattan,Chinatown,40.71866,-73.99633,Private room,120,3,1,2017-05-21,0.04,1,0 +27988835,Huge West Village Loft in Luxury Building,3330784,Dylan,Manhattan,West Village,40.73241,-74.00721999999999,Entire home/apt,180,6,2,2018-12-30,0.2,1,0 +19886609,The Magnificent,137411167,Becky,Bronx,Parkchester,40.84024,-73.85836,Private room,45,1,23,2019-06-01,0.96,1,54 +27788038,Beautiful overnight bed by Central park,209386156,Abraham,Manhattan,East Harlem,40.79861,-73.94116,Shared room,49,2,62,2019-06-30,5.81,9,3 +30674080,Beautiful 2-bedroom Apt near Times Square,64825610,Michel And Antoine,Manhattan,Hell's Kitchen,40.76011,-73.99087,Entire home/apt,299,3,23,2019-07-01,3.5,2,207 +13661280,Room in Carroll Gardens,3977023,Vaida,Brooklyn,Carroll Gardens,40.6839,-73.99266,Private room,75,5,0,,,2,0 +25895230,Private Bedroom in Midtown West with River View,18567068,Evelyn,Manhattan,Hell's Kitchen,40.76201,-73.99876,Private room,150,3,4,2018-07-09,0.31,1,0 +30706259,Fully Renovated East Village Oasis,229709908,Delia,Manhattan,East Village,40.724340000000005,-73.98208000000001,Entire home/apt,285,3,16,2019-07-06,3.48,1,241 +1240586,Spacious and clean 1 bed apt in West Harlem,900154,Joel,Manhattan,Harlem,40.80545,-73.95563,Entire home/apt,99,30,4,2018-08-03,0.09,1,0 +29338715,Clean Cozy Getaway--Just 15 Minutes From JFK,205243076,Diana,Queens,Cambria Heights,40.69238,-73.73646,Private room,65,2,13,2019-07-02,1.49,2,77 +10771369,Awesome Midtown Get-A-Way,55713233,Ryan,Manhattan,Murray Hill,40.7462,-73.97707,Entire home/apt,105,3,3,2016-09-06,0.08,1,0 +9047816,Beautiful Home 1 Stop from Midtown,2660650,Allan (& Max),Queens,Long Island City,40.74977,-73.93979,Private room,100,4,46,2019-06-29,1.18,1,284 +22349506,Shared room in nice surroundings in Ridgewood!!,134293540,Valentin,Queens,Ridgewood,40.70615,-73.90366999999999,Shared room,27,31,5,2018-07-06,0.27,4,6 +10174245,Clean & Cozy room near Central Park,7940120,Yasmine,Manhattan,Upper West Side,40.79958,-73.96403000000001,Private room,50,1,0,,,1,0 +14032445,Large One Bedroom Apartment,75853911,Sabrina,Manhattan,Harlem,40.80299,-73.95713,Entire home/apt,100,1,3,2016-09-16,0.09,1,0 +27863860,New York Apartment,106651452,Karen,Manhattan,Civic Center,40.7131,-74.00527,Entire home/apt,70,15,0,,,1,0 +8681776,"20 Mins to Manhattan, 7 mins LGA",17794638,Burak,Queens,Ditmars Steinway,40.77442,-73.91465,Private room,75,2,4,2016-10-01,0.12,1,0 +16364666,Brand New &Cozy Room Close to Subway Station,61042,Marlon,Manhattan,Harlem,40.82112,-73.95482,Private room,45,4,22,2018-12-31,0.71,6,0 +8189063,Cute Room in Williamsburg Apartment,3663218,John Conor,Brooklyn,Williamsburg,40.71321,-73.94099,Private room,60,1,0,,,2,0 +33959697,Sun-drenched apartment in Washington Heights,8990490,Jeffrey,Manhattan,Washington Heights,40.84542,-73.93945,Private room,55,1,1,2019-04-19,0.37,1,157 +3522539,"Musician's Loft 1BR w/ Outdoor Space, WiFi, Parks",515946,Jonathan,Manhattan,East Village,40.73041,-73.9896,Entire home/apt,159,4,45,2019-06-12,0.75,1,87 +7418754,"Affordable, quiet, brownstone home",601586,Luke,Brooklyn,Bedford-Stuyvesant,40.68148,-73.93145,Private room,79,1,0,,,1,0 +4596378,Nice and cozy near Laguardia,23824219,Joshua,Queens,East Elmhurst,40.75943,-73.89553000000001,Private room,44,3,46,2019-03-17,0.83,1,88 +2975715,August sublet in Greenwich Village,15178288,Michael,Manhattan,Greenwich Village,40.72603,-73.99746,Entire home/apt,161,21,0,,,1,0 +34389680,Beautiful bedroom is Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70056,-73.9184,Private room,50,1,1,2019-05-05,0.45,5,328 +28966170,"Bright, Sunny Private Room in Bushwick",26633737,Liz,Brooklyn,Bushwick,40.69571,-73.91637,Private room,65,3,0,,,1,3 +13699008,Warm sun bathed loft apartment in Greenpoint.,74310552,Jordan,Brooklyn,Greenpoint,40.73461,-73.95724,Entire home/apt,150,4,3,2019-02-10,0.24,1,0 +1961937,Lovely 2 bedroom apartment,3899946,Anna,Manhattan,Harlem,40.8233,-73.95591,Entire home/apt,120,5,8,2016-04-04,0.12,1,0 +13004741,"Bedroom in Clean, Uptown Apartment",1921498,Pedro Pablo,Manhattan,Washington Heights,40.84524,-73.93508,Private room,49,90,17,2019-06-01,0.49,3,142 +19784119,Harlem Haven,9427915,Ntifafa Akoko,Manhattan,Harlem,40.82105,-73.94588,Entire home/apt,100,2,27,2019-06-09,1.15,1,1 +27260995,2br apt for rent daily 10min away in train to City,114887819,Fernando,Brooklyn,Bushwick,40.69752,-73.93496999999999,Entire home/apt,245,2,5,2019-06-03,0.79,1,128 +33636178,Sonder | The Biltmore | Warm Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76122,-73.98583,Entire home/apt,182,29,0,,,327,333 +27949286,High Ceiling + Sunny Brooklyn loft experience :D!,211115242,Hardik,Queens,Ridgewood,40.7018,-73.89643000000001,Private room,80,1,16,2018-11-23,1.54,1,0 +31389481,NEW YORK CITY!!! MANHATTAN!!!,151300770,Joe,Manhattan,Upper East Side,40.77811,-73.95186,Private room,150,5,6,2019-06-12,1.73,4,280 +33640885,Sonder | Stock Exchange | Warm Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70579,-74.01245,Entire home/apt,203,2,1,2019-05-26,0.67,327,322 +12283732,"Spacious, Trendy, Convenient! Stay in Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70454,-73.9299,Entire home/apt,159,2,13,2019-04-28,0.34,7,317 +28044485,Chic sun-filled dream home in East Village,211836350,Jt,Manhattan,East Village,40.72744,-73.9831,Entire home/apt,209,3,4,2019-06-16,0.58,1,83 +15455678,Comfortable and convenient space for you!,48909179,Darris,Manhattan,Harlem,40.82834,-73.9496,Private room,49,2,55,2018-12-11,1.68,1,26 +4130266,Spacious Sunny Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69562,-73.93791999999999,Private room,86,2,11,2018-01-01,0.19,5,311 +2012424,Thanksgiving in Manhattan Luxury Suite,275744,Xander,Manhattan,Midtown,40.76542,-73.98080999999999,Entire home/apt,175,2,4,2018-11-25,0.12,1,0 +28920156,BEAUTIFUL LUXURY 2BDR APARTMENT ON PARK AVE,217996544,Ofir,Manhattan,Midtown,40.74407,-73.98385999999999,Entire home/apt,249,3,0,,,2,179 +23710983,Private light filled room in spacious apartment,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65626,-73.9577,Private room,75,4,6,2019-01-01,0.39,2,0 +25257443,Cozy Parkside Studio in the ❤️ of the East Village,190823422,Kimberley,Manhattan,East Village,40.72469,-73.97892,Entire home/apt,165,1,67,2019-07-01,5.51,1,38 +28083998,Private Room Family & Friendly,210297251,Grisel,Brooklyn,Crown Heights,40.67718,-73.95852,Private room,70,2,1,2018-09-14,0.1,1,0 +282341,Kensington/Ditmas Park pied-a-terre,1471384,Dan,Brooklyn,Kensington,40.6433,-73.97386,Entire home/apt,90,30,3,2017-07-30,0.05,1,286 +56467,Cozy East Village Railroad 1 Bed!,267593,Leonardo,Manhattan,East Village,40.72752,-73.98432,Entire home/apt,130,1,204,2019-07-01,2.04,1,192 +32308243,Stylish 1 Bedroom in the heart of Brooklyn,241523602,Mary,Brooklyn,Crown Heights,40.66854,-73.95857,Entire home/apt,100,2,9,2019-06-25,4.5,1,0 +14716077,"Spacious bedroom in Greenpoint, Brooklyn",34924990,Ashli,Brooklyn,Greenpoint,40.73374,-73.95617,Private room,55,20,3,2016-08-29,0.09,1,0 +32203689,A warm and friendly place!,241458287,Leandro,Bronx,Mott Haven,40.81098,-73.91814000000001,Entire home/apt,65,2,15,2019-06-18,3.26,1,51 +17173473,Ocean Blue Room,113558977,Joe,Queens,Rego Park,40.7265,-73.86017,Private room,30,1,120,2019-06-11,4.1,2,112 +5850978,"Huge, central & artsy Park Ave apt!",2843970,M&J,Manhattan,Flatiron District,40.74121,-73.98648,Entire home/apt,220,1,1,2015-06-17,0.02,1,0 +11754084,"Sunny, East Vil 1BR w Rooftop view!",8488826,Julia,Manhattan,East Village,40.72941,-73.98336,Entire home/apt,148,4,5,2017-01-01,0.13,1,0 +14153242,Large Sunny 1 BR - Heart of Manhattan!,7440944,Diana,Manhattan,East Village,40.72808,-73.98376999999999,Entire home/apt,179,4,13,2018-10-27,0.38,1,0 +20810529,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78098,-73.95854,Entire home/apt,225,30,0,,,33,315 +5707888,"Homey, Large, Gorgeous 2 BR Apt!",3780975,Shira,Manhattan,Harlem,40.80403,-73.95615,Entire home/apt,200,2,6,2016-01-03,0.12,1,0 +2093035,"Modern & Artsy, Awesome Location",10099888,Enrique,Brooklyn,Williamsburg,40.71243,-73.95873,Private room,91,1,9,2016-07-04,0.14,1,0 +24765844,✴SPACIOUS HOMEY✴ 2 BD Sleeps 6! Brooklyn NY,479986,Anthony,Brooklyn,Williamsburg,40.70768,-73.95137,Entire home/apt,170,2,77,2019-07-02,5.54,1,10 +9185696,Excellent 1 Bedroom Apt. in Queens,47790995,Harman,Queens,Queens Village,40.71846,-73.75584,Entire home/apt,75,5,85,2019-05-25,1.9,1,332 +3545066,Cozy Apartment in Chinatown/LES,7250241,Irene,Manhattan,Lower East Side,40.71306,-73.98855999999999,Private room,80,5,3,2015-08-29,0.05,1,0 +31648320,"Times Square Suite with amazing views, high rise !",237283897,Mj,Manhattan,Theater District,40.75412,-73.98601,Entire home/apt,119,1,18,2019-06-21,3.18,1,302 +34023619,Entire Apartment With Space For Two,84118689,Andrew,Manhattan,Upper East Side,40.77362,-73.94886,Entire home/apt,130,1,11,2019-06-20,4.34,1,26 +35160490,"Closed to any kind of restaurant, mall",264798401,Kristina,Queens,Rego Park,40.73213,-73.85717,Private room,90,7,1,2019-06-22,1.0,1,365 +13207586,Beautiful 1BR UES,74020712,Nicole,Manhattan,Upper East Side,40.7722,-73.95272,Entire home/apt,115,3,8,2017-02-20,0.22,1,0 +35172841,"Nights and weekends 4 mins to 2,5,3,4, trains",182989977,Sasha,Brooklyn,East Flatbush,40.65551,-73.93942,Private room,79,3,0,,,5,365 +18210425,Cozy room in Downtown Brooklyn.,125717450,Lawson,Brooklyn,Boerum Hill,40.68416,-73.97912,Private room,64,1,3,2018-12-18,0.19,1,3 +35672714,perfect location to experience the Big Apple,38580398,Lisa,Queens,South Ozone Park,40.6765,-73.81947,Entire home/apt,150,3,3,2019-07-06,3.0,1,327 +1256768,Beautiful Park Slope apt w garden,1537501,Lenny,Brooklyn,Park Slope,40.67157,-73.9852,Entire home/apt,147,7,42,2019-07-01,0.61,1,365 +18087564,Quiet spacious sunny studio in Greenpoint Brooklyn,5735174,Yoav,Brooklyn,Greenpoint,40.73542,-73.9562,Entire home/apt,120,20,17,2019-06-30,0.65,1,59 +19544381,Comfortable studio in heart of LES/Chinatown,2642103,Yuriy,Manhattan,Chinatown,40.71633,-73.9897,Entire home/apt,100,2,2,2017-10-17,0.08,1,0 +8368973,Modern & Comfortable 1 BR,28916226,Suzy,Brooklyn,Prospect-Lefferts Gardens,40.65774,-73.95201999999999,Entire home/apt,75,1,0,,,1,0 +35679813,Studio Style Basement in Shared Apartment,63356650,Rochelle,Brooklyn,Crown Heights,40.6771,-73.96007,Private room,60,20,0,,,1,38 +22734483,~Beautiful 1 Bedroom Apt in Prime Upper East Side~,45241930,Juline,Manhattan,Upper East Side,40.77207,-73.95599,Entire home/apt,150,60,6,2019-07-02,0.36,3,33 +27923071,A Nice Room to Stay in the Heart of Manhattan,137358866,Kazuya,Manhattan,Harlem,40.81094,-73.94273000000001,Private room,36,30,2,2019-06-15,0.22,103,215 +31677408,Perfect Upper West Side Studio,28334703,Stephen,Manhattan,Upper West Side,40.77974,-73.97973,Entire home/apt,150,4,2,2019-06-26,0.71,1,7 +21596559,佳源家庭旅馆,157067019,Ada,Queens,Flushing,40.76498,-73.82904,Private room,55,1,34,2019-07-07,1.73,3,78 +28289954,NewPlace 4,187908645,Jimmy,Queens,Flushing,40.75778,-73.83353000000001,Private room,70,1,7,2019-05-04,0.7,4,347 +30951804,"Serene, Super-Sized Oasis in Bed Stuy",37728210,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68805,-73.92599,Private room,175,2,0,,,1,83 +1971635,Adorable Apt on Prospect Park!,10180449,Isabel,Brooklyn,Windsor Terrace,40.65899,-73.97771,Entire home/apt,100,15,0,,,1,0 +32316532,Cozy Quaint Brooklyn Apartment,187877117,Skylar,Brooklyn,Crown Heights,40.67111,-73.92237,Entire home/apt,125,2,11,2019-07-07,2.6,1,128 +26840133,Oasis I,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68828,-73.95201,Private room,65,30,22,2019-06-04,1.89,3,365 +4048043,1 BR in Exposed Brick SoHo apt,10135,Jason,Manhattan,SoHo,40.71972,-73.99986,Private room,135,2,125,2019-06-16,2.14,2,340 +1283453,Adorable Williamsburg room!,4365496,Sarah,Brooklyn,Williamsburg,40.70794,-73.96077,Private room,112,2,9,2018-01-02,0.37,2,0 +25456296,Comfy single private room at quiet area in Queens,185914925,Mala,Queens,Hollis,40.7152,-73.76171,Private room,50,2,40,2019-06-12,2.96,2,84 +2041041,Your Living Room is the UES,7028387,Todd,Manhattan,Upper East Side,40.76749,-73.95533,Private room,80,24,89,2019-06-13,1.4,1,146 +12738473,Large Modern Studio Apartment UES,69276225,Amanda,Manhattan,Upper East Side,40.77873,-73.94917,Entire home/apt,115,14,1,2016-08-17,0.03,1,0 +8427638,NYC CHIC!!! LARGE STUDIO APT on UWS,9036787,Katie,Manhattan,Upper West Side,40.80109,-73.97093000000001,Entire home/apt,190,4,46,2019-05-12,1.02,1,207 +1361428,Private room w Patio in Nolita,4194894,Esef,Manhattan,Nolita,40.72122,-73.99395,Private room,105,1,16,2019-06-19,0.23,2,308 +16873148,3BR Home 25 Mins to Times Square + Manhattan,60665255,Nicholas,Queens,Maspeth,40.73147,-73.89486,Entire home/apt,175,1,60,2019-06-17,3.05,1,317 +15927523,Newly renovated ground floor apt in Williamsburg,103349564,Jennifer,Brooklyn,Williamsburg,40.71463,-73.96474,Entire home/apt,250,2,53,2019-07-06,1.68,1,2 +32657797,Comfy 3 bedroom apartment in Manhattan,245474906,Evgeny,Manhattan,East Harlem,40.795190000000005,-73.94115,Entire home/apt,350,3,8,2019-06-29,2.18,1,318 +22167066,Spacious & Private Harlem/Washington Heights Room,126397762,Xavier,Manhattan,Harlem,40.82967,-73.93956999999999,Private room,79,1,63,2018-11-27,3.28,3,51 +28941710,Tiny Home,149292557,Kimberly,Queens,Jackson Heights,40.75137,-73.86081,Entire home/apt,69,2,52,2019-07-06,5.63,2,137 +32347796,"Crisp Heart of Chelsea Studio, w/ Roofdeck + Gym, by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74112,-73.99483000000001,Entire home/apt,285,30,0,,,232,283 +221618,Gorgeous PermaGO Private Room in FiDi - 1/2,4887492,Gershwyn,Manhattan,Tribeca,40.71193,-74.00816999999999,Private room,150,3,82,2019-05-21,0.87,2,90 +34516181,Harbor View for Two!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70497,-74.01720999999999,Private room,100,1,0,,,7,348 +35354079,Cozy and luxurious apt in heart of Upper East Side,50484258,Daniel,Manhattan,Upper East Side,40.76299,-73.961,Entire home/apt,290,1,0,,,1,0 +21346661,Spacious Private Room in Greenwich Village,78007526,Nick,Manhattan,Greenwich Village,40.72883,-74.00145,Private room,130,1,43,2018-07-15,2.04,1,145 +20697637,Sun-Filled Artist's Duplex In Heart of W. Village,23075166,Hannah,Manhattan,West Village,40.73465,-74.00139,Entire home/apt,325,2,0,,,1,0 +33990756,Sonder | Stock Exchange | Ideal 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70754,-74.01205999999999,Entire home/apt,240,2,6,2019-06-19,2.69,327,340 +7858096,Large Bedroom in Kips Bay/Gramercy,41411803,Dan,Manhattan,Gramercy,40.7357,-73.98087,Private room,87,3,3,2015-10-05,0.06,1,0 +34575931,Summer home in NYC 5-Bedroom Private House,163565274,Carrie,Queens,Flushing,40.72453,-73.79847,Entire home/apt,189,2,6,2019-07-03,5.0,1,8 +10839007,Lower East Side Walk Up Apartment,56124518,David,Manhattan,Lower East Side,40.72005,-73.98409000000001,Private room,90,5,1,2016-05-28,0.03,1,0 +33833596,Convenient & Cozy Upper West Side 2 Beds Apartment,40629507,Ceive,Manhattan,Upper West Side,40.80238,-73.96736999999999,Entire home/apt,140,1,8,2019-06-16,4.36,1,0 +24358122,Brooklyn apartment living room for rent,30075148,Yating,Brooklyn,Williamsburg,40.70695,-73.94524,Private room,50,7,1,2018-04-27,0.07,1,0 +16565435,Light-filled South Slope Nest!,3291579,Rebecca,Brooklyn,Sunset Park,40.66156,-73.99318000000001,Entire home/apt,73,2,48,2019-06-21,1.86,1,2 +36265137,"Cozy, modern room close to Manhattan for 2 guests",272748063,Rosana,Queens,Woodside,40.75496,-73.90685,Private room,50,7,0,,,1,0 +29136920,REDESIGNED LUX Studio&garden Park Slope Brooklyn!,87786261,Sophia,Brooklyn,South Slope,40.66238,-73.98742,Entire home/apt,179,2,9,2019-06-23,1.03,5,152 +25742944,Bright beautiful studio with skyline views!,17254282,Kendall,Manhattan,Upper East Side,40.78133,-73.95198,Entire home/apt,220,2,3,2018-11-25,0.23,1,0 +32037535,Sumptuous floor through apartment in brownstone,212262028,R R,Brooklyn,Fort Greene,40.6882,-73.97651,Entire home/apt,160,3,13,2019-06-23,3.1,2,252 +17305490,Gorgeous Studio & Balcony Garden @ THE MOTHERSHIP,4680813,Gaia,Queens,Astoria,40.767520000000005,-73.9314,Entire home/apt,150,7,12,2019-05-31,0.42,1,3 +5846654,HUGE 1BR on the Upper East Side ,30354449,Avraham,Manhattan,Upper East Side,40.77139,-73.95766,Entire home/apt,110,1,3,2016-02-14,0.07,1,0 +25323446,Luxurious 2 bedroom home close to Airport and City,70774951,Farhan,Queens,East Elmhurst,40.767990000000005,-73.8795,Entire home/apt,132,1,114,2019-06-24,8.38,3,316 +25610990,Luxury Living in Greenpoint,193031210,Chris,Brooklyn,Greenpoint,40.72983,-73.95808000000001,Entire home/apt,180,10,16,2019-06-15,1.27,1,61 +32678724,Steps from varied cuisines at Restaurant Row!,244361589,Row NYC,Manhattan,Theater District,40.75792,-73.98899999999999,Private room,249,1,0,,,9,278 +15949915,"Quiet, Private 3.5 rooms, Manhattan convenient",103545877,Jon,Staten Island,Oakwood,40.56233,-74.12673000000001,Entire home/apt,100,2,2,2017-01-30,0.06,1,36 +36237967,Gorgeous 5th FL Walk-up Historic Harlem Sugar Hill,1687367,Mike,Manhattan,Harlem,40.82913,-73.94484,Entire home/apt,199,2,0,,,1,71 +17919742,Heart of Bushwick Apartment For Coffee Lovers!,8894559,Duncan,Brooklyn,Bushwick,40.70127,-73.91764,Entire home/apt,120,2,8,2018-11-25,0.31,1,1 +27507561,"Bright, Modern, King Size 1-Bedroom in Chelsea!",6344971,Sharat,Manhattan,Chelsea,40.7444,-73.99604000000001,Entire home/apt,240,2,8,2019-03-30,0.71,1,0 +13632649,Charming Vinegar Hill 1-bedroom apt w/ backyard,50210611,Ali,Brooklyn,Vinegar Hill,40.7041,-73.98089,Entire home/apt,135,6,1,2016-07-24,0.03,1,0 +35042474,法拉盛中心地段单身客房,263742622,Nan,Queens,Flushing,40.76377,-73.82692,Private room,50,1,6,2019-06-30,5.45,1,74 +10149453,SoHo Gem *Amazing Deal!!,12485770,Raanan,Manhattan,SoHo,40.72542,-74.00158,Entire home/apt,105,30,2,2019-03-03,0.06,9,327 +5144831,Modern and convenient,2055698,Nadia Dara,Manhattan,Upper East Side,40.77944,-73.95296,Entire home/apt,125,3,2,2016-08-25,0.05,1,0 +10067199,Private room in Upper West Side Apt,47472192,Johanna,Manhattan,Upper West Side,40.79954,-73.9626,Private room,42,12,0,,,1,0 +18736267,Bright and Tranquil Apartment,10805053,Devan,Brooklyn,Boerum Hill,40.68602,-73.98311,Entire home/apt,300,2,4,2018-11-12,0.37,1,311 +12089661,Luxury bldg Near Flatiron- Chelsea,438593,SaeHo,Manhattan,Chelsea,40.74491,-73.99535999999999,Private room,175,1,1,2016-04-08,0.03,2,0 +13276227,KINGLY MANHATTAN RED ROOM WITH GYM AND AMENITIES,71176668,David,Manhattan,Harlem,40.81627,-73.93512,Private room,110,2,9,2019-05-04,0.26,4,280 +29662414,"Grand Street in Brooklyn, G stop, L stop.",162938514,Alex,Brooklyn,Williamsburg,40.71121,-73.95028,Entire home/apt,250,2,24,2019-06-29,3.01,1,282 +32090300,Brooklyn Basement Bungalow BBnB,48112774,Sainabou,Brooklyn,Bedford-Stuyvesant,40.67767,-73.91784,Private room,100,1,7,2019-06-30,1.83,1,365 +19998620,Basic Overnight Stay by Subway w/ free parking,116100517,David,Queens,Flushing,40.75553,-73.83306999999999,Entire home/apt,39,1,2,2017-07-29,0.08,1,0 +34835501,The River View- Sutton Place,61396454,Ash,Manhattan,Midtown,40.75451,-73.96348,Entire home/apt,190,30,0,,,14,365 +7053496,Charming private room,15542610,Carol,Manhattan,Washington Heights,40.84289,-73.93925,Private room,60,1,86,2017-01-09,1.94,1,0 +17865806,Convenient location Private room,5828830,Low,Queens,Jamaica,40.67414,-73.76454,Private room,50,7,14,2018-07-28,0.5,2,0 +29455559,Large 1 Bed Beautiful view LES in Luxury Building,221871654,Tim,Manhattan,East Village,40.72185,-73.98451,Entire home/apt,255,2,1,2019-05-17,0.57,1,0 +33654285,Charming 1 bedroom apartment with private patio,3129709,Mathew,Manhattan,Upper West Side,40.7867,-73.96951,Entire home/apt,165,2,0,,,1,5 +253466,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73693,-73.95284000000001,Entire home/apt,199,3,33,2019-06-24,0.47,28,60 +29899434,Very Private One Bedroom Apt near NYU in Manhattan,224825910,Dee,Manhattan,Kips Bay,40.74273,-73.97998,Entire home/apt,100,1,5,2019-01-19,0.64,1,0 +10070693,Convenient Upper East Studio Apt,51651427,Sayaka,Manhattan,Upper East Side,40.7612,-73.96254,Entire home/apt,95,16,8,2018-01-03,0.2,1,0 +32234674,Tribeca Studio w/ Gym + Pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71543,-74.00647,Entire home/apt,282,30,0,,,232,302 +27784556,"Beautiful, New Williamsburg apartment.",8197910,Matthew,Brooklyn,Williamsburg,40.71652,-73.94809000000001,Private room,120,1,16,2019-06-09,1.55,1,85 +16821,Large Room in Amazing East Village Apt,4396,Casey,Manhattan,East Village,40.72298,-73.98474,Private room,99,1,106,2019-06-21,1.26,2,336 +34421245,Comfort in Quaint Jewel of Hudson Heights,840868,Ric,Manhattan,Washington Heights,40.85112,-73.93851,Entire home/apt,91,4,0,,,2,67 +1645772,"Private Entrance/Bath, 2 story Apt.",8026393,Ruth,Manhattan,Upper East Side,40.77118,-73.9527,Private room,150,2,121,2019-06-29,1.72,1,225 +22689939,HUGE One Bedroom East Village!,167258458,East Village,Manhattan,East Village,40.72162,-73.97774,Entire home/apt,135,3,49,2019-06-25,2.71,2,202 +14968403,"Warwick & Bethel stays at ""The Brooklyn Mansion""",49508002,Ivia,Brooklyn,Bushwick,40.69141,-73.92092,Entire home/apt,200,3,6,2018-08-27,0.22,1,194 +28250228,Private room in shared lovely apartment,70640922,Enzo,Manhattan,Gramercy,40.73314,-73.9838,Private room,115,3,6,2018-12-16,0.59,1,0 +16164699,"home away from home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74271,-73.78749,Entire home/apt,94,1,18,2019-05-02,0.6,3,173 +7358093,Brooklyn Brownstone with Backyard,26202073,Raven,Brooklyn,Bushwick,40.68833,-73.91676,Entire home/apt,89,5,0,,,1,0 +33342461,Charming Studio,16083192,Alexander,Manhattan,Upper West Side,40.77907,-73.98684,Entire home/apt,208,3,0,,,1,150 +957002,Cozy PRIVATE Studio Apartment UWS and Jazz Tour.,5202854,Sabrina,Manhattan,Upper West Side,40.7982,-73.96394000000001,Entire home/apt,100,1,129,2019-06-21,1.76,1,281 +20690341,Jeanie's Casita,148074786,Jeanette,Bronx,Morrisania,40.82627,-73.90803000000001,Private room,65,2,0,,,1,0 +24740209,Long term/16 month sublet. Great location!,4267075,Jen,Brooklyn,Clinton Hill,40.68458,-73.96805,Entire home/apt,89,365,1,2018-08-23,0.09,2,0 +4271059,Huge 2.5 bdrm in North Brooklyn!,208565,Maria,Brooklyn,Greenpoint,40.73527,-73.95398,Entire home/apt,145,2,7,2016-08-16,0.13,2,0 +13235951,Bright & spacious Room in Harlem,74330820,Rachel,Manhattan,East Harlem,40.81286,-73.93618000000001,Private room,52,1,33,2018-11-19,0.91,2,4 +3819703,5107-Studio Doorman GYM LuX,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79082,-73.97452,Entire home/apt,140,30,4,2017-09-04,0.09,96,342 +14486682,Chic 1 br with huge private garden,1206310,Szilvia & Akos,Brooklyn,Bushwick,40.69369,-73.92421,Entire home/apt,120,10,3,2017-06-19,0.09,1,0 +3218526,Sunny Suite in Historic Brooklyn,103640,Samantha And Scott,Brooklyn,Flatbush,40.63649,-73.96508,Entire home/apt,165,2,172,2019-07-06,3.1,1,264 +36454025,Private 5 star room,261338177,Diana,Brooklyn,Gravesend,40.59131,-73.97114,Private room,33,2,0,,,6,318 +35496813,"Malls, Resturants, Parks, Beaches, Musems, Gyms",224558991,Gerry Elizabeth,Brooklyn,East New York,40.65681,-73.87854,Private room,31,1,0,,,1,105 +1137093,Triplex Penthouse in New York,5446918,Paresh,Brooklyn,Williamsburg,40.71756,-73.94839,Entire home/apt,300,5,34,2019-06-15,0.46,1,365 +23714194,Spacious Sunny Studio- heart of Lower East Side,15603100,Brooke,Manhattan,Lower East Side,40.71908,-73.98379,Entire home/apt,220,2,40,2019-05-13,2.51,1,1 +28345080,* GRAMERCY * TOP LOCATION * ULTRA MODERN BEDROOM,214029598,Stav,Manhattan,Stuyvesant Town,40.73389,-73.98016,Private room,120,3,3,2019-01-06,0.33,1,0 +30954828,Clean and Cozy 1 Bedroom Apartment in LES,90230216,Ellen Fannie,Manhattan,Lower East Side,40.71966,-73.98184,Entire home/apt,102,2,2,2019-01-01,0.3,1,0 +32731541,HUGE duplex floor for share with 1 girl,49758877,Karina,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94757,Shared room,30,18,8,2019-06-23,1.89,1,27 +16396507,Full 1 bedroom apt in an awesome area!,1175504,Verun,Manhattan,Kips Bay,40.74301,-73.98037,Entire home/apt,120,4,2,2017-05-27,0.07,1,0 +17926910,East Harlem Studio Apartment,122924398,Lynn,Manhattan,East Harlem,40.79424,-73.93495,Entire home/apt,125,1,123,2019-06-22,4.54,1,84 +13167453,Crash Pad Close to LGA/JFK/Manhattan,21216008,Jose,Queens,Jackson Heights,40.74989,-73.87829,Shared room,35,1,120,2019-06-21,3.18,4,340 +19011527,cool three bedroom on 111th street,5490071,Alex,Manhattan,East Harlem,40.79475,-73.94247,Entire home/apt,150,4,67,2019-06-30,2.7,3,242 +34639878,Charming room in Fort Greene prewar apt. building.,3997038,Zankhana,Brooklyn,Fort Greene,40.68736,-73.97639000000001,Private room,100,1,7,2019-06-30,3.96,1,45 +32241235,Sonder | Stock Exchange | Airy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70727,-74.01026,Entire home/apt,235,2,3,2019-06-11,1.58,327,341 +18650087,Red Flower,21854022,Paul,Manhattan,Harlem,40.8225,-73.94493,Entire home/apt,200,1,78,2019-07-07,3.0,1,84 +31439169,One bedroom right next to Central Park on UES!,95635119,Ella,Manhattan,Upper East Side,40.7848,-73.95687,Private room,42,3,7,2019-06-29,1.39,1,131 +29385308,Brownstone Studio,221371129,Denise,Brooklyn,Carroll Gardens,40.67787,-73.99973,Entire home/apt,130,4,9,2019-06-25,1.09,1,70 +11396225,Beautiful Brownstone apt in Central Harlem,9585945,Tom & Emma,Manhattan,Harlem,40.80761,-73.94249,Entire home/apt,140,4,7,2018-11-08,0.2,1,128 +3790746,Tidy Sweet Room in Sugar Hill/Hamilton Heights,1317384,Tamara,Manhattan,Harlem,40.82621,-73.94596,Private room,72,3,154,2019-06-22,2.72,2,153 +22340384,Great Place! Great Space! Welcome 2 My BK Place!,18049970,Lou,Brooklyn,Brownsville,40.65948,-73.90084,Entire home/apt,175,3,56,2019-07-08,3.0,2,288 +35373350,1 BR w/ PRIVATE GARDEN and BBQ GRILL!!! in BK,91176276,Carolyn,Brooklyn,Boerum Hill,40.6889,-73.9871,Entire home/apt,250,2,3,2019-07-07,2.73,1,10 +34511326,Fabulous 2Bed 2Bath- Gym-Drman-Roof-Playr-High end,236572440,David,Manhattan,Midtown,40.75535,-73.96469,Entire home/apt,340,30,0,,,2,297 +11567796,Great Apartment in Midtown New York,48024019,Andrea,Manhattan,Midtown,40.74644,-73.98389,Entire home/apt,200,1,0,,,1,0 +21230883,Private Room in Bushwick Apartment,17330515,Natalie,Brooklyn,Williamsburg,40.70796,-73.92412,Private room,78,2,3,2019-05-30,1.55,1,73 +30505964,Cozy renovated Brooklyn apt near LGA JFK NYC,73624239,Sarah,Brooklyn,East New York,40.67396,-73.87905,Entire home/apt,120,2,11,2019-07-01,1.68,1,62 +13329706,Charming apartment with parking in the heart of Qs,55829442,Shahar,Queens,Kew Gardens Hills,40.73078,-73.82231999999999,Entire home/apt,40,10,4,2016-07-18,0.11,1,0 +12795851,Clean & Spacious Bushwick Loft (front),21467726,Tyler,Brooklyn,Williamsburg,40.702940000000005,-73.93711,Private room,70,1,10,2019-04-14,0.29,2,281 +14887025,Upscale Furnished Studio near Union Square!!,30283594,Kara,Manhattan,Chelsea,40.74615,-73.99181999999999,Entire home/apt,109,30,0,,,121,184 +17023591,Warm and Cozy.,40972641,Christopher,Queens,Fresh Meadows,40.74202,-73.78820999999999,Private room,40,1,18,2017-09-01,0.61,2,0 +5352301,Housing for SGU/AUA/SABA/ROSS students,27741331,Lyn,Brooklyn,East Flatbush,40.65777,-73.92263,Private room,27,30,9,2019-03-23,0.18,2,345 +2404708,Williamsburg 1 bedroom appartement,12290324,Lara,Brooklyn,Williamsburg,40.71952,-73.96281,Entire home/apt,250,5,21,2019-03-28,0.35,1,284 +23559210,Sweet Studio Manhattan,176038984,Elena,Manhattan,Midtown,40.74688,-73.98701,Entire home/apt,220,4,17,2019-02-26,1.06,1,208 +32542856,Newly Remodeled Private Room in SoHo,244197139,Brooke,Manhattan,Nolita,40.72033,-73.99526999999999,Private room,66,30,1,2019-04-16,0.36,5,125 +11077282,The Justice House,38068387,Xolie,Brooklyn,Clinton Hill,40.69308,-73.96649000000001,Entire home/apt,207,2,58,2019-07-03,1.49,4,1 +21746100,2 bed 2 bath in cool east Williamsburg Loft!,19298428,Lucy,Brooklyn,Williamsburg,40.705090000000006,-73.93471,Entire home/apt,150,2,6,2019-05-04,0.31,1,0 +21295942,"Modern, Bright, 2 BR/2 Bath, Clinton Hill, Bklyn",137389534,Abby,Brooklyn,Bedford-Stuyvesant,40.68583,-73.9587,Entire home/apt,265,4,16,2019-06-27,0.77,1,144 +3238517,Brooklyn Cozy Garden Apt,16385595,Ava,Brooklyn,Bedford-Stuyvesant,40.67994,-73.94318,Private room,105,14,26,2019-06-05,0.42,1,285 +924600,"Sunny, private room in Brooklyn!",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68713,-73.93659,Private room,35,5,69,2019-06-15,0.91,3,244 +4007770,One Bedroom in Heart of Harlem,16949652,Derrick,Manhattan,Harlem,40.80655,-73.94854000000001,Entire home/apt,275,1,0,,,1,0 +33621265,Large Cozy Prospect Lefferts II,1512819,Sydney,Brooklyn,East Flatbush,40.65292,-73.95229,Private room,45,5,2,2019-05-31,1.07,5,159 +24258555,URBAN SPACE the Brooklyn Way!,160318374,Giulia,Brooklyn,Bedford-Stuyvesant,40.67791,-73.92879,Entire home/apt,103,30,42,2019-05-10,2.91,2,139 +21312595,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70475,-73.81572,Private room,165,1,2,2018-01-01,0.09,18,355 +21927300,LGA Newly Renovated One Bedroom Apt.1,156952896,Haijiao,Queens,East Elmhurst,40.76537,-73.87639,Entire home/apt,100,1,198,2019-07-05,10.15,2,156 +27314650,"Spacious room w/attached bath, center of Flushing",205745676,Liqin,Queens,Flushing,40.75897,-73.82011,Private room,95,1,30,2019-07-07,2.66,9,353 +4171692,Luxe New Queen Br near Subways,17462748,Steven,Brooklyn,Crown Heights,40.67412,-73.93833000000001,Private room,70,5,92,2019-07-06,1.58,5,148 +13996108,Townhouse for rent,83593559,Inji,Brooklyn,Greenpoint,40.72704,-73.94587,Entire home/apt,150,14,0,,,1,0 +31225404,Private Room/Descent Host/close to Subway for Manh,107930075,Ameet,Queens,Ozone Park,40.68436,-73.84213000000001,Private room,50,1,1,2019-05-19,0.58,2,89 +14911628,Modern 1BR Apt in the Heart Of NYC,87848042,Val,Manhattan,Hell's Kitchen,40.75611,-73.99387,Entire home/apt,180,7,17,2019-06-30,0.53,1,5 +22911635,"Three Bedroom Duplex apart. Clean, Modern Apt. 41",80479138,Gordon,Manhattan,Midtown,40.75946,-73.96498000000001,Entire home/apt,189,30,3,2019-04-27,0.21,5,108 +31293545,Sunny Hamilton Heights Apartment,3951033,Folami,Manhattan,Harlem,40.83032,-73.9421,Entire home/apt,120,5,7,2019-06-08,1.69,1,84 +13903497,"Stunning, Unique, w/ Private Workspace",2861768,Justin,Manhattan,Harlem,40.81142,-73.95134,Private room,69,15,19,2019-06-15,0.54,3,106 +9707498,"Sunny, Quiet Home in Brooklyn's Best Area (Legal)",43438475,Viviana,Brooklyn,South Slope,40.66759,-73.99009000000001,Entire home/apt,120,3,152,2019-06-27,3.6,3,180 +13392858,A Small Kingdom in the Clouds,16437254,Benjamin,Brooklyn,Boerum Hill,40.68724,-73.98496999999999,Entire home/apt,120,30,7,2019-06-19,0.38,21,342 +530247,☆ Home Away From Home <3 of NYC! ☆ 2BR ENTIRE HOME,2604437,Lane,Manhattan,Upper West Side,40.78339,-73.98003,Entire home/apt,250,4,2,2014-06-28,0.03,2,0 +13314206,Beautiful Spacious Apt. in Washington Heights!,2383846,Lisa,Manhattan,Washington Heights,40.83945,-73.94353000000001,Entire home/apt,110,14,5,2018-08-24,0.14,1,0 +179670,High-end doorman bldg in the LES,21475,Milan,Manhattan,Lower East Side,40.72019,-73.98217,Private room,120,2,99,2019-06-27,1.04,1,345 +30731674,Spacious studio in the heart of NYC,1995636,Oleg,Manhattan,Midtown,40.75634,-73.96519,Entire home/apt,225,30,1,2019-04-20,0.37,1,108 +30174660,Room for Temporary Sublet Nov. 21`-28,226684665,Nicholas,Queens,Ridgewood,40.70673,-73.90071,Private room,40,1,0,,,1,0 +213330,RARE Penthouse Oasis featured on DesignSponge,800223,Nader,Manhattan,Lower East Side,40.71712,-73.98898,Private room,200,30,25,2018-08-29,0.49,1,0 +14296562,"Entire Home in Gramercy, Duplex Loft",6543299,Sun-Young,Manhattan,Kips Bay,40.73958,-73.98258,Entire home/apt,195,2,12,2018-07-08,0.41,1,0 +591565,Everyone who stays leaves happy!,2919467,Lisa,Manhattan,Tribeca,40.71552,-74.00749,Private room,229,1,62,2014-04-27,0.73,1,36 +22023444,Luxury Studio Apartment,7647511,Mike,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92222,Entire home/apt,100,4,15,2019-06-17,0.81,1,0 +3448037,Modern Pad in Prime Williamsburg!,634096,Naomi,Brooklyn,Williamsburg,40.716440000000006,-73.95876,Entire home/apt,250,1,0,,,1,0 +30461720,"Cozy yet Spacious 1BR Apt, 25 Min from Manhattan",157219382,Lucy,Queens,Elmhurst,40.74717,-73.87645,Entire home/apt,75,6,1,2019-01-25,0.18,1,0 +28862464,Harlem Gem,75972444,Danielle,Manhattan,Harlem,40.80659,-73.95266,Private room,200,1,2,2019-06-24,2.0,1,32 +19596021,Cozy Apartment in a Private House,137772585,George,Queens,Jackson Heights,40.753820000000005,-73.88231,Entire home/apt,150,2,21,2019-07-02,1.07,1,288 +21659494,"Spacious queen bedroom, private bath in Brooklyn",26379887,Marine,Brooklyn,Greenpoint,40.72891,-73.95618,Private room,150,2,4,2018-10-31,0.2,1,0 +29329932,Cozy boho 1-bedroom in brownstone,43349835,Caroline,Manhattan,Gramercy,40.73395,-73.9821,Entire home/apt,135,14,2,2019-01-01,0.27,1,240 +35628011,Peaceful Studio,6428897,Negin,Brooklyn,Williamsburg,40.70677,-73.94196,Entire home/apt,95,3,1,2019-06-20,1.0,1,5 +25534630,2 bedroom Flat in Park Slope,17581024,Kemar,Brooklyn,Gowanus,40.67814,-73.98264,Entire home/apt,150,4,9,2019-06-23,0.74,2,6 +13681859,B's SoHo Apartment,3522798,B,Manhattan,SoHo,40.72626,-74.00154,Entire home/apt,158,1,0,,,1,0 +7956643,Authentic Brooklyn - Near Prospect Park,3251778,Megan,Brooklyn,Crown Heights,40.67323,-73.9619,Entire home/apt,125,2,4,2016-10-16,0.09,1,0 +1750679,THE LINCOLN PARLOR,9209820,Althea,Brooklyn,Crown Heights,40.66946,-73.95008,Entire home/apt,185,3,115,2019-06-08,2.09,3,314 +26098654,3 bedroom duplex with skyline view roof terrace,6568666,Jeroen,Brooklyn,Clinton Hill,40.69003,-73.96865,Entire home/apt,274,2,0,,,1,24 +33013821,Light Filled Room in EV,245637171,Min,Manhattan,East Village,40.72997,-73.98553000000001,Private room,62,30,0,,,8,341 +51572,Prime Location in Manhattan,237329,Lee,Manhattan,Chelsea,40.74859,-73.99671,Private room,123,1,375,2019-06-18,3.52,1,328 +1750248,"Priv room in 3 bdrm apt - Room ""A""",9207223,Ryan,Manhattan,Harlem,40.80247,-73.94530999999999,Private room,90,2,17,2015-09-01,0.24,3,177 +15052056,Entire APT in Center of Park Slope Brooklyn,83171661,Yuichi,Brooklyn,South Slope,40.66752,-73.9849,Entire home/apt,90,6,2,2017-08-28,0.06,3,0 +26131794,Super Luxurious 2 Bedroom Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.7512,-73.97738000000001,Entire home/apt,175,30,2,2019-04-30,0.38,91,241 +26142708,Yankee baseball stay,158215530,Deon,Bronx,Concourse,40.82753,-73.92463000000001,Private room,200,1,0,,,2,365 +34869197,Chic Sunlit Williamsburg Apartment w/Private Patio,262884890,Cam,Brooklyn,Williamsburg,40.70708,-73.94168,Entire home/apt,154,3,5,2019-07-04,4.05,1,269 +12223531,Spacious and sun-drenched bedroom,2018172,Mimi,Brooklyn,Williamsburg,40.70751,-73.95441,Private room,80,1,2,2016-08-17,0.05,1,0 +22928216,Upper East Side Gem,169340719,Oscar,Manhattan,Upper East Side,40.77698,-73.95864,Entire home/apt,159,15,2,2018-04-15,0.11,1,0 +16481602,Nice one bedroom apartment,85002860,Manuel,Manhattan,Morningside Heights,40.81387,-73.96205,Entire home/apt,110,10,0,,,1,0 +5397157,Private studio by McCarren Park!,27530449,Estefania,Brooklyn,Greenpoint,40.72071,-73.94901999999999,Private room,94,4,199,2019-06-14,3.75,2,246 +33689191,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",2350326,Ero,Queens,Ditmars Steinway,40.7786,-73.91031,Entire home/apt,140,15,0,,,2,0 +35816788,Artists cave,226970380,Tunie,Manhattan,East Village,40.72555,-73.98198000000001,Entire home/apt,145,1,3,2019-07-02,3.0,1,84 +28756175,Huge Sunny Private Bedroom & Private Bathroom - BK,27186438,Kaylee,Brooklyn,East Flatbush,40.65345,-73.94881,Private room,43,6,2,2019-01-04,0.22,1,311 +13564490,Classic pre-war NYC apartment.,34911780,Daniel,Manhattan,Inwood,40.86076,-73.92781,Entire home/apt,100,4,41,2019-07-02,1.11,2,100 +18198439,BRIGHT SHABBY CHIC FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81447,-73.94721,Entire home/apt,165,7,35,2019-07-01,1.39,3,269 +1656585,Sunny 1bd - Near SOHO Washington SQ,1147345,Molly,Manhattan,Greenwich Village,40.72866,-74.00095,Entire home/apt,226,3,25,2019-01-02,0.36,1,80 +28097610,relaxing bed and breakfast feel apartment.,84366617,Kathy,Brooklyn,Gravesend,40.58771,-73.96600000000001,Entire home/apt,80,2,1,2019-06-23,1.0,2,229 +19602663,1 Room in high rise facing Central Park w/ balcony,137821526,Cathy,Manhattan,East Harlem,40.79622,-73.94825,Private room,160,1,0,,,2,0 +33230211,Bedroom in NYC!! - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.863240000000005,-73.92681999999999,Private room,100,1,4,2019-07-01,1.58,9,315 +19691853,Perfect 1 bedroom for short or extended stay.,106955062,Arelis,Manhattan,Harlem,40.81143,-73.94935,Entire home/apt,100,3,16,2019-05-13,0.66,1,0 +34213403,"Comfy Sunnyside Room, Midtown in less than 30!",137358866,Kazuya,Queens,Sunnyside,40.74627,-73.92027,Private room,43,30,0,,,103,216 +9334086,"Large 1BR apt,25min to Times Square",25402037,Khaleed,Manhattan,Washington Heights,40.84465,-73.93733,Entire home/apt,80,2,3,2016-03-30,0.07,1,0 +21380282,"Spacious private bedroom in Park Slope, Brooklyn.",2245915,Jonathan,Brooklyn,Gowanus,40.6812,-73.98186,Private room,85,3,2,2018-09-29,0.15,1,0 +19311031,Sunny Chic Crown Heights One Bedroom,9453989,Nneya,Brooklyn,Crown Heights,40.6735,-73.95322,Entire home/apt,90,13,12,2019-06-01,0.58,1,74 +21983780,Bright Designer NoHo/Greenwich Village Loft,15220846,Marika,Manhattan,NoHo,40.72705,-73.9933,Entire home/apt,274,4,4,2019-04-06,0.22,1,7 +21589992,Bushwick Oasis,3309100,Merrily,Brooklyn,Williamsburg,40.70443,-73.93039,Private room,65,2,71,2019-06-26,3.65,1,249 +12602408,Cozy little room in beautiful brownstone house !,57059509,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69221,-73.93823,Private room,50,20,19,2018-08-31,0.56,1,2 +36237529,"Beautiful Cozy Room, 20mn to FREE ferry",272557707,Marouene,Staten Island,Rosebank,40.6075,-74.07979,Private room,65,1,1,2019-07-05,1.0,1,179 +6669443,Bedroom with Empire St Bldg View!,8816218,Alexa,Brooklyn,Williamsburg,40.71162,-73.94551,Private room,125,1,0,,,1,0 +30347099,"Cozy, Airy One Bedroom in Greenwich Village",147186603,Wesley,Manhattan,Greenwich Village,40.73004,-74.00128000000001,Entire home/apt,350,3,1,2019-03-17,0.26,1,7 +34233430,Contemporary studio in Manhattan,258460961,Elena,Manhattan,Upper East Side,40.77932,-73.94547,Entire home/apt,150,3,4,2019-06-30,1.9,1,315 +7775711,1 bedroom in Bed-Stuy,33190103,Kris,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9478,Entire home/apt,70,2,1,2015-08-11,0.02,1,0 +30156697,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73181,-74.00605999999999,Entire home/apt,300,3,21,2019-07-01,5.25,5,308 +12869930,2 bedroom Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76313,-73.99481999999999,Entire home/apt,115,30,4,2019-04-17,0.12,31,65 +1279234,"Massive, sunny 1-br in Brooklyn",3967827,Ezequiel,Brooklyn,Crown Heights,40.66886,-73.95411999999999,Entire home/apt,150,50,4,2017-08-20,0.07,1,312 +21645894,Mother of the Believers,157525611,Chika,Manhattan,Harlem,40.80015,-73.95483,Private room,50,1,3,2017-11-07,0.15,1,0 +866890,Budget/diamond in heart of Harlem,4555996,Ben,Manhattan,Harlem,40.82316,-73.94129000000001,Private room,65,3,68,2019-07-05,0.88,2,361 +7999409,Amazing Riverside Park Studio,9835167,Abby,Manhattan,Upper West Side,40.781290000000006,-73.98572,Shared room,65,2,7,2015-10-22,0.15,2,0 +9201458,Gorgeous bedroom near Central Park,13794250,Jackie,Manhattan,Upper West Side,40.78107,-73.97816999999999,Private room,75,5,1,2015-11-21,0.02,1,0 +36131210,Luxury new private studio one stop to Manhattan4,53620244,Chiara,Queens,Long Island City,40.74812,-73.93875,Entire home/apt,180,1,1,2019-07-04,1.0,1,334 +1360791,Renovated Big Private Room # 3,2712353,Masud,Brooklyn,Cypress Hills,40.68822,-73.8759,Private room,40,28,91,2019-06-24,1.25,4,325 +461050,Perfect Bedford L Williamsburg Location!,2286224,Sarah,Brooklyn,Williamsburg,40.71613,-73.95837,Entire home/apt,200,3,17,2016-05-12,0.2,1,67 +7622042,"Sunny, quiet home away from home",35743318,David,Manhattan,Upper East Side,40.77756,-73.94859,Private room,140,7,9,2018-09-13,0.6,1,204 +33832840,"Beautiful, Cozy & Private Bedroom in Bushwick BKLN",11123552,Paola,Brooklyn,Bushwick,40.7011,-73.92194,Private room,50,1,26,2019-07-05,9.4,2,74 +11544577,COLUMBIA PRESBYTERIAN MED CTR *1 Bedroom* Apt,25237492,Juliana,Manhattan,Washington Heights,40.84098,-73.94085,Entire home/apt,110,30,7,2018-12-01,0.18,34,252 +18004987,Warm cozy green house,109854433,Careen,Brooklyn,Bushwick,40.68815,-73.91032,Entire home/apt,120,2,76,2019-06-24,2.78,2,270 +20862947,Yankee Stadium Superhost! A 1BR/1BA City Escape!,125588995,Elliot,Bronx,Concourse Village,40.82638,-73.92225,Private room,55,1,46,2019-07-03,2.16,1,46 +33107548,NYUW05-2: Centra Park one bedroom by river,39890192,Laura,Manhattan,Upper West Side,40.80319,-73.96676,Private room,70,15,0,,,12,153 +26996466,Lumber lodge,167459000,Adrian,Brooklyn,Bushwick,40.69482,-73.91096,Private room,60,1,0,,,1,5 +28582698,"Private Studio, 5 minutes from JFK",63056614,Ana,Queens,Jamaica,40.671890000000005,-73.77769,Entire home/apt,65,2,40,2019-07-05,4.44,1,123 +35995460,"Comfortable place to stay, downtown Manhattan, NYC",33205064,Patrick,Manhattan,Financial District,40.70372,-74.01002,Shared room,65,1,0,,,1,357 +35127865,Luxury Apartment in Manhattan,70715527,Robert,Manhattan,Upper West Side,40.77367,-73.98879000000001,Entire home/apt,191,1,2,2019-07-02,2.0,1,10 +30124206,Fresh Room One Block From Metro!!,226335012,Ann,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95596,Private room,55,2,23,2019-06-21,3.59,1,323 +2895820,Quiet Room in Central Location,5454390,Tracy & Matt,Manhattan,East Village,40.73362,-73.9892,Private room,113,2,255,2019-07-07,4.05,1,41 +35005499,Cozy Corner next to the Empire State Building,263712096,Nacho,Manhattan,Midtown,40.74673,-73.98305,Shared room,60,1,0,,,3,43 +33961505,Gorgeous flat in vibrant Bushwick,2513294,Carrie,Brooklyn,Bushwick,40.70333,-73.92557,Entire home/apt,80,1,0,,,1,213 +639781,East Village 1 Bedroom Apartment,3194190,Jack,Manhattan,East Village,40.72389,-73.98934,Entire home/apt,200,6,1,2019-01-05,0.16,1,128 +23898007,Urban Boudoir Available with Back Yard Access,179594570,Elise,Brooklyn,Bushwick,40.693090000000005,-73.92399999999999,Private room,48,4,1,2018-04-19,0.07,1,0 +22192417,Modern 1 Bed in the Heart of Midtown Manhattan,162153544,Kendrick,Manhattan,Murray Hill,40.75048,-73.97776,Entire home/apt,277,3,70,2019-06-30,3.66,1,75 +21769501,Amazing Studio at the Time Square Area/52D,48146336,Irina,Manhattan,Hell's Kitchen,40.76173,-73.99325,Entire home/apt,130,30,4,2019-05-18,0.43,20,268 +13657292,"Bright, Airy, Rockaway Beach House w/ Backyard",79341807,Tory,Queens,Arverne,40.59421,-73.80043,Entire home/apt,200,2,35,2019-07-06,0.95,1,4 +22545117,Victorian Artist Loft,90857546,Diana,Brooklyn,Bushwick,40.69818,-73.93576999999999,Private room,108,3,12,2019-03-12,0.79,1,112 +28216267,Luxury apt in the heart of Times Square!LOCATION !,11543355,Matthew,Manhattan,Hell's Kitchen,40.76202,-73.99679,Entire home/apt,250,4,0,,,1,0 +24287857,Astoria Centeral Location,183211776,Rafael,Queens,Astoria,40.76387,-73.90995,Private room,79,1,73,2019-06-30,5.03,4,171 +25163519,Fabulous brand new 1BR across park in Manhattan,40875021,Scott,Manhattan,East Harlem,40.79372,-73.93552,Entire home/apt,150,1,18,2019-06-22,1.32,3,355 +31705971,Home away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.70534,-73.87995,Private room,50,2,18,2019-07-02,3.78,2,63 +117425,"Conveniently Located, Sunny Brooklyn Heights!",593115,LuLu,Brooklyn,Brooklyn Heights,40.69263,-73.99438,Entire home/apt,150,30,95,2018-05-26,0.96,1,281 +13622056,Luxury For Less In Downtown Manhattan,40425220,Lauren,Manhattan,Battery Park City,40.71617,-74.01468,Private room,225,1,1,2016-11-05,0.03,1,0 +29645650,Beautiful Bedroom in Bedstuy,26219578,Zoe,Brooklyn,Bedford-Stuyvesant,40.69071,-73.94478000000001,Private room,32,3,0,,,1,48 +17641625,COZY Large Private APARTMENT in EAST VILLAGE,836353,Luna,Manhattan,East Village,40.72588,-73.98598,Entire home/apt,122,6,22,2019-05-24,0.87,1,15 +34284408,Sonder | 116 John | Spacious 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70685,-74.00698,Entire home/apt,130,29,0,,,327,246 +26986526,☆Nice Private Room Near Park & Train in MANHATTAN!,20134899,Michael,Manhattan,Harlem,40.82607,-73.95124,Private room,54,23,8,2018-12-30,0.7,2,35 +35865346,Spacious Modern Apt. Near JFK Airport and Trains,269763887,Sharon,Queens,Jamaica,40.68636,-73.78866,Entire home/apt,129,2,3,2019-07-07,3.0,1,348 +35416858,LUX Studio 10 mins to Central Park!!,189382679,Sasha,Manhattan,Harlem,40.81658,-73.938,Entire home/apt,78,2,1,2019-06-21,1.0,1,208 +13785383,Cute and Cozy 1 BDR In West Harlem,80275136,Lisa,Manhattan,Harlem,40.82408,-73.95434,Entire home/apt,120,3,0,,,1,0 +14383299,Beverly Hills Studio,88314380,Stephen,Manhattan,Upper East Side,40.76242,-73.96058000000001,Entire home/apt,300,3,0,,,1,179 +9233883,Artsist's NYC Downtown Luxury Loft,43538528,Andrea,Manhattan,Financial District,40.7092,-74.00699,Entire home/apt,175,5,0,,,1,0 +4581942,"Clean, Cozy - South ParkSlope - NYC",4618480,Justin,Brooklyn,Sunset Park,40.65687,-74.00489,Private room,75,1,0,,,1,0 +25521277,"Spacious, light filled Brooklyn getaway",56631570,Natalie,Brooklyn,Bushwick,40.702940000000005,-73.93313,Private room,45,2,16,2018-12-27,1.22,1,0 +3818298,Sunny 1bed Oasis in South Harlem/Upper West Side,3856533,Amanda,Manhattan,Harlem,40.80293,-73.95586,Entire home/apt,120,1,23,2019-01-07,0.45,1,0 +4987370,1 Bedroom in a Williamsburg Loft,25711730,Natsuki,Brooklyn,Williamsburg,40.7116,-73.96774,Shared room,85,1,0,,,1,0 +5826475,NYC Charming Harlem Brownstone w/ private garden!,30242959,Celine And Ken,Manhattan,Harlem,40.82682,-73.94634,Private room,116,2,129,2019-07-02,2.5,1,89 +32418651,"Bright, Modern Designer's Pad in East Village",5945833,Daniel,Manhattan,East Village,40.72888,-73.98109000000001,Entire home/apt,240,3,7,2019-05-29,1.79,1,99 +5913433,Spacious apartment in Greenpoint,30710562,Tim,Brooklyn,Greenpoint,40.7229,-73.94775,Entire home/apt,125,2,5,2015-10-12,0.1,1,0 +4060993,Spacious apt. 15 min to Manhattan,21064077,Dan,Queens,Ridgewood,40.70046,-73.90692,Entire home/apt,60,21,5,2017-10-31,0.1,1,0 +30955020,"Shared place in Hell’s Kitchen, Midtown West!",197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.98671,Shared room,99,1,7,2019-06-14,1.04,7,33 +2694916,BREATHTAKING VIEWS! POOL/GYM ** Central Park,13773574,Cecile,Manhattan,Hell's Kitchen,40.76711,-73.98371,Entire home/apt,225,30,0,,,12,343 +163836,Greenpoint Loft / Le Chez Andrea,32169,Andrea,Brooklyn,Greenpoint,40.72185,-73.93956,Private room,46,4,86,2019-06-08,0.89,3,350 +22194993,"Bright, Clean & Comfortable Studio in Brooklyn",27234334,Emee,Brooklyn,Fort Greene,40.68906,-73.97872,Entire home/apt,125,4,7,2018-11-19,0.37,1,16 +12828338,Cozy Chic Harlem Apartment,7159107,Carly,Manhattan,Harlem,40.82563,-73.94091,Entire home/apt,85,3,1,2018-03-14,0.06,1,0 +22409073,The Baltic - A One Bedroom Apartment,162781227,Gareth,Brooklyn,Gowanus,40.68192,-73.98176,Entire home/apt,280,2,7,2018-12-25,0.38,1,0 +17794915,Modest West Harlem Room Nearby Columbia University,121585653,Ari,Manhattan,Harlem,40.81733,-73.95413,Private room,25,1,0,,,1,0 +695002,Roomy Updated Studio - East Village,1443121,Pavel,Manhattan,East Village,40.72866,-73.98048,Entire home/apt,105,30,96,2019-06-16,1.17,1,295 +3948939,Comfy 1 bd/1 bath-Upper West Side,20464791,Olga,Manhattan,Upper West Side,40.78829,-73.97053000000001,Entire home/apt,230,6,1,2014-10-24,0.02,1,0 +22360787,"Friendly, bright & safe first floor Brooklyn gem!",33738190,Jen,Brooklyn,Sunset Park,40.66316,-73.99643,Private room,80,1,0,,,3,0 +343276,TIMES SQUARE HOUSE!,1732559,J,Manhattan,Hell's Kitchen,40.75782,-73.99349000000001,Private room,95,5,110,2019-05-26,1.27,2,43 +8257999,awesome private studio on ues !,37376980,Jared,Manhattan,Upper East Side,40.78086,-73.94974,Entire home/apt,135,14,3,2015-12-10,0.07,1,0 +35975325,"50% off! Futon, yard access, trendy wburg",3360618,Tc,Brooklyn,Williamsburg,40.71246,-73.94014,Private room,57,2,1,2019-07-01,1.0,3,16 +12205049,2Story4Bedroom 2Full Bath New York Palace,65625445,Tony,Queens,Rosedale,40.67112,-73.73529,Entire home/apt,350,40,15,2017-07-05,0.39,1,365 +8256749,Luis and Melanie's B and B,41514104,Luis,Brooklyn,Bushwick,40.6938,-73.92562,Entire home/apt,100,5,85,2019-06-15,1.84,1,269 +12028322,Charming house in Coney Island,52474491,Arthur,Brooklyn,Sea Gate,40.57804,-74.01024,Entire home/apt,223,1,1,2016-03-28,0.03,3,0 +21175597,Sunny church view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94584,Private room,70,30,29,2019-05-28,1.36,4,292 +1245977,Charming Prewar on Prospect Park!,6789857,Dayna,Brooklyn,Prospect Heights,40.67321,-73.96574,Entire home/apt,99,5,12,2017-06-29,0.25,1,0 +823880,"Clean Private Bedroom on Lower East Side,Manhattan",69685,Anja,Manhattan,Lower East Side,40.72125,-73.99271999999999,Private room,69,1,322,2019-07-04,4.46,1,84 +18648591,Crown Heights Air Bnb/Sublet,97032243,Noah,Brooklyn,Crown Heights,40.67571,-73.94915999999999,Private room,40,1,0,,,1,0 +26078971,Private Cozy bedroom 12 minutes to Midtown,104913801,Luis,Queens,Long Island City,40.75654,-73.94232,Private room,45,2,42,2019-06-30,3.59,2,54 +35845267,"Modern Astoria ""Crib""",269635110,Niko,Queens,Long Island City,40.75527,-73.93125,Entire home/apt,125,2,1,2019-06-23,1.0,1,346 +28638855,Cute & Cozy Studio in the BEST part of BK,7505271,Simone,Brooklyn,Greenpoint,40.72586,-73.94466,Private room,99,1,8,2018-12-30,0.92,1,0 +9520489,Furnished 2 bed | 2 bath w/ views,14466771,Michael,Manhattan,Battery Park City,40.70702,-74.01675999999999,Entire home/apt,300,180,0,,,1,0 +33900104,Clean and comfortable Upper East Side location,253071059,Eugenio,Manhattan,East Harlem,40.78995,-73.94603000000001,Private room,100,1,7,2019-05-28,2.56,1,0 +9631464,Doorman Swim. Pool 2 bed 2bath!5126,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79509,-73.96649000000001,Entire home/apt,288,30,0,,,96,311 +2509093,Private Room in WILLIAMSBURG,3034421,Heather,Brooklyn,Williamsburg,40.71683,-73.95623,Private room,110,1,38,2018-04-22,0.63,1,157 +15854348,Stylish & Peaceful Retreat in LES Dream Location!,102731382,Davis & Coco,Manhattan,Chinatown,40.71454,-73.99271,Entire home/apt,300,7,58,2019-06-16,1.79,1,36 +13959891,"Best Location - Modern 1 BR, very quiet",61391963,Corporate Housing,Manhattan,Upper East Side,40.77148,-73.96110999999999,Entire home/apt,125,30,7,2019-06-30,0.21,91,157 +30906210,Newly Renovated Doorman Apt. with Great Amenities,10672594,Eduard,Queens,Long Island City,40.74827,-73.94556999999999,Entire home/apt,210,3,1,2019-01-01,0.16,1,0 +4484212,King size bed -Private bdrm,21938150,Niraj,Manhattan,Gramercy,40.7373,-73.98392,Private room,250,1,4,2015-09-16,0.08,1,365 +31767505,Spacious Downtown Studio,56656728,Bret,Manhattan,Financial District,40.71115,-74.00834,Entire home/apt,209,3,12,2019-06-19,2.2,5,107 +13392941,Private Bedroom w/ Queen Bed in Financial District,23335662,Kyle,Manhattan,Financial District,40.70514,-74.00921,Private room,85,1,3,2016-06-30,0.08,1,0 +169306, Affordable & Cozy ,806214,Vanessa,Bronx,University Heights,40.85811,-73.90675,Private room,37,4,117,2019-05-21,1.21,1,232 +21368441,"Spacious Duplex Loft Apt, Dtwn Bklyn, Near TRAINS",120574445,Kay,Brooklyn,Boerum Hill,40.68497,-73.97986,Entire home/apt,200,3,45,2019-07-02,2.29,1,3 +9733138,Large 1BR with yard in Williamsburg,14800483,Elliot,Brooklyn,Williamsburg,40.71702,-73.94339000000001,Entire home/apt,140,7,0,,,1,0 +19768219,Couch in Studio Apartment in Astoria,9039995,Jamie,Queens,Long Island City,40.76199,-73.92684,Shared room,33,1,11,2017-10-22,0.46,1,0 +36388807,seagate pravite house 5 mins away from beach,273619304,Tural,Brooklyn,Sea Gate,40.57531,-74.00518000000001,Entire home/apt,99,4,0,,,1,19 +30132711,"Spacious And Sunny Apartment, Private Roof Deck!",2446722,Amanda,Brooklyn,Bedford-Stuyvesant,40.69176,-73.95396,Entire home/apt,120,3,22,2019-06-24,3.07,1,16 +28759034,Large quiet private studio in East Harlem,196536266,Saki,Manhattan,East Harlem,40.80141,-73.93814,Entire home/apt,75,7,3,2018-11-23,0.32,1,161 +2949128,FAB APT & LOCALE in HELLS KCHN PRIVATE SAFE COMFY!,15049157,Marjorie,Manhattan,Hell's Kitchen,40.76375,-73.9924,Entire home/apt,250,3,136,2019-06-21,2.17,1,284 +18735631,"Charming 1 Bedroom Apartment in Bushwick, Brooklyn",123355776,Carol,Brooklyn,Bushwick,40.70336,-73.92657,Entire home/apt,184,1,29,2019-05-07,1.12,1,0 +30655067,Skyline Views in Williamsburg 4Br,85315237,Matthew,Brooklyn,Williamsburg,40.70971,-73.94804,Private room,50,4,1,2018-12-27,0.15,1,0 +6370032,Cozy 1Br Apt❤️of Upper East Side near Central Park,33182386,Ulysse,Manhattan,East Harlem,40.78775,-73.94891,Private room,99,4,49,2019-04-21,0.97,1,97 +33608420,Bright One Bedroom Loft,84732743,Julia,Brooklyn,Williamsburg,40.71255,-73.93921999999999,Entire home/apt,100,3,3,2019-06-08,1.23,1,3 +13841569,The Parachute Loft Bedrm 2,62605071,Anna,Brooklyn,Coney Island,40.57476,-74.00101,Private room,95,1,41,2019-06-16,1.33,2,158 +14213699,"West 50th street, Lux 1bd Serviced Apartment*",22541573,Ken,Manhattan,Hell's Kitchen,40.76297,-73.98588000000001,Entire home/apt,215,30,1,2017-12-02,0.05,87,357 +4363228,Magnificent Loft in East Village,3905383,Gillian,Manhattan,Lower East Side,40.71847,-73.98246,Entire home/apt,180,3,5,2018-10-09,0.13,1,226 +19875496,Newly renovated studio in heart of Brooklyn,20608771,Michael,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94986,Entire home/apt,99,7,7,2018-01-03,0.3,1,0 +36073384,Private Room In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.82682,-73.95156999999999,Private room,70,2,0,,,2,312 +4333204,Harlem cosy renovated unit for two,11790239,Mina,Manhattan,Harlem,40.81618,-73.94516999999999,Entire home/apt,94,1,23,2019-07-03,0.57,3,316 +1759526,Lovely Room in Awesome Apartment - Fun/Convenient,104250,Yair,Manhattan,Chelsea,40.74563,-73.99325,Private room,90,3,6,2019-06-03,0.1,1,11 +24906413,Sunny Bushwick apartment,84453766,Allison,Brooklyn,Williamsburg,40.702290000000005,-73.93774,Private room,80,10,1,2018-05-07,0.07,1,0 +35662019,Cheap price near Timesquare,79269209,소정,Manhattan,Hell's Kitchen,40.75625,-73.99356999999999,Private room,63,31,0,,,1,250 +5826518,Chic Downtown Getaway: Large 1BR Flat,4731948,Kiki,Manhattan,Chinatown,40.71647,-73.99116,Entire home/apt,215,1,36,2019-06-30,1.45,4,0 +31466547,Private and cozy room in Bushwick,62857588,Natalie,Brooklyn,Cypress Hills,40.68001,-73.90547,Private room,35,7,1,2019-02-24,0.22,1,0 +22906559,Sunny City Escape,2076284,Rachel,Queens,Ridgewood,40.70701,-73.90949,Private room,50,2,0,,,1,0 +8518280,Convenient 1Bdr with Outdoor Space (sleeps 4),4264360,Matt,Brooklyn,Williamsburg,40.71263,-73.9591,Entire home/apt,100,2,6,2017-01-29,0.13,1,0 +9514193,CUTE PLACE & QUIET DREAMS W BALCONY,48936457,Raquel,Manhattan,East Village,40.72536,-73.98252,Entire home/apt,199,7,36,2018-08-19,0.84,1,164 +4961949,Huge Bright 1BR+Office in Downtown Manhattan NYC!,1649951,Sameer,Manhattan,Lower East Side,40.72091,-73.98475,Entire home/apt,300,3,57,2019-06-23,1.12,1,168 +456110,Beautiful One Bedroom in Chelsea,2267508,Daniel,Manhattan,Chelsea,40.7476,-73.99698000000001,Entire home/apt,139,4,23,2015-10-04,0.27,1,0 +19098568,Huge Private Room Near Prospect Park,133410608,Stephanie,Brooklyn,Kensington,40.64549,-73.97883,Private room,99,7,0,,,1,87 +8719788,"Big, Convenient, Working Fireplace!",18052038,Caroline,Brooklyn,Fort Greene,40.68601,-73.97813000000001,Entire home/apt,175,1,0,,,1,0 +17667194,Sunny budget friendly room in Bushwick,8784337,Austin,Brooklyn,Bushwick,40.6937,-73.91006,Private room,32,5,3,2018-04-09,0.11,1,0 +34427740,小房间,48978249,QianWen,Queens,Flushing,40.75549,-73.82243000000001,Shared room,200,1,0,,,2,72 +13495012,World Trade Center Delight,9007512,Illy,Manhattan,Financial District,40.70566,-74.00865,Entire home/apt,100,20,3,2019-05-04,0.09,1,340 +4774629,Beautiful Spacious Suite..,1660841,Syreeta,Brooklyn,Prospect-Lefferts Gardens,40.65713,-73.9537,Private room,90,1,0,,,1,0 +3089577,Spacious 2 bd 2 bth apt 45 min from Time Sq sleep6,15636404,Anneta,Brooklyn,Borough Park,40.61098,-73.9742,Entire home/apt,199,4,4,2018-08-25,0.11,1,37 +33744142,"6 Guests! Close to JFK-Manhattan(30 min ""A"" train)",67746251,Gasminee,Queens,Ozone Park,40.68268,-73.84976999999999,Entire home/apt,149,1,0,,,4,113 +27975978,"J- *LUXURY SHARED ROOM AC FREE WIFI CABLE, GARDEN",8814258,Nikole,Queens,South Ozone Park,40.6726,-73.79566,Shared room,31,5,1,2018-09-30,0.11,7,365 +28891558,400sqft HUGEroom 2min expresstrain & 1min LIRR,19303369,Hiroki,Queens,Woodside,40.74258,-73.9031,Private room,55,30,2,2019-04-30,0.32,37,1 +28518320,Beautiful Brooklyn Brownstone in Prime Location,127250744,Steven,Brooklyn,Carroll Gardens,40.68036,-73.99247,Entire home/apt,180,3,4,2019-06-22,0.53,1,5 +10054892,Our casa is your casa!,7271269,Rick,Brooklyn,Williamsburg,40.71575,-73.94224,Entire home/apt,170,1,1,2016-01-02,0.02,1,0 +36307890,BEAUTIFUL BEDROOM IN NICE AREA UPTOWN NYC!,139296591,David,Manhattan,Washington Heights,40.83851,-73.94579,Private room,120,3,0,,,1,344 +11095719,The Justice Suite,38068387,Xolie,Brooklyn,Clinton Hill,40.69458,-73.96757,Entire home/apt,175,1,58,2018-10-07,1.45,4,331 +8971258,Gorgeous Three Bedroom Split Level,46881049,Elizabeth,Brooklyn,Canarsie,40.64455,-73.90978,Entire home/apt,169,2,30,2019-06-30,0.87,1,345 +25232008,Central Park South Better than a 5-Star Hotel,47100454,Val,Manhattan,Midtown,40.76457,-73.97518000000001,Entire home/apt,166,30,0,,,1,0 +21539105,"** SoHo: Clean, Bright, Tatami Room",104450469,Janet,Manhattan,SoHo,40.72394,-73.99656,Private room,80,3,2,2018-06-11,0.11,2,0 +1994548,luxury bldg for the coming holiday,10280728,Uri,Manhattan,Roosevelt Island,40.77,-73.94285,Entire home/apt,150,1,0,,,1,0 +35483321,1 bedroom apt 35min away from the city.,254622508,Stephanie,Bronx,Kingsbridge,40.87256,-73.89978,Entire home/apt,95,1,4,2019-07-01,4.0,1,84 +2924834,RARE: Large Room + Big Townhouse = Better Stay,9576121,Jon,Brooklyn,Williamsburg,40.71416,-73.9488,Private room,80,2,71,2019-02-26,1.13,1,0 +34688471,Sleep comfort,156505456,John,Brooklyn,East New York,40.66646,-73.8734,Private room,54,3,1,2019-05-20,0.59,13,365 +8838341,Beautiful Oversized King Bedroom - Entire Apt,5172606,Paula,Manhattan,Upper West Side,40.78698,-73.97005,Entire home/apt,175,3,0,,,1,0 +26496505,Beautiful Queens Home close to JFK and LGA,38920716,Hamad,Queens,Queens Village,40.70789,-73.74073,Entire home/apt,75,3,134,2019-07-07,10.86,1,63 +14783267,Lovely & bright apartment in center of Park Slope,950826,Talia,Brooklyn,Park Slope,40.66961,-73.97991,Entire home/apt,170,30,17,2019-06-09,0.5,1,0 +14972714,Charming Harlem Townhouse Minutes from Midtown,26502234,George,Manhattan,Harlem,40.82316,-73.94478000000001,Entire home/apt,195,7,28,2019-06-23,0.92,1,285 +15546982,Chill in Downtown Brooklyn Clinton Hill Pratt Univ,100718,Brian,Brooklyn,Clinton Hill,40.69278,-73.965,Entire home/apt,95,1,13,2019-06-23,0.41,1,0 +21423426,Peaceful 1 Bedroom in the East Village,10391716,Sasha,Manhattan,East Village,40.72171,-73.98307,Entire home/apt,190,4,68,2019-06-24,3.34,1,41 +36424520,Comfortable bedroom to enjoy your visit in NYC!,115415245,Alejandro,Brooklyn,Bushwick,40.69799,-73.92833,Private room,60,2,0,,,1,67 +21699294,"2017 BUILDING, NEW LOFT, 5 MIN SUB TO MANHATAN",157967816,Analia,Brooklyn,Greenpoint,40.72207,-73.94226,Private room,70,1,82,2019-06-22,4.12,3,43 +9414019,Yogi's Luxury on Prospect Park,1333485,Jenny,Brooklyn,Windsor Terrace,40.6491,-73.97434,Entire home/apt,200,2,19,2017-01-02,0.45,1,0 +21298561,4 Bdrm Loft in East Williamsburg with Projector!,130667097,Paul,Brooklyn,Williamsburg,40.705290000000005,-73.9331,Entire home/apt,300,1,1,2019-03-17,0.26,2,347 +20936537,Private Sunny Room with Balcony in Bushwick,71292398,Frances,Brooklyn,Bushwick,40.69827,-73.92493,Private room,50,3,2,2018-12-25,0.1,1,0 +16050505,1 Bedroom Apartment with Balcony in Brooklyn,104500369,Eric,Brooklyn,Bedford-Stuyvesant,40.69519,-73.95107,Entire home/apt,75,1,3,2016-11-29,0.09,1,0 +24941111,Guest Room with A/C,188556821,Harry And Kelly,Queens,Woodside,40.74337,-73.90405,Private room,40,1,7,2018-06-15,0.5,1,0 +24471239,Beautiful brownstone room,24421834,Andrea,Brooklyn,Crown Heights,40.67716,-73.93885,Private room,50,7,0,,,1,0 +31175570,Charming garden level apt in Brooklyn Townhouse,29129194,Ferris,Brooklyn,Bedford-Stuyvesant,40.68483,-73.94745,Entire home/apt,90,3,17,2019-06-15,4.15,1,91 +6657454,Spacious & sunny in Clinton Hill :),6913285,Marc,Brooklyn,Bedford-Stuyvesant,40.69154,-73.95544,Entire home/apt,95,5,4,2016-06-03,0.08,1,0 +7460924,Experience Brooklyn,14925591,Juan,Brooklyn,Williamsburg,40.70275,-73.93445,Entire home/apt,150,1,191,2019-06-16,3.97,1,290 +4708314,Spacious Williamsburg Retreat,1265619,Felipe,Brooklyn,Williamsburg,40.72018,-73.96055,Entire home/apt,120,2,8,2019-03-17,0.16,1,8 +35901040,Private Cozy Three Bedroom apartment for 8,92493393,Eddie & Lois,Staten Island,West Brighton,40.63207,-74.11406,Entire home/apt,190,1,0,,,5,342 +22082903,Studio Sanctuary in Landmark Brownstone,156047478,Doron,Manhattan,Harlem,40.8048,-73.94951,Entire home/apt,91,30,8,2019-06-13,0.47,2,216 +12732671,"Sunny Room in Flatlands, Brooklyn!",69236458,Monique Ngozi,Brooklyn,Flatlands,40.62551,-73.93545,Private room,60,5,4,2018-09-11,0.12,1,346 +21652744,Crown heights hangout,157599851,Mallory,Brooklyn,Crown Heights,40.67286,-73.94758,Private room,31,6,0,,,1,0 +4867749,Sunny apt in heart of The Village!,4952537,Eric,Manhattan,Greenwich Village,40.729040000000005,-74.00116,Entire home/apt,225,3,0,,,1,0 +10992335,Cozy 1BR near subway,19000768,Karina,Queens,Sunnyside,40.74219,-73.92485,Entire home/apt,90,2,3,2017-11-06,0.12,2,0 +24153494,Quiet Ground Floor Bedroom in Midtown West,154965091,Joe,Manhattan,Hell's Kitchen,40.76956,-73.98804,Private room,125,2,29,2019-06-22,2.03,4,43 +19532164,N.Y.C. APPARTAMENTO LUMINOSO,8816087,Danilo,Manhattan,East Harlem,40.80168,-73.94399,Entire home/apt,176,2,0,,,2,0 +5237336,Warm and Inviting 1 Bedroom In Fort Greene,189275,Erika,Brooklyn,Fort Greene,40.69658,-73.97116,Entire home/apt,95,1,49,2019-06-30,6.77,1,40 +9984143,Quiet Riverside Park 1 bdrm w gym,51300628,Peter,Manhattan,Upper West Side,40.7939,-73.9761,Entire home/apt,199,10,0,,,1,0 +17866018,Beautiful Room in Styvesant Heights Brooklyn,122283834,Eve,Brooklyn,Bushwick,40.69723,-73.92511,Private room,60,5,22,2019-06-17,0.96,2,175 +14868347,NYC Studio Apt right by Central Park!!,30283594,Kara,Manhattan,Midtown,40.76556,-73.98196999999999,Entire home/apt,199,30,1,2017-10-25,0.05,121,189 +25779937,Simple & Convenient Manhattan Room,137358866,Kazuya,Manhattan,Harlem,40.81207,-73.94359,Private room,52,30,2,2019-01-31,0.18,103,184 +20067361,"Private bedroom available in Bed Stuy, Brooklyn",31883068,Will,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94829,Private room,50,7,8,2019-04-16,0.34,1,188 +34465119,Large Studio Loft Centrally Located,6167891,Josh,Brooklyn,Williamsburg,40.70171,-73.94547,Entire home/apt,78,4,2,2019-07-02,2.0,1,14 +18443902,Delightfully appointed studio in the West Village,11586111,Christina,Manhattan,West Village,40.73075,-74.00222,Entire home/apt,159,4,6,2017-08-12,0.23,1,0 +19466900,3 Bed/2 Bath Williamsburg Apt. with HUGE Terrace,8451716,John,Brooklyn,Williamsburg,40.70853,-73.95249,Entire home/apt,225,3,9,2019-06-30,0.37,1,2 +15024645,Huge Historic Brooklyn Loft Minutes From Manhattan,93350397,Jody,Brooklyn,Williamsburg,40.71933,-73.95993,Entire home/apt,259,1,157,2019-06-23,4.58,1,155 +17545363,Modern Apartment Bayridge/Brooklyn- Sleeps 6,119029523,Ebada,Brooklyn,Fort Hamilton,40.62067,-74.02942,Entire home/apt,150,5,4,2019-06-18,1.9,3,312 +9253112,Spacious Beautiful 1BR APT,1941852,Helga,Brooklyn,Crown Heights,40.66965,-73.95517,Entire home/apt,80,1,17,2017-08-30,0.38,1,0 +15663646,Big furnished bedroom Williamsburg,844442,Sarah,Brooklyn,Williamsburg,40.70758,-73.94197,Private room,115,2,0,,,1,0 +30567265,A gem in Bushwick,61107296,Jessica,Queens,Ridgewood,40.70732,-73.91490999999999,Private room,65,1,3,2019-01-02,0.47,1,0 +870119,Beautiful 2bdrm Bklyn duplex w/deck + backyard,355548,Jessica,Brooklyn,Clinton Hill,40.69208,-73.96525,Entire home/apt,185,4,8,2018-08-27,0.22,1,8 +20778074,Queit get away,148897644,Patrick,Brooklyn,Crown Heights,40.6679,-73.93975999999999,Private room,65,1,0,,,1,0 +4904582,Boutique Retreat,25249481,Jacqueline,Bronx,Mount Hope,40.85062,-73.90250999999999,Private room,40,14,5,2017-06-17,0.13,1,322 +7712022,Perfect Escape in NYC! #6,3256433,Ira,Manhattan,Nolita,40.72276,-73.99314,Entire home/apt,350,60,10,2018-08-19,0.22,7,0 +32954828,Madison Flat,30168484,Eric,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93885999999999,Entire home/apt,120,4,8,2019-06-18,2.29,1,126 +28580426,Rooftop Vibes for small events,62659791,Chiz,Brooklyn,Crown Heights,40.67814,-73.95291999999999,Shared room,149,1,0,,,2,363 +23166555,Upper East Side Triplex Penthouse Rooftop,162153626,S,Manhattan,Upper East Side,40.77394,-73.95251999999999,Entire home/apt,127,1,1,2018-07-06,0.08,1,0 +30465758,Stylized room in Harlem 141 st,566838,Max,Manhattan,Harlem,40.82008,-73.94057,Private room,50,1,30,2019-07-07,6.25,2,149 +23684349,Bright private bedroom in Prime Williamsburg!,319707,Kat,Brooklyn,Williamsburg,40.71077,-73.95159,Private room,49,7,0,,,1,37 +16349645,Studio in West Village,6335037,Eric,Manhattan,West Village,40.73243,-74.00932,Entire home/apt,220,4,1,2017-01-02,0.03,1,0 +32493320,Charming Brooklyn studio,244135864,Alanna,Brooklyn,Bushwick,40.70305,-73.93127,Entire home/apt,69,2,4,2019-02-20,0.86,1,0 +32840500,Cozy and Modern Bedroom in Williamsburg,55025690,Clara,Brooklyn,Williamsburg,40.71468,-73.95825,Private room,68,1,7,2019-06-08,2.23,1,0 +31313105,A Spacious & Blissful Stay in Queens!!!,7797973,Sonya,Queens,Springfield Gardens,40.660140000000006,-73.7582,Entire home/apt,175,2,19,2019-06-29,4.45,1,147 +859596,Quiet room w/ 2 beds +light near subway+ museums,4500999,Aaron,Manhattan,East Harlem,40.79541,-73.94465,Private room,100,1,58,2019-07-02,0.83,2,316 +5293662,Ft Greene/Clinton Hill Jr 1 Bedroom,6177121,Casey,Brooklyn,Clinton Hill,40.69358,-73.96966,Entire home/apt,70,2,1,2016-01-03,0.02,1,0 +31796259,Luxury Studio in Prime Area,89896526,Scott,Manhattan,Financial District,40.71081,-74.00846,Entire home/apt,115,30,1,2019-03-05,0.24,1,4 +11101754,Upscale Sun-Soaked Luxury apartment in Brooklyn,7872220,Charlie,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9579,Entire home/apt,145,1,153,2019-07-06,4.66,1,47 +8709326,East 60's - Amazing Private Room,41638669,Karan,Manhattan,Upper East Side,40.76574,-73.95875,Private room,141,1,2,2015-10-29,0.04,1,0 +16918104,Cozy Private Room,32304780,Nicauris,Manhattan,Washington Heights,40.84194,-73.94203,Private room,52,30,16,2019-01-06,0.59,3,237 +27149630,SPACIOUS 2BR 2 BATH IN UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.77093,-73.95873,Entire home/apt,285,30,0,,,65,365 +29338819,"2018 New 2br elevator condo, 法拉盛中心新大楼2卧,5分钟main st",119305261,Brenda,Queens,Flushing,40.76373,-73.82904,Entire home/apt,188,2,15,2019-06-24,1.97,1,59 +9792323,Brand New Studio!! UNITED NATIONS!!,1475015,Mike,Manhattan,Midtown,40.75185,-73.97001,Entire home/apt,83,30,3,2019-04-19,0.09,52,331 +1673040,NEW_Duplex_BreathtakingViews_Beauty,2119276,Host,Manhattan,Hell's Kitchen,40.76671,-73.98666,Entire home/apt,350,30,14,2019-06-17,0.22,39,327 +6370889,1 BD in Washington Heights,33198779,Catherine,Manhattan,Washington Heights,40.84064,-73.93727,Private room,35,1,4,2015-10-31,0.08,1,0 +17529637,Large bedroom in the heart of the East Village,855079,Nicholas,Manhattan,East Village,40.7281,-73.9839,Private room,110,1,26,2018-12-28,0.91,3,0 +2106662,Large one bedroom apartment,10736013,Javier,Manhattan,West Village,40.73192,-74.00433000000001,Entire home/apt,156,1,0,,,1,0 +894063,"Penthouse patio,city view,BIG bed",1803302,Lacey,Brooklyn,Williamsburg,40.71216,-73.96325999999999,Private room,98,3,78,2019-05-27,1.01,1,268 +25855717,"Stylish and Serene in Cobble Hill, Brooklyn",7810310,Erika,Brooklyn,Cobble Hill,40.685,-73.99965999999999,Entire home/apt,100,2,11,2018-10-07,0.91,1,0 +30911300,Charming Quiet Upper East Side Studio!,231007291,Samantha,Manhattan,Upper East Side,40.77382,-73.9535,Entire home/apt,160,2,6,2019-07-01,0.95,1,11 +31663848,Gorgeous Sunny Luxury Williamsburg Condo,237406328,Daniel,Brooklyn,Williamsburg,40.71447,-73.95108,Entire home/apt,140,2,30,2019-07-07,5.56,1,135 +31560479,large private Rooms for rent 5 mins from SI Ferry,236556387,Samuel,Staten Island,Stapleton,40.63474,-74.07758000000001,Private room,57,1,7,2019-06-22,3.56,1,365 +20188527,Quiet light-filled bedroom in the heart of Astoria,2994103,Sara,Queens,Ditmars Steinway,40.776140000000005,-73.91324,Private room,75,2,2,2017-10-28,0.1,1,0 +12254118,Master Bedroom with Balcony in Soho,65979198,Marc,Manhattan,Nolita,40.72232,-73.99433,Private room,109,7,3,2017-01-03,0.09,1,0 +7784365,Great cozy room 5 minutes to city,25602663,Mizo,Queens,Long Island City,40.75255,-73.93654000000001,Private room,90,4,19,2018-09-16,0.41,2,286 +31553305,Private Loft-Style Bedroom w/ your own Bathroom,15058648,Shola,Brooklyn,Bushwick,40.69866,-73.92929000000001,Private room,70,3,4,2019-05-31,0.73,3,21 +9412913,Private Room - Midtown West NYC,26926354,Pavan,Manhattan,Hell's Kitchen,40.76534,-73.9925,Private room,90,5,0,,,1,0 +14016206,Williamsburg! 1 stop from Manhattan with backyard!,18881301,Brittany,Brooklyn,Williamsburg,40.71091,-73.96029,Private room,66,5,0,,,1,0 +13050,bright and stylish duplex,50846,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9409,Entire home/apt,115,3,11,2017-01-01,0.1,1,0 +20607819,"1,600sq ft modern duplex in new harlem brownstone",147118920,Harlem,Manhattan,East Harlem,40.80924,-73.93873,Entire home/apt,172,2,63,2019-06-19,2.78,1,0 +17524047,Luxe Large Suite w/Views bathroom en suite,118695056,Cameron & Dione,Brooklyn,Downtown Brooklyn,40.6925,-73.98613,Private room,153,3,28,2019-06-09,1.0,2,11 +18992110,Charming Nolita Apartment,12420115,Constanze,Manhattan,Lower East Side,40.7197,-73.99331,Entire home/apt,170,1,16,2019-02-18,0.63,1,0 +27579796,New York home ferry ride from Manhattan.,169567256,Pariis,Staten Island,Tompkinsville,40.63183,-74.09268,Private room,100,2,1,2018-11-04,0.12,1,0 +13895156,in the heart of williamsburg,2609335,Roei,Brooklyn,Williamsburg,40.71319,-73.95822,Entire home/apt,300,14,3,2018-09-22,0.08,1,345 +17531292,Your Home Away From Home!,105225699,Serena,Queens,Flushing,40.76199,-73.79465,Entire home/apt,110,3,75,2019-07-06,3.07,2,174 +29955544,Magnificent Loft with a Skyline view,4538731,Francois,Brooklyn,Greenpoint,40.73039,-73.95434,Entire home/apt,270,7,2,2019-04-15,0.32,1,20 +4641291,Room in queens covenient safe locat,24030482,Eddie,Queens,Bellerose,40.72401,-73.72901,Private room,99,1,3,2019-05-19,0.23,1,365 +30934007,Bohemian getaway in NYC,230009785,Aurelia,Manhattan,Chinatown,40.71581,-73.99056,Entire home/apt,280,2,0,,,1,1 +12539250,1BR in Midtown West Apartment,10158478,Peter,Manhattan,Hell's Kitchen,40.76148,-73.99489,Private room,350,1,0,,,1,0 +20176191,Enormous Private Room in Shared Apartment,6971106,Michael,Manhattan,Upper West Side,40.79938,-73.97057,Private room,100,5,0,,,2,0 +13638026,Large 1 bed apt in heart of Williamsburg,3695865,Jessica,Brooklyn,Williamsburg,40.71911,-73.95828,Entire home/apt,200,2,3,2016-10-30,0.08,1,0 +22730139,Staten Island full size living space-lower level,167595532,Nabil,Staten Island,Arden Heights,40.56033,-74.18259,Entire home/apt,75,1,20,2019-01-08,1.55,1,6 +34684755,Easy Breezy Beautiful Crown Heights One Bedroom,261427783,Meeks,Brooklyn,Crown Heights,40.67385,-73.94639000000001,Private room,85,1,15,2019-07-06,11.84,1,81 +18040417,Downtown HighRise Luxury Building!,42287744,Camilo,Manhattan,Financial District,40.70732,-74.01451,Private room,105,2,18,2018-08-16,0.65,1,95 +15629854,"Big Backyard! Entire 2 Story House, Near Train",42986446,Nikki,Brooklyn,Bedford-Stuyvesant,40.69136,-73.92803,Entire home/apt,229,2,8,2018-09-03,0.25,1,0 +21528682,Comfortable Couch in a Great Location! Bushwick.,13917921,Robert,Brooklyn,Bushwick,40.6985,-73.93384,Shared room,42,2,13,2019-04-14,0.65,2,365 +35034410,Heart of the East Village Apartment,144582127,Ted,Manhattan,East Village,40.72764,-73.98711999999999,Private room,100,3,1,2019-06-11,1.0,1,67 +31128045,Spacious North Williamsburg 1 Bedroom w/ Yard,1390454,Gabe,Brooklyn,Williamsburg,40.7208,-73.96021999999999,Entire home/apt,150,7,0,,,1,249 +34009215,"Stately Gramercy Park 1BR w/ WD, Gym, Doorman, near Subway by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.73905,-73.98225,Entire home/apt,314,30,0,,,232,338 +28933616,Spacious studio apartment on ideal LES block,526744,Tessa,Manhattan,Chinatown,40.71614,-73.99085,Entire home/apt,250,2,3,2018-11-04,0.35,1,0 +33049114,A Sweet Garden Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67387,-73.9424,Entire home/apt,100,3,5,2019-05-12,2.03,4,250 +8563025,Cozy Apartment Near Central Park,13313020,Carmen,Manhattan,Hell's Kitchen,40.76389,-73.99072,Shared room,85,1,8,2016-01-02,0.17,1,0 +7043746,2 block walk from the beach in NYC,36935244,Vladimir,Queens,Arverne,40.5927,-73.7899,Entire home/apt,250,2,89,2019-05-26,1.82,1,300 +11589391,"Beautiful, light filled, spacious",17862696,Shahla,Brooklyn,Gowanus,40.6717,-73.99247,Entire home/apt,295,4,2,2017-04-30,0.07,1,326 +7644203,Spacious private apt in pre-war building,33853401,Frances,Brooklyn,Crown Heights,40.67714,-73.9486,Entire home/apt,130,2,3,2016-07-25,0.06,1,0 +9789339,"BIG and Comfortable apt, by Park!",10338528,Jared,Brooklyn,Flatbush,40.65411,-73.95815999999999,Private room,55,4,8,2018-12-26,0.19,1,173 +3888752,"Bright, quiet, cozy 1BR by C Park!",20116872,Michael,Manhattan,Upper West Side,40.77571,-73.97757,Entire home/apt,195,1,401,2019-06-30,6.76,1,178 +29484503,Parisian West Village Apartment,4952877,Alexis,Manhattan,West Village,40.7374,-74.00409,Entire home/apt,255,2,3,2019-01-02,0.39,1,0 +23764791,Sonder | 180 Water | Beautiful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70741,-74.00656,Entire home/apt,227,29,0,,,96,322 +20958399,Elegant 1 BR with amazing view in Park Slope,3574249,Sasha,Brooklyn,Park Slope,40.66803,-73.97869,Entire home/apt,169,4,6,2019-03-17,0.56,1,16 +19273509,Astoria home 2 living rooms/ 1 bedroom/1 bath,4969033,Bella,Queens,Astoria,40.76634,-73.90872,Entire home/apt,90,3,30,2018-08-29,1.24,1,0 +973535,"Garden Apt, 5 mins from LaGuardia",3179866,Gonzalo And Nora,Queens,East Elmhurst,40.76356,-73.8885,Entire home/apt,99,3,158,2019-07-02,2.08,2,322 +29338399,Private floor in Soho Loft with 11ft ceilings,102542851,Nathan,Manhattan,SoHo,40.72706,-74.00572,Private room,129,4,0,,,1,0 +8750772,Charming East Village Corner 2 BD,24032852,Jessica,Manhattan,East Village,40.72774,-73.97934000000001,Entire home/apt,260,2,170,2019-07-01,3.85,1,236 +31445758,TRENDi 3 Bed Duplex in Heart of Historic Harlem,133234099,Gemma,Manhattan,Harlem,40.80761,-73.94366,Entire home/apt,250,3,11,2019-06-16,1.94,2,110 +21154544,Huge beautiful bedroom with double exposure,66260832,Dragana,Manhattan,Harlem,40.8152,-73.95175,Private room,50,15,0,,,1,0 +6401500,"Wburg Penthouse, Private elevator, balcony, roof",5463220,Nick And Jade,Brooklyn,Williamsburg,40.71258,-73.95555999999999,Entire home/apt,201,2,175,2019-07-01,3.53,1,68 +11535506,Bright bedroom in Soho / roof access,7539044,Vinciane,Manhattan,SoHo,40.72705,-74.00314,Private room,190,2,53,2019-04-08,1.42,2,38 +1635672,Cute studio apt in West Village,8687489,Adam,Manhattan,West Village,40.7338,-74.00328,Entire home/apt,150,7,40,2017-11-25,0.57,1,0 +12914669,Double bedroom in West Harlem,44665470,Quentin,Manhattan,Harlem,40.80794,-73.9415,Private room,80,1,3,2016-06-03,0.08,1,0 +13112601,Beautiful light and lots of space,13769025,Alberto,Brooklyn,Bedford-Stuyvesant,40.69563,-73.95149,Private room,43,1,0,,,1,220 +28933262,Wyndham Midtown 45,198749990,Maria,Manhattan,Midtown,40.75378,-73.97156,Private room,350,2,0,,,1,0 +6657134,"Spacious 2BR/2BA, Great Location!",1131394,Jeremy,Manhattan,Upper East Side,40.78071,-73.95309,Entire home/apt,240,5,4,2019-02-23,0.09,1,0 +7071657,1 BR UPPER EAST SIDE,4909308,Francesco,Manhattan,Upper East Side,40.77344,-73.95035,Entire home/apt,243,1,26,2019-06-22,1.1,1,149 +6957272,"Beautiful, spacious & sunny 1BR",15647782,Reinier,Manhattan,Upper West Side,40.80271,-73.96853,Entire home/apt,155,4,10,2017-05-12,0.21,1,0 +14894267,"Doorman, modern apart. on Broadway (Central Park)",10459594,S.,Manhattan,Upper West Side,40.79501,-73.97131999999999,Entire home/apt,165,3,2,2017-10-17,0.06,1,0 +35417570,Cozy Boerum Hill,11437322,Andrea,Brooklyn,Boerum Hill,40.68752,-73.98549,Entire home/apt,200,4,0,,,1,45 +33964812,Luxury FiDi Terrace Apt by Seaport & WTC,10714783,Mickey,Manhattan,Financial District,40.70824,-74.00476,Entire home/apt,200,2,4,2019-07-02,2.45,1,38 +2606083,Large Garden Apartment in BK Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67648,-73.95098,Entire home/apt,112,4,19,2019-06-05,0.52,2,0 +1798210,NYC Super Cool East Village 1 BD,9430658,Maegan,Manhattan,East Village,40.72878,-73.97854,Entire home/apt,150,1,26,2016-09-05,0.38,1,0 +26924532,"Private Guest Suite near NYC Ferry, Rear",71725161,Kalina,Brooklyn,Sunset Park,40.641490000000005,-74.02325,Entire home/apt,99,4,20,2019-06-29,2.49,2,146 +11619987,Luxurious SOHO 2 Bedroom,61391963,Corporate Housing,Manhattan,Little Italy,40.71957,-73.99573000000001,Entire home/apt,175,30,3,2018-07-31,0.16,91,161 +35873317,Cozy and beautiful studio near Times Square,269822898,Jenny,Manhattan,Hell's Kitchen,40.76097,-74.00026,Entire home/apt,135,1,1,2019-07-01,1.0,1,9 +6938827,Prime apartment in prime Park Slope location!,36381094,Gidon,Brooklyn,Park Slope,40.67177,-73.97882,Entire home/apt,229,3,22,2018-12-26,0.46,1,0 +30325604,1 BDRM avail in sunny apartment in Williamsburg,10860700,Sarah,Brooklyn,Williamsburg,40.71293,-73.94283,Private room,120,2,11,2019-06-21,1.76,2,117 +29660984,charming Bedroom in a quite neighborhood,221751961,Maya,Staten Island,Oakwood,40.56028,-74.10678,Private room,46,1,4,2019-01-19,0.51,1,0 +3458525,Modern & Cozy 1BD Garden Apt,17430718,Natasha,Manhattan,Harlem,40.81511,-73.94315,Entire home/apt,115,3,64,2019-06-19,1.05,2,211 +32141672,Jewel Apartment in Hip Long Island City,20811907,Richard-Anthony,Queens,Astoria,40.76734,-73.93267,Entire home/apt,90,3,14,2019-06-17,2.96,1,251 +13727995,Large Bedroom in Bushwick,579391,Yuan,Brooklyn,Bushwick,40.70091,-73.93809,Private room,65,2,12,2018-10-02,0.34,1,0 +23219361,Cozy Studio near South Beach :-),59966705,Arek,Staten Island,Arrochar,40.59078,-74.07504,Entire home/apt,71,2,30,2019-06-14,1.8,1,306 +22229755,Entire private lower unit of owner occupied duplex,1036697,Patricia,Brooklyn,Bushwick,40.69436,-73.92260999999999,Entire home/apt,89,3,21,2019-06-03,1.14,1,30 +20000421,Huge room at an affordable price,64018594,Daphne,Manhattan,Harlem,40.80895,-73.95266,Private room,45,3,3,2017-08-16,0.13,2,0 +6273500,"Cozy Room, great Apartment, nice and safety area",3759052,Aracelli,Manhattan,East Harlem,40.7882,-73.94762,Private room,50,3,5,2019-03-26,0.13,1,188 +34336417,ROOM # 8 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68921,-73.83159,Private room,53,1,11,2019-06-26,4.93,7,176 +24286512,Gowanus Pad,29110009,Kate,Brooklyn,Gowanus,40.668890000000005,-73.99115,Private room,95,1,3,2019-06-24,0.22,1,221 +777327,Cozy Quiet Sunny 1br Ditmas Park Close to Train,4086839,Nataliya,Brooklyn,Flatbush,40.64047,-73.96388,Entire home/apt,150,5,52,2019-05-28,0.65,1,311 +10524365,Parlor apt 1 block from Times Sq,48705078,Mike,Manhattan,Hell's Kitchen,40.76165,-73.99061999999999,Entire home/apt,180,2,136,2019-06-30,3.45,1,253 +19069994,Apt in W 48th with private patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76441,-73.99436999999999,Entire home/apt,100,30,2,2017-12-03,0.09,31,345 +13016082,Steps from Central Park: Bedroom in spacious apt,12127963,Ben,Manhattan,East Harlem,40.78804,-73.95382,Private room,95,5,4,2017-08-19,0.11,1,0 +8590275,Studio midtown west,45208389,Maria Luna,Manhattan,Hell's Kitchen,40.75589,-73.99729,Entire home/apt,340,1,0,,,1,0 +29947398,Private Room w/ a 5 min walk to train!,105248014,Kevin,Brooklyn,East Flatbush,40.64608,-73.94738000000001,Private room,80,1,71,2019-07-07,8.99,2,35 +5833530,Shared Room in Apartment,30280316,Victor,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92056,Private room,40,1,0,,,1,0 +12366226,Spacious 1BD/BA in heart of Bushwick,22288459,Alexi,Brooklyn,Bedford-Stuyvesant,40.69537,-73.93494,Private room,55,1,12,2019-05-19,0.75,2,22 +33544433,Spacious one bedroom Suit! (2T),246272839,Northern Star Realty,Queens,Flushing,40.7651,-73.81749,Entire home/apt,85,1,5,2019-06-03,2.08,4,156 +35871317,LOVELY 1 BR APARTMENT IN THE HEART OF GREENPOINT,5564361,Cecile,Brooklyn,Greenpoint,40.73109,-73.95267,Entire home/apt,130,3,1,2019-06-27,1.0,1,43 +15191740,★★LUXURY at a MIDTOWN RESORT★★,64065593,ResortShare5,Manhattan,Midtown,40.75368,-73.97358,Private room,198,2,30,2019-04-11,0.89,13,333 +7577608,1 Large Bedroom plus 2nd bed,1355616,Carly,Brooklyn,Boerum Hill,40.68234,-73.98088,Private room,100,3,0,,,1,0 +5384774,"Home For Medical Professionals - ""The Singultus""",26377263,Stat,Queens,Far Rockaway,40.59696,-73.75524,Private room,42,6,2,2015-07-31,0.04,43,151 +21562330,Franklin Ave Stay,5754627,Keren,Brooklyn,Crown Heights,40.672540000000005,-73.95541,Private room,94,1,9,2018-11-01,0.46,1,0 +34968639,Charming E. Village 2 Bedroom: Steps to the Park!,263427276,Helene,Manhattan,East Village,40.725640000000006,-73.9803,Entire home/apt,300,4,0,,,1,297 +29314737,Private bedroom in a clean charming apartment,1601321,Serdar,Queens,Astoria,40.75736,-73.92161999999999,Private room,130,2,5,2019-06-23,2.34,1,6 +26633920,Sunny studio apartment in Greenpoint BK,7117901,Krista,Brooklyn,Greenpoint,40.72878,-73.95823,Entire home/apt,137,3,0,,,1,0 +6151450,Large room in Hamilton Heights,26790498,Esther,Manhattan,Harlem,40.82366,-73.9461,Private room,50,3,1,2018-05-28,0.07,1,0 +31896339,My cozy room perfect for Manhattan visitors,239088720,Stephanie,Bronx,Throgs Neck,40.82688,-73.81899,Private room,40,3,11,2019-05-25,2.06,1,0 +30062478,Chelsea Hudson yards Highline adorable apartment,225913271,Kristie,Manhattan,Chelsea,40.7507,-74.00261,Entire home/apt,170,3,6,2019-06-30,0.84,1,170 +12284280,"Legal full floor by Sunset Park, 20mins to Soho",4964784,Jon,Brooklyn,Sunset Park,40.65031,-74.00176,Entire home/apt,140,2,108,2019-07-07,2.89,1,278 +22548780,Private Bedroom in Clinton Hill,3094303,Cecilia,Brooklyn,Clinton Hill,40.68641,-73.96124,Private room,48,12,1,2018-01-31,0.06,1,0 +13542938,"East 58th Street, Lux Svcd 1bd Apt",22541573,Ken,Manhattan,Midtown,40.75724,-73.96384,Entire home/apt,245,30,0,,,87,280 +12973363,Prospect Park Brownstone,22846970,Paige,Brooklyn,Prospect Heights,40.675,-73.96406,Private room,88,2,46,2017-07-31,1.19,1,0 +7054267,"Clean, quiet Upper East Side apt .",36998520,Alex And Lindsey,Manhattan,Upper East Side,40.76719,-73.95358,Entire home/apt,155,15,0,,,1,0 +8164253,Huge Studio -East Vill/Alphbet City,43091823,Elizabeth,Manhattan,East Village,40.72362,-73.98519,Entire home/apt,120,5,0,,,1,0 +33902619,Location! Room in Bklyn 10 minutes to Manhattan U2,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69806,-73.94544,Private room,81,1,9,2019-06-24,3.8,6,105 +21936288,Infinite Bliss,118807152,Melissa,Queens,Elmhurst,40.74361,-73.87732,Private room,30,1,15,2019-06-30,0.77,1,249 +20209878,Haven in the Heights: stylish home away from home,56985517,Alexandra,Brooklyn,Crown Heights,40.67334,-73.94099,Entire home/apt,120,2,48,2019-06-22,2.44,1,227 +28187614,"Warm, cozy, private entrance with 2 Full bathrooms",212899703,Ms. Debra,Queens,Jamaica,40.67956,-73.76621,Entire home/apt,83,3,29,2019-06-23,2.82,3,48 +14437093,Sunny Alcove 1-bdrm- Rooftop with view & backyard!,4400586,Carrie,Manhattan,East Village,40.72397,-73.98329,Entire home/apt,129,7,10,2019-02-10,0.29,1,0 +19451978,A PIECE OF GREENWICH VILLAGE HISTORY!,42592487,Mariel,Manhattan,Greenwich Village,40.73299,-73.99812,Private room,135,2,79,2019-06-16,3.32,1,43 +9028399,LOWER EAST SIDE GEM,3754629,Gina,Manhattan,Lower East Side,40.71873,-73.98394,Entire home/apt,150,1,0,,,1,0 +7264263,Beautiful classic NYC studio,5030772,Jessica,Manhattan,Upper East Side,40.77258,-73.95213000000001,Entire home/apt,120,1,13,2016-12-27,0.27,1,0 +21053044,RESIDENCE NEAR JFK (TB3),145727343,Janelle,Queens,Jamaica,40.68501,-73.79162,Private room,33,1,7,2019-06-25,0.35,3,139 +29982582,Sunny One-Bedroom Apartment in a Brownstone,32785325,Sam,Brooklyn,Bedford-Stuyvesant,40.68064,-73.94856,Entire home/apt,125,3,16,2019-06-22,2.21,1,4 +30105018,Bushwick Artist Loft in Converted Factory,226204224,Allyson,Brooklyn,Bushwick,40.6991,-73.92338000000001,Private room,50,1,7,2018-12-30,0.93,1,0 +22832352,*PRIME* Serenity & Love-Private Oasis (Bedford Av),168784638,Ralph & Jenny,Brooklyn,Williamsburg,40.714940000000006,-73.96214,Entire home/apt,237,3,28,2019-06-03,2.09,1,0 +11096801,BRIGHT & BEAUTIFUL,38120363,Brian,Brooklyn,Crown Heights,40.67415,-73.9163,Private room,49,2,115,2019-06-24,2.96,2,59 +30353302,Room close to La Guardia Airport,227905146,Gladys,Queens,East Elmhurst,40.76185,-73.87392,Shared room,16,1,10,2019-06-16,1.36,1,0 +11480835,Brooklyn Bushwhick Private Room,7990995,Juno,Brooklyn,Bushwick,40.70017,-73.92081,Private room,35,1,0,,,1,0 +11324531,PRIVATE ROOM - GREENPOINT,31860430,Grayson,Brooklyn,Greenpoint,40.73733,-73.95336,Private room,65,1,0,,,1,0 +22177388,Historic Crown Heights Cute Sunny Bedroom,1834034,Brittney,Brooklyn,Crown Heights,40.67206,-73.93446,Private room,25,4,7,2018-06-04,0.37,1,174 +2611458,close to Manhattan country setting,13373889,Aaron,Staten Island,Concord,40.60375,-74.08065,Private room,129,1,40,2018-10-14,0.85,2,86 +18561365,Artist Apartment Fort Greene / Clinton Hill,8146232,Marty,Brooklyn,Clinton Hill,40.69229,-73.96504,Entire home/apt,120,1,3,2017-08-06,0.12,1,0 +32840626,Sonder | Stock Exchange | Unique 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.706,-74.01068000000001,Entire home/apt,221,2,10,2019-06-12,2.78,327,354 +30512507,Cozy Sunbathed Studio in Brooklyn,38249006,Irene,Brooklyn,Bedford-Stuyvesant,40.68462,-73.94055999999999,Entire home/apt,70,4,14,2019-06-27,2.07,1,17 +33857172,Cozy Queen Bedroom Private Half Bathroom in Harlem,25272468,Anastasia,Manhattan,Harlem,40.82032,-73.94464,Private room,59,1,6,2019-06-30,4.62,1,74 +8303337,Your Riverside Romance: Sunny and Bright Apartment,8791857,Mario,Manhattan,Morningside Heights,40.81067,-73.96377,Entire home/apt,194,5,29,2019-06-22,0.75,1,102 +6491278,Cozy home in Williamsburg!,818508,Souheil,Brooklyn,Williamsburg,40.71515,-73.94798,Entire home/apt,100,7,15,2018-12-16,0.3,1,0 +26817803,New Amazing Modern Apartment w/ Backyard,12129877,Andre,Brooklyn,Crown Heights,40.67252,-73.93918000000001,Entire home/apt,110,2,26,2019-06-26,2.21,2,267 +56525,1 Bedroom Loft w/ Private Roof Deck,268014,Alex,Brooklyn,Greenpoint,40.729,-73.95829,Entire home/apt,195,2,69,2019-06-13,0.65,1,58 +13430012,Gorgeous 1 Bedroom NYC + W/D in the Unit,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-73.99821999999999,Entire home/apt,239,30,1,2017-08-08,0.04,121,365 +35227165,Huge 1br/studio in the heart of Williamsburg,15313500,Seymur,Brooklyn,Williamsburg,40.715340000000005,-73.95692,Entire home/apt,225,1,2,2019-07-04,2.0,1,71 +12494415,H. Potter theme place,67651553,Yunqiu,Manhattan,Upper West Side,40.80302,-73.96511,Entire home/apt,110,10,0,,,2,0 +21541423,Refurbished Private & Pretty Apartment Near City,16514175,Karen,Queens,Jackson Heights,40.74763,-73.88468,Entire home/apt,95,2,46,2019-06-21,2.29,5,168 +17554298,The Sweet Pea Cottage,76840423,Kathleen,Staten Island,Huguenot,40.53871,-74.16966,Entire home/apt,180,1,136,2019-07-07,4.81,1,136 +10338696,Studio Apartment in Safe Neighborhood.,50742613,Reed,Bronx,Pelham Bay,40.84721,-73.83221999999999,Entire home/apt,37,5,10,2018-07-04,0.25,1,0 +13972708,#MANHATTAN - Upper West BIG ROOM w/tv,82921914,G. Matthew,Manhattan,Harlem,40.8197,-73.95326,Private room,69,2,72,2019-06-08,2.09,3,72 +1182844,"Large apt at Central Park, TimesSq",6470443,Alex,Manhattan,Hell's Kitchen,40.76636,-73.9855,Entire home/apt,199,7,30,2019-01-26,0.52,1,184 +14068074,Soho Split-level Penthouse,13410839,Todd,Manhattan,Nolita,40.72339,-73.99461,Private room,250,91,55,2019-05-08,1.59,1,34 +21735642,Modern/Cozy Brooklyn Apartment,37084362,Amelia,Brooklyn,Williamsburg,40.71469,-73.94097,Private room,101,3,14,2019-06-24,0.76,1,0 +6155857,Heart of West Village cozy apt,7573842,Christina,Manhattan,West Village,40.73405,-74.00283,Entire home/apt,250,3,1,2016-07-21,0.03,1,0 +4089189,Stunning Parlor Garden Apartment,5317124,Caroline,Brooklyn,Clinton Hill,40.6921,-73.96797,Entire home/apt,145,3,16,2019-06-15,0.31,1,96 +31954232,LOCATION!!!!Beautiful 2 bedrooms appartement !!!,24425582,Artur,Brooklyn,Williamsburg,40.71301,-73.95845,Entire home/apt,128,2,13,2019-06-23,2.5,1,27 +34495704,FURNISHED 2 BEDROOM HUDSON HEIGHTS 6/15 - 8/15,160349432,Jeffrey,Manhattan,Washington Heights,40.85747,-73.93439000000001,Entire home/apt,100,30,0,,,1,8 +2122613,SuperBowl West Village Apartment,6854214,Nick,Manhattan,West Village,40.72975,-74.00414,Entire home/apt,325,1,0,,,1,0 +14357698,Penthouse Duplex 2 Bed/2 Bath on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78411,-73.97721,Entire home/apt,245,30,12,2019-06-30,0.37,6,245 +21844499,Cozy Central Park West Brownstone,1684573,Emily,Manhattan,Upper West Side,40.78624,-73.96951999999999,Entire home/apt,96,3,2,2017-12-01,0.1,1,0 +13514745,Cozy BR in large quiet EV apt,24222,Lori,Manhattan,East Village,40.72628,-73.97952,Private room,67,4,11,2019-07-02,0.3,2,4 +16739146,Practical Modern 2 Bedroom Apartment on Subway,2988712,Sasha,Bronx,Fordham,40.85318,-73.90204,Entire home/apt,71,90,10,2019-03-28,0.41,7,310 +180792,Modern Garden Apartment in NYC,864735,Jason,Queens,Astoria,40.75695,-73.9202,Entire home/apt,95,30,24,2019-04-04,0.26,8,271 +33972589,Sunny HUGE bedroom,206482566,Sarah,Manhattan,Stuyvesant Town,40.73193,-73.97971,Private room,115,1,0,,,2,0 +3758686,★ Convenience & Comfort Awaits! ♥️ Your Stay! ★,19242857,O.D.,Brooklyn,Crown Heights,40.67472,-73.93,Entire home/apt,117,1,82,2019-06-16,1.39,1,280 +26025770,"Upper West Side 3-Bedroom, 2-Bathroom",4392159,Gary,Manhattan,Upper West Side,40.80135,-73.96643,Entire home/apt,179,30,0,,,1,0 +4397455,Quiet 2 bedroom retreat in the heart of Brooklyn,5912357,Gina,Brooklyn,Canarsie,40.63269,-73.90358,Entire home/apt,85,4,60,2019-06-22,1.12,1,247 +30686870,Large bedroom,221940893,Sara,Brooklyn,Kensington,40.63628,-73.9697,Private room,60,2,12,2019-07-07,3.67,3,220 +8882549,Private room in the East Village!,26123839,Oliver,Manhattan,East Village,40.72285,-73.98133,Private room,80,2,7,2016-03-01,0.15,1,0 +25444327,My Upper West Side Studio,4493803,Brandon,Manhattan,Upper West Side,40.78105,-73.98151,Entire home/apt,125,30,2,2018-11-30,0.18,1,67 +34692728,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76364,-73.82292,Private room,59,1,9,2019-07-07,4.82,6,362 +12726907,Sunny Williamsburg apartment,4658415,Michael,Brooklyn,Williamsburg,40.71502,-73.94749,Entire home/apt,57,1,5,2018-07-29,0.13,1,0 +3943279,ENTIRE FURNISHED 1BD APT.,20433199,Merritt,Manhattan,East Village,40.72186,-73.97663,Entire home/apt,125,14,2,2018-08-26,0.04,1,3 +19526750,Cozy Room in Brooklyn Loft Space,24263304,David,Brooklyn,Williamsburg,40.70533,-73.9295,Private room,79,3,4,2018-09-17,0.19,1,69 +4880811,A writer's den in Nolita ...,3568184,Brock,Manhattan,SoHo,40.722190000000005,-73.99741999999999,Entire home/apt,200,1,49,2016-07-29,0.94,1,0 +4142125,Modern South Slope Studio w View,18189742,Kat,Brooklyn,Sunset Park,40.66355,-73.99547,Entire home/apt,140,1,0,,,1,0 +4820897,Comfy & Cozy in Best Hood in Bk,177846,Alexandra,Brooklyn,Fort Greene,40.68864,-73.97669,Private room,85,5,47,2019-05-06,0.85,2,9 +9918524,Queen size room near Columbia Uni.,24919557,Ana Carolina,Manhattan,Morningside Heights,40.80756,-73.96724,Private room,55,21,0,,,1,0 +21239497,Luxury Brooklyn 1BR just minutes from Manhattan,4444524,Lina,Brooklyn,Fort Greene,40.69269,-73.97977,Private room,179,2,6,2019-01-03,0.3,1,0 +28054901,Cozy and affordable,29953329,Yulia,Brooklyn,Bedford-Stuyvesant,40.69371,-73.94449,Private room,53,4,52,2019-06-25,6.5,2,1 +35236795,Spacious Apartment in the heart of Williamsburg,7982677,Zara,Brooklyn,Williamsburg,40.71419,-73.95966999999999,Entire home/apt,230,2,1,2019-06-16,1.0,1,15 +2083547,3 Bed/ 2 Bath Full Apt. BK Heights,4690301,Eric,Brooklyn,Brooklyn Heights,40.69134,-73.99334,Entire home/apt,185,2,10,2017-09-20,0.2,1,0 +18120592,Clean room PRIVATE full bath & private entrance,124860677,Jim&Lisa,Queens,Flushing,40.75811,-73.81458,Private room,47,2,130,2019-07-07,4.79,6,342 +21622558,"Spacious, 1 bedroom apartment, beautiful views",6022622,Chantal,Queens,Sunnyside,40.7479,-73.91741999999999,Entire home/apt,125,2,2,2018-01-01,0.11,1,0 +21906858,Spacious and homey 1 br w garden near subway,1033792,Dani,Brooklyn,Park Slope,40.67835,-73.98209,Entire home/apt,80,5,2,2018-11-26,0.11,1,0 +29392426,Cozy Apt x Rent Close to Manhattan,4666670,Jeanny,Queens,Astoria,40.77029,-73.91881,Entire home/apt,110,5,1,2019-01-07,0.16,4,173 +5397568,New York 2 to 8 Guest + Private ROOFTOP SUPERHOST,9209691,Anatha Angèle,Manhattan,Harlem,40.82313,-73.94981999999999,Entire home/apt,185,4,137,2019-06-28,2.83,2,261 +19094427,Spacious one bedroom in the heart of Inwood,16020315,Douglas,Manhattan,Inwood,40.86822,-73.92048,Entire home/apt,100,2,9,2019-04-07,0.59,1,0 +13033170,Designer’s Penthouse with Terrace and Skyline View,2637408,Chris,Brooklyn,Williamsburg,40.712140000000005,-73.94991999999999,Entire home/apt,175,3,122,2019-06-15,3.37,2,128 +24114389,"Very Spacious bedroom, steps from CENTRAL PARK.",180661875,Salim,Manhattan,Upper West Side,40.768440000000005,-73.98333000000001,Private room,10,1,2,2018-04-23,0.13,1,0 +16319001,Stanhope,106798652,Timbrooke,Brooklyn,Bushwick,40.69477,-73.92489,Private room,50,7,0,,,2,362 +29025649,"Spacious, Cozy, ENTIRE One Bedroom Apartment",57699301,Irina,Brooklyn,Sunset Park,40.63902,-74.01836999999999,Entire home/apt,100,28,4,2019-05-31,0.59,1,219 +12642845,Newly renovated! Spacious Park Slope Apt. Quiet St,228858,Jada,Brooklyn,South Slope,40.66271,-73.98818,Entire home/apt,150,3,73,2019-07-04,1.89,2,259 +13673873,Beautiful bedroom in ideal Brooklyn location!,78285648,Sharina,Brooklyn,Kensington,40.63622,-73.97406,Entire home/apt,70,1,0,,,1,0 +14373756,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :DD,3441272,Jasmin,Brooklyn,Bushwick,40.69903,-73.93021,Private room,85,1,188,2019-06-20,5.3,5,270 +16595351,Manhattan - Upper East Side - Entire Home,69406365,Yoko,Manhattan,Upper East Side,40.77102,-73.94671,Entire home/apt,80,1,1,2017-01-16,0.03,2,0 +34313928,South Bronx Suite Two,19903807,Carol,Bronx,Mott Haven,40.81245,-73.91648,Entire home/apt,120,3,1,2019-06-15,1.0,3,45 +21679639,Entire 1-Bedroom Greenpoint Apartment,4696622,James,Brooklyn,Greenpoint,40.72747,-73.95461999999999,Entire home/apt,95,3,0,,,1,0 +36139954,Best location in ny,271393608,Michael,Manhattan,Hell's Kitchen,40.76802,-73.98721,Shared room,69,1,1,2019-06-30,1.0,6,24 +9653005,Lovely apartment near Prospect Park,4878479,Patrik,Brooklyn,Crown Heights,40.67629,-73.96208,Entire home/apt,130,5,0,,,1,0 +21577066,"Bright, Spacious Private Room in Williamsburg!",8628781,Tessa,Brooklyn,Williamsburg,40.71075,-73.95935,Private room,70,1,1,2018-04-20,0.07,1,0 +35236040,Relaxing Stylish Room Near Train and Attractions 2,265289882,Jorge,Manhattan,Chelsea,40.74614,-74.00168000000001,Private room,150,5,0,,,1,79 +12307809,Discover Windsor Terrace! -- a treasure. 2 BR apt,26535250,Sheila,Brooklyn,Windsor Terrace,40.65722,-73.9793,Entire home/apt,61,1,91,2019-05-18,2.38,3,246 +14469621,★ Comfy Room ★ w/ Parking | Quiet Area | Near Park,87601091,Matthew,Queens,Flushing,40.77063,-73.8098,Private room,75,2,85,2019-06-30,2.42,1,159 +14713599,Williamsburg Dream Loft,5213766,Itay,Brooklyn,Williamsburg,40.70774,-73.94819,Private room,120,2,157,2019-07-01,4.54,1,68 +35406064,perfect 2BR Apt near wall st,115771987,Yuki,Manhattan,Financial District,40.70678,-74.0091,Entire home/apt,170,30,0,,,6,221 +22029653,Quiet Artsy Astoria Bedroom Available,160862247,Peyton,Queens,Astoria,40.75694,-73.92558000000001,Private room,57,5,0,,,1,0 +4666584,Unique 2 Bed/2 Bath Duplex Apt,24144577,Bill,Manhattan,Harlem,40.80382,-73.94476,Entire home/apt,275,3,41,2019-05-12,0.79,1,258 +6765697,Cozy bedroom for 2 in Astoria,35417042,Maria,Queens,Astoria,40.76855,-73.92583,Private room,86,4,28,2019-04-23,0.59,1,364 +711635,Charming East Village Apartment,3662459,Barry,Manhattan,East Village,40.73016,-73.98643,Entire home/apt,240,5,86,2019-06-30,1.15,1,344 +20811403,Large Studio in Forest Hills,95416322,Renee,Queens,Forest Hills,40.7281,-73.84886,Entire home/apt,100,2,18,2019-01-01,0.82,1,0 +17418006,Luxury Apt Close to JFK Airport,110858930,Cordelia,Queens,Cambria Heights,40.69206,-73.74546,Entire home/apt,169,2,65,2019-06-26,2.33,1,263 +28276940,Humble One Bedroom Brooklyn Apt 15mins to the City,96328752,Jivani,Brooklyn,Bedford-Stuyvesant,40.6823,-73.94958000000001,Entire home/apt,125,2,4,2019-04-30,0.48,1,70 +18516072,CENTRAL PARK WEST BRIGHT AND SPACIOUS,671187,Mike,Manhattan,Upper West Side,40.800340000000006,-73.95940999999999,Private room,139,31,0,,,1,83 +29420970,Time-Sharing Private Room,62533391,Yvonne,Brooklyn,Borough Park,40.63543,-74.00701,Shared room,38,1,7,2019-05-17,0.8,7,365 +20729174,"Six in the City, Stay in Brooklyn Tour New York!",148444212,Sofia,Brooklyn,East Flatbush,40.65413,-73.94846,Entire home/apt,95,4,55,2019-07-02,2.64,1,22 +8468662,Cozy Loft in the UWS Manhattan,19244346,Emanuele,Manhattan,Upper West Side,40.79893,-73.96769,Entire home/apt,150,4,1,2015-12-16,0.02,1,0 +19731225,Entire 2 bedroom floor in owner occup Brownstone,71097702,Paula,Brooklyn,Park Slope,40.6815,-73.98028000000001,Entire home/apt,290,30,48,2019-04-09,2.07,2,299 +31876649,Charming Greenpoint's Bedroom,2559194,Francesca,Brooklyn,Greenpoint,40.72731,-73.95482,Private room,100,14,0,,,1,188 +27526619,Sonder | Hanover Square | Pristine 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70514,-74.00914,Entire home/apt,159,29,0,,,96,325 +8014315,Cozy Victorian Hideaway in Bushwick,259826,Cass,Brooklyn,Bushwick,40.69312,-73.9236,Private room,50,1,1,2015-10-08,0.02,1,0 +33549469,Sanctuary in the Heart of Williamsburg!,1155020,Timothy,Brooklyn,Williamsburg,40.72037,-73.95857,Entire home/apt,199,3,0,,,1,99 +27896043,Comfortable room in the heart of Williamsburg!!,129864476,Greetings From Saul And Diana,Brooklyn,Williamsburg,40.7191,-73.95988,Private room,80,1,13,2019-07-01,1.32,1,65 +9797293,East Harlem Holiday Stay,5474579,Seun,Manhattan,East Harlem,40.79617,-73.93451999999999,Entire home/apt,85,1,0,,,1,0 +18306444,Lively SoHo/Quiet St/2 blocks Subway/Fast WiFi,114548258,Only One,Manhattan,SoHo,40.72615,-74.00097,Entire home/apt,215,1,83,2019-06-25,3.19,2,214 +7694418,Close to Central Park,1784925,Karen,Manhattan,Upper West Side,40.791,-73.96809,Entire home/apt,150,3,10,2018-01-02,0.21,1,0 +10591658,Beautiful Studio in Soho - Greenwich Village,14077910,Sabrina And Antoine,Manhattan,Greenwich Village,40.72843,-73.9999,Entire home/apt,175,60,28,2019-03-29,0.7,1,126 +28919308,Charming West Chelsea Studio Loft,145331404,Allan,Manhattan,Chelsea,40.74542,-74.00133000000001,Entire home/apt,195,5,21,2019-07-01,2.42,1,17 +11529142,Colorfull apart in NY.,149430,Tida,Manhattan,East Harlem,40.78687,-73.94542,Entire home/apt,120,5,35,2019-07-01,1.27,2,303 +31904156,Fantastic Private Bedroom. Great Views & Location.,239168415,Christine,Manhattan,Financial District,40.70493,-74.0102,Private room,119,3,4,2019-05-10,1.15,1,26 +15951107,Elegant Entire apartment prospect lefferts garden,103554758,Cg,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95478,Entire home/apt,110,3,88,2019-07-02,2.76,1,248 +12711232,Private Room In Hamilton Heights,45941973,Sigal,Manhattan,Harlem,40.8273,-73.94904,Private room,59,1,3,2017-11-06,0.08,1,0 +2092611,"Bright & cozy, private UES studio",10662294,Daria,Manhattan,Upper East Side,40.77519,-73.95688,Entire home/apt,150,9,9,2017-09-05,0.13,1,0 +9999351,Cozy two bedroom apartment,51368588,Paula,Manhattan,Upper East Side,40.76438,-73.95871,Entire home/apt,170,3,35,2019-04-25,0.82,2,0 +24759050,"Private Bedroom on Upper West, Manhattan",76537707,Angela,Manhattan,Upper West Side,40.795,-73.97479,Private room,67,12,1,2018-05-31,0.07,1,0 +21540314,Clean & quiet home on quiet block,156585195,Gerard,Brooklyn,Bergen Beach,40.62052,-73.91145,Entire home/apt,95,2,41,2018-08-27,2.04,2,4 +3079237,Sunny clean studio in heart of LES,13969061,Lisa,Manhattan,Lower East Side,40.71987,-73.98640999999999,Entire home/apt,150,1,32,2018-12-12,0.51,1,3 +19967115,Large 1st floor apartment at fantastic location!,12652679,Madhu,Queens,Astoria,40.76297,-73.91696,Entire home/apt,80,2,13,2019-05-23,0.56,1,0 +24299542,Prime Luxury Apartment,25093840,Abinav,Manhattan,Murray Hill,40.74766,-73.97601,Private room,130,1,3,2018-05-30,0.21,1,0 +7094112,"Stuyvesant, East Village",12749467,Naomi,Manhattan,East Village,40.73022,-73.98893000000001,Entire home/apt,198,30,5,2019-01-08,0.11,1,301 +7308927,cool room in Bushwick loft,34873213,Melody,Brooklyn,Williamsburg,40.70909,-73.9256,Private room,55,1,1,2015-07-22,0.02,1,0 +9732432,2nd floor bedroom in Bushwick house,14974205,Gabriel,Brooklyn,Bushwick,40.69351,-73.92309,Private room,35,1,1,2016-01-14,0.02,1,0 +10612199,Serene luxury in Harlem,54761069,Erika,Manhattan,Harlem,40.80708,-73.95211,Private room,80,3,10,2019-01-05,0.28,1,332 +23595013,Studio Apartment in Manhattan,5709606,Megan,Manhattan,Upper East Side,40.77154,-73.95573,Entire home/apt,175,3,24,2019-01-01,1.48,1,0 +4180643,luxury one bedroom apt in prime LES location,21688467,Avril,Manhattan,Lower East Side,40.718140000000005,-73.98411,Entire home/apt,150,60,9,2019-03-27,0.16,1,210 +33138360,New Luxury Brooklyn Apartment Near Manhattan,39362079,Jon,Brooklyn,Crown Heights,40.6704,-73.95038000000001,Entire home/apt,95,2,7,2019-05-27,2.5,1,0 +10939710,NEW YORK LOFTLIKE APARTMENT,9192860,Alex,Queens,Ridgewood,40.70286,-73.90649,Private room,71,3,62,2019-06-09,2.76,1,291 +7320522,Large Apt in Theatre District,38350446,Chris,Manhattan,Hell's Kitchen,40.76146,-73.9896,Private room,160,5,5,2016-11-28,0.13,1,0 +3083899,Charming Studio on Upper West Side,15638528,Lindsey,Manhattan,Upper West Side,40.78087,-73.97811999999999,Entire home/apt,120,1,1,2014-07-10,0.02,1,0 +7932177,Private room with patio,41827222,Michael,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94962,Private room,35,6,10,2017-06-10,0.28,2,0 +4867016,Charming Brooklyn Getaway,1968327,Azza,Brooklyn,Bedford-Stuyvesant,40.69268,-73.95575,Private room,70,2,6,2019-05-20,0.12,1,365 +17512883,Amazing 1 Bedroom | 1 Bedroom | Skyline View,3191545,Kyle,Manhattan,Murray Hill,40.749190000000006,-73.97244,Entire home/apt,135,30,0,,,23,365 +11493255,Central Park / UWS,60516459,Ana,Manhattan,Upper West Side,40.77156,-73.98284,Private room,280,2,60,2019-06-18,1.47,1,317 +9348111,Charming 2BR Apartment: Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71294,-73.96224000000001,Entire home/apt,161,2,21,2019-06-30,0.48,3,2 +11401884,Charming Pied-à-terre à New York!,59849677,Tom & Mel,Manhattan,East Harlem,40.79736,-73.94442,Private room,100,2,77,2019-07-06,1.9,1,235 +23557996,Cozy Bushwick Room :),16400151,Henning,Brooklyn,Bushwick,40.70199,-73.92035,Private room,45,2,10,2018-04-01,0.61,1,0 +19830759,Beautiful Large Bedroom in Brooklyn!,2891898,Jennifer,Brooklyn,Borough Park,40.64712,-73.99646,Private room,48,5,2,2019-05-03,0.19,1,214 +28328473,Modern private studio in rockaway,213910720,Ayodele,Queens,Far Rockaway,40.59752,-73.76337,Private room,50,1,18,2019-06-29,1.79,1,71 +30130572,Studio-like bedroom with private entrance and bath,2557167,Eric,Bronx,Claremont Village,40.834990000000005,-73.91003,Private room,75,3,19,2019-06-03,2.59,1,109 +18704413,Large Private Suite in Classic Brooklyn Brownstone,130035533,Linda,Brooklyn,Brooklyn Heights,40.69364,-73.99467,Entire home/apt,200,2,80,2019-06-28,3.14,1,271 +21882745,"Large, sunny & modern Union Square 1-bedroom",22225590,Tina,Manhattan,East Village,40.73245,-73.98848000000001,Entire home/apt,210,4,4,2019-04-26,0.39,1,0 +618916,Brooklyn Carriage House,92451,Cath,Brooklyn,Prospect Heights,40.68066,-73.96644,Entire home/apt,200,4,11,2019-04-28,0.13,1,0 +29777278,Vintage Room &prvt bathroom Central Park Manhattan,223346842,Alex,Manhattan,Harlem,40.80475,-73.95081,Private room,79,2,43,2019-07-05,5.47,3,43 +10280345,"Room 5, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64316,-73.96285,Private room,65,1,105,2019-07-03,2.54,2,111 +29838125,Beautiful Private Room 20 min to city X,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.68921,-73.95035,Private room,65,30,26,2019-06-24,3.25,4,361 +21199546,XLarge & Serene Clinton Hill 2 bdr Loft,55430096,Magali,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95709000000001,Entire home/apt,190,20,2,2018-07-31,0.14,1,310 +31381171,JFK Studio Hideaway,47409152,Sherra,Queens,St. Albans,40.68623,-73.76209,Entire home/apt,125,1,9,2019-06-17,1.65,1,344 +19384126,Two Private Floors in brownstone by Prospect Park,11370189,Brandon,Brooklyn,Prospect Heights,40.67602,-73.96593,Private room,225,5,0,,,2,1 +3131756,Beautiful 3 Bedroom apt in Bed-Stuy,2213809,Dean,Brooklyn,Bedford-Stuyvesant,40.68176,-73.92883,Entire home/apt,149,2,225,2019-06-30,3.7,1,254 +23147603,Cozy apartment with a huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.72421,-73.94074,Entire home/apt,200,1,0,,,2,0 +5946137,Spacious UWS pre-war guest room!,11237515,Lindiwe,Manhattan,Harlem,40.82335,-73.94887,Private room,100,3,4,2015-07-01,0.08,1,358 +14760402,2br Apartment w/ Balcony & Free Airport Pickup!,83627325,Jared,Queens,Sunnyside,40.74634,-73.9179,Entire home/apt,249,1,6,2019-05-26,0.18,4,365 +15974141,100$,45404805,Bianca,Queens,Astoria,40.76938,-73.93226999999999,Private room,120,5,1,2018-01-07,0.05,2,351 +4020957,Sunny Room in Bedstuy,12876904,Marla,Brooklyn,Bedford-Stuyvesant,40.67918,-73.95318,Private room,125,2,1,2015-06-05,0.02,1,0 +7246757,Amazing LES Manhattan Apt in LES,3586177,Marianna,Manhattan,Lower East Side,40.7201,-73.9841,Entire home/apt,175,3,44,2019-06-23,0.92,1,34 +30689655,Light Drenched Brooklyn Haven,13108315,Max,Brooklyn,Park Slope,40.67409,-73.97546,Entire home/apt,100,8,3,2019-04-30,0.48,1,7 +12228859,NYC Full Studio Walkable to Central Park,5138621,Clare,Manhattan,Upper East Side,40.77619,-73.95106,Entire home/apt,140,2,1,2016-11-07,0.03,1,0 +24635041,Irving Ave Bedroom Apartment,186178785,Simon,Brooklyn,Bushwick,40.69658,-73.90773,Private room,55,14,1,2018-08-31,0.1,1,0 +25280641,Charming 1BR Apartment in the heart of The Village,10240682,Tiffany,Manhattan,Greenwich Village,40.72938,-74.00027,Entire home/apt,197,3,6,2019-06-16,0.48,1,0 +9900120,Bedroom built for... just sleeping,50914877,Kyle,Manhattan,Harlem,40.8185,-73.9442,Private room,45,4,1,2015-12-30,0.02,1,0 +21913309,One nice room on the Roosevelt Island; 罗岛一间卧室出租,159884558,Lily,Manhattan,Roosevelt Island,40.76191,-73.94934,Private room,45,25,37,2018-07-01,1.89,1,149 +2081177,Lovely Studio in New York City,542611,Robyn,Queens,Sunnyside,40.74409,-73.91868000000001,Entire home/apt,90,14,6,2016-09-11,0.09,1,0 +34515896,Look at that Suite City View!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70669,-74.0165,Private room,100,1,0,,,7,348 +4357134,Beautiful NY Gem,7809661,Mamie,Queens,Ditmars Steinway,40.77172,-73.91769000000001,Entire home/apt,200,1,0,,,1,0 +8153240,Cozy 3 Bedroom Apartment - LES,10134825,Kara,Manhattan,Lower East Side,40.71358,-73.98456,Entire home/apt,250,3,0,,,4,0 +32291826,Charming Bedroom in Quintessential Brooklyn Home,36211911,Matthew,Brooklyn,Williamsburg,40.71751,-73.94474,Private room,80,1,0,,,1,0 +2756159,Living Room sofa Bed in Chelsea2,12750945,Luis,Manhattan,Chelsea,40.74389,-73.99835,Shared room,85,2,65,2019-06-23,1.03,4,171 +28047011,"Huge room in great area, 25 minutes from Manhattan",70260514,Daphna,Queens,Woodside,40.74588,-73.89721,Private room,45,4,4,2018-12-14,0.43,1,0 +32240476,Sonder | Stock Exchange | Simple 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70654,-74.01091,Entire home/apt,214,2,11,2019-06-20,2.97,327,304 +4236725,"Spacious, elegant home in Brooklyn",3650005,Rae,Brooklyn,Clinton Hill,40.69191,-73.96624,Entire home/apt,150,3,0,,,1,0 +18931595,Room in Apt near Central Park & Columbia,20812159,Gio,Manhattan,Harlem,40.80214,-73.95658,Private room,55,2,8,2017-07-29,0.31,1,0 +35798549,"concrete jungle, dreams are made, Studio nextdoor",216289751,Cierra,Manhattan,Midtown,40.7518,-73.97158,Entire home/apt,145,3,0,,,1,62 +14527923,Mini suite minutes from Central Park,20521058,Owen,Manhattan,East Harlem,40.79631,-73.94771999999999,Private room,79,3,28,2017-10-17,0.8,1,0 +9683691,Spacious Room + Separate Office,1885068,Joe,Brooklyn,Flatbush,40.65373,-73.95535,Private room,47,1,0,,,1,0 +14037145,B crownheights queen size bed$100,83147028,Shirley,Brooklyn,Crown Heights,40.67011,-73.92544000000001,Private room,100,1,27,2018-10-30,0.75,2,365 +5505918,Winter Deal! Cosy room available in East Village,28557212,Marion,Manhattan,Gramercy,40.73305,-73.98255,Private room,73,5,4,2017-02-21,0.08,1,0 +32757476,Apartment 2,245394439,Joyce,Manhattan,Harlem,40.80299,-73.95443,Entire home/apt,181,2,15,2019-07-01,4.21,1,22 +3983469,Private room near Columbia University,8734291,Mike,Manhattan,Upper West Side,40.80311,-73.96648,Private room,75,1,65,2019-07-05,1.12,1,301 +8937816,L-Train - 3BR Duplex in Brooklyn,3538412,Tom,Brooklyn,Williamsburg,40.70573,-73.92886999999999,Entire home/apt,195,4,85,2019-06-19,1.93,1,63 +31900259,"Nice place,where you can be comfortable",207913076,Fabrice,Brooklyn,Brownsville,40.66779,-73.91676,Private room,70,2,3,2019-05-16,0.64,1,325 +18274492,Studio apartment in NYC,5949541,Helen,Staten Island,Grant City,40.58023,-74.10725,Entire home/apt,80,3,68,2019-06-30,2.55,1,50 +9625826,Home Sweet Home in Brooklyn,11497855,Lina,Brooklyn,Prospect-Lefferts Gardens,40.66145,-73.96005,Private room,65,10,1,2016-01-12,0.02,1,0 +14027065,Clean and comfortable stay,23502477,Yvonne Yuan,Manhattan,Midtown,40.75273,-73.96904,Private room,90,5,0,,,1,0 +32317602,LARGE 2 Bedroom Midtown Manhattan Apartment!,242622786,Ethan,Manhattan,Hell's Kitchen,40.76262,-73.98865,Entire home/apt,177,1,7,2019-07-04,1.74,1,8 +22305797,Cozy bedroom in a share apartmet,65339610,Carlos,Bronx,Norwood,40.875040000000006,-73.88476,Private room,200,3,0,,,1,83 +33348709,Lucio's Room #3 a unos minutos del JFK y LGA,214738765,Lucio,Queens,Richmond Hill,40.69668,-73.83138000000001,Private room,75,1,31,2019-07-07,9.21,3,89 +30511096,Private room,132784640,Karen,Brooklyn,Sunset Park,40.63866,-74.01746,Private room,40,2,20,2019-06-16,2.83,1,349 +27341015,"Bright, Comfy, Conveniently Located Brooklyn Apt.",133298502,Dalila,Brooklyn,Flatbush,40.6498,-73.95591999999999,Private room,100,1,0,,,1,0 +32042721,Sunny BR w/ Private LR 15 min to JFK free Parking,240239465,Okhela,Queens,St. Albans,40.70132,-73.75463,Entire home/apt,30,2,11,2019-05-25,2.32,2,230 +23979192,"Huge, bright 1 bed w/ priv yard in Crown Heights!",15538912,Michelle,Brooklyn,Crown Heights,40.67395,-73.94874,Entire home/apt,77,3,3,2018-09-23,0.2,1,0 +31221996,Private bedroom in a Historic Brownstone House,232622663,Raphael,Brooklyn,Bedford-Stuyvesant,40.68429,-73.94841,Private room,39,2,9,2019-02-08,1.45,2,0 +9277581,"Clean, mid-century modern decorated",25687571,Jorge,Manhattan,East Village,40.72959,-73.98245,Entire home/apt,125,2,15,2017-12-03,0.34,1,0 +27779997,"Private Room Midtown Park Avenue, Steal!",209758777,Isabel,Manhattan,Midtown,40.74631,-73.98501999999999,Private room,145,1,53,2019-06-24,7.61,2,5 +21147249,Spacious Bedroom in Renovated Apartment- Astoria,75563831,Rayan,Queens,Astoria,40.75811,-73.90954,Private room,43,4,19,2019-07-05,1.64,2,1 +11488593,LUXURY DOORMAN STUDIO ON EAST 44th STREET,2856748,Ruchi,Manhattan,Midtown,40.75066,-73.97036999999999,Entire home/apt,198,30,0,,,49,364 +16392756,Cozy studio next to Wash Sq Park,5895282,Scott,Manhattan,Greenwich Village,40.73421,-73.9968,Entire home/apt,135,5,9,2017-06-16,0.29,1,0 +10388512,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM A,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69317,-73.82526999999999,Private room,50,1,96,2018-11-22,3.77,5,0 +16337890,"Cozy Sunny Room in New Apartment by G, J, M trains",106634224,Andrei,Brooklyn,Bedford-Stuyvesant,40.69442,-73.94362,Private room,55,7,0,,,2,0 +9714004,Spacious and Bright Two Bedroom Bedroom Apartment.,50148553,Anna,Manhattan,Theater District,40.76278,-73.98498000000001,Private room,197,3,18,2017-09-08,0.46,1,0 +7411421,Hip & Trendy Williamsburg 2 BR 2BA Apartment,3750905,Louis,Brooklyn,Williamsburg,40.71303,-73.9558,Entire home/apt,109,2,28,2019-06-22,0.61,1,170 +20552544,Clean and Cozy Brooklyn Room in Artsy Apartment,57630325,Christopher,Brooklyn,Flatbush,40.65265,-73.96559,Private room,47,1,18,2018-05-22,0.8,1,0 +17779504,Relaxing Quiet Room Just 6 Mins from JFK Airport!,121391142,Deloris,Queens,Springfield Gardens,40.66535,-73.76366999999999,Private room,65,1,368,2019-06-21,13.24,2,0 +32408593,15min to Times Square !! Charming Bedroom 03,243367528,Lucca & Paula,Queens,Astoria,40.76514,-73.91212,Private room,62,1,16,2019-06-21,3.38,7,308 +51485,Lower East Side $57~/night,236655,Erina,Manhattan,Lower East Side,40.72319,-73.99201,Private room,83,1,285,2019-06-22,2.69,1,7 +1793091,Private Studio Museum Block UWS,9407785,Ana Maria,Manhattan,Upper West Side,40.77631,-73.97953000000001,Entire home/apt,175,3,258,2019-06-25,3.8,1,235 +10630048,Sunny modern oasis near THE Park,9273561,Nadine,Manhattan,East Harlem,40.79013,-73.94473,Private room,75,2,21,2016-09-19,0.5,1,0 +33527998,Sonder | Stock Exchange | Relaxed 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70747,-74.01226,Entire home/apt,247,2,9,2019-06-14,3.42,327,272 +29513074,"Quiet, Modern Studio Near Manhattan & Brooklyn",26600082,Stephanie,Queens,Ridgewood,40.69973,-73.90835,Entire home/apt,150,1,14,2019-07-02,2.8,1,2 +13739108,Luxury 1 bedroom apt. Downtown Brooklyn/Dumbo,44941423,Bryan,Brooklyn,Downtown Brooklyn,40.69751,-73.98454,Entire home/apt,121,5,4,2017-08-09,0.12,1,0 +32245235,Quiet Private Room in the Exciting East Village!,160356,Joseph,Manhattan,East Village,40.72576,-73.98309,Private room,68,1,18,2019-07-03,4.15,4,90 +5059402,1BR with backyard in Williamsburg!,26124805,Laura,Brooklyn,Williamsburg,40.71677,-73.95773,Private room,90,1,0,,,1,0 +20816972,House of Moon Dog,149296548,Eli,Brooklyn,Bushwick,40.69653,-73.91492,Private room,59,3,29,2019-06-24,1.3,1,63 +29902562,Beautiful Basement Apartment,8830191,Hd,Brooklyn,Flatbush,40.64169,-73.95398,Entire home/apt,40,2,2,2019-07-01,2.0,1,57 +30765849,Elevator Doorman Gym Studio Roof Laundry 5219,16098958,Jeremy & Laura,Manhattan,Midtown,40.74986,-73.98709000000001,Entire home/apt,180,30,0,,,96,311 +18747972,Moore St. Bushwick Loft,130400901,Halliday,Brooklyn,Williamsburg,40.70398,-73.93298,Entire home/apt,185,2,39,2018-12-27,1.5,1,0 +4127524,Entire 1BD Apt in Long Island City!,828682,Leora,Queens,Long Island City,40.74264,-73.95121999999999,Entire home/apt,200,1,2,2015-12-01,0.04,1,0 +19466060,your space around Myrtle Ave,17274880,Jangho,Brooklyn,Bedford-Stuyvesant,40.69343,-73.9371,Private room,35,5,5,2017-12-27,0.22,1,0 +15511681,"Quiet, Cozy, ELEVATOR, Queen Bedroom near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77344,-73.94911,Private room,90,2,61,2019-05-25,1.84,3,0 +28540171,Central Harlem Home,7147060,Kathleen,Manhattan,Harlem,40.80212,-73.95732,Private room,95,2,5,2019-06-21,1.9,2,90 +12085008,Sophisticated 1 bedroom apt. in Midtown West!,30283594,Kara,Manhattan,Midtown,40.76567,-73.98308,Entire home/apt,239,30,0,,,121,352 +219482,A Cozy Brooklyn Hideaway,759583,Pepe,Brooklyn,Clinton Hill,40.68275,-73.96148000000001,Entire home/apt,172,4,8,2017-10-14,0.09,2,189 +10849166,Large Brooklyn Apartment.,39261381,Nathaniel,Brooklyn,Flatlands,40.62361,-73.93423,Private room,34,1,7,2017-08-27,0.17,2,349 +35614773,Beautiful 1 bedroom steps from Central Park!,267936314,Jahni,Manhattan,Upper West Side,40.79976,-73.96549,Entire home/apt,200,1,2,2019-06-30,2.0,1,37 +35996222,Stylish 2 Beds Apartment with Private Parking,270796745,Sonia,Bronx,Allerton,40.86886,-73.84915,Entire home/apt,140,2,1,2019-06-30,1.0,1,175 +4192400,Private+Cozy Room w/ Superhost ($0 Cleaning Fee)!,21751476,Grace,Brooklyn,Bushwick,40.69233,-73.90579,Private room,72,1,360,2019-07-07,6.22,1,66 +22512917,"Spacious, Sunlit, Master Bedroom in Brooklyn",10743035,Fahmida,Brooklyn,Prospect Heights,40.67579,-73.96514,Private room,75,2,0,,,1,0 +1928556,"Private Apt, Large, Safe / 5mins to TIMES SQUARE",4482351,Zoey,Manhattan,Hell's Kitchen,40.76143,-73.99223,Entire home/apt,140,5,17,2019-04-08,0.25,2,2 +35681619,Modern Bright 3bd/2ba (10 mins to NYC) w Roof Deck,69356879,Lacy,Brooklyn,Williamsburg,40.71668,-73.94252,Entire home/apt,295,2,0,,,1,300 +33331140,"SKY VIEW 1 BEDROOM, 1 MIN TO SUBWAY",85518733,Vivivn,Queens,Long Island City,40.746970000000005,-73.94131,Entire home/apt,135,4,0,,,1,0 +34217313,Sonder | 11th Ave | Polished 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76229,-73.99628,Entire home/apt,187,29,0,,,327,335 +9415828,Large & Bright in West Village!,43864152,Kristina,Manhattan,West Village,40.73129,-74.00237,Entire home/apt,300,2,3,2016-10-24,0.08,1,0 +28989676,Modern & Spacious Luxe Apt,59982224,Leli,Brooklyn,East New York,40.67474,-73.87187,Entire home/apt,200,3,1,2019-01-02,0.16,4,4 +15158791,"SPECIAL: Luxury Apt, Close to Transp, Beach & Food",84558839,Mitch,Brooklyn,Manhattan Beach,40.58085,-73.93934,Entire home/apt,130,2,73,2019-06-30,2.15,1,330 +19768829,"Cozy 1 bedroom apt, Quiet, Near metro, East side",3792860,Elena,Manhattan,Upper East Side,40.77052,-73.95485,Entire home/apt,150,1,0,,,2,0 +19466277,Cozy Bed - Stuy hideaway (The Fulton Room),8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9436,Private room,60,5,11,2019-06-19,0.47,3,56 +403668,"Gorgeous Sunny, Spacious 1 bdrm in East Village",2013117,Katya,Manhattan,East Village,40.72812,-73.97966,Entire home/apt,147,2,16,2019-01-02,0.18,1,0 +13492036,"Beautiful 1 bedroom in Astoria,Queens",77325010,Petros,Queens,Ditmars Steinway,40.77231,-73.90793000000001,Entire home/apt,75,4,1,2016-07-31,0.03,1,0 +19872361,Great & convenient location in East Village!,13349759,Isai,Manhattan,East Village,40.72589,-73.97726,Private room,75,3,0,,,1,0 +6988265,Great for a family of 4!,36634420,Kobi,Manhattan,Washington Heights,40.85183,-73.94022,Entire home/apt,120,1,0,,,1,0 +35042058,"Big one bedroom apt, new and beautiful.",19342,Rivka,Manhattan,Upper West Side,40.799,-73.96315,Entire home/apt,11,7,0,,,1,273 +6091850,Cozy 1BD in a cool neighborhood.,31614694,Silvia,Queens,Long Island City,40.76019,-73.92915,Entire home/apt,80,3,177,2019-06-24,3.66,1,196 +20998921,COZY QUIET APT CLOSE TO TRAIN,42058671,Alana,Brooklyn,Bushwick,40.70073,-73.92913,Private room,60,3,4,2017-12-26,0.2,1,0 +14858777,West Harlem Cosy and Spacious Room,9030453,Irie,Manhattan,Harlem,40.81172,-73.94456,Private room,71,5,6,2017-09-20,0.18,2,305 +29535938,Sparkling Pad near Times Square HK -w- Queen Bed,501343,Bryan,Manhattan,Hell's Kitchen,40.76328,-73.98942,Private room,225,3,2,2019-05-14,0.73,2,30 +12227645,The beach - it's just across the street,54129736,Donna,Queens,Rockaway Beach,40.58341,-73.8165,Private room,88,2,32,2017-09-04,0.84,1,0 +31225319,Dominiques unique twin room*NYC-wifi* metro*safe,310670,Vie,Bronx,Eastchester,40.88179,-73.83455,Private room,75,2,1,2019-04-20,0.37,13,365 +15665469,Sunny and cozy bedroom in Ditmas Park,8832456,Ubi,Brooklyn,Kensington,40.64381,-73.97018,Private room,54,1,132,2019-06-23,4.03,1,70 +2830518,"Safe Clean Sunny, 15 min Manhattan",11363157,Delia,Queens,Astoria,40.76123,-73.92177,Private room,65,50,30,2015-11-15,0.48,1,198 +7382573,Bright room in Williamsburg loft,16548316,Phil,Brooklyn,Williamsburg,40.70767,-73.94821,Private room,70,14,0,,,1,0 +32722262,Parkside Chateau,212338108,James R,Manhattan,Harlem,40.82335,-73.94901999999999,Private room,125,1,2,2019-06-16,2.0,1,139 +2075600,Delicious & Airy Apt in Landmark Brownstone,5089,Subhana,Brooklyn,Bedford-Stuyvesant,40.68637,-73.9417,Entire home/apt,151,2,43,2019-07-01,0.65,1,220 +819206,Cute shared studio apartment,4306950,Christopher,Manhattan,East Harlem,40.79106,-73.95058,Shared room,45,2,107,2019-06-24,1.5,1,313 +26766865,Large Secured Condominium Studio,198257022,Henry,Bronx,University Heights,40.8612,-73.91065,Entire home/apt,150,1,6,2018-11-10,0.53,1,191 +287397,Bed Stuy Pride! Welcome to Brooklyn,1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93179,Entire home/apt,100,3,21,2019-06-24,0.23,3,43 +8130551,Clean and Spacious Room on the UWS,13164593,Majd,Manhattan,Upper West Side,40.80266,-73.96465,Private room,88,1,0,,,1,0 +10849426,Charming Loft on Upper East Side,56193545,Danny,Manhattan,Upper East Side,40.77516,-73.9555,Shared room,80,1,0,,,1,0 +31103559,Three bedrooms house,228608906,Linda,Staten Island,Arrochar,40.58796,-74.07205,Private room,65,1,8,2019-07-02,1.37,2,362 +22360657,Cozy 1 Bedroom in the Heart of Greenwich Village,48858084,Bryant,Manhattan,Greenwich Village,40.73008,-74.00123,Entire home/apt,225,7,0,,,1,0 +11039706,"Bright, Open, Family Friendly",57289930,Stephanie,Queens,Sunnyside,40.74214,-73.92463000000001,Entire home/apt,115,1,0,,,1,0 +5590966,Riverside Suite,28723165,Taylor & Tee,Manhattan,Harlem,40.82778,-73.94884,Private room,70,1,131,2018-01-20,2.5,1,0 +26843443,Charming Studio in the Heart of Astoria,86414330,Willi,Queens,Astoria,40.75717,-73.92831,Entire home/apt,100,4,19,2019-06-23,3.0,1,31 +23464662,Nice Bedroom A in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.67964,-73.90675,Private room,43,1,58,2019-06-23,3.65,6,152 +24367577,Clinton Hill Dream House,3074904,Lauren & Chelsea,Brooklyn,Clinton Hill,40.6844,-73.96221,Entire home/apt,190,2,10,2019-01-27,0.77,4,12 +36425157,Cozy Private Bedroom Just For You,273870123,Tim,Brooklyn,East Flatbush,40.65229,-73.95139,Private room,55,1,0,,,1,178 +19636727,Private Room for 1 with Balcony! (004),137999892,Simranjeet,Staten Island,Concord,40.60732,-74.08709,Private room,40,2,36,2019-05-09,1.6,7,286 +30850620,BROOKLYN : PRIVATE ROOM +BATHROOM,27264437,Hortense,Brooklyn,Bedford-Stuyvesant,40.69534,-73.93338,Private room,50,6,1,2019-01-21,0.18,2,0 +11450373,STUDIO IN VILLAGE CHARM~PERRY STREET!,2856748,Ruchi,Manhattan,West Village,40.73642,-74.00263000000001,Entire home/apt,188,30,2,2016-11-01,0.06,49,342 +5287733,Cozy Room,27379417,Dr.Sally,Queens,South Ozone Park,40.66788,-73.82419,Private room,85,1,243,2018-04-30,4.54,1,281 +21695338,"Spacious, Bright & Cozy 1-bedroom in Greenpoint",8652278,Brady,Brooklyn,Greenpoint,40.7347,-73.95479,Entire home/apt,87,4,1,2017-12-27,0.05,1,0 +33654032,A room where you can find peace and rest!,253624959,Eli,Brooklyn,East Flatbush,40.66008,-73.92121999999999,Private room,50,2,5,2019-06-15,2.5,1,304 +31056122,"Private Bath, Private Room 2 blocks from NR trains",6675227,Jason,Brooklyn,Sunset Park,40.65035,-74.00974000000001,Private room,75,2,2,2019-01-14,0.32,1,16 +25972171,HUGE WASHINGTON HEIGHTS ROOM,90689056,Maddie,Manhattan,Washington Heights,40.84813,-73.94349,Private room,55,5,1,2018-06-13,0.08,1,0 +1871261,Big room only 90. Great location.,9751988,Asuka,Manhattan,Chelsea,40.74599,-73.99775,Private room,90,6,4,2015-12-28,0.07,1,0 +30087377,Prime West Village Boutique Apartment,14379366,Perry,Manhattan,West Village,40.7363,-74.00494,Entire home/apt,340,30,2,2019-06-14,0.46,1,100 +30388718,"Bright, Luxury FiDi Studio w/ Doorman, Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70672,-74.00661,Entire home/apt,259,120,0,,,232,286 +23762605,"Luxury Bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80172,-73.96177,Private room,120,5,9,2019-04-30,0.62,2,0 +7972210,Large room in Bushwick!,12720552,Julie,Brooklyn,Bushwick,40.70158,-73.92724,Private room,100,1,22,2019-06-22,0.48,5,324 +21176110,Modern One-Bedroom Apartment - Recently Renovated,48812051,Danielle,Manhattan,Harlem,40.81042,-73.94717,Entire home/apt,120,4,5,2018-12-26,0.26,1,0 +23660605,Private Bedroom w/ Balcony view of Central Park,177146433,,Manhattan,East Harlem,40.79766,-73.94824,Private room,139,1,6,2018-08-12,0.46,1,0 +20284463,"Relaxing, White Room in Upper Manhattan w/ rooftop",42154911,Hannah,Manhattan,Harlem,40.83082,-73.94677,Private room,60,4,2,2019-04-24,0.11,2,13 +13563766,Private Room near Brooklyn's best park,27567524,David,Brooklyn,Prospect Heights,40.67937,-73.96838000000001,Private room,70,1,0,,,1,0 +25505473,"Beautiful, Sunny and very Clean Apartment",137836678,Deni,Queens,Sunnyside,40.74196,-73.92135999999999,Entire home/apt,100,3,4,2019-07-01,0.34,1,326 +22630194,Authentic Brklyn Experience - Room B,156042211,Tia,Brooklyn,Canarsie,40.64838,-73.89834,Private room,40,4,4,2019-03-07,0.23,4,37 +27875973,South Williamsburg Loft,4359156,Alexandra,Brooklyn,Williamsburg,40.70856,-73.96632,Private room,90,2,2,2019-07-03,2.0,1,10 +9282987,"Park Slope, Brooklyn Charm",11607339,Nani,Brooklyn,Park Slope,40.67815,-73.97878,Entire home/apt,130,2,4,2016-12-31,0.09,1,0 +8593656,SMALL AND COZY PARISIAN STYLE APT IN EAST HARLEM,45226022,Caroline,Manhattan,East Harlem,40.79802,-73.94003000000001,Private room,75,4,162,2019-06-23,3.55,1,60 +12422969,Huge Flatiron Designer Studio,22627365,Chin-Feng,Manhattan,Flatiron District,40.74047,-73.98931999999999,Entire home/apt,154,1,0,,,1,0 +9036422,Columbus Circle/Hell's Kitchen Gem,45296989,Patrick,Manhattan,Upper West Side,40.77188,-73.98846999999999,Entire home/apt,125,7,4,2017-04-08,0.1,1,0 +19475130,Private Bedroom in a Prewar Brownstone,136646834,Val,Manhattan,Washington Heights,40.83587,-73.93734,Private room,28,2,19,2018-01-17,0.78,1,0 +12590964,"Private room in Charming, Cozy and Sunny Apt",1520629,Pillo,Brooklyn,Clinton Hill,40.68374,-73.96719,Private room,60,1,67,2019-06-22,1.85,1,310 +29012563,Your Sanctuary in the city,1936796,JenJoy,Brooklyn,Williamsburg,40.71179,-73.9387,Private room,60,1,41,2019-06-28,4.42,2,5 +32635717,Sonder | Stock Exchange | Calming 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7057,-74.01221,Entire home/apt,230,2,6,2019-06-10,1.98,327,297 +33400613,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70969,-74.00575,Private room,169,7,0,,,13,365 +6915467,clean room close to subway station,27962518,Xiangyu,Queens,Elmhurst,40.73713,-73.8741,Private room,85,1,1,2015-07-02,0.02,2,0 +12990926,Cozy private bedroom close to Manhattan,2736755,Marian,Queens,Astoria,40.7691,-73.91994,Private room,63,7,1,2017-01-02,0.03,2,0 +28243134,Studio in Hamilton Heights Manhattan,3299094,Elena,Manhattan,Harlem,40.82161,-73.94644,Entire home/apt,140,1,4,2019-07-06,0.64,1,8 +4096470,THE THOMPSON SUITE,4065620,Debbie,Brooklyn,Bedford-Stuyvesant,40.68663,-73.9379,Entire home/apt,155,3,1,2019-07-01,1.0,2,342 +9791362,Cozy Room in Heart of Williamsburg,8265805,Amanda,Brooklyn,Williamsburg,40.71725,-73.96446999999999,Private room,50,3,0,,,1,0 +9662070,Large private bedroom in bushwick,506208,Erin,Brooklyn,Bushwick,40.70435,-73.91646,Private room,65,1,2,2016-07-24,0.06,1,0 +34464505,TIMES SQUARE Cozy private room,8033432,Tom,Manhattan,Hell's Kitchen,40.75865,-73.99,Private room,100,1,6,2019-06-23,3.4,4,116 +30932555,[New] Hell's Kitchen/Time SQ Private One Bed Room,231144414,Matthew,Manhattan,Hell's Kitchen,40.76326,-73.98581999999999,Entire home/apt,179,2,17,2019-06-20,4.77,1,229 +490989,Cat lovers: 3-story Park Slope Townhouse with cat!,2427385,Andy,Brooklyn,Park Slope,40.67996,-73.98026999999999,Entire home/apt,68,3,2,2017-03-29,0.05,1,0 +6227871,You have chosen...wisely!,36119,Seth,Brooklyn,Clinton Hill,40.68465,-73.96051,Entire home/apt,95,14,3,2016-07-19,0.08,1,0 +29832768,Avail July - Beautiful Greenwich Village room!,26310763,Amz,Manhattan,Greenwich Village,40.73328,-73.99431,Private room,150,7,0,,,1,2 +34972982,Spectacular 1 bed 1 bath in full service bld #6119,35098529,David,Manhattan,Kips Bay,40.74385,-73.97789,Entire home/apt,190,30,0,,,5,365 +887292,2 Bedroom Bushwick Apartment,4704914,Robert,Brooklyn,Bushwick,40.69982,-73.91957,Entire home/apt,139,3,106,2019-05-08,1.42,1,248 +13639276,Sunny & Colorful Private BR in Crown Heights,30656620,Aliza,Brooklyn,Crown Heights,40.66887,-73.95291999999999,Private room,70,2,0,,,1,0 +9844047,Spacious Home South Prospect Park,29241227,Ken,Brooklyn,Kensington,40.64689,-73.97446,Entire home/apt,130,4,1,2015-12-30,0.02,2,0 +28892753,4 min subway. 2beds 3people private room&bothroom,196058543,美德,Queens,Forest Hills,40.72081,-73.83821,Private room,88,2,37,2019-07-06,4.04,5,210 +4967098,"Bronx, 1Bdrm in 3Bdrm Apt.",25605654,Cindy,Bronx,Morris Park,40.85465,-73.85669,Private room,50,1,2,2015-02-23,0.04,1,0 +21970487,Newly Renovated Bed-Stuy Brownstone Apartment,158298807,Marcia,Brooklyn,Bedford-Stuyvesant,40.69355,-73.95196999999999,Entire home/apt,90,2,42,2019-06-23,2.18,1,52 +9261392,Modern Lux APT Private Bath 15 min to Times Sq,7174662,K,Queens,Sunnyside,40.74461,-73.92004,Private room,88,2,132,2019-06-01,3.23,1,14 +4766618,Cozy room mins from Central Park!,16066343,Curtis,Manhattan,East Harlem,40.78825,-73.94861,Private room,52,3,186,2019-06-16,3.39,2,49 +8455561,Lorenna Gonzalez,17607789,Lorenna,Manhattan,East Harlem,40.79866,-73.94148,Private room,59,1,0,,,1,0 +8990116,Bright and spacious 1 bedroom,5485733,Jelena,Brooklyn,Williamsburg,40.70862,-73.95432,Entire home/apt,150,2,19,2017-10-14,0.42,1,0 +3010577,Old World Garden Apartment,550520,Kendall,Brooklyn,East Flatbush,40.65262,-73.94866999999999,Entire home/apt,115,30,43,2019-07-01,0.7,1,78 +31879273,Renovated Studio in the heart of Manhattan,105344359,Michelle,Manhattan,Midtown,40.75408,-73.96831,Entire home/apt,120,2,4,2019-03-31,0.77,1,0 +30321082,Contemporary 1BR in Brooklyn by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70855,-73.96781999999999,Entire home/apt,120,29,1,2019-05-31,0.77,7,0 +24896533,Charming Room in Spacious Clinton Hill Apartment,1005489,Caroline,Brooklyn,Clinton Hill,40.684090000000005,-73.96467,Private room,70,7,2,2019-06-06,0.88,1,89 +35463900,Large Full Floor Apartment in Heart of Times Sqr!!,253482129,Ilir,Manhattan,Hell's Kitchen,40.76437,-73.99184,Entire home/apt,210,2,1,2019-06-30,1.0,1,32 +35202605,Modern Manhattan 2 bedroom apartment,78201197,Maggie,Manhattan,East Harlem,40.7923,-73.94613000000001,Entire home/apt,250,2,4,2019-06-30,3.75,1,44 +24633732,Bright Brooklyn Bedroom Close to Prospect Park,2903817,Erica,Brooklyn,South Slope,40.66185,-73.9821,Private room,149,2,16,2018-11-18,1.26,1,0 +35584234,Your PRIME 2 Bedroom Apartment in best Area LES,267739313,Tim,Manhattan,Lower East Side,40.72056,-73.98894,Entire home/apt,210,7,1,2019-06-22,1.0,1,306 +16422375,Nice place,71540842,Willy,Queens,Ridgewood,40.70777,-73.91053000000001,Entire home/apt,75,3,90,2019-06-08,2.93,2,72 +3042553,Quiet bedroom in East Village NY.,15492140,Harper,Manhattan,Lower East Side,40.72232,-73.98987,Private room,77,3,139,2019-07-07,2.29,1,18 +33607399,"Premium FiDi 1BR w/ Roofdeck, Gym + Doorman near Wall St. by Blueground",107434423,Blueground,Manhattan,Financial District,40.70429,-74.00714,Entire home/apt,332,90,0,,,232,115 +22356352,Simple One Bedroom Brooklyn Apartment,76835453,Frida,Brooklyn,Bushwick,40.69492,-73.91826,Entire home/apt,70,1,2,2018-01-05,0.11,1,0 +13705844,Master Bedroom in Quaint French Neighborhood,37707224,Mørgan Keon,Brooklyn,Gowanus,40.67961,-73.98886,Private room,65,1,0,,,1,0 +23748601,"Spacious Park View Parlor Floor, Artists Townhouse",477787,Juliette,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92009,Entire home/apt,112,2,48,2019-05-26,3.04,1,0 +18840866,Private Room with Private Bath Upper East Side,19424541,Barbara,Manhattan,Upper East Side,40.76749,-73.96246,Private room,190,1,15,2019-05-24,0.68,2,63 +16805050,!!!Living&Working. Beautiful Coliving on Flatbush,2092314,Valentin,Brooklyn,East Flatbush,40.64513,-73.9488,Shared room,28,30,3,2018-06-20,0.13,7,365 +30120427,"2 blocks from train, Balcony, Free Parking!",50319699,Sharon,Queens,Astoria,40.77036,-73.92191,Entire home/apt,165,3,2,2019-05-06,0.27,1,0 +4338177,Sleeps 4! Prime Chelsea~large 1BR,2119276,Host,Manhattan,Chelsea,40.73947,-74.00114,Entire home/apt,160,30,6,2018-10-04,0.12,39,267 +25737165,Lux Studio Suite+ Kitchen+Gym+Rooftop @FiDi!,73456844,Lilian,Manhattan,Financial District,40.706590000000006,-74.01002,Entire home/apt,179,3,8,2019-07-06,0.64,1,102 +21660214,纽约森林小丘简约文艺客舍,22675680,Cecilia,Queens,Forest Hills,40.71825,-73.83502,Shared room,60,1,68,2019-04-05,3.62,1,125 +34671704,"Modern and fun 2 bdrm in Williamsburg, Brooklyn",95015886,Gali,Brooklyn,Williamsburg,40.71373,-73.96743000000001,Entire home/apt,275,2,0,,,1,16 +11014346,Big private room ~ 1 bed-1 person.,53051331,James And Mina,Brooklyn,Crown Heights,40.67156,-73.95684,Private room,75,2,13,2019-07-02,0.47,1,354 +26755790,vicky客栈2,180991373,Vicky,Queens,Flushing,40.74298,-73.82306,Private room,60,1,26,2019-07-07,2.34,5,46 +33641091,Charming Williamsburg 30 day min stay 2 br /2 bath,10951481,Ann,Brooklyn,Williamsburg,40.71095,-73.96717,Entire home/apt,183,30,0,,,5,249 +8615333,Amazing Duplex Loft in Williamsburg,14035150,Stephanie,Brooklyn,Williamsburg,40.71186,-73.95098,Entire home/apt,190,4,0,,,1,0 +36105777,Nice central bushwick room with backyard,114413305,Bryant,Brooklyn,Bushwick,40.6949,-73.90954,Private room,45,1,1,2019-07-07,1.0,1,30 +29173351,"1 Rm in 4 BR East Vil-King bd, Roof,prime location",62167677,Joshua,Manhattan,East Village,40.72784,-73.98473,Private room,60,8,1,2019-03-28,0.29,2,0 +1918693,Lovely Bedrooms in Artist's Home,9947332,Lorelei & Alex,Brooklyn,Clinton Hill,40.684740000000005,-73.9632,Private room,98,4,245,2019-06-10,3.61,1,247 +34250079,Williamsburg historic apt. summer sublet!,5317044,Jasper,Brooklyn,Williamsburg,40.7153,-73.95333000000001,Entire home/apt,109,45,0,,,1,62 +8275346,Brooklyn Apt,43635876,Denise,Brooklyn,Borough Park,40.64077,-73.99268000000001,Private room,52,2,6,2019-05-20,2.09,1,90 +23860039,Sunny room in Williamsburg,37626695,Celia,Brooklyn,Williamsburg,40.71113,-73.95675,Private room,66,10,1,2018-06-22,0.08,1,0 +1911333,A room with private bathroom,9917136,Rani,Brooklyn,Bedford-Stuyvesant,40.67814,-73.92375,Private room,45,29,12,2018-11-11,0.18,3,337 +20655777,"Studio apartment by prospect park, catslovers only",147694745,Svetlana,Brooklyn,Flatbush,40.65099,-73.96283000000001,Entire home/apt,80,60,46,2019-01-01,2.05,1,54 +6357058,Chambre disponnible,23975421,Marine,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94948000000001,Private room,100,1,0,,,1,0 +31474100,"Big window, good lighting, computer and speaker!",9475918,Joanne,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94565,Private room,39,1,1,2019-02-26,0.22,1,0 +6929738,CLOSE TO EAST SIDE HOSPITALS- Modern 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper East Side,40.76044,-73.96068000000001,Entire home/apt,195,30,7,2018-10-30,0.2,34,304 +28307159,Queens Palace,129038733,George & Kevin,Queens,Ditmars Steinway,40.77658,-73.90344,Entire home/apt,100,3,12,2018-12-30,1.21,1,0 +35809169,Triplex loft in Williamsburg/MacCarren Park,242152267,Andris,Brooklyn,Greenpoint,40.7199,-73.95085,Entire home/apt,199,14,0,,,1,21 +25161242,*Newly Renovated* Guest Suite w/ Private Entrance,150773114,Liz,Queens,Middle Village,40.71893,-73.8761,Entire home/apt,86,1,110,2019-07-03,8.27,1,174 +8063277,"Spacious 2 br in Williamsburg, BK",4671519,Sue,Brooklyn,Williamsburg,40.71549,-73.94712,Entire home/apt,155,31,8,2018-05-31,0.17,1,331 +33473125,#5 STUDIO one block to train station,231138233,Filiz,Manhattan,East Harlem,40.78974,-73.94933,Entire home/apt,165,1,17,2019-06-18,5.93,5,83 +20451100,Quiet haven 15 mimutes to Time square,145975067,Ousmane,Manhattan,Harlem,40.81332,-73.94869,Private room,65,1,3,2019-03-24,0.14,3,3 +35000795,Cozy 2-Bedroom Loft Blocks away to Apollo Theater,102866746,Neh,Manhattan,Harlem,40.80529,-73.94718,Entire home/apt,300,2,1,2019-06-23,1.0,1,179 +13810048,Brooklyn - Bushwick - NYC,81274648,Ming,Brooklyn,Bushwick,40.69677,-73.93027,Private room,46,2,126,2019-06-24,3.51,4,80 +19981671,DaDukes Dreams,139879568,Alberto,Queens,Long Island City,40.76626,-73.94058000000001,Private room,84,1,70,2019-05-29,3.12,6,321 +263776,City Skyline Views from every room!,1384111,Joanne,Queens,Sunnyside,40.74558,-73.92324,Private room,73,2,95,2019-01-02,1.02,2,0 +34885877,Private Master Bedroom with Private Bathroom,262804930,John,Brooklyn,Prospect-Lefferts Gardens,40.65986,-73.94277,Private room,89,1,5,2019-07-04,3.49,1,97 +22250309,Brownstone Apartment near Manhattan,62048197,Adetoro,Brooklyn,Bedford-Stuyvesant,40.68373,-73.93056,Entire home/apt,85,2,2,2018-05-05,0.14,1,0 +10105606,"UWS large, Elev./Security 1-Bedroom",51857384,Sam,Manhattan,Upper West Side,40.77836,-73.9822,Entire home/apt,210,2,51,2019-06-09,1.19,1,11 +36071685,Cosy Sunny room near Prospect Park,121127613,Amanda,Brooklyn,Flatbush,40.65205,-73.96311,Private room,50,1,0,,,1,265 +27933916,Renovated Bathroom and floor with PRIVATE Backyard,204704622,Momoyo,Queens,Woodside,40.74131,-73.89774,Private room,40,28,2,2019-05-05,0.24,7,0 +30888271,Cozy Cypress Suite Convenient To Train & JFK ×,230801598,JuVita,Brooklyn,Cypress Hills,40.68426,-73.87461,Private room,80,1,10,2019-06-19,1.51,1,32 +9197311,Stunning 3 BR Apartment Fort Greene,26474885,Alvaro,Brooklyn,Clinton Hill,40.695170000000005,-73.96701999999999,Entire home/apt,350,3,0,,,1,0 +30157535,New York with a hint of European,226572566,Sophia,Manhattan,Upper East Side,40.77066,-73.94993000000001,Entire home/apt,140,5,24,2019-06-25,3.35,1,48 +10575811,Large studio in elevator building Cobble Hill,14611780,Paige,Brooklyn,Columbia St,40.68928,-73.99903,Entire home/apt,105,1,5,2018-12-30,0.14,1,0 +6543852,Sunny Apt. in Historic Harlem Bldg.,2482106,Jennifer,Manhattan,Harlem,40.82553,-73.93875,Private room,63,1,6,2016-05-18,0.13,1,0 +36008082,"Luxury Spacious Cityview Studio, Lots of Sunshine!",82650642,Praise,Queens,Long Island City,40.74818,-73.94123,Entire home/apt,116,90,0,,,1,131 +23320351,"Private Bdrm in Huge Apt mins to Manhtn,JFK,LGA!",70331348,Nataly,Queens,Sunnyside,40.737390000000005,-73.92397,Private room,49,1,2,2019-01-01,0.31,1,0 +6133150,Spend Your Fall in Bed-Stuy,31817441,André,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93305,Private room,52,2,1,2015-11-01,0.02,1,0 +971247,Sunny Artist Live/Work Apartment,5308961,Larry,Manhattan,Upper West Side,40.79368,-73.96486999999999,Entire home/apt,190,3,159,2019-07-03,2.09,1,244 +8421771,~Spacious~Sunny~Stylized~Suite~,44343181,Monica,Brooklyn,Greenpoint,40.72522,-73.94563000000001,Private room,60,6,0,,,1,0 +6982174,Room for rent shared bathroom,36610302,Eudelia,Brooklyn,Bedford-Stuyvesant,40.68682,-73.92019,Private room,50,1,0,,,1,0 +15937310,Grace,38294216,Rachel,Queens,South Ozone Park,40.66675,-73.81071,Private room,75,10,7,2019-04-13,0.27,4,197 +14707466,Lovely Bijou!! 5MIN.to MANHATTAN,1705071,Nika,Queens,Long Island City,40.74493,-73.94679000000001,Private room,75,1,86,2019-06-19,2.63,2,337 +29829829,"Modern 1BR Apt in Heart of LES, near Subway!",218984753,Emmanuel,Manhattan,Lower East Side,40.71918,-73.98525,Entire home/apt,59,1,25,2019-05-31,3.25,1,143 +22462752,Lower East Side - Perfect Escape in NYC! #6,158969505,Karen,Manhattan,Lower East Side,40.72145,-73.99257,Entire home/apt,240,30,3,2019-05-27,0.45,9,199 +28976867,Amazing Spacious Sunlit Studio with a balcony.,218406956,Jane,Manhattan,Upper East Side,40.76892,-73.96321,Entire home/apt,160,2,14,2019-06-24,1.79,1,170 +13633400,2 Bedroom Modern Condo,4372467,Lana,Brooklyn,Boerum Hill,40.68882,-73.98911,Entire home/apt,170,5,2,2016-12-25,0.06,1,0 +16454703,"Spacious Brooklyn, New York Retreat",107939984,J,Brooklyn,Fort Hamilton,40.61444,-74.02974,Entire home/apt,150,4,78,2019-07-04,2.6,1,29 +3826226,Brooklyn 2 bedroom Apartment,15733420,Marcus,Brooklyn,Bedford-Stuyvesant,40.68252,-73.94443000000001,Entire home/apt,165,4,138,2019-06-24,2.66,2,322 +3791554,Cosy Inwood apartment,5810195,Emilie,Manhattan,Inwood,40.85988,-73.92709,Private room,39,1,13,2019-06-30,1.18,2,233 +36206222,Ladies Flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64283,-73.99416,Shared room,30,1,0,,,4,365 +1101224,THE PUTNAM,2571,Teedo,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93845,Entire home/apt,182,9,27,2019-05-21,0.37,1,23 +16274717,Cozy bedroom on Roosevelt Island,33069397,Jesse,Manhattan,Roosevelt Island,40.76178,-73.94988000000001,Private room,40,10,1,2017-01-07,0.03,1,0 +21564599,"Best in Brooklyn, closest to Manhattan!!",39362787,Mia,Brooklyn,Cobble Hill,40.68631,-73.99763,Private room,59,7,33,2018-10-07,1.67,1,0 +21069115,Spacious Park Slope apt with garden,42631621,Jacob,Brooklyn,Park Slope,40.67711,-73.98074,Entire home/apt,160,3,2,2017-10-30,0.1,1,0 +1044502,HELLO HARLEM,5749899,Obora & Michael,Manhattan,Harlem,40.8035,-73.94764,Entire home/apt,195,4,128,2019-06-22,1.76,1,278 +23269735,Light Flooded Artist Loft in Brooklyn,149047,Heather Nadine,Brooklyn,Bedford-Stuyvesant,40.69158,-73.95958,Entire home/apt,150,4,6,2019-07-08,0.63,1,11 +28272634,Private 2 room apartment in the East village,8554637,Rory,Manhattan,East Village,40.72445,-73.97683,Private room,149,3,36,2019-06-23,3.94,1,109 +28834703,Beautiful Brooklyn Brownstone Entire Parlor Floor.,217432173,Dan,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94354,Entire home/apt,130,2,48,2019-06-27,5.12,1,267 +32038185,"8mins to JFK airport, separate door & bathroom",240203470,Modesta,Queens,Jamaica,40.67804,-73.80122,Private room,25,1,44,2019-06-30,9.23,1,41 +9790098,Bedroom in UWS 118th st,50448556,Miguel,Manhattan,Harlem,40.80345,-73.95067,Private room,200,1,0,,,5,0 +19328148,Peaceful room:an AlmostEmpty Apartment of your own,7014073,Alex,Brooklyn,Williamsburg,40.71142,-73.96566999999999,Private room,90,1,7,2018-10-13,0.71,1,0 +21765794,"Nice private bedroom, prime East Village",154266431,Steven,Manhattan,East Village,40.72419,-73.98294,Private room,95,3,36,2019-07-01,1.83,3,9 +28965064,Bright clean modern spacious with big front porch!,1093167,Paul,Brooklyn,Crown Heights,40.68076,-73.96415,Entire home/apt,150,1,3,2018-10-14,0.33,1,95 +21945454,Pretty two-bed pre-war apartment in Brooklyn,11322502,Kimberly,Brooklyn,Bedford-Stuyvesant,40.68885,-73.95296,Entire home/apt,142,2,5,2018-04-29,0.25,1,0 +31410637,Charming Harlem Apartment,70184008,Evan,Manhattan,Harlem,40.829640000000005,-73.94270999999999,Entire home/apt,80,2,2,2019-02-02,0.37,1,189 +9579542,Large and Sunny Artistic Apt / City Center,49287218,Misha,Manhattan,Hell's Kitchen,40.76661,-73.98439,Entire home/apt,179,2,27,2019-06-23,0.63,1,8 +2581456,Charming Modern Studio w/Large Garden,413336,Christian,Manhattan,East Harlem,40.79249,-73.94592,Entire home/apt,120,7,0,,,1,6 +9341671,2BR apt 10 min to Midtown!,350553,Stav,Manhattan,Harlem,40.81293,-73.95191,Entire home/apt,150,5,0,,,2,0 +14085512,Restful Superior Court,51826974,Rose,Brooklyn,Canarsie,40.63981,-73.90211,Entire home/apt,80,3,15,2019-07-01,0.42,2,365 +11371773,Sunny room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69627,-73.9345,Private room,79,3,37,2019-06-30,0.94,7,358 +34964342,"Clean, Modern, Rustic LIC APT",8616787,Iris,Queens,Long Island City,40.75181,-73.93701999999999,Entire home/apt,200,2,1,2019-06-18,1.0,1,9 +33574976,"Still NYC... Grymes Hill, Staten Island",246224359,Julie Ann,Staten Island,Grymes Hill,40.6105,-74.09132,Entire home/apt,115,1,1,2019-06-30,1.0,1,339 +16471707,Bright and cozy room is Clinton Hill-Brooklyn,538300,Hubert,Brooklyn,Bedford-Stuyvesant,40.6965,-73.9601,Private room,54,5,12,2018-12-09,0.4,1,21 +34784621,Modern renovated private Apt/Washer & dryer.,35253342,Tee,Brooklyn,Bay Ridge,40.63321,-74.02463,Entire home/apt,120,21,0,,,3,67 +7151565,"Bottom half of duplex, Williamsburg",37453881,Hadrien,Brooklyn,Williamsburg,40.71827,-73.94258,Private room,95,1,6,2018-10-20,0.17,1,0 +35389856,Spacious Studio ⭐in the heart of NYC,266413128,Dan,Manhattan,West Village,40.73194,-74.00369,Entire home/apt,220,2,3,2019-06-24,3.0,1,176 +11771598,Quiet and Sunny room in Harlem!,36830075,Camila,Manhattan,Harlem,40.82884,-73.94868000000001,Private room,50,1,0,,,2,0 +25967331,Cozy and Convenient Spot in Washington Heights,152442590,Nick,Manhattan,Washington Heights,40.85108,-73.93911999999999,Private room,60,1,8,2018-07-08,0.62,1,0 +14214403,Spacious & Clean Apartment + Patio. Close to metro,128480,Sam And Britt,Brooklyn,Bushwick,40.69295,-73.90791999999999,Entire home/apt,149,2,102,2019-06-29,4.27,1,256 +6955143,Large Sunny Private Bedroom,16533401,Aaron,Brooklyn,Gowanus,40.67781,-73.9851,Private room,130,1,0,,,1,0 +17150899,Modern new large duplex apartment.,27072611,Vinny,Manhattan,Kips Bay,40.73829,-73.97896,Entire home/apt,285,1,79,2019-06-21,2.7,1,310 +27053726,Windsor Terrace Garden Apartment,33526253,Nicki,Brooklyn,Windsor Terrace,40.65639,-73.98241999999999,Entire home/apt,250,1,2,2018-08-18,0.18,1,0 +34473196,Bright & Cozy 3BR Apartment in Wall Street,258741560,Lasse,Manhattan,Financial District,40.70562,-74.00712,Entire home/apt,320,3,5,2019-07-01,3.26,1,212 +19860469,Ideal Private Room in the Heart of Williamsburg,80701659,Marie,Brooklyn,Williamsburg,40.7139,-73.9486,Private room,80,5,1,2017-08-29,0.04,1,0 +27963404,West Village Prime Location Light and Chic,72420514,Cate,Manhattan,West Village,40.73723,-74.00845,Entire home/apt,214,1,8,2019-05-07,0.75,3,296 +18241920,Hosting Harlem Brownstone Apartment,122495279,Patrick,Manhattan,Harlem,40.80405,-73.94513,Entire home/apt,85,7,2,2017-09-04,0.08,1,0 +14568858,"Bright, charming luxury 1 BR with amazing rooftop",10441070,Rebecca,Brooklyn,Greenpoint,40.72038,-73.94233,Entire home/apt,250,4,4,2017-10-31,0.12,1,0 +27552582,Studio in the Heart of East Village,30680112,Danielle,Manhattan,East Village,40.72951,-73.98576,Entire home/apt,120,2,0,,,1,39 +27230758,Room in modern apartment in hip Williamsburg,31882405,Dawn,Brooklyn,Williamsburg,40.7082,-73.96719,Private room,130,2,12,2019-07-05,1.07,1,26 +29416986,Room in the heart of New York City,32896046,Ramon,Manhattan,Midtown,40.762890000000006,-73.98003,Private room,115,3,2,2018-11-25,0.25,1,0 +36136548,Amazing Condo In Amazing Part of an Amazing City-2,258762273,Andrew,Queens,Richmond Hill,40.6984,-73.84921,Private room,50,1,0,,,1,308 +6090,West Village Nest - Superhost,11975,Alina,Manhattan,West Village,40.7353,-74.00525,Entire home/apt,120,90,27,2018-10-31,0.22,1,0 +1586641,SALE- SUNNY MASTER BEDROOM NEAR MANHATTAN,8452639,C S,Brooklyn,Flatbush,40.64919,-73.96143000000001,Private room,84,2,68,2019-05-27,0.96,3,362 +24916744,Newly Renovated Full One Bedroom Brooklyn Apt,93359389,David,Brooklyn,East Flatbush,40.65755,-73.92341,Entire home/apt,80,2,18,2019-06-18,1.46,1,39 +13091684,"Sunny 2bdrm Apt. near Bryant Park, Apt 2B",17770287,Nina,Manhattan,Midtown,40.74927,-73.98303,Entire home/apt,163,30,4,2019-05-13,0.17,14,332 +9074963,Lovely room available in large apt!,47329500,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.67852,-73.94377,Private room,48,15,0,,,1,0 +31210579,Private bedroom with a personal backyard,201752118,Dishank,Brooklyn,Bedford-Stuyvesant,40.69719,-73.94315,Private room,50,7,0,,,1,0 +12619450,Quiet-Private Large Brooklyn Studio,1539941,Ron,Brooklyn,Kensington,40.63568,-73.97383,Entire home/apt,75,2,10,2019-05-27,0.26,1,362 +12897946,Awesome 1 Bedroom for rent in BK,70640302,Querlim,Brooklyn,Flatbush,40.65468,-73.95703,Private room,50,3,3,2016-12-06,0.08,1,0 +880424,★Beautiful Home Away From Home★,3549531,Jeremy,Brooklyn,Prospect-Lefferts Gardens,40.65514,-73.95956,Private room,60,1,109,2019-06-04,1.52,1,2 +14913941,Crown Heights and Cozy Self-Catering,51752700,Loretta,Brooklyn,Crown Heights,40.67564,-73.95496999999999,Entire home/apt,93,3,48,2019-05-25,1.42,1,3 +4729374,Sunny Private Bedroom in Bushwick,799566,Sarah,Brooklyn,Bushwick,40.69702,-73.93365,Private room,80,2,0,,,1,0 +825550,Luxury 1BD in Historic Carrol Gardens Brownstone,4331864,Jeff,Brooklyn,Gowanus,40.67869,-73.99197,Entire home/apt,135,8,7,2019-04-27,0.14,1,0 +29417620,Beautiful Private Room with 3 Beds in Bed Stuy,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69223,-73.95141,Private room,75,2,13,2019-06-03,1.53,3,365 +27359314,Calm in the City w/ 2 Bedrooms and 2 Bathrooms,13642054,Russell,Brooklyn,Bedford-Stuyvesant,40.67936,-73.91375,Entire home/apt,180,2,30,2019-06-11,2.77,1,69 +13880280,Cozy living room sofa bed near Columbia University,19504744,Xu,Manhattan,Upper West Side,40.79405,-73.9658,Shared room,60,1,0,,,1,0 +18958355,Delightful LIC Brownstone,57643057,Daniel,Queens,Long Island City,40.74617,-73.94645,Private room,71,7,94,2019-06-16,3.66,2,194 +13959100,East Flatbush- Sunny 1 bedroom apt,79696862,Jay,Brooklyn,Flatlands,40.62297,-73.93849,Private room,57,1,7,2018-05-12,0.2,1,311 +12832371,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77102,-73.95873,Entire home/apt,163,30,1,2017-10-14,0.05,87,350 +5875384,Comfy Futon- 20mins Times Sq.,9235481,Reynaldo,Manhattan,Washington Heights,40.8538,-73.93196999999999,Shared room,45,2,2,2016-12-05,0.04,2,0 +29961517,Central Park is Next Door ;),2653479,Brian,Manhattan,Upper West Side,40.80004,-73.96088,Private room,50,2,30,2019-07-01,4.81,4,6 +16828918,Cute Room Perfect Downtown Location,29040298,Paulien,Manhattan,Little Italy,40.72043,-73.99706,Private room,64,3,0,,,1,0 +8689608,Charming and Modern Home Base,19808319,Lilian,Manhattan,Harlem,40.80706,-73.94665,Private room,100,30,146,2019-05-07,3.22,2,44 +7850400,Quiet charming Duplex,41367164,Haim,Manhattan,Lower East Side,40.72147,-73.98733,Entire home/apt,295,3,63,2019-07-01,1.4,1,214 +13881521,Modern Furnished Studio in Luxury Doorman Building,82154865,Tate,Manhattan,Upper West Side,40.78935,-73.97462,Entire home/apt,95,30,0,,,1,67 +19347079,Sunny private apt 25 min from NYC,1334621,Shauna And Sarah,Queens,Woodside,40.7432,-73.91238,Entire home/apt,50,1,28,2019-06-28,1.14,1,13 +20356479,Sunny chic room with private bath in new apartment,80028220,Remonia,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92531,Private room,80,1,4,2018-07-05,0.19,1,0 +10859700,Beautiful Large 2 Bedroom Apartment,53199312,Zamena,Queens,East Elmhurst,40.76327,-73.88655,Entire home/apt,145,2,61,2019-06-10,1.52,1,302 +21893604,Private Bedroom in West Village/Chelsea,1144452,Dante,Manhattan,Chelsea,40.74045,-74.00046999999999,Private room,12,3,8,2019-06-07,0.59,1,37 +19909197,Private Room in Park Slope Loft/Townhouse,52583380,Sebastian,Brooklyn,Park Slope,40.67872,-73.9792,Private room,88,3,8,2017-12-08,0.33,1,0 +14120515,Comfy Sunnyside bedroom,35405142,Alvina,Queens,Sunnyside,40.7372,-73.919,Private room,65,5,12,2018-05-11,0.34,1,76 +25135765,The Reading Room: a curated luxury experience,23454048,Ian,Manhattan,Harlem,40.81185,-73.93902,Entire home/apt,225,1,7,2018-08-27,0.52,1,3 +27279982,WEST 56TH COLUMBUS CIRCLE-LUXURY 1BR- DOORMAN/DECK,200380610,Pranjal,Manhattan,Hell's Kitchen,40.766290000000005,-73.986,Entire home/apt,236,30,0,,,65,364 +112100,Sunny 3BR Apt Ideal for Family ,572527,Marine,Brooklyn,Crown Heights,40.67539,-73.96093,Entire home/apt,165,7,3,2013-01-01,0.03,1,157 +34120717,Sonder | Stock Exchange | Divine 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70736,-74.0125,Entire home/apt,217,2,4,2019-06-21,1.79,327,272 +17822626,"Airy, Private Room in an Artistic Apartment",29510483,Amandine,Brooklyn,Prospect-Lefferts Gardens,40.65749,-73.95510999999999,Private room,65,2,0,,,1,0 +34499063,Minimalist House,247013511,Frank,Queens,Jackson Heights,40.75246,-73.87505,Entire home/apt,79,2,8,2019-06-23,4.36,6,336 +30124940,Large second floor room for 4!,65407018,Harmony,Brooklyn,Greenpoint,40.7227,-73.93691,Private room,85,1,14,2019-06-03,1.92,5,137 +36446437,Midtown bedroom in Manhattan,867516,Grace,Manhattan,Murray Hill,40.74757,-73.98118000000001,Private room,200,1,0,,,1,34 +29584789,Beautiful Upper East Side 1 Bedroom Apt: King Size,41233448,Elizabet,Manhattan,Upper East Side,40.76975,-73.9524,Entire home/apt,260,6,2,2018-12-25,0.25,1,0 +23727037,Brooklyn's Best Kept Secret,127345864,Charlene,Brooklyn,East Flatbush,40.641740000000006,-73.93193000000001,Entire home/apt,135,2,26,2019-07-03,2.21,4,29 +35603341,Cozy studio in the UES (30 days min),159598333,Sol,Manhattan,Upper East Side,40.78166,-73.94593,Entire home/apt,99,30,0,,,5,344 +31539570,Beautiful and cozy 2Br with private terrace,7225691,Jérôme,Manhattan,Lower East Side,40.72278,-73.98902,Entire home/apt,350,1,46,2019-07-01,7.89,2,342 +32384721,Shared Room: All Male - Coed Apt-Great Roommates,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67692,-73.94038,Shared room,26,20,2,2019-05-13,0.75,2,49 +9652591,Cozy comfort minutes to Manhattan!,22855974,Lauren + Reggie,Queens,Astoria,40.76561,-73.9248,Private room,89,2,53,2019-06-30,1.33,1,39 +25696,"1,800 sq foot in luxury building",107628,Dena,Manhattan,Harlem,40.8092,-73.94421,Private room,100,2,170,2019-06-23,1.61,1,346 +13065032,"Spacious, kid-friendly apt. 15 mins from Manhattan",10643230,Jacob,Queens,Sunnyside,40.7464,-73.91675,Entire home/apt,120,5,3,2018-08-20,0.08,1,0 +33342415,#Private office bedroom PC WiFi Print Scan,224850313,Roman,Brooklyn,Sheepshead Bay,40.58692,-73.94235,Private room,79,30,0,,,2,216 +98663,Groovy NYC Chelsea Pad,520279,Peter Michael,Manhattan,Chelsea,40.74893,-73.99544,Entire home/apt,130,30,19,2018-06-11,0.19,1,189 +23019746,Exposed brick Loft apartment,168988812,Giulia,Queens,Ridgewood,40.70068,-73.91008000000001,Entire home/apt,118,6,2,2019-01-02,0.13,1,0 +22100911,Upper West Side Manhattan,161446165,Simone,Manhattan,Upper West Side,40.803090000000005,-73.96568,Private room,100,4,1,2018-12-29,0.16,1,341 +29538158,Private Sunny Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83469,-73.94604,Entire home/apt,129,2,13,2019-05-25,1.63,2,0 +15247262,Charming 1 Bedroom Garden Apt,10777266,Aitan,Brooklyn,Prospect Heights,40.67688,-73.96735,Entire home/apt,185,3,109,2019-06-23,3.25,1,269 +4447524,Charming West Village Studio,9685363,Ceyda,Manhattan,West Village,40.736340000000006,-74.00841,Entire home/apt,200,2,9,2018-05-19,0.16,1,0 +7453537,Lg Prospect Hts Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67883,-73.97051,Private room,70,1,258,2019-06-30,5.45,13,320 +31171380,Clean Affordable Room #4,20120009,Jannices,Brooklyn,Bushwick,40.68895,-73.9062,Private room,38,1,3,2019-04-23,0.95,6,6 +27222424,Townhouse private 1 1/2 bedroom garden apartment,195693063,Billy,Manhattan,Harlem,40.82244,-73.94994,Entire home/apt,195,2,42,2019-06-30,4.08,2,257 +10247766,Spacious Brooklyn Room,52674088,Emma,Brooklyn,Greenpoint,40.72738,-73.95553000000001,Private room,150,1,0,,,1,0 +36276166,"room in 3-bedroom house , Central Brooklyn",144107218,Israel,Brooklyn,East Flatbush,40.65823,-73.93459,Private room,55,1,0,,,1,316 +17531524,"Comfy bachelor's apartment, Clinton Hill, Brooklyn",22607793,Dmitri,Brooklyn,Clinton Hill,40.68152,-73.96276,Entire home/apt,94,2,10,2018-12-09,0.39,1,0 +31818771,Wonderful private room near Two Bridges II,39528519,Max,Manhattan,Lower East Side,40.70961,-73.98679,Private room,73,15,0,,,28,185 +24959305,"Bright renovated apartment, quiet Bushwick block!",3440653,Jessica,Brooklyn,Bushwick,40.69493,-73.92276,Entire home/apt,135,3,42,2019-06-24,3.04,1,92 +30377021,Shared Room 4 FEMALE Guests 30mins to Manhattan-2,172369331,Abby,Brooklyn,Sheepshead Bay,40.5981,-73.9584,Shared room,25,7,2,2019-06-01,1.15,10,290 +24477757,Large Private Room in a Magnificent Penthouse NYC2,169382341,Tomás,Manhattan,East Village,40.722,-73.98396,Private room,89,5,11,2019-06-27,0.84,2,76 +36266639,Small and Cozy room only 4 stations to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69685,-73.94372,Private room,77,2,0,,,7,169 +6344936,Modern 2-bedroom Loft in Greenpoint,9680171,Tracy,Brooklyn,Greenpoint,40.73148,-73.95929,Entire home/apt,350,3,1,2015-08-17,0.02,1,0 +7664789,Cozy room in the heart of Astoria/10 min Manhattan,433207,Maryann,Queens,Astoria,40.76205,-73.91379,Private room,45,1,190,2019-07-07,5.2,2,132 +9738605,Bedford Palace,50054847,Lauryn,Brooklyn,Crown Heights,40.668420000000005,-73.95600999999999,Private room,100,1,0,,,1,0 +20996996,Private Bedroom and Bath,785283,Melinda,Queens,Ditmars Steinway,40.77618,-73.91741,Private room,75,2,38,2018-12-06,1.81,2,0 +34207925,Spacious and beautiful 4BR with backyard,646729,Andy,Brooklyn,Flatbush,40.63781,-73.96531,Entire home/apt,275,2,10,2019-07-03,5.17,1,298 +20850006,Brooklyn’s finest pt. Deux,141931484,Xie,Brooklyn,Canarsie,40.63295,-73.89202,Private room,75,2,19,2019-06-19,1.23,3,331 +27062294,"Private 1-bedroom, shared bath in Gramery/Union Sq",48539240,Shreyasi,Manhattan,Gramercy,40.73411,-73.98289,Private room,199,1,1,2018-07-30,0.09,2,0 +19946195,BK Master bedroom with King sized bed,141359133,Philip,Brooklyn,Park Slope,40.67677,-73.97954,Private room,97,2,54,2019-06-17,2.38,1,85 +26080154,NYC HUB GuestRoom: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.70908,-73.78237,Private room,66,2,17,2019-06-29,1.34,7,0 +26257823,Sunny Lofted Bedroom in Spacious Shared Apt.,186110692,John,Brooklyn,Bushwick,40.69014,-73.91908000000001,Private room,39,1,20,2019-06-25,1.63,1,14 +24816926,Lovely One Bedroom Apartment in the East Village!!,70043681,Helene,Manhattan,East Village,40.727340000000005,-73.97528,Entire home/apt,142,2,50,2019-07-01,3.69,1,278 +11228502,SMALL ROOM in private House,22420999,Herman,Queens,Richmond Hill,40.69585,-73.83098000000001,Private room,50,2,5,2018-12-31,0.25,5,344 +9860670,Deluxe Furnished 1-BR NYC apt. near Central Park!,30283594,Kara,Manhattan,Theater District,40.76064,-73.98554,Entire home/apt,239,30,0,,,121,363 +30470373,⭐$1.6 MILLION CHELSEA FLAT⭐LUXURY AND LOCATION!,227345813,Oliver,Manhattan,Chelsea,40.74294,-73.99795,Entire home/apt,261,2,18,2019-06-19,2.57,1,143 +8609130,Great Nolita Apartment!,2520559,Victoria,Manhattan,SoHo,40.72214,-73.99793000000001,Entire home/apt,150,2,89,2019-06-02,1.94,1,55 +28609526,Beautiful Bedroom in a brand new apartment! 3L-1,205530337,Nina,Queens,Ridgewood,40.70279,-73.90601,Private room,45,30,4,2019-06-22,0.48,8,248 +22869573,Best location! Cozy East Village bohemian loft>>,17631246,Yamile,Manhattan,East Village,40.72997,-73.98772,Entire home/apt,150,2,20,2019-05-27,1.15,1,0 +29512260,Beautiful apartment!!,198730633,Ruth,Manhattan,Harlem,40.81223,-73.95284000000001,Entire home/apt,298,1,16,2019-06-23,2.0,2,300 +14628080,Elegant Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80622,-73.94622,Entire home/apt,149,30,86,2019-06-03,2.51,4,220 +6054194,"Bright, Clean 1 Bd 2 Blks to Trains",2568690,Collin,Queens,Astoria,40.75673,-73.9253,Entire home/apt,125,3,3,2015-06-11,0.06,1,0 +13900901,Cozy comfortable room near JFK&LGA#3,82367658,John,Queens,Richmond Hill,40.69196,-73.82029,Private room,38,3,32,2019-06-04,0.89,5,212 +1171955,Manhattan apt in the centre of it!,4922378,Erin,Manhattan,Midtown,40.74568,-73.98321,Entire home/apt,275,7,6,2016-10-09,0.08,1,191 +36027598,Manhatten dream apt thats just like home.,1967818,Debra,Manhattan,Hell's Kitchen,40.76769,-73.99129,Private room,110,30,0,,,1,105 +36077745,AMAZING LARGE ONE BEDROOM IN WILLIAMSBURG!!,266752544,Haily,Brooklyn,Williamsburg,40.71527,-73.93852,Entire home/apt,299,3,2,2019-07-03,2.0,1,178 +5647416,Paris in Manhattan with 2 balconies,2458750,Stephanie,Manhattan,Upper East Side,40.76923,-73.95034,Entire home/apt,159,30,14,2019-05-23,0.3,1,265 +180507,Ultra Modern NYC Garden Apartment,864735,Jason,Queens,Astoria,40.75744,-73.92163000000001,Entire home/apt,107,30,21,2018-12-01,0.22,8,200 +17806646,Beautiful Loft Railroad apartment in Bushwick,29952340,Nico,Brooklyn,Bushwick,40.70432,-73.9267,Entire home/apt,94,2,51,2019-06-28,1.87,1,74 +30297591,Cosy sun filled bedroom with a private bathroom,10576896,Kati,Manhattan,Harlem,40.79939,-73.95218,Private room,85,3,0,,,1,6 +3952093,Entire 2 bdrm/2 bth UWS/RiversdePrk,20484008,Mike,Manhattan,Upper West Side,40.79407,-73.97513000000001,Entire home/apt,160,4,75,2019-06-29,1.31,2,8 +7394136,One bedroom available in Astoria,38741040,Priscila,Queens,Long Island City,40.75547,-73.92017,Private room,40,1,0,,,1,0 +24424607,"Next to Strawberry Fields, Central Park Manhattan",409965,Juan Carlos,Manhattan,Upper West Side,40.778290000000005,-73.97794,Private room,95,6,11,2019-06-30,0.76,1,219 +24441860,"East 12th street, Lux 1bd in Greenwich Village",22541573,Ken,Manhattan,East Village,40.733990000000006,-73.99002,Entire home/apt,245,30,1,2018-11-05,0.12,87,357 +29688903,Room J near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.80434,-73.9649,Private room,80,1,28,2019-06-22,3.53,3,8 +30395680,1 bed 2 guest luxury Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.66051,-73.92964,Private room,75,1,0,,,3,364 +5791707,#1 LARGE STUDIO NEAR CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77107,-73.95517,Entire home/apt,100,30,71,2019-06-25,1.42,3,248 +30714312,Clean 2 bedroom home in a safe area near Manhattan,191324,Keith,Queens,Sunnyside,40.74942,-73.91490999999999,Private room,60,2,4,2019-06-11,2.55,2,2 +9685104,Beautiful room at nice NYC location,46846064,Frahydel,Manhattan,Roosevelt Island,40.76359,-73.94981999999999,Private room,85,3,32,2018-12-29,0.9,2,0 +9978426,"Bright, spacious BR in East Village",5904463,Katherine,Manhattan,East Village,40.72431,-73.98312,Private room,120,1,1,2016-01-02,0.02,4,0 +22433073,Sweet living quarters,164308567,Alex,Brooklyn,Bushwick,40.70189,-73.91984000000001,Private room,125,1,3,2018-05-18,0.16,1,4 +9615815,Sunny and Cozy apt in Midtown,16396714,Andrea,Manhattan,Kips Bay,40.74054,-73.97626,Entire home/apt,120,3,1,2017-07-08,0.04,3,0 +16406203,Fort Greene apartment,43272616,Emi,Brooklyn,Fort Greene,40.69613,-73.97364,Private room,80,3,0,,,2,0 +7725825,COMFORT 25 MINS FROM NEW YORK,40595718,Adria,Queens,Ozone Park,40.68792,-73.83752,Entire home/apt,79,1,22,2019-04-15,0.49,1,130 +29760980,Downtown Brooklyn Loft Space Under The Bridge,223807986,Luis,Brooklyn,Vinegar Hill,40.700790000000005,-73.98512,Entire home/apt,275,1,1,2018-11-18,0.13,1,0 +4531802,Sunny East Village 1 Bedroom,6197480,Christine,Manhattan,East Village,40.72568,-73.98823,Entire home/apt,200,2,0,,,1,0 +9678870,Sunny Heart of Park Slope 1 Bedroom,50005319,Chris,Brooklyn,Park Slope,40.67632,-73.98116,Entire home/apt,160,4,0,,,1,0 +32718338,Beautiful vintage apt in Williamsburg (ENTIRE APT),24809291,Luca,Brooklyn,Williamsburg,40.71438,-73.94359,Entire home/apt,130,5,1,2019-05-07,0.48,1,121 +6246010,Skyview Private Small Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.9369,Private room,30,1,170,2019-06-23,3.34,5,165 +19328935,Lovely 2 Bedroom in Flushing Chinatown,5962328,Alan,Queens,Flushing,40.7593,-73.82329,Entire home/apt,115,30,4,2018-11-12,0.22,15,319 +13891181,Spacious Sunny Bedroom near JMZ Subways,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93319,Private room,73,5,89,2019-06-10,2.68,6,94 +29489824,Stunning and Spacious Brownstone Apt in Park Slope,10555698,Sari,Brooklyn,Park Slope,40.67137,-73.98064000000001,Entire home/apt,200,2,9,2019-07-07,1.09,1,23 +24656201,A Place to Call HOME,25479861,Michael,Queens,Sunnyside,40.74567,-73.91881,Private room,89,1,0,,,1,365 +8426874,Private Holiday Loft in the East Village,17853061,Jonathan,Manhattan,East Village,40.73106,-73.98467,Entire home/apt,120,3,4,2019-01-01,0.09,1,0 +34647478,Cozy/quiet home amongst hippest NYC neighborhoods,6895430,Beth,Queens,Ridgewood,40.70372,-73.9067,Entire home/apt,200,2,1,2019-06-02,0.79,1,11 +545651,COMFORTABLE PRIVATE ROOM FOR RENT,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65841,-73.95016,Private room,69,4,19,2019-05-20,0.24,3,43 +23765706,Beautiful Large 1br in the middle of Manhattan,25939370,Petar,Manhattan,Chelsea,40.75068,-73.99811,Entire home/apt,172,30,6,2019-03-31,0.5,1,195 +24751022,Sonder | Hanover Square | Welcoming 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70401,-74.00932,Entire home/apt,179,29,0,,,96,1 +5285867,Spacious Full 1 Bedroom Apartment,11601961,Amy,Brooklyn,Flatbush,40.64858,-73.96378,Entire home/apt,90,3,24,2019-04-07,0.45,1,29 +10886971,Cozy Btful Private Room In Brooklyn,8261208,Shakima,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94875,Private room,45,2,27,2019-07-05,0.78,1,339 +19960507,Huge Loft Space in Red Hook,1772509,Jane,Brooklyn,Red Hook,40.67798,-74.00787,Entire home/apt,145,1,11,2019-05-25,0.49,2,333 +8704348,Spacious & Artsy Astoria Apartment,9376458,Jorge,Queens,Astoria,40.76512,-73.92430999999999,Entire home/apt,135,3,11,2016-10-02,0.24,1,0 +16823231,1BR Spacious Luxury Apartment in Williamsburg BK,2369654,Michael & Hanako,Brooklyn,Williamsburg,40.71778,-73.95503000000001,Entire home/apt,120,4,7,2018-04-16,0.24,1,0 +23668731,Family studio beside Empire State #68,177174475,Alberto,Manhattan,Midtown,40.74805,-73.9868,Entire home/apt,120,1,8,2019-03-26,0.53,17,267 +25026993,Single room in Clinton Hill brownstone,64426364,Micaela,Brooklyn,Bedford-Stuyvesant,40.68593,-73.95702,Private room,48,7,6,2019-06-23,0.45,1,0 +15805025,Private Master BR/Bath - 15 Minutes to Manhattan,64336536,Ian,Brooklyn,Williamsburg,40.71805,-73.94088,Private room,95,4,0,,,1,0 +6161282,Loft in Williamsburg,31963371,Rajan,Brooklyn,Williamsburg,40.71014,-73.96253,Entire home/apt,275,3,78,2018-11-08,1.53,1,0 +20607771,Clean room 4 blocks to the N/W Train,76829914,Erik,Queens,Astoria,40.76398,-73.91974,Private room,90,5,2,2017-09-20,0.09,1,83 +15649021,"Cool private room in Astoria, New York!",14422390,Bill,Queens,Astoria,40.76625,-73.93295,Private room,49,1,12,2017-07-19,0.37,1,0 +4638668,Beautiful Apartment in Greenpoint,6569891,Brandon,Brooklyn,Greenpoint,40.73396,-73.95537,Private room,150,1,0,,,1,0 +13153856,Large 1BR Apt. in Williamsburg,47292710,Peter,Brooklyn,Williamsburg,40.71233,-73.94806,Entire home/apt,200,1,6,2016-07-25,0.16,1,0 +13415100,Park Avenue 3 Bedroom 1.5 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74439,-73.98125,Entire home/apt,185,29,1,2017-05-31,0.04,31,139 +146754,Three-bedroom house in a quiet neighborhood,709434,Meighan,Brooklyn,Windsor Terrace,40.65749,-73.97675,Entire home/apt,250,4,52,2019-04-27,0.72,1,188 +26663507,Bright and spacious Bushwick apartment,1116256,Fernando,Brooklyn,Bushwick,40.70618,-73.91689000000001,Entire home/apt,78,30,1,2018-08-19,0.09,1,6 +34568097,Iconic West 57 Street/Central park/Junior 1Bedroom,7679270,Ika,Manhattan,Hell's Kitchen,40.76739,-73.98504,Entire home/apt,150,2,2,2019-07-01,2.0,1,146 +20035645,Basement Studio Apt in a quiet area close to all,142312133,Ella,Queens,Forest Hills,40.73362,-73.84747,Entire home/apt,69,2,51,2019-01-05,2.15,1,0 +7276534,LaGuardia Room with Private Entrance(1),31851704,Laura,Queens,East Elmhurst,40.7582,-73.87656,Private room,50,1,211,2019-06-24,4.37,2,339 +35384734,Studio Apartment in the heart of Chelsea,266380288,Valerie,Manhattan,Chelsea,40.74114,-74.00358,Entire home/apt,198,30,0,,,1,125 +31018857,Come feel at home,231667071,Leticia,Manhattan,Harlem,40.81734,-73.95428000000001,Private room,100,7,0,,,1,365 +2400010,The Notorious B.N.B. { The Pfizer },1177497,Jessica,Brooklyn,Clinton Hill,40.69045,-73.96762,Private room,239,1,16,2019-05-19,0.28,11,363 +15338,Room in Greenpoint Loft w/ Roof,32169,Andrea,Brooklyn,Greenpoint,40.72401,-73.93788,Private room,49,4,138,2019-06-04,1.19,3,320 +5458432,Large Industrial Apt. Near Trains & Yankee Stadium,1364903,Farah,Bronx,Concourse Village,40.83161,-73.91958000000001,Entire home/apt,150,4,6,2019-06-10,0.32,1,346 +4581788,,21600904,Lucie,Brooklyn,Williamsburg,40.7137,-73.94378,Private room,150,1,0,,,1,0 +26696254,Upscale Spacious Condo in the Heart of Brooklyn,160683712,Dejuan,Brooklyn,Bedford-Stuyvesant,40.68291,-73.91975,Entire home/apt,150,2,8,2018-10-15,0.68,1,84 +5546217,4 bedroom Townhouse/Brownstone/Prospect Park,11369454,Mimi,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.95975,Entire home/apt,190,2,119,2019-06-17,2.42,1,243 +35739927,"Charming ""Library"" Apt, Heart of Greenwich Village",4129805,Evelyn,Manhattan,West Village,40.73286,-74.00244,Entire home/apt,175,2,2,2019-06-21,2.0,5,79 +12230978,cozy private rm in sunny Bklyn apt,30529247,Amy,Brooklyn,Fort Greene,40.69706,-73.97421999999999,Private room,50,4,15,2019-06-24,0.38,1,0 +5315798,Williamsburg Apt. S 2nd & Bedford,22761603,Dan,Brooklyn,Williamsburg,40.71425,-73.96054000000001,Private room,90,1,1,2015-03-17,0.02,1,0 +17762525,"Quiet, Comfortable Studio in Chelsea/Village",19824881,Julia,Manhattan,Chelsea,40.74128,-73.99986,Entire home/apt,139,1,0,,,1,0 +9079542,Cozy room + backyard in Bushwick,2123463,Eyal,Brooklyn,Bushwick,40.69342,-73.91116,Private room,55,1,2,2016-10-01,0.05,1,0 +396636,Stylish Designer Studio with Piano,1981742,Daniel,Manhattan,Harlem,40.83091,-73.94223000000001,Entire home/apt,135,5,38,2019-05-16,0.44,1,253 +2936054,October SPECIAL!! Enjoy the Holiday in NYC! Sale!,14990573,Ray,Manhattan,Battery Park City,40.71097,-74.01658,Entire home/apt,200,1,46,2017-10-22,0.74,1,0 +24378806,Cozy Brooklyn Witchy Apartment (Pet Friendly),27923193,Elisabeth,Brooklyn,Crown Heights,40.67085,-73.92316,Private room,47,1,9,2018-11-03,0.61,1,0 +6654323,Sunny Deck and Private Garden,16437254,Benjamin,Brooklyn,Fort Greene,40.6882,-73.97719000000001,Entire home/apt,179,30,0,,,21,0 +13433870,Bright Bedroom with views of city,31162653,Laszlo,Brooklyn,Bushwick,40.7025,-73.92935,Private room,95,2,3,2018-01-03,0.09,1,0 +22754373,"Brooklynite Room, 10 mins to Williamsburg/LES/City",1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69251,-73.9301,Private room,35,1,5,2018-09-01,0.46,3,59 +27609132,Brooklyn spot right next to express train,207213839,Sheneque,Brooklyn,Sunset Park,40.64136,-74.01898,Entire home/apt,120,3,0,,,1,0 +21095546,Urban Sanctuary in Sunset Park,16509617,Heather,Brooklyn,Sunset Park,40.64651,-74.01749000000001,Entire home/apt,100,3,0,,,1,0 +19069048,Entire Apartment in the East Village - 2 Bedroom,778994,Giona,Manhattan,East Village,40.72529,-73.98655,Entire home/apt,300,14,5,2018-07-01,0.2,1,2 +13170106,Bright & spacious east village apartment,21425186,Doug,Manhattan,East Village,40.72333,-73.98795,Entire home/apt,250,3,0,,,1,0 +27701535,Place for sleeping and exploring NYC,209121939,Linda,Manhattan,Harlem,40.82005,-73.93949,Private room,65,1,21,2019-06-17,1.94,2,58 +5918356,Heart of times square Best location,2588808,Arturo,Manhattan,Hell's Kitchen,40.76115,-73.98706999999999,Entire home/apt,125,7,4,2018-02-19,0.08,1,0 +4693338,"Brooklyn off J/Z, Newly Renovated",9123948,Chris,Brooklyn,Bedford-Stuyvesant,40.68229,-73.91574,Private room,46,4,3,2016-01-03,0.05,1,0 +13587436,Perfect 2 bedroom in Brooklyn,78464432,Dragica,Brooklyn,Crown Heights,40.6789,-73.96242,Entire home/apt,189,4,15,2019-01-02,0.41,1,15 +3114929,Modern Stylish and Legendary.,14911623,Nicholas,Manhattan,Harlem,40.81736,-73.93921,Private room,150,1,2,2019-05-19,0.19,2,87 +27403622,Charming exposed brick bedroom in the heart of LES,52050220,Brooke,Manhattan,Lower East Side,40.71873,-73.98553000000001,Private room,100,1,4,2018-09-21,0.36,2,0 +34628898,Modern 4 Bedroom & 2 Bath! EZ Access to Manhattan!,261256418,Noah,Queens,Glendale,40.70603,-73.89562,Entire home/apt,299,3,6,2019-06-18,3.6,1,155 +1650470,Spacious room in Bushwick L & JMZ !,8753908,Rebecca,Brooklyn,Bushwick,40.70045,-73.93831999999999,Private room,65,5,1,2015-06-01,0.02,1,169 +26388810,Brooklyn home with a View,424656,Jasmine,Brooklyn,Williamsburg,40.7164,-73.95438,Entire home/apt,259,7,0,,,1,0 +6063050,Private Room in 3BD Apt with a queen bed,9897580,David,Brooklyn,Bedford-Stuyvesant,40.686690000000006,-73.93451999999999,Private room,55,3,51,2019-06-19,1.0,1,340 +21966758,Casa Rosada in El Barrio,3179146,Adrián,Manhattan,East Harlem,40.79746,-73.93513,Entire home/apt,161,3,3,2018-03-18,0.16,1,0 +36318339,Private Bedroom in Newly Renovated Apartment,273139430,Ethan,Brooklyn,Crown Heights,40.67322,-73.95581,Private room,39,1,0,,,1,14 +35933715,"Private, cozy room in Astoria!!!",270277478,Marina,Queens,Long Island City,40.7564,-73.92101,Private room,85,3,0,,,1,250 +36102578,***New*** Explore the NYC in this Brooklyn Oasis,271568898,Gabriel & Aquanna,Brooklyn,Cypress Hills,40.67814,-73.89286,Entire home/apt,150,1,0,,,1,9 +10554070,Loft Room near to NYC Attractions,6650002,Christina,Queens,Long Island City,40.75951,-73.92820999999999,Private room,59,3,42,2019-06-13,0.99,1,3 +21899575,Beautiful 1 bd apartment in the heart of Brooklyn.,155812868,Milana,Brooklyn,Brighton Beach,40.57962,-73.96535,Entire home/apt,119,1,19,2019-07-04,1.02,2,135 +33812239,3 bedroom Apartment a few blocks from Union Square,34312950,Sam,Manhattan,East Village,40.72919,-73.98151,Entire home/apt,290,2,10,2019-06-26,4.29,1,254 +9790462,Room in Spacious good vibes home,2949577,Ariela,Brooklyn,Crown Heights,40.66593,-73.95082,Private room,50,4,2,2016-05-02,0.05,1,0 +2257080,SUPERBOWLSUNDAY! 3BLOCK FROM TIMESQ,3312524,Athena,Manhattan,Hell's Kitchen,40.75361,-73.99501,Entire home/apt,350,1,0,,,1,0 +5872177,Sunny One Bedroom-Amazing Location,9893040,Sari,Manhattan,Chelsea,40.74302,-74.00015,Entire home/apt,163,3,12,2016-05-12,0.24,1,0 +24727745,Quiet and Friendly,129585378,Victoria,Manhattan,Murray Hill,40.74943,-73.97279,Private room,120,4,3,2018-08-14,0.26,1,0 +35972538,3bedroom First Floor apt in prime Williamsburg,3068092,Marc,Brooklyn,Williamsburg,40.714490000000005,-73.9569,Entire home/apt,196,1,0,,,1,95 +24626621,STUDIO.STYLE.BEDROOM+PRIVATE.BATHROOM+TOP.LOCATION,186100463,Mateo,Brooklyn,Crown Heights,40.67357,-73.95467,Private room,99,2,52,2019-07-04,3.63,1,224 +32702033,The Refinery,18170444,Sebastian,Brooklyn,Carroll Gardens,40.68299,-73.99928,Private room,80,2,13,2019-05-29,3.42,2,160 +21850183,Perfect apartment for 2 (in Manhattan),49661012,Nompakamiso,Manhattan,Upper East Side,40.77408,-73.95504,Entire home/apt,130,5,6,2019-05-13,0.33,1,7 +10017170,Murray Hill 2 Bedroom Suite,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74676,-73.97681999999999,Entire home/apt,150,30,3,2019-03-30,0.1,31,107 +33140984,COZY ROOM IN THE HEARTOF BROOKLYN (420 FRIENDLY),128369561,Frampton,Brooklyn,Bushwick,40.695440000000005,-73.91011999999999,Private room,46,1,7,2019-06-08,2.04,1,130 +13926664,Interfaith Retreat Guest Rooms (Seva),16677326,Alex And Zeena,Manhattan,Chelsea,40.74798,-73.99531999999999,Private room,85,1,78,2019-05-27,2.26,12,360 +14137639,Brooklyn Oasis,18418244,Jocelyn,Brooklyn,Bushwick,40.69572,-73.9293,Private room,85,2,3,2017-09-28,0.1,1,83 +20688624,Luxury Alcove Studio in Chelsea,979144,Ryan,Manhattan,Chelsea,40.74419,-73.99913000000001,Entire home/apt,225,1,102,2019-07-01,4.55,1,33 +33652633,Brooklyn room close to Subways to Manhattan,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.679190000000006,-73.90684,Private room,57,1,6,2019-05-31,2.47,6,164 +9898409,Small Cozy Studio - Brownstone,40709140,Lee,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94758,Entire home/apt,160,1,0,,,1,0 +27225540,Huge Private Brooklyn Room with Two Beds!,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94762,Private room,65,2,21,2019-06-15,2.04,4,334 +13549611,Bright and cozy apt next to park,59575555,Para,Brooklyn,Cypress Hills,40.68144,-73.89416,Entire home/apt,75,5,2,2016-08-15,0.06,1,0 +34153345,★ Discounted!!★ NEAR TIMES SQUARE,229603136,Pinki,Manhattan,Hell's Kitchen,40.76368,-73.98881,Entire home/apt,239,2,6,2019-06-16,3.46,1,335 +6069703,Urban sanctuary near Bedford L!,17958459,Maria,Brooklyn,Williamsburg,40.71462,-73.96309000000001,Entire home/apt,179,8,39,2019-01-01,0.77,1,113 +12072069,Cute & Cozy Cobble Hill Apt,37820765,Carla,Brooklyn,Columbia St,40.68685,-74.00112,Entire home/apt,98,2,14,2017-05-02,0.36,1,0 +35684442,ROOM in safe clean apt NEAR SUBWAY,1100494,Mike&Mavi,Manhattan,Harlem,40.82292,-73.95598000000001,Private room,50,30,0,,,3,338 +26337617,Express to NYC - beautiful 1 bedroom apartment,140039953,Bernarda,Brooklyn,Bergen Beach,40.62402,-73.91681,Entire home/apt,85,3,31,2019-07-08,2.95,1,122 +28043390,Sunny room in Manhattan ☀️,88827816,Ziva,Manhattan,Upper East Side,40.76325,-73.95893000000001,Private room,99,11,0,,,1,365 +9327458,Sunny Bedroom in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66641,-73.99078,Private room,45,3,7,2018-04-01,0.16,2,0 +36426319,"Duplex penthouse with terrace, prime UES location",46876102,Philippe,Manhattan,Upper East Side,40.7784,-73.9567,Entire home/apt,250,45,0,,,1,83 +32165540,Spacious East Village Apartment,801538,Mike,Manhattan,East Village,40.7233,-73.98062,Entire home/apt,150,90,0,,,1,341 +35999335,Cozy private bedroom in Chinatown/Lower East Side,60441049,Kelly,Manhattan,Chinatown,40.71409,-73.99427,Private room,71,1,0,,,1,259 +35575853,"Great view, 1 BR right next to Central Park!",35965489,Meygan,Manhattan,East Harlem,40.79755,-73.94797,Private room,100,2,0,,,1,7 +4642913,Spacious Bright and Airy,16035346,Jonathan,Brooklyn,Windsor Terrace,40.65057,-73.97858000000001,Entire home/apt,120,7,23,2019-01-05,0.41,1,196 +34547439,Summer spot!,157666408,Semika,Brooklyn,East Flatbush,40.64268,-73.95132,Private room,70,4,0,,,1,16 +20679134,Warm Secluded Room in Flatbush (Rm# 1),147972663,Hyacinth,Brooklyn,East Flatbush,40.64991,-73.93715999999999,Private room,40,3,52,2019-06-23,2.34,3,298 +19929723,Cozy And Quiet Getaway (Queen Size Bed),137999892,Simranjeet,Staten Island,Concord,40.60609,-74.0888,Private room,34,4,24,2019-05-18,1.03,7,293 +26957225,Beautiful Studio Apt. Yoga vibes & love,11453805,Helen,Manhattan,Lower East Side,40.72078,-73.98761999999999,Entire home/apt,207,2,3,2018-10-29,0.26,1,0 +19997686,Brand New Williamsburg Room!,14757938,Georgie,Brooklyn,Greenpoint,40.72612,-73.95419,Private room,65,1,0,,,1,0 +33334476,★1800ft²/195m²★3-Levels★Deck★Walk Score 96★Office★,3165356,Arlene,Brooklyn,Greenpoint,40.72023,-73.94355,Entire home/apt,336,2,9,2019-07-06,5.87,1,97 +22516600,Private Room for 2,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93312,Private room,50,1,14,2019-06-16,0.78,4,306 +4519764,Private Space in Manhattan 8/25-9/9,16310013,Tan,Manhattan,Washington Heights,40.85181,-73.93824000000001,Private room,29,7,0,,,1,0 +9269191,Beautiful Private Parlor-Level 1-BR Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.683,-73.93305,Entire home/apt,110,2,104,2019-06-16,2.38,2,155 +3887381,Modern 2BR Near Union Square,8179499,Brent,Manhattan,East Village,40.73177,-73.98598,Entire home/apt,180,5,0,,,1,0 +294353,Williamsburg HUGE SUNNY next2train!,430188,Pam,Brooklyn,Williamsburg,40.70686,-73.95365,Private room,135,28,84,2019-02-16,1.12,6,310 +9370896,Castle View Brownstone,46638648,Geert,Brooklyn,Bedford-Stuyvesant,40.68503,-73.93809,Entire home/apt,140,29,12,2018-08-20,0.31,1,339 +12245906,One Bedroom On Upper West Side,65364483,Irina,Manhattan,Upper West Side,40.7992,-73.96791999999999,Entire home/apt,110,120,2,2016-08-27,0.05,2,34 +18751687,Private room with private bathroom,73214623,Salah,Brooklyn,Williamsburg,40.71627,-73.93956999999999,Private room,100,7,1,2019-03-24,0.28,1,365 +20565375,Luxury New 2 bed Apartment By Central Park North,138765458,Lilian,Manhattan,East Harlem,40.79674,-73.94674,Entire home/apt,325,6,15,2019-05-14,0.68,1,156 +3999228,Best Location NYC! Studio in heart of The Village,14545465,Tom,Manhattan,West Village,40.73455,-74.00614,Entire home/apt,115,4,16,2017-03-17,0.27,1,0 +4932075,Brooklyn Beauty! Private Bed+Bath,5037211,Mariana,Brooklyn,Greenpoint,40.72023,-73.9479,Private room,118,3,1,2015-09-29,0.02,2,188 +22230375,318 58 st brooklyn ny 11220,160867897,Mercedes,Brooklyn,Sunset Park,40.64351,-74.01848000000001,Private room,100,2,1,2018-03-17,0.06,1,365 +28699654,"Home For Medical Professionals - ""The Kinetic""",26377263,Stat,Brooklyn,East Flatbush,40.65429,-73.93601,Private room,57,30,0,,,43,306 +6326568,W Village - 3 BR - 5/31 to 7/2,32924122,Jeffrey,Manhattan,West Village,40.73623,-74.00036,Entire home/apt,207,1,1,2015-06-29,0.02,1,0 +32989626,Very nice room - 15min away to Manhattan,248272030,Anissa,Queens,Woodside,40.74299,-73.90295,Private room,50,7,4,2019-05-27,2.07,1,225 +27720812,Gorgeous 1 Bedroom on the Park,4367464,Woods,Brooklyn,Fort Greene,40.69028,-73.97484,Entire home/apt,175,3,16,2019-06-24,1.63,1,0 +21013499,Prime Location of Flushing Queens 豪华卧室 旅途中的家 C,63312104,Max,Queens,Flushing,40.74922,-73.81868,Private room,55,1,41,2019-03-25,1.9,6,340 +20137576,Room in a charming and spacious apartment in DUMBO,19990362,Sara,Brooklyn,Vinegar Hill,40.70149,-73.98091,Private room,69,5,5,2019-04-19,0.22,1,166 +2477138,Private Room: The cheapest deal!!,9089934,Siddharth,Queens,Ozone Park,40.67948,-73.85335,Private room,30,7,0,,,1,0 +9886735,Bohemian Room in 2 bdr apt.,17023017,Sade,Brooklyn,Crown Heights,40.66555,-73.95613,Private room,80,2,0,,,1,0 +30937591,Sonder | The Nash | Lovely Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74771,-73.97528,Entire home/apt,255,2,14,2019-06-10,2.59,327,81 +28780407,"BRIGHT! Huge,Beautiful&Quiet Fort Greene (BK) Apt",1976287,Patrick,Brooklyn,Fort Greene,40.69178,-73.97345,Entire home/apt,145,3,5,2019-03-25,0.55,1,0 +8975190,Fresh and great 2BR,46901221,Sandy,Brooklyn,Sheepshead Bay,40.5974,-73.96211,Entire home/apt,129,2,137,2019-07-02,3.55,2,133 +1515026,"Garden Apartment, Ft. Greene",1396183,Lee,Brooklyn,Fort Greene,40.69197,-73.97218000000001,Entire home/apt,115,4,12,2019-02-22,0.17,1,0 +132570,Spacious West Village 1 b/room King,651390,Catherine,Manhattan,West Village,40.73215,-74.00922,Entire home/apt,170,4,24,2017-12-26,0.25,1,0 +31248288,Private room in Bedstuy Brooklyn!,53298603,Yvonne,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94755,Private room,55,30,2,2019-03-15,0.48,1,0 +791452,Jazzy condo in Riverdale -fresh grown veggies,2556784,Claudia,Bronx,Fieldston,40.88757,-73.90522,Entire home/apt,60,1,25,2019-07-05,0.67,1,311 +15261353,Sunny Studio in Midtown Manhattan,2742827,Christiane,Manhattan,Kips Bay,40.74533,-73.9772,Entire home/apt,128,2,5,2018-05-28,0.19,1,0 +3889997,Prime West Village/Chelsea 1B SUPERB VIEW/Location,3150902,Dan,Manhattan,Chelsea,40.74057,-73.99977,Entire home/apt,299,5,1,2018-03-03,0.06,1,0 +20935059,Spacious bedroom in Artist's Apartment-Atelier,1566510,Nastya,Manhattan,Lower East Side,40.71818,-73.99015,Private room,120,1,72,2019-06-29,3.38,2,50 +34866647,COSY KINGDOM IN UPTOWN,257839699,Mauricio,Manhattan,Washington Heights,40.85423,-73.93215,Private room,129,1,0,,,1,5 +17508940,Haven in the Heights,32788186,Alexandra,Manhattan,Washington Heights,40.85321,-73.93596,Shared room,35,1,27,2019-06-30,0.95,1,33 +32571267,Great share 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91274,Shared room,35,1,2,2019-06-04,0.75,17,49 +12147723,Luxury Wall St. Apartment Building,5120853,Mackenzie,Manhattan,Financial District,40.70433,-74.00782,Entire home/apt,175,2,2,2016-07-08,0.05,1,0 +12856181,Charming 1 BR in West Village,18975770,Martina,Manhattan,West Village,40.73064,-74.00350999999999,Entire home/apt,200,6,5,2018-11-24,0.24,2,17 +21094022,"Bright, spacious room in Williamsburg",32110549,Tori,Brooklyn,Williamsburg,40.71111,-73.94792,Private room,100,2,2,2017-10-17,0.1,1,0 +19054757,Spaceful studio in the heart of Financial district,133010064,Alena,Manhattan,Financial District,40.70857,-74.01005,Entire home/apt,140,2,76,2019-07-01,3.02,1,0 +1934444,Havemeyer Holiday,4393358,Cj,Brooklyn,Williamsburg,40.71674,-73.95262,Private room,80,10,5,2014-11-01,0.07,1,0 +30355933,Spacious and comfortable room,208136645,Andre,Brooklyn,East Flatbush,40.65267,-73.94256999999999,Private room,45,2,1,2018-12-27,0.15,4,296 +10104806,Spacious and cozy room!,11095923,Tobias,Brooklyn,Bushwick,40.69802,-73.91471999999999,Private room,40,1,0,,,3,0 +14987023,Cozy 3rd floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67758,-73.97123,Private room,40,1,168,2019-07-06,4.91,13,309 +257787,Heart of Williamsburg. Brand New.,1356046,Daniel,Brooklyn,Williamsburg,40.71408,-73.9489,Private room,64,3,247,2019-06-21,2.65,2,117 +8840959,1-Bedroom in Brooklyn Brownstone,39556296,Lizzie,Brooklyn,Bedford-Stuyvesant,40.6802,-73.95768000000001,Entire home/apt,85,3,1,2016-09-08,0.03,1,0 +7261121,Private Room for a Female,38010132,Jennifer,Queens,Astoria,40.77268,-73.92503,Private room,36,1,0,,,1,0 +7955150,Entire Apartment in South Slope,41951749,Erin,Brooklyn,South Slope,40.66495,-73.99146999999999,Entire home/apt,120,2,8,2015-11-10,0.17,1,0 +22946348,"Sunny Room near Prospect Park, 35mins to Manhattan",127545011,Kristiana,Brooklyn,East Flatbush,40.65222,-73.95016,Private room,35,1,5,2018-11-30,0.42,1,0 +11871903,Cozy Bedroom on UWS steps to CPW !!,50032395,Wayne And Yesim,Manhattan,Upper West Side,40.80029,-73.96625999999999,Private room,75,1,1,2016-03-28,0.03,2,188 +10361885,Dreamy Brownstone Brooklyn Duplex,53330133,Deirdre,Brooklyn,Carroll Gardens,40.67905,-74.00089,Entire home/apt,125,21,0,,,1,0 +23038520,Large 1 bdrm with Modern finishes - Pelham Gardens,7381386,Kayla,Bronx,Pelham Gardens,40.85929,-73.84229,Entire home/apt,60,3,41,2019-07-04,2.44,1,23 +32070946,Amazing Studio at the Time Square Area/54D,48146336,Irina,Manhattan,Hell's Kitchen,40.76318,-73.99335,Entire home/apt,130,30,2,2019-05-08,0.5,20,263 +20174811,Spacious Room and Backyard in Modern Space,22645955,Micah,Brooklyn,Bushwick,40.69786,-73.91362,Private room,50,20,3,2017-08-27,0.13,1,2 +24913445,Bright sunny room in Bushwick with backyard.,7780845,Liset,Brooklyn,Bushwick,40.70269,-73.91778000000001,Private room,65,2,20,2019-06-30,1.57,3,282 +6347713,Huge Private Room in the BEST location,33064443,Judy,Manhattan,Flatiron District,40.741690000000006,-73.9933,Private room,95,3,1,2017-07-14,0.04,1,0 +18176798,Sunny Balcony Apartment,125398274,Christian,Manhattan,Lower East Side,40.71869,-73.9931,Entire home/apt,200,3,7,2018-07-23,0.26,2,0 +8729771,Private Studio Apartment in Harlem,2101644,Tom,Manhattan,Harlem,40.82248,-73.94891,Entire home/apt,130,1,289,2019-06-19,6.46,1,217 +18942038,Lovely and quiet studio in Bushwick,12155032,Clemence,Brooklyn,Bushwick,40.69412,-73.91039,Entire home/apt,150,3,6,2018-07-05,0.27,1,0 +14324811,Excellent Location! Sunny & Cozy!,4131257,Abeni,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95203000000001,Private room,55,6,7,2019-01-07,0.54,1,179 +5482031,Beautiful Spacious 2 Bedroom Apt,8817100,Ulysses,Manhattan,Washington Heights,40.8434,-73.94139,Entire home/apt,200,2,0,,,1,0 +7920072,East Village - private room - chill,10353278,James,Manhattan,East Village,40.73243,-73.98692,Private room,96,2,114,2019-06-28,2.47,2,98 +7956593,Brooklyn Beauty w/private garden!,5555793,Lindsay,Brooklyn,Carroll Gardens,40.67857,-73.99485,Entire home/apt,140,3,3,2015-10-12,0.06,2,0 +24594717,"Large, Bright Midtown East 1 BR in Luxury building by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74112,-73.98009,Entire home/apt,271,30,0,,,232,326 +6114161,Beautiful Apartment in SoHo,21327551,Liza,Manhattan,Nolita,40.72191,-73.99587,Private room,125,1,1,2015-05-19,0.02,1,0 +7957339,Luxury Waterfront Building 1Bd/1Bth,32088026,Robert,Brooklyn,Sheepshead Bay,40.584790000000005,-73.9388,Entire home/apt,109,1,0,,,1,0 +27706098,Williamsburg Studio- Steps Away from Lorimer L,3550181,Emily,Brooklyn,Williamsburg,40.71094,-73.95026,Entire home/apt,104,2,20,2019-06-06,2.0,1,0 +21153619,3 Mins to Subway 30 minuets to WTC Safe Area,35927005,Kathy,Manhattan,Lower East Side,40.71426,-73.98873,Private room,85,2,30,2019-06-08,1.43,10,344 +1177971,Amazing View from Contemporary Loft,6444977,Chris,Manhattan,Midtown,40.74542,-73.98205,Shared room,80,1,66,2019-05-04,0.89,1,365 +4144849,Cozy little studio in Chelsea,21501965,Yulia,Manhattan,Chelsea,40.74411,-74.00204000000001,Entire home/apt,115,3,33,2019-06-15,0.57,1,11 +13093381,"West 23rd Street, Lux Chelsea Studio svcd apt",22541573,Ken,Manhattan,Chelsea,40.74651,-74.00563000000001,Entire home/apt,219,30,1,2017-08-11,0.04,87,340 +3869398,private Greenpoint apt,2718526,Kory,Brooklyn,Greenpoint,40.73385,-73.95418000000001,Entire home/apt,75,1,42,2019-06-18,0.72,1,10 +9496213,Queen Bed in williamsburg Brooklyn,6515431,Solange,Brooklyn,Williamsburg,40.70564,-73.93646,Private room,46,1,2,2015-11-23,0.05,1,0 +36312999,Perfect Place to stay in Manhattan,86813128,Tiffany,Manhattan,East Harlem,40.81488,-73.93458000000001,Private room,65,4,0,,,1,10 +15817291,Cozy Quiet Room in the Big Apple on Broadway!!!,102383709,Mark & Will,Manhattan,Harlem,40.82914,-73.94736,Private room,69,4,153,2019-07-01,4.74,2,125 +30745771,Quiet Cozy Apartment by the Beach,230046770,Fitzene,Brooklyn,Coney Island,40.57115,-73.99408000000001,Entire home/apt,190,1,1,2018-12-25,0.15,1,2 +9611586,Modern Minimal Central Chelsea Loft,8797100,Adam,Manhattan,Chelsea,40.74361,-73.99503,Entire home/apt,235,4,107,2019-06-23,2.98,1,27 +22735103,Sunnyside Bedroom,33695224,Mehmet,Queens,Sunnyside,40.74439,-73.91372,Private room,60,1,3,2018-05-28,0.17,1,0 +7982304,Brooklyn townhouse-2 floors..,27712561,Richard,Brooklyn,Gowanus,40.6834,-73.98549,Entire home/apt,150,3,0,,,1,0 +16488787,Newly Renovated Two Bedroom one bathroom,108272855,Lily,Brooklyn,Sunset Park,40.64212,-74.00259,Entire home/apt,90,2,108,2019-06-20,3.52,1,144 +35762030,Francesco’s Manhattan Private Room w/private bath,50278442,Francesco,Manhattan,Morningside Heights,40.80528,-73.96547,Private room,70,30,0,,,3,328 +2577467,1 BR with private bath new building,2920976,Shay,Manhattan,Harlem,40.8127,-73.94367,Private room,150,3,23,2017-07-01,0.36,1,0 +23696695,Large and bright private space in shared house!,10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68486,-73.93822,Private room,70,1,2,2019-06-09,0.15,2,0 +9820968,Large Stylish & Modern 1 BR Apt.,16352538,Alexis,Manhattan,Hell's Kitchen,40.76379,-73.99378,Entire home/apt,200,2,1,2016-01-02,0.02,1,0 +22978028,Spacious garden-level 1BR in Bed Stuy brownstone,10268766,Shirley,Brooklyn,Bedford-Stuyvesant,40.68156,-73.93722,Entire home/apt,140,4,19,2019-06-20,1.32,1,76 +25638322,Nice area accessible to all public transportation!,106018910,Maria,Queens,Elmhurst,40.73641,-73.87863,Private room,85,1,2,2018-07-15,0.16,1,0 +33850135,Private & Quiet Oasis in the Center of NYC,253637076,Sergey,Manhattan,Chelsea,40.74034,-74.00084,Entire home/apt,162,2,6,2019-06-23,2.2,1,66 +346805,Spacious Lower East Side Apt in NYC,562614,Beth,Manhattan,Lower East Side,40.71868,-73.99016999999999,Entire home/apt,140,1,53,2014-10-28,0.6,1,0 +27279645,Private 4B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76037,-73.9917,Private room,110,1,63,2019-06-23,5.71,12,267 +7547439,"Quaint, Quiet East Village 1 BR",39549996,T.,Manhattan,East Village,40.72962,-73.98931999999999,Private room,78,16,9,2019-04-18,0.19,1,23 +30447329,Bedroom in Crown Heights,68039772,Celeste,Brooklyn,Crown Heights,40.67249,-73.95564,Private room,55,4,1,2018-12-02,0.14,1,15 +23354284,It's Always Sunny in Williamsburg (2)!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71474,-73.95476,Private room,88,1,58,2019-06-23,3.55,4,50 +13062471,The Silver Room,33346283,Jonathan,Manhattan,Harlem,40.83141,-73.94722,Private room,55,5,31,2019-06-26,0.88,3,326 +17835503,Manhattan/ Center of Manhattan,46506241,Marcy,Manhattan,Harlem,40.81213,-73.9395,Entire home/apt,70,4,9,2018-07-02,0.44,1,0 +2824329,Spacious Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94136,Entire home/apt,129,30,3,2015-11-06,0.05,52,336 +22343079,Sunny and Private Room close to Manhattan!!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95326,Private room,75,2,61,2019-07-02,3.26,3,265 +12537221,Great Location,67884746,Linda,Brooklyn,Prospect Heights,40.67947,-73.96466,Private room,105,2,172,2019-06-24,4.5,1,83 +21964400,Spacious Private Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71733,-73.95028,Private room,71,2,30,2018-12-03,1.6,3,0 +6014926,Charming Stylish E. Village Studio,820011,Ike,Manhattan,East Village,40.72646,-73.98685,Entire home/apt,140,7,59,2019-06-23,1.17,1,268 +34364716,La Kings Highway unwinding,2123674,Rabi & Soukaina,Brooklyn,Sheepshead Bay,40.609390000000005,-73.95475,Private room,70,3,0,,,1,83 +26121892,"NO FEE, Brand New Luxury Studio in Manhattan",195656040,Donyanaz,Manhattan,Midtown,40.74914,-73.98779,Entire home/apt,350,7,0,,,1,0 +1134365,Private Garden Apt. with outdoor space in Red Hook,6012816,Jeffrey,Brooklyn,Red Hook,40.67659,-74.01550999999999,Entire home/apt,200,1,7,2019-04-21,0.52,1,0 +19069915,Extraordinary Apt Best Midtown Location,61391963,Corporate Housing,Manhattan,Midtown,40.75609,-73.96941,Entire home/apt,125,30,2,2019-06-01,0.15,91,140 +13914201,❤️Gorgeous Townhouse Apt - 2 blocks from subway,324628,Lisa,Manhattan,Harlem,40.80403,-73.95125,Entire home/apt,160,30,122,2019-05-26,3.52,1,179 +16275733,Private Room in Quiet UES Apartment,20362478,Gabrielle,Manhattan,Upper East Side,40.76835,-73.95837,Private room,100,1,19,2017-05-17,0.62,1,0 +14028380,Spacious 2 Floor 1 Bed Apartment!,7932698,Matthew,Brooklyn,Crown Heights,40.67244,-73.94426,Entire home/apt,106,1,30,2017-04-11,0.85,1,0 +20738759,Sun-Filled Cobble Hill Loft,2687071,Lily,Brooklyn,Brooklyn Heights,40.6904,-73.99376,Entire home/apt,135,3,21,2019-05-05,0.95,1,15 +3885177,"Clean/nice Suite 5m T LIRR,B,Q65,13",4680747,Del,Queens,Flushing,40.75664,-73.79975,Private room,95,2,2,2019-05-19,0.06,1,267 +35578522,"Huge, private bedroom next to train and PARK!",1394543,Jennifer,Brooklyn,Flatbush,40.6524,-73.96314,Private room,59,1,1,2019-07-02,1.0,2,24 +1507845,"Rare large modern garden studio, comfy; location!",109505,Jason,Manhattan,Upper East Side,40.77006,-73.95441,Entire home/apt,159,2,114,2019-06-23,1.62,1,46 +12342297,Private bedroom in high-ceiling 4BR apartment!,19953913,Alejandro,Manhattan,Hell's Kitchen,40.76116,-73.99016,Private room,120,2,17,2017-04-28,0.43,1,0 +35191909,HUGE Manhattan Apt. right next to Central Park,241258373,Margaret,Manhattan,Harlem,40.80346,-73.95702,Entire home/apt,198,2,2,2019-06-02,1.58,2,154 +854033,1 BR in large full floor apartment,4092307,Eddie,Manhattan,Civic Center,40.7123,-73.99946,Private room,100,4,8,2019-04-21,0.11,2,7 +2359340,ART COLLECTORS APARTMENT - TIMES SQUARE-10TH AV.,3793026,Andreas,Manhattan,Hell's Kitchen,40.76349,-73.98985,Entire home/apt,250,5,176,2018-10-08,2.72,1,0 +34516874,( BLUE ROOM ) Private in Beautiful Town House,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68473,-73.93975999999999,Private room,100,2,4,2019-06-27,2.67,3,63 +25110301,"Sunny home in Sunnyside, NY",41783072,Daniela & Steven,Queens,Sunnyside,40.7446,-73.92342,Private room,85,1,0,,,1,0 +32364848,A Place for Pet Lovers,24879404,Jackson,Brooklyn,Flatbush,40.64612,-73.9608,Private room,40,1,7,2019-05-31,1.86,1,61 +30040977,Cozy two room studio upper east side NYC,48860816,Christina,Manhattan,Upper East Side,40.77487,-73.95654,Entire home/apt,123,1,0,,,1,0 +19919747,Awesome Times Square 1 BR Loft in City Centre,142053,Jowelle,Manhattan,Hell's Kitchen,40.76054,-73.99065999999999,Entire home/apt,199,2,59,2019-06-24,2.52,5,266 +36175721,Historic Beach Bungalow-Steps to train- By Beach,271844440,Timothy,Queens,Rockaway Beach,40.58967,-73.81351,Entire home/apt,129,1,0,,,3,172 +36000224,Brand New Hamilton Heights Apartment,38576999,Maureen,Manhattan,Harlem,40.82806,-73.94537,Private room,50,20,0,,,1,42 +35152749,My Premium 1 bedroom Home in the Upper East Side,264744190,Josie,Manhattan,Upper East Side,40.77585,-73.95881,Entire home/apt,179,3,4,2019-06-30,4.0,1,138 +6452940,Spacious Studio in Midtown,19475826,Mark,Manhattan,Murray Hill,40.7487,-73.97358,Entire home/apt,125,2,21,2016-12-30,0.44,1,0 +18523629,"Spacious, sunny, stylish FAMILY 3-bed, 2-bath apt!",3413858,Mia,Brooklyn,Flatbush,40.64217,-73.9593,Entire home/apt,125,20,0,,,1,4 +33113865,Small room for only you :),140630987,Jiali,Queens,Flushing,40.76897,-73.82728,Private room,39,1,27,2019-07-05,8.62,6,133 +6659165,Room available in BUSHWICK!,12720552,Julie,Brooklyn,Bushwick,40.70168,-73.92845,Private room,70,1,20,2019-05-27,0.42,5,332 +22928803,Private room in artists duplex,169795562,Ariel,Brooklyn,Bushwick,40.69088,-73.90535,Private room,50,6,0,,,1,0 +22600713,"Sunny Studio, Lower East Side",1873234,Mikkel,Manhattan,Lower East Side,40.71774,-73.99056999999999,Entire home/apt,140,3,33,2019-05-30,1.91,1,11 +4129992,Country in the City,20169986,Victoria,Brooklyn,Flatbush,40.63146,-73.96486,Entire home/apt,85,3,12,2018-09-21,0.21,1,97 +27409329,Most beautiful bedroom in Harlem,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80874,-73.94038,Private room,90,2,38,2019-06-25,3.4,6,178 +13094690,"Sunny, Bushwick Apartment",8106327,Dallas,Brooklyn,Bushwick,40.69819,-73.9334,Private room,40,2,1,2017-08-19,0.04,1,0 +1952271,Super Clean 1 bedroom Upper West Side,4259154,Christine,Manhattan,Upper West Side,40.80009,-73.97009,Entire home/apt,130,1,87,2019-07-07,1.42,1,5 +21815771,Cozy Affordable room in Brooklyn,158920456,Diego,Brooklyn,Bedford-Stuyvesant,40.6786,-73.9255,Private room,40,1,13,2019-06-30,0.65,1,184 +35972860,Brooklyn family apartment,16056444,Charlotte,Brooklyn,Greenpoint,40.72229,-73.94846,Entire home/apt,128,30,0,,,1,312 +22771871,My Casa es su Casa!,168211014,Rosa,Bronx,Mott Haven,40.80906,-73.92031,Entire home/apt,150,1,9,2019-06-30,0.72,1,168 +32663403,Sharp 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74436,-73.97223000000001,Entire home/apt,192,29,0,,,327,329 +16449771,"Simple, Cozy Private Room Near Beach & Subway",36234811,Anna,Queens,Arverne,40.5921,-73.79285,Private room,55,1,28,2019-05-05,0.91,4,159 +18946105,Peaceful Garden Oasis in Heart of Park Slope,127681510,Maya,Brooklyn,Park Slope,40.66682,-73.9768,Entire home/apt,200,2,80,2019-07-06,3.43,1,70 +35062818,UES loft near hospitals,16259898,Moni,Manhattan,Upper East Side,40.763290000000005,-73.96235,Entire home/apt,250,7,0,,,1,11 +32426419,Upper west/huge confortable Central Park ColumbiaU,206758177,Miguel,Manhattan,Upper West Side,40.80047,-73.96064,Entire home/apt,200,1,22,2019-05-13,4.89,3,0 +29461695,Large Private Room in Beautiful Brooklyn Apartment,97425,Lauren,Brooklyn,Bushwick,40.70137,-73.92442,Private room,70,2,10,2019-06-12,2.36,1,14 +22686751,**Summer in SugarHill Manhattan is VERY Sweet**,167208041,Abel,Manhattan,Harlem,40.82476,-73.94332,Entire home/apt,173,2,78,2019-07-06,4.43,1,0 +33363704,Private Room in Prime Location - Newly Renovated,244171850,Jocelyn,Queens,Ridgewood,40.70103,-73.90613,Private room,47,30,0,,,10,365 +35732634,Rose's Brooklyn Oasis 2 - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.64457,-73.94915,Private room,35,1,3,2019-07-07,3.0,2,171 +36270538,big nice warm place in Stuytown,70343342,Veco,Manhattan,Stuyvesant Town,40.73258,-73.98039,Private room,99,5,0,,,1,12 +5284341,Quiet Cottage with Private Yard,15264295,Toby,Queens,Maspeth,40.73973,-73.90731,Private room,60,1,0,,,1,0 +20679146,Private room in Williamsburg with patio,10077970,Alyssa,Brooklyn,Williamsburg,40.71462,-73.96263,Private room,57,1,3,2017-09-16,0.13,1,0 +6985434,*SKYTRAIN* Studio Loft Apartment - Great Space!,25237492,Juliana,Manhattan,Upper West Side,40.78201,-73.98379,Entire home/apt,120,30,9,2019-04-30,0.24,34,339 +6970372,*RAZZMATAZZ* Upper East Side 2 Bedroom,25237492,Juliana,Manhattan,Upper East Side,40.76112,-73.9619,Entire home/apt,150,30,12,2018-11-14,0.27,34,298 +27543086,Huge Studio in Brooklyn Luxury Building,5108882,Elena,Brooklyn,Fort Greene,40.68905,-73.97991,Entire home/apt,170,2,18,2019-06-16,1.64,1,0 +2659477,Stunning 1BR apt UES/Harlem,2294061,Kurtis,Manhattan,East Harlem,40.7913,-73.94265,Entire home/apt,140,3,2,2015-12-13,0.04,1,0 +1427084,Private Room Private Restroom tons Natural Light,5531489,Aurelio,Brooklyn,Bedford-Stuyvesant,40.68584,-73.9263,Private room,75,5,13,2019-05-22,0.56,1,3 +16309579,Private room in prime Cobble Hill neighborhood,9018292,Rémi,Brooklyn,Boerum Hill,40.68894,-73.99037,Private room,60,7,0,,,1,0 +28458448,The Come On Inn,3740621,Jonathan,Manhattan,Harlem,40.81465,-73.94265,Private room,150,1,40,2019-06-03,4.26,2,66 +29135797,Stylish bright and newly renovated,219558480,Lena,Manhattan,East Village,40.72876,-73.98655,Entire home/apt,187,7,4,2019-01-03,0.47,1,56 +5660972,Recently Renovated Boerum Hill Apt,4653182,Kayla,Brooklyn,Boerum Hill,40.68282,-73.98111999999999,Entire home/apt,170,1,0,,,1,0 +668691,Comfy room in beautiful apartment,3363720,Kate,Brooklyn,Bushwick,40.68888,-73.91911,Private room,45,5,69,2019-05-25,0.89,3,223 +34816747,Steps away from Columbia University/ Morningside P,206758177,Miguel,Manhattan,Harlem,40.80526,-73.95522,Entire home/apt,195,1,11,2019-06-25,7.5,3,33 +14028586,Perfect Luxury Studio in DUMBO,83977725,Mi,Brooklyn,Vinegar Hill,40.70125,-73.98581999999999,Entire home/apt,175,2,114,2019-06-22,3.36,1,154 +22225555,Sunny Williamsburg Style in Prime Location ❤️,9416996,Keren & Mikey,Brooklyn,Williamsburg,40.71672,-73.95819,Entire home/apt,220,2,95,2019-07-06,5.02,1,67 +4121110,Upper West Side studio with private terrace,1923075,Andrew,Manhattan,Upper West Side,40.79145,-73.97709,Entire home/apt,170,5,1,2014-10-19,0.02,1,0 +8401484,Private Rm in Cozy Williamsburg Apt,1278978,Nelly,Brooklyn,Williamsburg,40.71602,-73.94645,Private room,70,3,1,2017-10-10,0.05,1,0 +6761717,Brooklyn Heights Brownstone Duplex,1549503,Alison,Brooklyn,Brooklyn Heights,40.690090000000005,-73.99355,Entire home/apt,195,3,1,2015-06-28,0.02,1,0 +32961822,Sunny Upper East Side one bedroom apartment,248064547,Sara,Manhattan,Upper East Side,40.7776,-73.94634,Entire home/apt,165,1,12,2019-06-25,3.03,1,75 +4977756,1bd in fantastic BK location,25659180,Justin,Brooklyn,Crown Heights,40.6729,-73.96003,Entire home/apt,100,2,4,2016-04-29,0.08,1,0 +47362,"LARGE, COMFY 1BDR W/CHARACTER!!!",214148,Robert,Brooklyn,Bedford-Stuyvesant,40.68237,-73.9415,Entire home/apt,175,26,30,2012-09-03,0.29,1,364 +31419390,Private Room in Williamsburg . 2min walk to L,235344330,Yoko,Brooklyn,Williamsburg,40.71598,-73.9451,Private room,75,2,23,2019-07-04,4.86,1,113 +16423090,Shared Flatbush House in Brooklyn.,27977412,Daria,Brooklyn,East Flatbush,40.63899,-73.94886,Shared room,30,30,4,2018-04-03,0.15,4,365 +3908257,Big Room by Metro/Subway-15mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68137,-73.9565,Private room,75,2,99,2019-06-11,1.67,3,365 +13503251,Cozy room near la Guardia airport.,9055702,Sarah,Queens,Woodside,40.74428,-73.90898,Private room,65,1,18,2018-05-12,1.11,1,278 +4649627,"Spacious 1 BR, En Suite in Brownstone!",9492212,Emily And Joel,Brooklyn,Park Slope,40.6702,-73.97885,Private room,135,2,88,2018-12-31,1.6,4,0 +36273985,Luxury new private studio one stop to Manhattan,272815283,Chen,Queens,Long Island City,40.74893,-73.93755,Entire home/apt,180,1,0,,,1,60 +26598239,"Cozy, Clean Private Room in Clinton Hill BK",168815258,Maggie,Brooklyn,Clinton Hill,40.69322,-73.96655,Private room,55,3,2,2018-07-22,0.16,1,0 +6292828,Beautiful room in Williamsburg!,28980092,Meghan,Brooklyn,Williamsburg,40.71075,-73.95168000000001,Private room,110,1,0,,,1,0 +33709503,Sonder | Stock Exchange | Relaxed 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70602,-74.0123,Entire home/apt,244,2,2,2019-06-04,0.98,327,315 +31357323,Great find 2 bedrooms 20minutes from Times Square,25134822,Irena,Queens,Astoria,40.7702,-73.9261,Entire home/apt,130,1,9,2019-06-24,4.22,2,162 +15377806,Modern Room Uptown,8903368,Judith,Manhattan,Harlem,40.81668,-73.94407,Private room,100,1,3,2017-05-21,0.09,1,0 +16367983,Charming and Convenient East Village Apartment,17098527,Mei Ni,Manhattan,East Village,40.72638,-73.97752,Private room,200,4,2,2018-01-01,0.07,1,39 +22045554,Bright Private room with Ensuite Bathroom,10477204,Karen,Brooklyn,Clinton Hill,40.68827,-73.96583000000001,Private room,70,20,0,,,1,0 +23729632,"Sunny, clean & cozy room in Williamsburg",142248429,Mafer,Brooklyn,Williamsburg,40.71166,-73.95955,Private room,75,6,25,2019-07-03,1.79,1,84 +28441716,"XL Studio: great view, minutes from Times Square",2757243,Matthew,Manhattan,Hell's Kitchen,40.7557,-73.99337,Entire home/apt,230,2,6,2019-05-26,0.64,1,4 +7698593,Bedstuy Brownstone Duplex w/ HUGE Backyard,5974094,Cody,Brooklyn,Bedford-Stuyvesant,40.69351,-73.94011,Entire home/apt,200,2,3,2019-05-27,0.09,1,188 +19968961,Bedroom and own bathroom in Chelsea apartment,6393112,Katie,Manhattan,Chelsea,40.74286,-74.001,Private room,110,2,0,,,1,0 +23485307,Hotel-like Studio- loft Wall Street,170477315,Tanya,Manhattan,Financial District,40.70234,-74.01047,Entire home/apt,130,2,77,2019-06-30,4.7,1,85 +1421933,Room in Chelsea New York,7654246,Tamara,Manhattan,Chelsea,40.74036,-74.00138000000001,Private room,90,3,5,2016-07-25,0.11,1,0 +30392780,"Stately Midtown Studio w/ Doorman, Gym, near MSG by Blueground",107434423,Blueground,Manhattan,Midtown,40.75149,-73.9908,Entire home/apt,206,30,0,,,232,203 +20763877,Charming 1BR in Lively Bed-Stuy neighborhood,35645777,Yomi,Brooklyn,Bedford-Stuyvesant,40.68251,-73.94102,Entire home/apt,175,2,18,2019-01-01,0.81,1,0 +850435,Sunny Loft in Brooklyn next to Bedford L,4441020,Tara,Brooklyn,Williamsburg,40.71731,-73.95626999999999,Entire home/apt,55,30,0,,,1,159 +22324705,Spacious 1 Bedroom in the Heart of Union Square!,163210909,Mona,Manhattan,Gramercy,40.73509,-73.98637,Entire home/apt,249,3,8,2019-05-19,0.48,1,175 +2310542,Hamilton Heights/Harlem Private Bedroom with Roof,7317241,Tim,Manhattan,Harlem,40.82016,-73.94559,Private room,199,3,1,2019-05-16,0.56,1,0 +28054489,Creative open floor studio,42623736,Ashley,Brooklyn,Bedford-Stuyvesant,40.68476,-73.9548,Entire home/apt,130,3,2,2019-01-14,0.28,1,0 +8503280,1 Bedroom near Williamsburg,25913948,Natalie,Brooklyn,Bushwick,40.70145,-73.93798000000001,Private room,45,3,1,2015-10-29,0.02,1,0 +22224945,IL TUO APPARTAMENTO PERSONALE IN NEW YORK CITY!!,62068432,Rita,Manhattan,Harlem,40.81462,-73.95047,Entire home/apt,80,6,2,2019-03-31,0.1,1,31 +18999839,Spacious private room with private bathroom,76359133,FuKang,Queens,Fresh Meadows,40.73862,-73.79184000000001,Private room,55,1,113,2019-06-30,4.44,3,137 +26818747,Cozy Garden Oasis Brooklyn Private 1 Bedroom Apt,9857739,Kelvin,Brooklyn,Sheepshead Bay,40.588840000000005,-73.95136,Entire home/apt,70,2,59,2019-06-23,5.65,1,13 +9919728,Nice Queens townhome with parking!,50997424,Mark,Queens,Middle Village,40.71578,-73.87713000000001,Entire home/apt,250,7,5,2019-05-28,0.13,2,363 +35166514,One bedroom Apt with Balcony located close to JFK,157331617,Danny,Queens,Howard Beach,40.66299,-73.85491,Entire home/apt,150,3,1,2019-07-01,1.0,1,78 +6198343,Calm airy top floor W'burgh 1.5 bed,1245722,Jen,Brooklyn,Williamsburg,40.71776,-73.94538,Entire home/apt,200,3,30,2019-07-01,0.65,1,364 +21826403,Elmhurst Braodway Apartment,120047243,馨惠,Queens,Elmhurst,40.73688,-73.87644,Private room,55,15,0,,,1,0 +19504042,My Sweet Room,42283996,Vicky,Queens,Rego Park,40.73031,-73.86896,Entire home/apt,65,10,0,,,1,0 +7158417,Dov & Naomi's Beautiful Apt.,15878233,Dov,Brooklyn,Kensington,40.64456,-73.97723,Entire home/apt,115,4,3,2018-07-31,0.09,1,0 +16368328,Cozy Harlem Jewel,107158006,Liliana,Manhattan,Harlem,40.8228,-73.93956,Private room,60,2,119,2019-06-24,3.82,1,198 +36312667,"My Cozy Apartment! +My apartment has the best view!",272870209,Edna,Manhattan,East Village,40.72413,-73.97277,Private room,75,2,0,,,1,365 +34444744,Large Private room queen bed near kitchen,147762665,Jose,Bronx,Wakefield,40.88649,-73.85889,Private room,37,1,12,2019-06-24,6.21,3,315 +4791389,Penthouse on Park Ave,4923436,Simon,Manhattan,Gramercy,40.73877,-73.98706999999999,Entire home/apt,250,30,2,2015-03-22,0.04,1,0 +19969461,"Brooklyn Amazing Deal! Bright, Cozy Apartment",14833285,Anna,Brooklyn,Sheepshead Bay,40.5967,-73.96041,Entire home/apt,100,3,23,2018-11-11,0.99,1,2 +23143173,"Evergreen apartment, furnished with natural light",94263025,Derek,Brooklyn,Bushwick,40.68822,-73.9124,Private room,40,1,10,2018-07-04,0.58,2,0 +2557654,East Village Charm,13094498,Doug,Manhattan,East Village,40.72939,-73.98319000000001,Private room,75,2,124,2019-07-07,1.92,1,109 +34123769,private room in new luxury building,257656654,Viola,Brooklyn,Prospect-Lefferts Gardens,40.656290000000006,-73.95177,Private room,36,120,0,,,1,365 +35190355,Brooklyn Style 5 BR Apt in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68753,-73.93072,Entire home/apt,208,30,0,,,27,239 +27526504,"Beautiful, cozy, Penthouse Studio in Astoria/LIC",207573589,Cris,Queens,Astoria,40.77032,-73.92621,Entire home/apt,125,1,18,2019-01-01,1.74,1,0 +20932773,Well-Located Private Bedroom in Williamsburg,150482893,Devon,Brooklyn,Williamsburg,40.71469,-73.93970999999999,Private room,80,3,2,2017-12-07,0.09,1,0 +1186569,beautiful spacious room,6471461,Robert,Queens,Ridgewood,40.70823,-73.89925,Private room,55,1,224,2019-07-02,3.87,2,356 +21384296,"Spacious 2BR garden apt in BedStuy, 1 block to J",4563377,Rachel,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92933000000001,Entire home/apt,100,5,5,2019-06-20,0.27,1,0 +18356695,Spacious 2-Bedroom Apartment Near Central Park,5143286,Ewa,Manhattan,Morningside Heights,40.80897,-73.95651,Entire home/apt,120,14,5,2018-08-23,0.21,1,79 +6336480,Available in August only. One room with twin bed.,12459436,Zena,Queens,Flushing,40.736270000000005,-73.81305,Private room,49,15,0,,,2,27 +23252588,No place like Brooklyn. No place like Red Hook,2536555,Julian,Brooklyn,Red Hook,40.67914,-74.0063,Entire home/apt,125,3,1,2018-12-31,0.16,1,0 +7973484,Sunny Apt. on the UES in NYC,17770287,Nina,Manhattan,Upper East Side,40.76769,-73.95236,Entire home/apt,115,30,12,2019-02-08,0.27,14,239 +1948494,Amazing 550 Sq Ft Studio Apartment.,9950152,Dawn & Vernon,Brooklyn,East Flatbush,40.63803,-73.94894000000001,Entire home/apt,97,3,177,2019-07-07,2.64,1,272 +8103766,Charming duplex downtown manhattan,42788707,Filippo,Manhattan,Chinatown,40.71475,-73.99257,Entire home/apt,130,180,15,2016-10-24,0.35,1,365 +34941506,Place to be( 3bedroom apartment),263266237,Amoyiem,Bronx,Allerton,40.8688,-73.84725999999999,Private room,120,2,0,,,4,84 +33023192,Retro room in Astoria - 15m to Manhattan,248555214,Michelle,Queens,Astoria,40.76516,-73.92758,Private room,85,2,13,2019-06-28,3.79,2,13 +14533013,"Cozy, Clean ""Like Home"" Full 1 Bdrm",89873550,TiffanyJoy,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95188,Entire home/apt,125,3,38,2018-12-18,1.1,2,197 +19083269,"Cheap, Private Room in Bushwick! Close to Trains!",4464205,Braden,Brooklyn,Bushwick,40.69446,-73.92486,Private room,37,2,6,2017-12-16,0.25,2,0 +8518051,Cozy Living Environment,44850669,Taft,Bronx,Clason Point,40.81773,-73.86164000000001,Entire home/apt,100,2,58,2019-07-03,1.26,1,324 +1335036,Charming 2 Bedroom Little Italy Apt,4581902,Magi,Manhattan,Little Italy,40.71833,-73.99826,Entire home/apt,250,3,155,2019-06-22,2.18,1,159 +28548195,"Modern, clean, NEW apt 1 block from train!",179413160,Maria Fernanda,Brooklyn,Cypress Hills,40.67974,-73.88374,Private room,45,1,8,2019-07-05,0.85,1,57 +29686349,"Brooklyn Room, lots of sunlight",38299001,LaQuann,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93387,Private room,55,1,0,,,1,0 +30495769,"Luxury building, best location in williamsburg!!",17486626,Alessandro,Brooklyn,Williamsburg,40.7177,-73.96346,Private room,70,9,1,2019-01-31,0.19,2,15 +35938183,"Immaculate, Grand, Clean Apartment Near the Subway",270314733,H.,Brooklyn,Crown Heights,40.67268,-73.94895,Entire home/apt,190,2,0,,,1,128 +24607120,TWO BEDROOM UNICORN IN THE HEART OF WILLIAMSBURG,128917721,Usamah,Brooklyn,Greenpoint,40.7203,-73.94644,Entire home/apt,250,3,2,2018-12-14,0.22,1,177 +28514974,"Great room in hip, but quiet Williamsburg, BKLYN.",12715154,Leo,Brooklyn,Williamsburg,40.72032,-73.94561,Private room,130,7,2,2019-05-15,0.32,2,212 +13073569,"Duane Street, Upscale Tribeca Studio",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00679000000001,Entire home/apt,210,30,1,2019-04-30,0.43,87,329 +34993824,New Luxury 1 Bed in UWS Building with Gym #6128,116305897,Laura,Manhattan,Upper West Side,40.79058,-73.97435,Entire home/apt,170,30,0,,,9,353 +19049449,Bleecker street beauty,19419141,Carole,Brooklyn,Bushwick,40.69293,-73.9221,Private room,48,3,0,,,1,0 +15829202,"Single Bed room in townhouse, near subway",102482048,Susy,Brooklyn,Bushwick,40.68224,-73.90739,Private room,35,2,106,2019-06-24,3.26,4,349 +21713551,Wonderful Upper East Side Lux Close to Subway,17887542,Viktor,Manhattan,Upper East Side,40.76401,-73.95823,Entire home/apt,138,7,1,2017-12-11,0.05,1,0 +33427418,Cozy modern room in Bushwick,178676648,Tyler,Brooklyn,Bushwick,40.68355,-73.90701,Private room,150,1,1,2019-04-22,0.38,1,88 +28208177,法拉盛步行地铁站8分钟带独立卫生间套房,213049308,Cen,Queens,Flushing,40.75501,-73.83315,Private room,120,1,37,2019-06-10,3.85,3,0 +10765607,Great location • Cozy • Clean,243427,Mar,Brooklyn,Williamsburg,40.71327,-73.96438,Private room,65,3,9,2017-11-05,0.24,1,0 +35035291,Private Room İn Hell's Kitchen 2,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76487,-73.98912,Private room,120,1,1,2019-06-09,1.0,7,198 +20640353,Beautiful Bright Stay in Williamsburg,3363377,Eryka,Brooklyn,Williamsburg,40.70942,-73.94896999999999,Private room,105,2,48,2019-06-22,2.14,2,46 +6895056,Nice Single room sublet for April 1st onward!,10348305,Devin,Brooklyn,Flatbush,40.63967,-73.96424,Private room,50,27,3,2018-07-31,0.06,1,17 +26744053,Private Room,200933726,Momo,Bronx,Allerton,40.86659,-73.866,Private room,34,2,0,,,1,0 +3359510,Gorgeous Loft w/ 2 queen beds & full kitchen!,7503643,Vida,Brooklyn,Greenpoint,40.72428,-73.94348000000001,Entire home/apt,129,30,15,2019-06-30,0.27,52,157 +15287016,1 bedroom in sunny Nolita apartment,24385779,Lauren,Manhattan,Nolita,40.7215,-73.99395,Private room,85,2,5,2017-03-11,0.16,1,0 +31166982,cozy massive room for January,232959891,Niccolo,Brooklyn,Bushwick,40.69547,-73.91941,Private room,60,1,4,2019-01-20,0.63,1,220 +10307009,Great UES apt with outdoor space,12518470,Norman,Manhattan,Upper East Side,40.78162,-73.9475,Shared room,125,1,6,2019-05-19,0.15,1,365 +4512093,manhattan (UWS) townhouse,11760806,Raj,Manhattan,Upper West Side,40.79994,-73.97001,Private room,299,1,1,2019-05-23,0.64,1,88 +19428065,"Master Bedroom in a Beautiful, Spacious Home",53480097,Jillian,Brooklyn,Bushwick,40.68683,-73.90733,Private room,60,3,3,2018-10-07,0.23,2,0 +12335391,Sexy red room with the softest bed!,49746853,Ilya,Brooklyn,Bedford-Stuyvesant,40.68042,-73.91811,Private room,33,13,7,2018-07-24,0.2,1,297 +12913007,Nice Large Well-Lit Studio in Clinton Hill,4090856,Brit,Brooklyn,Clinton Hill,40.68425,-73.96455,Entire home/apt,100,3,2,2018-05-28,0.09,1,8 +33067252,3 person shared room at the heart of Brooklyn,248161322,Sergii,Brooklyn,Bushwick,40.70002,-73.94054,Shared room,35,30,1,2019-03-15,0.26,14,341 +1303515,Greenwich Village 1BR Fantastic Apt,430826,Dee,Manhattan,West Village,40.73384,-74.00461999999999,Entire home/apt,140,14,51,2018-01-31,0.7,1,298 +36168746,"I promise you ,you'll never want to leave!",272022688,Natanel,Brooklyn,Sheepshead Bay,40.58713,-73.95349,Private room,89,2,0,,,1,59 +294250,Beautiful New Garden Apartment ,45682,Irina,Manhattan,Upper West Side,40.77611,-73.97808,Entire home/apt,150,1,88,2019-06-07,0.99,1,0 +16552108,Cozy S. Williamsburg Landing Pad,795031,D M,Brooklyn,Williamsburg,40.70896,-73.95383000000001,Entire home/apt,136,4,4,2018-08-15,0.15,2,0 +3208188,3BR Carroll Gardens townhouse loft,16254543,Jennifer,Brooklyn,Carroll Gardens,40.67863,-73.99399,Entire home/apt,350,3,8,2018-08-18,0.14,1,0 +24629029,Cozy Astoria Room in 2br Apartment- Artists Space,2521642,Serdar,Queens,Ditmars Steinway,40.78442,-73.91339,Private room,55,1,14,2019-07-04,0.96,1,123 +12209944,"Comfy Brooklyn apt, near train and Manhattan",65667120,Brandee,Brooklyn,Bedford-Stuyvesant,40.68264,-73.94238,Entire home/apt,265,4,123,2019-06-30,3.25,1,285 +30533835,"Quiet, comfortable and clean bedroom on UWS",9930986,Julio,Manhattan,Upper West Side,40.80152,-73.96673,Private room,110,1,0,,,1,0 +10280549,"Room 4, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64396,-73.96328000000001,Private room,60,1,138,2019-06-24,3.36,2,122 +279969,Cozy Brownstone Inn I(studio),240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.68255,-73.91957,Entire home/apt,100,3,63,2019-06-18,0.72,2,5 +15399008,Spacious room in relaxing 2 BDR UWS apartment,46221302,Lana,Manhattan,Upper West Side,40.79858,-73.97301,Private room,95,6,4,2019-05-02,0.15,1,0 +19910074,Huge Space in Brooklyn's Most Beautiful Area,11878464,Christine,Brooklyn,Prospect Heights,40.67654,-73.97144,Private room,85,2,11,2018-01-01,0.48,1,0 +13092482,Lux Studio Apt in Midtown NYC near Central park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76227,-73.99807,Entire home/apt,199,30,1,2016-10-04,0.03,121,365 +15597600,Design Hideaway in a Classic Brooklyn Townhouse,1781401,Emily,Brooklyn,Bedford-Stuyvesant,40.68714,-73.93443,Entire home/apt,155,4,44,2019-06-15,1.71,1,98 +28046416,Private Bedroom with queen sized bed,193502084,Linda,Brooklyn,Borough Park,40.63989,-74.00321,Private room,45,1,7,2019-02-16,0.68,8,0 +21065293,(=CUTE ROOM IN HELL'S KITCHEN=),137191484,Maria,Manhattan,Hell's Kitchen,40.76583,-73.98669,Private room,86,1,158,2019-06-27,7.33,5,170 +10016503,Madison Avenue 3 Room Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74906,-73.98276,Entire home/apt,165,29,3,2017-03-01,0.09,31,134 +4874519,Garden Spot in Bushwick,6439895,Bradley,Brooklyn,Bushwick,40.70253,-73.91889,Private room,69,4,0,,,1,0 +17710717,"Light-filled, cozy 2 bedroom apartment",18481424,Tomas,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94483000000001,Entire home/apt,100,7,3,2018-10-21,0.11,1,0 +31877977,Stunning Private Bedroom in UWS 107,238321374,Eyal,Manhattan,Upper West Side,40.79881,-73.9596,Private room,60,30,0,,,32,329 +23118522,"Unique 1 bedroom apt. in Gowanus, Brooklyn",8959179,Kevin,Brooklyn,Gowanus,40.6786,-73.98705,Entire home/apt,104,4,10,2018-12-29,0.73,1,98 +28321,Large 1 BR in a 3 BR Brooklyn apt. next to Q Trn.,65091,Kay,Brooklyn,Prospect-Lefferts Gardens,40.65593,-73.96053,Private room,75,2,9,2018-10-05,0.08,1,324 +19958302,luxury for a discount,34447878,Elaine,Manhattan,Civic Center,40.71365,-74.0053,Entire home/apt,210,5,6,2018-09-22,0.26,1,0 +29517788,"Super Spacious, Renovated, Artsy Uptown Apartment",13102999,Jhila,Manhattan,Harlem,40.82827,-73.94256999999999,Entire home/apt,108,3,15,2019-06-15,1.99,1,0 +17074757,Ready!,22042865,Martha,Queens,Astoria,40.75678,-73.91644000000001,Private room,50,3,1,2019-06-27,1.0,1,341 +29209379,"Green Rm,4 bdrm House Medical & Professional ONLY",214611101,Myra,Brooklyn,Kensington,40.638000000000005,-73.97652,Private room,50,30,1,2018-12-01,0.14,4,130 +32870748,"Luxury building studio, swimmingpool, pet friendly",246865215,Mia,Brooklyn,Williamsburg,40.72136,-73.95532,Entire home/apt,160,2,1,2019-04-27,0.41,1,350 +27190713,Modern Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78306,-73.94524,Entire home/apt,150,30,0,,,8,364 +30312525,Private bedroom in the heart of Harlem,6002231,Henrietta,Manhattan,Harlem,40.81875,-73.93691,Private room,59,90,0,,,1,89 +27001229,Cozy quite room for 2,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69359,-73.93911,Private room,80,2,3,2018-10-02,0.26,4,82 +29359223,"Sunny, clean 2 bedroom",9806886,Tiffany,Brooklyn,Carroll Gardens,40.67742,-74.00146,Entire home/apt,200,7,1,2019-01-03,0.16,1,0 +6478214,Studio apartment in the heart of Chelsea,7898046,Zachariah,Manhattan,Chelsea,40.73992,-73.99888,Entire home/apt,199,2,71,2017-08-05,1.42,1,0 +30440488,Gorgeous Private Bedroom Madison 2L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93085,Private room,42,30,1,2019-01-26,0.18,27,311 +35222567,The Shunammite Room - 2 Kings 4:10,259776956,Gladwyn,Brooklyn,Canarsie,40.62903,-73.89761999999999,Private room,110,1,4,2019-06-29,4.0,5,365 +32638687,Rustic Williamsburg Loft,225087238,Roxanne And Stan,Brooklyn,Williamsburg,40.70881,-73.96688,Entire home/apt,235,5,13,2019-07-04,2.98,1,153 +21741118,"Nice View room Close to NYU Lutheran H/Subway N,R",105640471,Jason,Brooklyn,Sunset Park,40.64136,-74.01709,Private room,55,1,7,2019-05-12,0.4,8,140 +10276934,位于曼哈顿岛上125街Broadway性价比超高房间短租~,52756677,Yingxiang,Manhattan,Harlem,40.81667,-73.95695,Private room,35,3,0,,,1,0 +33094220,Bright and Quiet near Union Square in the Village,249069377,Natasha,Manhattan,Greenwich Village,40.73424,-73.99355,Private room,120,1,7,2019-06-12,1.96,1,13 +9757762,Cute Apartement in Williamsburg,3696938,Z,Brooklyn,Williamsburg,40.70935,-73.95206999999999,Entire home/apt,180,1,0,,,1,0 +16960374,Beautiful 1br in Manhattan!,30097523,Kevin,Manhattan,Harlem,40.821670000000005,-73.94988000000001,Entire home/apt,110,6,5,2018-07-23,0.17,1,0 +23876348,"Cozy Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67945,-73.90841999999999,Private room,40,2,20,2019-04-28,1.28,3,3 +25694039,"Spacious, NEW LUXURY 1 BDRM home in Manhattan",3970656,Melissa,Manhattan,Financial District,40.70819,-74.00662,Entire home/apt,200,3,37,2019-06-08,2.85,1,2 +19830557,Modern room in renovated Williamsburg apartment,28819052,Taylor,Brooklyn,Williamsburg,40.71379,-73.94207,Private room,80,2,95,2019-06-22,4.09,1,51 +31058735,"25 minutes from Manhattan, shared room",208367810,Dan,Brooklyn,Borough Park,40.63892,-73.9974,Shared room,35,2,1,2018-12-30,0.16,4,87 +9080286,Quiet room close to subway.,47353889,Marcelo,Brooklyn,Prospect Heights,40.679390000000005,-73.97126,Private room,75,4,40,2016-09-30,0.89,1,0 +12004175,Private Master Bedroom in Luxury Bu,13340829,Lin,Brooklyn,Crown Heights,40.67543,-73.96311999999999,Private room,60,5,1,2016-08-18,0.03,1,0 +35226357,Burnett comfy home away from home,120297125,Arlene,Queens,Rosedale,40.65101,-73.73721,Private room,60,1,0,,,1,180 +22176062,Brand New Bedroom Near D line&Maimonides Hospital,5853457,Stanley,Brooklyn,Borough Park,40.64061,-73.99631,Private room,56,1,12,2019-05-30,0.81,4,321 +19408027,Beautiful Room in Brooklyn with 2 Roommates,34585857,Saya,Brooklyn,Crown Heights,40.6719,-73.93475,Private room,35,7,5,2019-03-29,0.25,1,36 +32186945,Private Master Bedroom with Ensuite Bath HK,25043035,Lauren,Manhattan,Midtown,40.76638,-73.98311,Private room,100,1,4,2019-05-12,0.85,1,0 +21929935,Full Studio Apartment (MODULO 715),4514578,Hector,Queens,Elmhurst,40.74586,-73.88409,Entire home/apt,45,4,0,,,1,0 +722464,Large Private Room in Clinton Hill Brooklyn Loft,3597769,Enid,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95837,Private room,85,5,1,2019-01-07,0.16,2,189 +5477876,Stylish Greenpoint Gem,1506972,Vanessa & Christian,Brooklyn,Greenpoint,40.73406,-73.95551,Entire home/apt,135,3,17,2019-06-08,0.32,1,8 +3013158,Alcove Studio in Downtown Manhattan,15355526,Nattie,Manhattan,Chelsea,40.73893,-73.99464,Entire home/apt,350,2,12,2015-11-02,0.19,1,0 +846190,Modern condo close to Prospect park,3159197,Lewis,Brooklyn,Prospect-Lefferts Gardens,40.66251,-73.95374,Entire home/apt,140,2,11,2019-06-27,0.18,1,35 +29814549,"Comfy, Cozy Studio at the Grand Old Mansion",187908347,William,Brooklyn,Crown Heights,40.67265,-73.94728,Entire home/apt,81,4,19,2019-07-05,2.44,2,94 +31269983,Lux Condo Room Close to Manhattan. WiFi & Balcony!,137358866,Kazuya,Queens,Woodside,40.74181,-73.90279,Private room,61,30,0,,,103,123 +24632590,"Apt near ferry,verrazano brdg, RUMC,buses NYC wifi",32162495,Mostafa,Staten Island,Tompkinsville,40.6326,-74.09099,Entire home/apt,199,1,36,2019-06-23,2.51,3,171 +31087023,Shared Room 4 FEMALE Guests 30mins to Manhattan-3,172369331,Abby,Brooklyn,Sheepshead Bay,40.59726,-73.95951,Shared room,40,3,1,2019-03-16,0.26,10,281 +19272890,1 bedroom apt with private terrace on UWS.,134961952,Ilona,Manhattan,Upper West Side,40.7765,-73.97914,Entire home/apt,230,5,0,,,1,0 +36451362,Cozy Queen bed in Quiet Bedstuy!,154095549,Wa,Brooklyn,Bedford-Stuyvesant,40.69195,-73.94225,Private room,47,2,0,,,2,48 +35261660,"Crown Heights 3BR, 2 BATH (15 mins to Manhattan!)",265463203,Alesh,Brooklyn,Crown Heights,40.67038,-73.92962,Entire home/apt,245,2,1,2019-07-01,1.0,3,326 +16581779,"2BR ""Café Brooklyn"" w/private Courtyard in BedStuy",109306113,Chad,Brooklyn,Bedford-Stuyvesant,40.68488,-73.92706,Entire home/apt,149,1,39,2019-06-23,2.87,1,75 +10648971,Large Modern 1 BR on UpperWestSide,10489069,Alexandr,Manhattan,Upper West Side,40.79886,-73.96157,Entire home/apt,132,7,0,,,1,0 +13879965,Private Micro Room 2,59529529,Han,Manhattan,Hell's Kitchen,40.762890000000006,-73.99419,Private room,70,1,218,2019-07-02,5.98,6,184 +5903889,PRIVATE BEDROOM on Lower East Side,30616009,Daniel,Manhattan,Chinatown,40.71758,-73.99201,Private room,84,1,2,2017-06-25,0.08,1,2 +30045865,Upper East Side Studio by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.78918,-73.94834,Entire home/apt,110,30,1,2019-02-12,0.2,2,0 +27225719,❤️Private Suite for Friends Getaway Close to NYC,179745489,Sophie,Queens,Elmhurst,40.73088,-73.87488,Entire home/apt,125,2,47,2019-06-27,4.18,1,315 +19136267,Loft in Lower East side!,5348587,Amarsana,Manhattan,Lower East Side,40.71734,-73.99070999999999,Private room,75,3,1,2017-06-19,0.04,1,0 +30590921,Feels Like Home Near JFK and LGA,16608415,Smidty,Brooklyn,East New York,40.66745,-73.89217,Private room,25,1,25,2019-06-26,3.61,3,211 +36201685,"Cozy, serene sanctuary for one",26325723,Suzana,Manhattan,Upper East Side,40.77365,-73.94960999999999,Private room,80,1,0,,,1,56 +9434464,Sunny Studio Apt in Historic Harlem,1241420,Justin,Manhattan,Harlem,40.81051,-73.94723,Entire home/apt,130,4,94,2019-06-21,2.2,1,27 +10156574,Great loft for a couple or family,4023912,Guy,Manhattan,Financial District,40.70524,-74.01278,Entire home/apt,230,5,6,2018-06-21,0.15,1,208 +35448516,Modern designed room in Manhattan! near B/C train2,266726110,Sergii,Manhattan,Harlem,40.80494,-73.95588000000001,Private room,89,30,2,2019-06-23,2.0,7,361 +1797025,Charming Spacious 1 Bdrm Apt,9340104,Mike,Brooklyn,Crown Heights,40.67204,-73.95147,Entire home/apt,107,3,143,2019-06-17,2.07,1,23 +13765146,Private Room One Block North of Central Park,45543753,Jonathan,Manhattan,Harlem,40.80046,-73.95509,Private room,70,1,8,2016-08-01,0.22,1,0 +27282297,Spacious Private Bedroom in North Brooklyn! 2-3,204527108,Nina,Brooklyn,Williamsburg,40.71763,-73.95594,Private room,87,30,0,,,3,310 +30388617,"Gorgeous + Bright Midtown East 1BR, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Midtown,40.75861,-73.96359,Entire home/apt,241,30,0,,,232,149 +36439512,The Bushwick Backhouse Loft.,180336853,Dash,Brooklyn,Bushwick,40.7047,-73.9225,Private room,70,2,0,,,1,255 +10091829,Cozy Apartment Close to Everything!,42332704,Connie,Brooklyn,Crown Heights,40.67176,-73.95936999999999,Private room,60,1,0,,,1,0 +4639451,Comfortable Greenpoint Bedroom,24020898,Rebekah,Brooklyn,Greenpoint,40.724990000000005,-73.94481,Private room,55,6,0,,,1,0 +32788887,A cool bedroom in cool Brooklyn,481630,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68743,-73.94451,Private room,50,7,2,2019-06-30,1.33,2,4 +31386277,NEW Charming Private Floor - 15min to Manhattan!,136807581,April & Tom,Queens,Ditmars Steinway,40.77749,-73.91651999999999,Entire home/apt,99,2,20,2019-07-01,3.75,1,0 +16272419,Harlem Parkside - 1 cozy bedroom,106405713,Charley,Manhattan,Harlem,40.82098,-73.94214000000001,Private room,100,2,5,2019-04-24,0.55,1,135 +32100,"Modern Greenpoint, Brooklyn Apt",138579,Ali+Scott,Brooklyn,Greenpoint,40.73409,-73.95348,Entire home/apt,250,29,3,2017-07-30,0.03,1,34 +32363,Fully Furnished Basement Apartment,140025,Fredah,Queens,Flushing,40.74028,-73.83168,Private room,140,2,1,2011-09-19,0.01,1,1 +862890,Private bedroom w/ king size bed + pvt bathroom,4224309,Rachel...You Can Call Me Kaya :),Manhattan,Washington Heights,40.85081,-73.93118,Private room,150,2,3,2019-05-31,0.15,1,365 +30697483,Newly renovated with elevator room 2,125961131,David,Manhattan,Two Bridges,40.7126,-73.99376,Private room,55,1,53,2019-06-23,7.64,3,2 +30201810,Beautiful and Cozy Apartment in heart of NYC,226565802,Oksana,Queens,Rego Park,40.72664,-73.85884,Entire home/apt,250,2,1,2019-01-21,0.18,1,365 +3496438,NYC 1BD near Central Park & Shops,17604079,Meghan,Manhattan,Harlem,40.80724,-73.94739,Entire home/apt,170,1,1,2014-08-05,0.02,1,0 +8482165,Charming living room in Astoria,32833549,Siju,Queens,Astoria,40.76541,-73.92009,Shared room,52,1,1,2015-09-27,0.02,1,363 +13007925,Private Bedroom and Bath in Spacious Duplex,42835213,Zandelle,Brooklyn,East Flatbush,40.64645,-73.95047,Private room,85,4,42,2019-06-21,1.46,2,35 +31170814,"Tranquil, Cozy, Comfy Cottage.",125586920,Julie,Bronx,City Island,40.85746,-73.79056,Entire home/apt,175,2,14,2019-06-23,2.66,1,79 +12846229,Beautiful family apt in Astoria,8752988,Julia,Queens,Astoria,40.7613,-73.9153,Entire home/apt,125,1,0,,,1,0 +17480159,"Cozy studio, private entrance & 3 min. JFK",105315839,Erroyl,Queens,Jamaica,40.66989,-73.77454,Entire home/apt,75,1,75,2019-06-23,2.66,1,294 +9609825,Chelsea 1 BR - Brand New Apartment,27158859,Harrison,Manhattan,Chelsea,40.74761,-73.99761,Entire home/apt,199,4,15,2017-09-15,0.38,1,0 +28718812,One bed room apartment,214610799,Antonio,Manhattan,East Harlem,40.79695,-73.9356,Entire home/apt,275,2,2,2018-09-29,0.21,1,7 +19823964,Fm,26800649,Christopher,Bronx,Belmont,40.85961,-73.89031,Shared room,110,1,0,,,1,0 +31974197,"Cosy room in Brooklyn, 20 minutes to Manhattan",65631015,Sonia,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95586999999999,Private room,75,2,2,2019-03-30,0.42,1,33 +30232758,Clean & Spacious Duplex Bushwick Gem (w. Backyard),6004082,LeAnne And Keith,Brooklyn,Bushwick,40.69344,-73.92245,Entire home/apt,175,5,20,2019-07-02,2.84,1,12 +20254247,Comfy room close to everything!,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95116,Private room,60,30,2,2017-08-27,0.09,2,0 +36437317,private room in Astoria,122204600,Mohammed,Queens,Astoria,40.76431,-73.90992,Private room,49,15,0,,,1,341 +773497,Great spot in Brooklyn,4081688,Santiago,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94551,Shared room,200,1,0,,,1,365 +20460009,Luxury one bedroom apt with huge private TERRACE,9589826,Ira,Manhattan,Murray Hill,40.74409,-73.97166999999999,Entire home/apt,350,3,0,,,1,0 +232618,"Spacious, well furnished, high fl. beautiful views",763420,Selma,Manhattan,East Harlem,40.79442,-73.93433,Entire home/apt,145,1,102,2019-06-18,1.52,1,308 +2631224,Tasteful Room in Charming Two Bedroom Apartment,6243156,Yoni,Manhattan,Harlem,40.82424,-73.94664,Private room,70,2,228,2019-07-06,4.27,1,247 +17555918,Private bedroom right on the High Line/Chelsea,3650456,Louizos Alexandros,Manhattan,Chelsea,40.74899,-74.00403,Private room,90,7,12,2017-11-01,0.42,1,0 +9978722,"Private, comfy BR in East Village",5904463,Katherine,Manhattan,East Village,40.72504,-73.98241999999999,Private room,100,1,0,,,4,0 +3743048,*WARM*Beautiful*Room*ST. GEORGE steps to ferry!,19143974,Meghan,Staten Island,St. George,40.64408,-74.07834,Private room,58,3,93,2019-05-06,2.1,1,279 +20792967,Your Own Flat in Historic Bed-Stuy District,2648270,Jaweer,Brooklyn,Bedford-Stuyvesant,40.68462,-73.93724,Entire home/apt,74,4,1,2017-09-30,0.05,1,0 +28699232,"Home For Medical Professionals - ""The Gamma""",26377263,Stat,Brooklyn,East Flatbush,40.65279,-73.93817,Private room,57,30,0,,,43,283 +2141667,Riverview at Lovely Harlem/UWS Home,10929872,Carlyn,Manhattan,Harlem,40.81968,-73.95353,Private room,93,2,138,2019-06-05,2.23,1,7 +7726296,Beautiful 1 Bedroom Apartment,7375767,Daniel,Brooklyn,Bedford-Stuyvesant,40.68927,-73.95277,Entire home/apt,115,1,0,,,1,0 +34464380,Williamsburg 2 Bed Condo-Sleeps 7,260159741,Yoel,Brooklyn,Williamsburg,40.71083,-73.96736,Entire home/apt,259,1,9,2019-06-22,6.0,1,202 +22860844,Cozy Queen Room in Majestic Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.7348,-73.95701,Private room,58,3,11,2018-11-22,0.64,4,14 +27892770,Brazilian hospitality in Long Island City,31967085,Dalva,Queens,Long Island City,40.75428,-73.93323000000001,Private room,64,4,23,2019-06-27,2.21,1,8 +6048412,Partially Furnished 3BR - UES,11884842,David,Manhattan,Upper East Side,40.77727,-73.95089,Entire home/apt,150,2,0,,,1,0 +21838962,Quiet Park Slope Sanctuary,6874341,Charlotte,Brooklyn,Park Slope,40.67145,-73.97143,Entire home/apt,115,3,2,2018-06-18,0.11,1,0 +27407863,2BR Apartment in Manhattan - 8m from Times Square,206551997,Sean,Manhattan,Hell's Kitchen,40.75607,-73.9941,Entire home/apt,200,3,10,2019-07-05,4.48,1,206 +19525455,"LUXURIOUS, TOWNHOME WITH PRIVATE ROOF - 2500 SQ FT",7958923,Vikas,Brooklyn,Bedford-Stuyvesant,40.69158,-73.94329,Entire home/apt,275,1,6,2019-06-30,0.58,2,213 +14421383,Beautiful Private Sunny Room with Backyard,27001949,Zach,Brooklyn,Bushwick,40.69514,-73.91903,Private room,70,3,72,2019-06-24,2.04,1,155 +25355219,Spacious Apt minutes from Manhattan,59377513,Shannon,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.94781,Private room,85,5,3,2018-09-02,0.27,1,32 +30709202,"☆Charming bedroom, 5min to Empire State Building☆",164051353,Warren,Manhattan,Chelsea,40.74832,-73.98915,Private room,130,1,19,2019-06-28,2.88,3,81 +34904143,R2 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72582,-73.86572,Private room,85,1,3,2019-07-05,3.0,10,112 +34373985,Peaceful loft ‘2’,34643568,Dave,Manhattan,East Harlem,40.79072,-73.93972,Private room,85,3,4,2019-07-02,3.0,6,90 +31834190,Small studio in Queens,18957069,Natalia,Queens,Woodside,40.74734,-73.89735,Entire home/apt,95,2,0,,,1,17 +36934,Great location in Williamsburg,159370,Viviana,Brooklyn,Williamsburg,40.71363,-73.96398,Entire home/apt,125,6,27,2018-12-27,0.25,1,189 +10200715,"Flatbush Manor, Industrial-Deco 1BR Apt",569864,Jason,Brooklyn,Prospect Heights,40.68007,-73.97317,Entire home/apt,60,2,12,2017-11-26,0.28,1,0 +1782437,1800sf Urban Goddess Brooklyn Loft,7880914,Claudia,Brooklyn,Bedford-Stuyvesant,40.69169,-73.9603,Entire home/apt,175,2,85,2019-06-17,1.31,1,287 +36077664,"Cozy Shared BR in East Side +(Female Guests Only)",271401156,Abraham,Manhattan,Upper East Side,40.77324,-73.95969000000001,Shared room,69,1,0,,,1,164 +30590147,"Williamsburg private, comfy, bright room",18494627,Olivia,Brooklyn,Williamsburg,40.70929,-73.94719,Private room,40,58,1,2019-01-02,0.16,1,15 +18488833,Sunny Parlor Apt in Flatbush Townhouse (furnished),10285950,Christina,Brooklyn,Flatbush,40.64493,-73.95488,Entire home/apt,85,6,14,2019-03-24,0.53,3,339 +20649927,Spacious Modern King size living space & Bedroom,147668954,Nancy,Brooklyn,Fort Hamilton,40.61765,-74.03406,Private room,125,9,0,,,1,365 +442636,"Private,Affordable, 20 min to NYC!",1655939,Joris,Queens,Ridgewood,40.70054,-73.90255,Entire home/apt,77,3,289,2019-06-24,3.3,1,85 +1018529,Large 2 BDRM @ McCarren Park!!,5606448,Pete,Brooklyn,Greenpoint,40.72031,-73.9483,Entire home/apt,249,30,71,2019-05-31,0.94,1,273 +32399591,Cozy bedroom in the best location in New York,243297214,Coronado,Brooklyn,Williamsburg,40.710840000000005,-73.95875,Private room,60,4,3,2019-06-09,0.76,1,0 +30733035,Bright serene 2-bedroom in Harlem,29245582,Jennifer,Manhattan,Harlem,40.8114,-73.9431,Entire home/apt,150,5,16,2019-06-23,3.22,1,3 +30504780,NEW Brooklyn studio get away!,228898361,Lauren,Brooklyn,Williamsburg,40.71723,-73.94965,Entire home/apt,200,2,7,2019-01-23,1.01,1,0 +27965802,Cheap and Worth it!,154678310,Rafael,Queens,Elmhurst,40.74038,-73.87380999999999,Private room,30,1,24,2019-02-02,2.32,1,0 +3925426,Room in Gorgeous apartment,2224374,Younes,Brooklyn,Williamsburg,40.71293,-73.95321,Entire home/apt,270,7,0,,,1,0 +57740,Quiet & Clean Retreat in the City,275459,I,Manhattan,East Village,40.73012,-73.99053,Entire home/apt,239,3,7,2019-05-24,0.07,1,351 +33164622,Private large bedroom with skylight in Loft.,3502098,Cecilia,Brooklyn,Williamsburg,40.71646,-73.95996,Private room,75,2,10,2019-07-03,2.83,1,177 +35881328,Cozy room at heart of Astoria ...,45232769,Nadir,Queens,Astoria,40.7668,-73.91917,Private room,79,4,0,,,3,2 +21838658,Private Room in Spacious Chelsea Loft,5111838,John,Manhattan,Chelsea,40.74661,-73.99245,Private room,99,7,19,2019-05-10,1.02,1,11 +13391063,Minimalist bedroom with garden access,51765884,Caitlin,Brooklyn,Greenpoint,40.72523,-73.95218,Private room,65,5,0,,,1,0 +19007359,Massive Sun-Filled Loft in Prime Williamsburg,21657100,Jourdan,Brooklyn,Williamsburg,40.71706,-73.96423,Entire home/apt,185,2,36,2018-12-31,1.44,1,85 +16755891,"Hip, Vibrant, COLORFUL Downtown Manhattan 1 Bed",21126633,Evan,Manhattan,Chinatown,40.71489,-73.99459,Entire home/apt,200,2,45,2019-07-03,1.64,1,159 +21995927,Spacious Chic UES 1Br by Central Park,4683188,Emily,Manhattan,Upper East Side,40.77885,-73.95756,Entire home/apt,250,5,0,,,1,0 +4700082,Fort Greene Brooklyn 1 bedroom apt,21409261,Trey,Brooklyn,Fort Greene,40.69477,-73.97258000000001,Entire home/apt,119,4,19,2017-07-23,0.36,1,0 +14085389,Clean & Cozy room in Great Location,30656279,Jill,Manhattan,Hell's Kitchen,40.76738,-73.98743,Private room,61,30,3,2018-08-05,0.1,4,180 +35607932,LGBT welcome for Pride Greenwich Village,265901814,Evette,Manhattan,West Village,40.73613,-73.9987,Private room,125,1,0,,,2,75 +10207847,Design By Stark!Basket Ball!Washer& Dryer !5230,16098958,Jeremy & Laura,Manhattan,Financial District,40.70503,-74.00674000000001,Entire home/apt,165,30,0,,,96,329 +19162127,Big king bed + roof + Manhattan view Bushwick,22723650,Aaron,Brooklyn,Bushwick,40.70476,-73.92309,Entire home/apt,150,3,20,2019-06-03,0.8,1,5 +10526335,Awesome Loft in Brooklyn-- easy access to the city,13200818,Jay,Brooklyn,Bushwick,40.69913,-73.91814000000001,Private room,45,3,11,2018-04-16,0.31,1,0 +24282118,One Bed Room in Financial District,155935757,Amy,Manhattan,Financial District,40.70615,-74.00752,Entire home/apt,105,30,1,2018-12-29,0.16,1,233 +18024772,Very quiet apt. on tree-lined West Chelsea street,4857042,Matthew,Manhattan,Chelsea,40.74423,-74.00111,Entire home/apt,95,1,105,2019-07-01,3.87,1,98 +13770856,Comfortable Room w/ 1 Full Bed (1FL),65809485,Shirley,Queens,Flushing,40.74944,-73.82772,Private room,40,3,51,2019-05-09,1.45,12,96 +33405642,"干净卫生的环境房,欢迎订房",236355800,彼特,Queens,Forest Hills,40.72755,-73.85028,Private room,60,2,2,2019-04-27,0.77,1,0 +4549557,Central Harlem ,23588055,Genine,Manhattan,Harlem,40.81208,-73.94243,Private room,205,2,3,2018-07-10,0.05,1,364 +32306053,Modern renovated 1 BR in the heart of Manhattan,48339350,Kel,Manhattan,Upper East Side,40.76218,-73.96633,Entire home/apt,136,1,26,2019-06-29,5.91,1,47 +4204302,Prime W. Village location 1 bdrm,17550546,Genevieve,Manhattan,Greenwich Village,40.73293,-73.99781999999999,Entire home/apt,180,1250,2,2014-11-09,0.03,1,365 +11097962,"Home, Sweet, Harlem. Welcome!",24800102,Kevin,Manhattan,East Harlem,40.79733,-73.93955,Entire home/apt,110,1,221,2019-06-28,5.53,1,348 +21612043,Spacious Bedroom + Office in Bed-Stuy Brownstone,34773529,Tirzah,Brooklyn,Bedford-Stuyvesant,40.68207,-73.92208000000001,Private room,45,5,0,,,1,0 +10560986,Sublet Beautiful Room in Brooklyn!,45531690,Anjulika,Brooklyn,Greenpoint,40.72853,-73.95533,Private room,39,1,1,2016-01-15,0.02,1,0 +62430,BROWNSTONE SUNDRENCHED BEAUTY,197755,Sheila,Brooklyn,Bushwick,40.688,-73.9171,Entire home/apt,99,3,111,2019-06-22,2.13,1,68 +9187379,"The room . 25 min to time square, Midway LGA/JFK",1495355,John,Queens,Forest Hills,40.7232,-73.84425999999999,Private room,50,1,9,2019-04-21,0.42,2,0 +28159221,"Relaxation Station :-D +Brownstone",212689019,Ronald,Brooklyn,Bedford-Stuyvesant,40.68563,-73.92193,Private room,99,1,24,2019-07-01,2.36,2,179 +3939086,"Call this Home (for a spell, at least....)",881214,Mysia,Bronx,Mott Haven,40.80866,-73.92069000000001,Private room,45,5,14,2017-08-26,0.28,1,0 +16199608,Williamsburg. Non profit . Artist,312722,Kristian & Di,Brooklyn,Williamsburg,40.7087,-73.95427,Private room,70,20,3,2018-10-27,0.15,4,275 +20018667,Midwest Oasis in Kings County,23587319,Wes,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93578000000001,Entire home/apt,80,2,3,2017-11-10,0.14,1,0 +26450817,Sonder | Hanover Square | Sunny 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70376,-74.00833,Entire home/apt,187,29,2,2018-12-04,0.24,96,323 +7837816,"Bright, Cozy room in Brooklyn",19483885,Edgar,Brooklyn,Bedford-Stuyvesant,40.69695,-73.95951,Private room,60,1,184,2019-07-02,4.83,2,240 +20845735,Cozy Room in Bushwick.,87562955,Kennedy,Brooklyn,Bushwick,40.69813,-73.91991,Private room,35,7,1,2017-10-04,0.05,1,0 +34596809,SUMMER RENTAL 1BDR ON THE OCEAN IN BROOKLYN $3200,261012432,Elena,Brooklyn,Brighton Beach,40.57885,-73.95376,Entire home/apt,110,7,0,,,1,267 +24695406,Spacious Private Basement Apartment,98157128,Michael,Bronx,Wakefield,40.887640000000005,-73.8558,Entire home/apt,100,2,38,2019-06-19,2.66,1,107 +15778177,"NYMT03-1 Luxury! 1 bedroom apt,Cozy,Gym,Rooftop 3",39890192,Laura,Manhattan,Hell's Kitchen,40.76399,-73.98971,Entire home/apt,160,45,16,2019-05-10,0.52,12,345 +28739729,Brand New Renovated Shared Room In Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79983,-73.94116,Shared room,65,2,27,2019-05-25,2.8,9,11 +14988134,"Beautiful, high-ceiling Gramercy one-bedroom",141914,Mary Catherine,Manhattan,Gramercy,40.7363,-73.98338000000001,Entire home/apt,250,1,3,2018-12-20,0.15,1,312 +36308600,Cozy and Beautiful Park Slope One Bedroom,74773867,Kailey,Brooklyn,Park Slope,40.67455,-73.98477,Entire home/apt,150,1,1,2019-07-05,1.0,1,8 +33456259,Beautiful upper west side apt share,8112314,Mena,Manhattan,Upper West Side,40.78399,-73.9733,Private room,65,1,4,2019-06-09,2.03,2,364 +13435285,Times Square Manhattan One Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75892,-73.99146,Entire home/apt,150,30,2,2017-05-21,0.06,23,213 +4785941,Beautiful Greenwich Village Loft,1786943,Nikolaos,Manhattan,Greenwich Village,40.729040000000005,-74.00129,Entire home/apt,200,4,2,2016-04-13,0.04,1,0 +7841464,Williamsburg Crow's Nest,3064885,Michael,Brooklyn,Williamsburg,40.71086,-73.96088,Private room,50,1,2,2015-09-06,0.04,1,0 +59855,One bedroom Apt. in NYC,288031,Leslie,Manhattan,Midtown,40.7589,-73.96991,Entire home/apt,250,30,82,2016-01-05,0.78,1,0 +7323905,Stylish East Village One Bedroom Apartment,2303270,Zeina,Manhattan,East Village,40.72947,-73.9813,Entire home/apt,120,4,21,2019-06-24,1.23,1,9 +17501131,Artist Home 5 minute walk to Metro 30min from JFK,16356565,Shirley,Brooklyn,Flatbush,40.63356,-73.95073000000001,Shared room,30,3,27,2019-06-24,1.25,2,1 +35878775,Spread Love its the Brooklyn Way!,269867427,Grace,Brooklyn,Park Slope,40.67567,-73.97683,Entire home/apt,185,1,0,,,1,43 +4532435,Beautiful 2 Bedroom Apartment in Williamsburg,13888249,Omer,Brooklyn,Williamsburg,40.70798,-73.95374,Entire home/apt,165,3,15,2018-05-12,0.27,2,158 +6452019,Loft Studio Midtown Lux Doorman,17408676,Patrick,Manhattan,Midtown,40.74957,-73.98255,Entire home/apt,195,3,5,2018-05-19,0.1,1,0 +15216399,For all classical lover's,95765103,Glory,Brooklyn,Sheepshead Bay,40.60803,-73.96211,Private room,50,3,15,2019-03-31,0.45,2,211 +34340887,Clean and comfortable place,259261655,Kay,Queens,Astoria,40.77098,-73.91951999999999,Entire home/apt,150,1,7,2019-06-16,3.18,1,25 +9328355,Stylish and Comfy in Bed Stuy,2754405,Janice,Brooklyn,Bedford-Stuyvesant,40.69153,-73.94263000000001,Entire home/apt,72,30,11,2019-06-22,0.26,1,251 +8642982,Cozy BK RM for 2! 30min > Manhattan,13440686,Samuel,Brooklyn,Bedford-Stuyvesant,40.68233,-73.91001,Private room,45,1,87,2017-08-28,1.9,1,0 +13961015,A Lovely One Bedroom Apartment!,29224381,Aurora,Bronx,Norwood,40.86853,-73.88301,Entire home/apt,120,10,7,2019-01-07,0.2,1,327 +35005936,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74451,-73.9727,Entire home/apt,162,29,0,,,327,341 +34934160,Beautiful Private Master Bedroom in West Midtown,79461666,Stephen,Manhattan,Hell's Kitchen,40.7646,-73.99045,Private room,150,2,0,,,3,7 +34017119,Sonder | Stock Exchange | Dreamy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70735,-74.01221,Entire home/apt,215,2,1,2019-06-16,1.0,327,346 +6012187,1 BR apt East Village,25796636,Michael,Manhattan,East Village,40.72425,-73.98866,Entire home/apt,150,1,44,2017-07-30,0.91,1,0 +20583443,Chic & Sunlit w/ a lovely Private Terrace in LES,1488713,Kelsi,Manhattan,Lower East Side,40.71902,-73.99027,Entire home/apt,300,3,33,2019-06-10,1.44,1,58 +19013171,Central Manhattan Apt,56909,Peter,Manhattan,Kips Bay,40.74214,-73.98048,Private room,117,7,1,2018-12-22,0.15,1,332 +10647977,Cozy studio in WaHi,32298504,Cassy,Manhattan,Washington Heights,40.83723,-73.94249,Entire home/apt,70,3,34,2018-10-24,0.81,1,0 +581421,Pvblic Bath Artist Loft,2861848,Bekah,Brooklyn,Greenpoint,40.73252,-73.95496,Private room,150,2,28,2018-08-05,0.59,1,72 +7700741,Spacious Private Room near train station :-)!,3284564,Mahrokh,Manhattan,Harlem,40.81406,-73.95281999999999,Private room,69,2,1,2015-09-22,0.02,1,0 +34153647,"Beautiful private Master Bedroom in +Bushwick!",2008510,Ben,Brooklyn,Bushwick,40.70395,-73.92585,Private room,65,4,3,2019-05-25,1.43,1,75 +7863289,1 XLrg BR w backyard - Heart of city next to PENN,9367710,Prem,Manhattan,Hell's Kitchen,40.75543,-73.99662,Private room,140,1,0,,,1,0 +9685865,Pvt Room W/Pvt Bathroom; NO KITCHEN!,50031308,Raj,Brooklyn,Midwood,40.63009,-73.96670999999999,Private room,55,4,47,2019-07-03,1.09,1,304 +30733692,Available Now,230028797,Wael,Queens,Astoria,40.76808,-73.93359,Shared room,100,1,0,,,1,89 +19111261,Home Oasis Home,133534397,David,Bronx,Longwood,40.8229,-73.90295,Entire home/apt,100,3,30,2018-02-26,1.18,1,0 +9510158,Luxury Stay in my 2brm humble abode,21366569,Quentin,Manhattan,Hell's Kitchen,40.7638,-73.99298,Entire home/apt,220,5,49,2019-05-31,1.15,2,251 +21716449,Urban Hang Suite - Entire 1BR w/ Terrace & Doorman,1249685,Evan,Manhattan,Harlem,40.81095,-73.93942,Entire home/apt,101,2,21,2019-06-23,1.09,1,0 +676295,(B) BARGAIN SPACE,27848,Jullett,Queens,Jamaica,40.67166,-73.76566,Private room,58,2,56,2019-07-01,0.67,2,365 +29628380,Modern Studio Apartment,155027850,Dilek,Brooklyn,Bergen Beach,40.61954,-73.91133,Entire home/apt,85,5,17,2019-07-01,2.24,1,305 +6185599,Nice and Comfortable Private Room,31241183,Lilian,Manhattan,Washington Heights,40.83776,-73.94086999999999,Private room,65,2,43,2019-03-31,0.85,2,279 +5847793,Large private room on quiet street,30360956,Kimberly,Queens,Ridgewood,40.70573,-73.89873,Private room,100,180,0,,,1,266 +27707196,Harlem Gem,12672916,Erica,Manhattan,East Harlem,40.80147,-73.94431999999999,Entire home/apt,275,3,2,2018-12-10,0.19,1,0 +32313314,Excellent apartment/ awesome location,33568073,Jordan,Brooklyn,South Slope,40.66736,-73.98508000000001,Entire home/apt,150,5,0,,,1,8 +35490736,Brownstone BK heaven,2954749,Anna,Brooklyn,Fort Greene,40.69216,-73.97455,Private room,100,30,0,,,1,64 +36280646,"Cable and wfi, L/G included.",272872092,Chris,Queens,Forest Hills,40.73657,-73.85088,Entire home/apt,16,9,1,2019-07-07,1.0,1,322 +16337590,Artsy Apt in Bushwick!,9210000,Tracy,Brooklyn,Bushwick,40.68376,-73.91121,Private room,50,2,5,2017-05-16,0.16,1,206 +32818383,Cozy clean quiet room with lock and key #1,146132198,Ronald And Cookie,Bronx,Wakefield,40.89393,-73.8581,Private room,50,2,14,2019-07-01,3.59,2,132 +16226219,"Williamsburg, Ground Flr Apt with Private Backyard",59101644,Anthony,Brooklyn,Williamsburg,40.71615,-73.94797,Entire home/apt,135,2,29,2019-06-07,0.93,1,82 +9393332,Little house on 12th Street,46467513,Patricia,Brooklyn,Gowanus,40.67017,-73.99029,Private room,85,1,0,,,1,0 +17475711,Cherry Hill House - Blue Room,2464187,Jessica,Staten Island,St. George,40.63703,-74.08423,Private room,50,1,12,2017-08-18,0.42,2,0 +32503539,Modern Luxury Private Rm. W Rooftop Bushwick,244231812,Joshua,Brooklyn,Bushwick,40.70084,-73.93033,Private room,80,1,0,,,1,341 +29039497,Apartment by Central Park,32987584,Maria,Manhattan,Upper West Side,40.79574,-73.96191999999999,Private room,70,6,22,2019-05-31,2.42,1,0 +8028767,"Clean, Comfy Bright Small Bedroom",20490026,Josie,Queens,Sunnyside,40.74109,-73.91577,Private room,55,90,15,2017-04-19,0.32,1,365 +29310612,Room for rent! 3 bed / 2 bath. G train,220806520,Ignacio,Brooklyn,Bedford-Stuyvesant,40.69279,-73.94654,Private room,50,10,0,,,1,359 +33034744,Cozy and shared apt in hells&kitchen,248068752,Gúney,Manhattan,Hell's Kitchen,40.76441,-73.98838,Shared room,75,1,6,2019-06-20,1.7,5,361 +2773754,Lovely 1-bedroom on Prospect Park,3883648,Jenn,Brooklyn,Windsor Terrace,40.66044,-73.97977,Entire home/apt,97,30,5,2019-06-15,0.12,1,282 +22043701,Cozy loft in Bushwick,77145207,Nicole,Brooklyn,Bushwick,40.69911,-73.92843,Private room,65,1,0,,,1,0 +35943320,Lovely 2 bed 2 bath home - Upper East Side,270358676,Michael,Manhattan,Upper East Side,40.7789,-73.95554,Entire home/apt,199,4,1,2019-07-02,1.0,1,314 +19179372,"Spacious APT in Brooklyn, 12 Min to Manhattan",126897352,Jason & Mary,Brooklyn,Bushwick,40.70376,-73.92104,Entire home/apt,170,18,22,2019-05-08,0.9,2,249 +2847652,Cool and comfortable room for rest and relaxation,3056690,Gilberto,Manhattan,Washington Heights,40.836870000000005,-73.94324,Private room,45,4,120,2019-06-24,1.92,1,53 +3987599,"Great 3 Bdrm- Internships, Students",20670246,Jaxon,Brooklyn,Bushwick,40.6876,-73.9167,Entire home/apt,93,30,23,2018-06-24,0.4,1,226 +35970385,Williamsburg Domino Park Prime Location 2 bedroom,11612418,Yulia,Brooklyn,Williamsburg,40.71812,-73.96404,Entire home/apt,285,7,0,,,1,6 +29453598,"Artistic Studio Apt, Private Entrance",221851804,Tohar,Brooklyn,Crown Heights,40.66935,-73.94133000000001,Entire home/apt,105,2,17,2019-06-16,2.01,1,245 +34931431,Cozy Room in Gorgeous Home in Bronx Little Italy,153376583,Joseph,Bronx,Belmont,40.85413,-73.88387,Private room,55,1,0,,,1,236 +23876337,Sonder | 116 John | Warm 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70831,-74.00619,Entire home/apt,182,29,2,2019-01-01,0.21,96,259 +11143891,Clean Private Bedroom in Bushwick,27087652,Louise,Brooklyn,Bushwick,40.69995,-73.92612,Private room,50,1,1,2016-04-14,0.03,1,0 +19801310,Bedroom with Manhattan view (females only),139638096,Xinyan,Manhattan,Roosevelt Island,40.76412,-73.94800000000001,Private room,60,1,0,,,1,0 +19790344,Spacious 1BR on the border of West Village/Chelsea,24861274,Madison,Manhattan,Chelsea,40.73881,-73.99741,Entire home/apt,200,2,24,2019-07-01,1.14,1,20 +6423521,Private Room w/ access to Terrace,33513998,Mackenzie,Manhattan,Upper West Side,40.77883,-73.97494,Private room,160,1,7,2016-05-21,0.14,1,0 +22207975,"10 min prospect park , restaurant , s. activities",162278789,Jean,Brooklyn,Flatbush,40.65224,-73.95724,Private room,65,2,23,2019-05-13,3.15,1,0 +32165536,1 Bedroom - Fully Furnished - Williamsburg Loft,1570799,Adam,Brooklyn,Williamsburg,40.70771,-73.94627,Private room,100,10,2,2019-06-19,0.9,1,3 +21026558,One private room in a brand new 2BR Penthouse!,15569216,Andrey,Manhattan,Upper West Side,40.78628,-73.97482,Private room,250,2,3,2019-05-05,0.2,1,94 +3404472,Charming Boutique Room in Bushwick,17169449,Kip,Brooklyn,Bushwick,40.69502,-73.90645,Private room,55,3,225,2019-06-30,3.7,1,15 +13980828,Cozy sunlit 2bed w PRIVATE ROOFTOP in Brooklyn,11708912,Christine,Brooklyn,Bedford-Stuyvesant,40.68679,-73.957,Entire home/apt,139,1,2,2016-08-27,0.06,1,0 +6326582,"Sunny, Quiet, Open Space Uptown",32924087,Faiven,Manhattan,Washington Heights,40.8327,-73.94028,Shared room,63,1,2,2015-08-17,0.04,2,0 +3808093,Amazing 1BR condo with water views,19569660,Brian,Manhattan,Battery Park City,40.71031,-74.01557,Entire home/apt,325,30,9,2015-06-17,0.16,1,0 +15782300,Dream Room in Modern Apartment,102080453,Gabriela,Brooklyn,Bedford-Stuyvesant,40.694,-73.94675,Private room,54,1,166,2019-06-22,5.09,2,0 +5066813,Reduced$ EastVillage Entire 1BD APT,1445871,Gregory,Manhattan,East Village,40.73096,-73.98376,Entire home/apt,139,1,62,2019-06-30,1.15,1,240 +9862831,Pleasant studio Chelsea (Manhattan),50761842,Michael,Manhattan,Chelsea,40.74443,-74.00259,Entire home/apt,80,5,0,,,1,0 +26238688,Super Cozy Studio Apartment,6141162,Myrto,Queens,Woodside,40.742,-73.89505,Entire home/apt,60,14,3,2019-01-07,0.3,1,4 +22342076,Modern style brand new building in Brooklyn!!,75578529,Saki,Brooklyn,Flatbush,40.649,-73.95248000000001,Private room,49,2,0,,,1,0 +28954146,NEW- Spacious & Bright Brooklyn 1 Bed,218219395,Gigi,Brooklyn,Bushwick,40.70081,-73.91805,Entire home/apt,160,2,20,2019-06-03,2.28,1,364 +19274358,"Luxury Condo-gym,pool,sundeck,sauna in bldg",15897027,Christina,Manhattan,Murray Hill,40.75075,-73.9752,Entire home/apt,278,2,8,2018-04-22,0.32,1,0 +13107627,Private Bedroom w/ Private Bath/Mini Fridge,72542338,Mychelle,Brooklyn,Manhattan Beach,40.58078,-73.95356,Private room,125,2,21,2019-06-12,0.56,1,311 +30537851,Upper West Side 3-bedroom,81009456,Carolina,Manhattan,Upper West Side,40.80368,-73.96661999999999,Entire home/apt,133,1,2,2018-12-29,0.28,1,0 +6662112,Charming Manhattan 2 Bedroom,29212339,Linda,Manhattan,Harlem,40.79982,-73.95405,Entire home/apt,140,1,52,2019-05-28,1.05,1,222 +19495598,Tasteful NOHO 1 bedroom,49924298,Krystin,Manhattan,NoHo,40.72805,-73.99146,Entire home/apt,139,3,1,2017-08-01,0.04,1,0 +4866426,Private Room in Prime Brooklyn Spot,2346300,Donna And Joaquin,Brooklyn,Boerum Hill,40.68983,-73.99114,Private room,80,1,168,2019-06-30,3.11,1,272 +13955160,Eclectic & Cozy Private Room in Prospect Hts!!!,78343124,Sherice,Brooklyn,Crown Heights,40.68035,-73.96239,Private room,55,2,1,2016-07-24,0.03,1,0 +22423659,PRIVATE ROOM CLOSE TO MANHATTAN,44213272,Miss. G.,Queens,Astoria,40.76903,-73.91895,Private room,60,1,26,2018-12-31,1.41,5,173 +17843998,"Large & Sunny, a Lovely 2-Bed Apt in East Village",23089531,Caitlin,Manhattan,East Village,40.72571,-73.98789000000001,Entire home/apt,250,2,8,2019-06-02,0.32,3,264 +32463145,BETTER SIDE OF BED-STUY,243875619,David,Brooklyn,Bedford-Stuyvesant,40.68834,-73.9444,Private room,48,1,22,2019-07-07,5.37,2,257 +12962482,Park front room in the heart of Bushwick L train,21262993,Nicole,Brooklyn,Bushwick,40.70267,-73.92383000000001,Private room,45,1,2,2016-05-22,0.05,1,0 +17777654,Bright Comfy Quiet Room Just 6 Mins from JFK!,121391142,Deloris,Queens,Springfield Gardens,40.666,-73.76333000000001,Private room,65,1,325,2019-06-12,11.72,2,0 +16302595,Luxury 2BD in heart of Williamsburg,76212913,Brian,Brooklyn,Williamsburg,40.71049,-73.9624,Entire home/apt,350,3,17,2019-01-05,0.55,1,129 +14202979,"Charming, Spacious 2-Bedroom on UWS",86182721,Jennifer,Manhattan,Upper West Side,40.78004,-73.98314,Entire home/apt,210,2,11,2018-10-07,0.32,1,242 +17934924,Modern spacious apt in Park Slope,2587680,Susan,Brooklyn,Park Slope,40.67156,-73.98366,Entire home/apt,100,4,7,2019-06-16,0.46,1,37 +20440249,Sunset Park Brownstone Apartment with Backyard,31031279,Chelsea,Brooklyn,Sunset Park,40.6494,-74.00967,Entire home/apt,72,3,1,2017-09-01,0.04,1,21 +21711690,Cozy room in Hamilton Hights R1,158054102,Beverly,Manhattan,Harlem,40.83139,-73.94672,Private room,47,2,68,2019-07-06,3.38,3,49 +1932491,Best View/Luxury Building/Time Squ.,10003254,Mac,Manhattan,Hell's Kitchen,40.75887,-73.99475,Private room,105,4,10,2016-06-26,0.2,1,0 +35158573,Modern peaceful room in lively East Williamsburg,59188298,John,Brooklyn,Williamsburg,40.71118,-73.94561,Private room,75,2,0,,,1,144 +24833043,Emerald's View,101216314,Charlie,Manhattan,Harlem,40.80848,-73.94270999999999,Private room,65,1,28,2019-02-22,2.0,1,163 +20153406,1 bedroom by Empire State Building/Penn Station,56784103,Lisa,Manhattan,Kips Bay,40.74482,-73.97827,Private room,69,15,25,2019-05-18,1.1,1,29 +6851700,Private room in quintessential BK!,35902297,Meg,Brooklyn,Carroll Gardens,40.67416,-73.99955,Private room,40,1,0,,,1,0 +19588669,30+ Day Stay -Cute Small House by a Beautiful Deck,137522531,Ali,Queens,Flushing,40.75745,-73.80823000000001,Entire home/apt,138,6,20,2019-05-13,0.89,7,322 +30817424,Cozy Astoria Getaway!,230528448,Katie,Queens,Ditmars Steinway,40.77651,-73.91281,Private room,40,1,3,2019-02-02,0.48,1,0 +8210423,Chelsea Charm: shared apartment,19477617,Essam,Manhattan,Chelsea,40.74513,-74.00076,Private room,95,3,100,2019-06-26,2.16,1,80 +18721845,Home home sweet home,49360262,Leah,Queens,Woodside,40.74204,-73.90639,Private room,55,2,3,2017-05-28,0.12,1,0 +25889683,Riverside Apartment Room,28996758,俞,Manhattan,Upper West Side,40.79811,-73.97185999999999,Private room,72,1,5,2018-07-08,0.38,1,0 +20406627,Clean and cozy room!!!! Close to Everything!!!!,108448613,Isadora,Queens,Jackson Heights,40.75001,-73.87358,Private room,80,2,9,2019-01-02,0.39,1,0 +31075624,Room + movie theater/gym/roof - 1 block to subway!,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69162,-73.95435,Private room,80,2,9,2019-07-01,1.48,2,0 +21172762,Spacious room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75684,-73.99465,Private room,114,1,133,2019-07-01,6.23,2,67 +36243744,"Single bed step to Citi Field, LGA, JFK,Manhattan",217463199,Marvy,Queens,Flushing,40.74344,-73.82642,Private room,45,3,0,,,4,365 +33903781,Sunny and spacious home in Greenpoint,114589786,Pamela,Brooklyn,Greenpoint,40.72215,-73.94317,Private room,75,5,2,2019-06-28,1.2,1,0 +30903481,"Private room in Safe & Quite Greenpoint, Brooklyn",33839663,Mike,Brooklyn,Greenpoint,40.72574,-73.93785,Private room,60,5,5,2019-05-21,1.16,2,133 +29854034,New York Luxury condo with Queens view,32423541,Wei,Queens,Long Island City,40.74635,-73.94035,Entire home/apt,120,2,2,2019-06-30,0.32,1,4 +6291454,Spacious & Sunny Williamsburg Apt,20565470,Branden,Brooklyn,Williamsburg,40.71859,-73.95598000000001,Entire home/apt,140,3,2,2015-06-18,0.04,1,0 +25518930,Luxury 1 Bedroom in Williamsburg with a View!,31410956,Simon,Brooklyn,Williamsburg,40.71837,-73.94336,Entire home/apt,80,2,9,2018-09-18,0.68,1,0 +9490080,"Cozy, Artsy Apartment in Upper NYC",49186493,Danni,Manhattan,Washington Heights,40.84369,-73.93828,Entire home/apt,95,4,0,,,1,0 +12698900,Room in the HEART of Williamsburg,8314626,Janine,Brooklyn,Williamsburg,40.71694,-73.95628,Private room,89,1,148,2019-06-22,3.81,1,303 +20919726,Cozy room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65027,-74.01101,Private room,79,1,35,2019-06-10,1.6,2,59 +34057129,Large one of a kind designer loft in Williamsburg!,22166460,Jarrod,Brooklyn,Williamsburg,40.71902,-73.96414,Entire home/apt,170,4,4,2019-07-01,2.55,1,188 +16613506,Upscale King Bedroom Great Neighborhood in NYC,80601038,Shelley,Queens,Forest Hills,40.72645,-73.84079,Private room,100,1,34,2019-06-23,1.38,2,87 +464231,Large Room w/ Private Entrance,1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68905,-73.9541,Private room,65,7,2,2012-05-29,0.02,3,0 +22852022,Sunny Green Apt (L&M trains) Bklyn/Queens border,26808662,Lauren,Queens,Ridgewood,40.698640000000005,-73.90746,Private room,44,1,4,2018-12-09,0.34,1,0 +32643370,Central Bushwick Private Bedroom,10113653,Jessica,Brooklyn,Bushwick,40.695040000000006,-73.9264,Private room,45,2,5,2019-06-10,1.55,1,9 +21210250,"Large Studio Apartment, 15-20mins from downtown",79753770,Katrina,Manhattan,Washington Heights,40.83638,-73.94294000000001,Entire home/apt,125,30,3,2018-05-31,0.15,2,323 +6813041,*Musician's Apartment* in Brooklyn,1550419,Gordon,Brooklyn,Fort Greene,40.6892,-73.96976,Private room,50,1,0,,,1,0 +17109623,Sunny Renovated Private Room in the East Village,6387274,Concetta,Manhattan,East Village,40.72415,-73.97451,Private room,125,1,95,2019-06-21,3.28,1,86 +23431200,Spacious studio in LIC,4066645,Gonzalo,Queens,Long Island City,40.74711,-73.93916999999999,Entire home/apt,90,4,0,,,1,0 +13526638,West Chelsea 1 bedroom 2 bathroom outdoor space.,76182346,Alison,Manhattan,Chelsea,40.74584,-74.00279,Entire home/apt,225,14,0,,,1,0 +385657,Beautiful Loft/10 min to Manhattan!,1930204,Sophia,Brooklyn,Williamsburg,40.704,-73.93285,Private room,70,5,2,2015-05-15,0.02,1,0 +1164111,COMFORTABLE NYC RETREAT & Breakfast,6375533,LaNola,Manhattan,East Harlem,40.79025,-73.9488,Private room,89,1,273,2019-06-23,3.66,2,47 +21946665,Great One Bedroom Apartment - 20 mins from NYC,55184486,Amado,Brooklyn,Bushwick,40.68885,-73.91353000000001,Entire home/apt,149,1,74,2019-07-03,5.35,2,115 +16394700,"Williamsburg, Private Bedroom, 2 blocks from L",71499658,Omar,Brooklyn,Williamsburg,40.71518,-73.94151,Private room,50,3,0,,,1,0 +29482859,San Carlos Hotel Deluxe Rm 2 Queen bds (B)-up to 4,173685298,Janet,Manhattan,Midtown,40.75611,-73.97209000000001,Private room,329,1,1,2019-04-21,0.38,11,178 +2897714,Amazing and Large Modern Studio,7853680,Nesrine,Manhattan,Murray Hill,40.74923,-73.97849000000001,Entire home/apt,250,5,2,2015-04-22,0.03,1,0 +31103138,Best price-City College-1 train 20 min. Times Sq.,231830871,Sait,Manhattan,Harlem,40.81818,-73.95506,Shared room,50,1,27,2019-06-08,5.51,1,98 +18502246,Private Room in Sunny Beautiful Kosher Apartment,106272021,Esther,Brooklyn,East Flatbush,40.66182,-73.93748000000001,Private room,50,2,21,2019-05-19,0.83,3,31 +15625556,Private Room for 2 in Midtown West ☆,100721907,H,Manhattan,Chelsea,40.74929,-73.99658000000001,Private room,78,3,87,2019-06-23,2.68,1,44 +13459473,Spacious room in Midtown East Manhattan,956383,Andrew,Manhattan,Midtown,40.75896,-73.96439000000001,Private room,105,7,0,,,1,0 +32506530,VERY LARGE NEW STUDIO+LARGE SLEEPING LOFT+DOORMAN,243614369,Ady,Manhattan,Midtown,40.74757,-73.98564,Entire home/apt,145,3,7,2019-07-05,2.88,1,36 +29094342,Near JFK air train nice spot,219262205,Tony,Queens,Jamaica,40.70094,-73.81446,Private room,60,1,37,2019-03-09,4.17,1,0 +1128681,Sunny Room in Lower East Side Apt!,302772,Cheryl,Manhattan,Lower East Side,40.71446,-73.98833,Private room,115,3,29,2019-06-29,0.48,2,339 +19642392,"Private room in the heart of Gramercy, NY.",102072773,Linett,Manhattan,Kips Bay,40.74136,-73.98146,Private room,55,1,8,2017-08-10,0.33,1,0 +22986248,Sunny Spacious Two Bedroom - Park Slope,170457264,Yaroslav,Brooklyn,Park Slope,40.67031,-73.98603,Entire home/apt,200,2,6,2019-02-18,0.36,1,0 +21044322,"Windsor Terrace spacious, lovely 1 Bedroom",18290840,Andrea,Brooklyn,Windsor Terrace,40.64816,-73.97279,Entire home/apt,120,15,3,2019-04-09,0.16,1,0 +35260885,Modern Apt with Beautiful Views in Manhattan,264742656,Ignacio,Manhattan,Financial District,40.70912,-74.00671,Entire home/apt,249,3,4,2019-07-03,4.0,1,86 +21596214,Broadway Studio,7138636,Page,Manhattan,Upper West Side,40.78544,-73.97869,Entire home/apt,116,3,15,2019-05-13,0.77,1,0 +9705782,Spacious Brooklyn Brownstone 3BR+,8144242,Kerry,Brooklyn,Bedford-Stuyvesant,40.68382,-73.95566,Entire home/apt,300,2,24,2017-07-04,0.56,1,0 +28802019,Modern Manhattan Brownstone -1 Block to Subway,217221109,Rich,Manhattan,Harlem,40.80839,-73.94375,Entire home/apt,200,1,40,2019-07-02,4.88,1,274 +747419,"Lovely, Sunny 1-Bedroom Apt with Kitcat",160565,Corina,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95604,Entire home/apt,90,1,3,2015-07-06,0.06,1,0 +29043928,Brooklyn Sanctuary,218883687,Parrish,Brooklyn,East Flatbush,40.63931,-73.94451,Private room,125,1,7,2019-01-01,0.76,2,364 +30442870,Furnished Bedroom in Brooklyn Madison 2R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93069,Private room,42,30,1,2019-04-08,0.33,27,342 +12807447,BrownBrick in Park Slope Brownstone,42413378,Hilal & Maryam,Brooklyn,South Slope,40.66548,-73.98196,Entire home/apt,135,3,148,2019-06-21,3.84,2,91 +15325255,Wyndham Studio Condo with Kitchen SPECIAL TODAY!,96098402,Wynpoints,Manhattan,Midtown,40.75175,-73.97218000000001,Private room,269,3,8,2016-12-06,0.24,12,365 +8722224,"$1,400/month Summer Rental: Spacious One Bdrm",45778782,Genéa,Brooklyn,Prospect-Lefferts Gardens,40.659490000000005,-73.94852,Entire home/apt,50,5,1,2015-12-23,0.02,1,0 +2644321,"Bright, comfy 1 Bedroom apt in Manhattan",4294396,Angélique,Manhattan,Morningside Heights,40.8098,-73.95721999999999,Entire home/apt,83,60,1,2016-01-08,0.02,1,0 +28838614,Sunny one bedroom renovated apartment,73638523,Stephany,Queens,Queens Village,40.72085,-73.7496,Entire home/apt,68,2,33,2019-06-30,3.6,1,282 +24098320,PRIVATE BEDROOM IN BRAND NEW CONDO IN BED STUY,10222758,Annette,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94326,Private room,90,3,54,2019-07-06,3.68,1,69 +27804120,Large sunny pvt room 10 mins from Times sq. 63F3,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99633,Private room,65,1,2,2018-11-02,0.23,47,361 +34616078,靠近机场交通方便双人房#3,107272884,Lynn L,Queens,Richmond Hill,40.69587,-73.84798,Private room,45,1,2,2019-06-07,1.4,4,176 +36262925,Amazing 1BR Apartment near Columbia University,6186588,Julio,Manhattan,Morningside Heights,40.81546,-73.95823,Entire home/apt,150,2,0,,,1,10 +18120946,Tranquility in a Sunny Duplex w/Private Bathroom,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.6919,-73.94487,Private room,125,1,60,2019-07-03,2.21,3,90 +7396662,Chateau Ludlow,7489344,Noëmi,Manhattan,Lower East Side,40.71508,-73.98973000000001,Private room,120,1,18,2016-09-15,0.37,1,0 +10996466,"Big, Bright, Beautiful Room",38794144,Hannah,Brooklyn,Crown Heights,40.67754,-73.96163,Private room,64,1,2,2019-01-03,0.07,1,21 +24208976,Spacious Room in Clinton Hill Duplex,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95934,Private room,58,2,1,2018-04-10,0.07,2,0 +13123883,Bright Open Bedroom at the Heart of Wall Street,18438941,Junyi,Manhattan,Financial District,40.70883,-74.00764000000001,Shared room,100,10,0,,,1,0 +31409073,The Hudson,233422217,Douglas,Manhattan,Harlem,40.82645,-73.95235,Private room,86,3,1,2019-04-29,0.42,2,310 +22265621,Spacious Private Room by the East River,62792050,Joanna,Manhattan,East Harlem,40.78714,-73.94114,Private room,65,2,6,2018-06-15,0.37,1,0 +18652544,Beautiful One bedroom in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75017,-73.97686999999999,Entire home/apt,222,30,0,,,50,180 +23527821,Boho/Artsy Sunnywood studio! 20 min to Midtown,6073169,Audra,Queens,Sunnyside,40.74756,-73.91221999999999,Entire home/apt,65,2,15,2019-06-04,1.02,1,27 +29923198,New york doorman building with private balcony,64802660,David,Manhattan,Midtown,40.76495,-73.98313,Entire home/apt,175,153,0,,,2,295 +74404,Luxury 3 bed/ 2 bath apt in Harlem w/ terrace,391325,G & S,Manhattan,Harlem,40.80276,-73.9567,Entire home/apt,250,14,31,2012-08-22,0.31,1,78 +27524836,Quiet and cozy room in Clinton Hill,7098693,Neha,Brooklyn,Bedford-Stuyvesant,40.69073,-73.95965,Private room,75,3,0,,,1,0 +11695338,Quiet and Modern Haven in NYC,16234492,Denise,Bronx,Soundview,40.82442,-73.86193,Private room,45,2,6,2016-08-07,0.15,1,0 +29923677,Shop 5th Ave + Explore Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76324,-73.97515,Private room,233,2,0,,,11,163 +35710965,Charming Authentic NYC Home 12 min to Manhattan,10061222,Rob,Queens,Astoria,40.75909,-73.92227,Private room,95,1,0,,,1,355 +15154905,"Huge bedroom suite in Greenpoint, Brooklyn",1103252,Arin,Brooklyn,Greenpoint,40.73287,-73.95211,Private room,130,1,104,2019-06-21,3.2,1,146 +6924400,West Village Apartment With Character,32767789,Josh,Manhattan,Greenwich Village,40.73256,-74.00008000000001,Private room,60,14,0,,,1,0 +4637014,法拉盛中心温馨两房两厅公寓。近一切。2 br close to everything,12459436,Zena,Queens,Flushing,40.75398,-73.82778,Entire home/apt,119,3,26,2019-06-30,0.46,2,319 +23746579,"Spacious,sunny, artistic loft by the L train",124357,Alex,Brooklyn,Williamsburg,40.71603,-73.95432,Entire home/apt,300,1,70,2019-07-05,4.63,3,1 +31144302,Beautiful Modern Lower East Side Apartment!,9152003,Katie,Manhattan,Lower East Side,40.72176,-73.99218,Entire home/apt,199,2,18,2019-07-06,2.92,1,16 +10837800,Room in Harlem,43533460,Laurène,Manhattan,Washington Heights,40.83525,-73.9452,Private room,36,1,3,2016-06-28,0.08,1,0 +13780748,"Downtown Brooklyn, Luxury-One bed Apartment",22541573,Ken,Brooklyn,Downtown Brooklyn,40.69037,-73.98206,Entire home/apt,202,30,1,2017-09-04,0.04,87,365 +30067767,UPPER EAST SIDE in NYC!!!,151300770,Joe,Manhattan,Upper East Side,40.77954,-73.95127,Private room,150,5,5,2019-05-20,0.79,4,267 +28043195,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE CABLE WIFI,8814258,Nikole,Queens,South Ozone Park,40.67324,-73.7957,Shared room,34,5,2,2019-02-23,0.23,7,365 +35944768,nO placE likE iT-2 Beds & Loft Room @McCarren Park,113583961,Alina,Brooklyn,Greenpoint,40.71982,-73.94742,Entire home/apt,260,2,1,2019-06-30,1.0,1,245 +33050650,Room in a Comfy Brooklyn Apartment,240717293,Carla,Brooklyn,Vinegar Hill,40.70195,-73.98309,Private room,85,2,10,2019-06-24,4.05,1,1 +227735,Alpha-Bet City entire floor large cool 2br -L.E.S,1187935,Daniel,Manhattan,East Village,40.72416,-73.9853,Entire home/apt,288,2,120,2019-06-24,1.27,1,229 +5365190,Amazing 2 BR Loft-Style Apt in South Williamsburg!,27551876,Charlie,Brooklyn,Williamsburg,40.71186,-73.96115,Entire home/apt,195,1,0,,,1,50 +28888147,NEW Lofty 1bedroom UpperEast Side,43825799,Anthony,Manhattan,Midtown,40.75896,-73.96251,Entire home/apt,235,2,37,2019-07-01,4.19,1,135 +12751037,"Large, Private Bedroom near Union Square.",69355658,K,Manhattan,Gramercy,40.73328,-73.9859,Private room,90,3,23,2019-06-23,0.6,1,0 +35041121,Luxury new East Williamsburg 1 bedroom apartment.,263957584,Sara,Brooklyn,Bushwick,40.698240000000006,-73.92888,Entire home/apt,198,30,3,2019-07-03,2.65,2,114 +15632516,Beautiful room in Spacious Duplex,1327518,Dawn,Brooklyn,Bushwick,40.69061,-73.91348,Private room,40,30,0,,,1,5 +24939453,King bedroom w/ private bathroom in gorgeous Loft,1407676,Jessica,Brooklyn,Williamsburg,40.71739,-73.95804,Private room,99,2,0,,,4,159 +8632393,Brooklyn's Coolest One Bedroom,4920604,Eric,Brooklyn,Williamsburg,40.718720000000005,-73.9603,Private room,78,2,23,2016-10-31,0.51,1,0 +22188609,"SPACIOUS ROOM STEAL, NEAR EVERYTHING MIDTOWN!",155125855,Vicente,Manhattan,Midtown,40.748740000000005,-73.98495,Private room,199,1,9,2018-09-26,0.48,3,0 +35999656,Cosy LES Apartment,270829432,Andrea,Manhattan,East Village,40.72309,-73.98519,Entire home/apt,195,1,0,,,1,25 +27157649,SPACIOUS Bedroom with PRIVATE BATHROOM & ROOF,22264156,Raghav,Brooklyn,Clinton Hill,40.69456,-73.96439000000001,Private room,120,1,3,2019-05-30,0.63,1,0 +24607287,Spacious sunlit room in Astoria,160614820,Lucy,Queens,Ditmars Steinway,40.77496,-73.91171999999999,Private room,60,15,12,2019-01-01,0.85,1,21 +16095062,THANKSGIVING up to 6 GUESTS + HOT TUB + FIREPLACE,104911818,Samantha,Brooklyn,Clinton Hill,40.69487,-73.96571999999999,Private room,225,365,0,,,1,90 +12420947,Williamsburg entire apartment,3642404,Maya,Brooklyn,Williamsburg,40.70965,-73.95675,Entire home/apt,95,4,10,2019-06-23,0.37,1,0 +33514118,Close to city in trendy Queens! Females only,30870512,Linda,Queens,Elmhurst,40.72688,-73.87861,Private room,38,1,6,2019-06-19,2.34,1,36 +4840381,"Chill 2B UWS, close to A,C,E/1,2,3",12730517,Robert,Manhattan,Upper West Side,40.80107,-73.96065,Entire home/apt,50,1,1,2016-03-16,0.02,1,0 +26717970,An artist retreat in the heart of Bushwick,51412807,Daniel,Brooklyn,Bushwick,40.69826,-73.91944000000001,Entire home/apt,95,2,40,2019-03-25,3.32,1,0 +31534487,New York Big Room,21250331,Clara,Queens,Bayside,40.754090000000005,-73.76935,Private room,47,1,19,2019-06-20,3.63,3,350 +32019046,Best Place to Stay in the Heart of Queens,117930151,Feather Factory Hotel,Queens,Long Island City,40.74458,-73.94102,Private room,100,1,5,2019-06-22,1.06,2,351 +27825381,"Dream private loft in Williamsburg, Brooklyn",53481649,Lucy,Brooklyn,Williamsburg,40.71493,-73.96089,Private room,90,2,2,2018-09-25,0.19,1,0 +21813179,Cozy room for 1-4 guests in the heart of NYC,119651060,Josephine,Manhattan,Hell's Kitchen,40.76151,-73.98816,Private room,111,4,1,2017-12-12,0.05,1,0 +16735133,Charming and Artsy LES 1-Bedroom,182670,Paul,Manhattan,Lower East Side,40.71789,-73.98308,Entire home/apt,124,28,12,2019-04-22,0.43,1,38 +7745868,Private Room in East Williamsburg,7876900,Taylor,Brooklyn,Williamsburg,40.7088,-73.93983,Private room,45,1,3,2016-03-30,0.06,1,0 +1762513,"2bd/2bth, drmn, 1 block from subway in LIC",9264606,Jeremy,Queens,Long Island City,40.74849,-73.94946999999999,Entire home/apt,275,7,0,,,1,0 +26802868,Anderson's abode,190085120,Rodney,Bronx,Morrisania,40.82823,-73.90114,Private room,150,2,0,,,1,0 +35159849,温馨旅店(3),263740985,Yongqiu,Queens,Flushing,40.75746,-73.83069,Private room,110,1,0,,,3,358 +2113934,Futon on the Upper East Side!,10777592,Lorna,Manhattan,Upper East Side,40.7686,-73.95307,Shared room,85,2,16,2017-05-21,0.25,1,0 +28078309,*BEST DEAL*FURNISHED RM NEAR EMPIRE STATE BLDG*,200730049,Maria Luisa,Manhattan,Midtown,40.74517,-73.98924,Private room,65,30,0,,,1,363 +14536056,3BR - Sunny and Vibrant Brooklyn loft,4120523,Aurelien,Brooklyn,Williamsburg,40.70512,-73.9348,Entire home/apt,149,2,28,2019-06-03,0.83,2,2 +27140472,Room In Light Filled Home Walk to Prospect Park,2163625,Shannon,Brooklyn,Windsor Terrace,40.65086,-73.97757,Private room,65,2,0,,,2,0 +32845242,In the Heart of Astoria,111723,Kat,Queens,Ditmars Steinway,40.77248,-73.91665,Entire home/apt,140,2,1,2019-05-06,0.47,1,3 +357509,Manhattan - Best Location in Midtown,684129,Ellie,Manhattan,Midtown,40.75407,-73.96713000000001,Entire home/apt,110,7,27,2019-03-01,0.31,1,192 +1056804,Spacious Modern & Comfy 2BR in BK Brownstone,2413155,Noreen,Brooklyn,Boerum Hill,40.68554,-73.98924,Entire home/apt,225,4,95,2019-04-14,1.26,1,251 +6255597,FT Greene - Oversized Parlor,11189753,Sj,Brooklyn,Fort Greene,40.68698,-73.97097,Entire home/apt,165,6,30,2019-06-21,0.59,4,0 +1112070,Private Room & Bath in Brooklyn!,350702,Autumn,Brooklyn,Crown Heights,40.66773,-73.96144,Private room,95,2,132,2019-06-30,1.75,1,354 +6462513,"Sunny Private Room, & bath",33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68521,-73.93706999999999,Private room,90,2,115,2019-05-25,2.29,2,0 +16334336,Modern Ridgewood Apartment!,105079063,Manuel,Queens,Ridgewood,40.69857,-73.90618,Private room,65,4,20,2017-12-27,0.64,1,0 +19806105,"Beautiful, Private 3BR Apt EAST VILLAGE",69891628,Daniel,Manhattan,East Village,40.72838,-73.97943000000001,Entire home/apt,305,2,29,2019-07-01,1.29,1,58 +5075659,Cozy New York Studio,192852,Dim,Manhattan,Upper East Side,40.77407,-73.95238,Entire home/apt,125,3,211,2019-06-22,3.95,1,230 +9393127,LUXURY SUNLIT place in the EAST VILLAGE!,47730499,Katherine,Manhattan,East Village,40.72161,-73.98013,Entire home/apt,200,1,52,2019-06-30,1.2,1,74 +23322641,2 bedrooms apartment 10 minutes from Manhattan,38908498,Jasmine,Queens,Long Island City,40.76506,-73.93234,Entire home/apt,65,15,1,2018-03-04,0.06,1,0 +25280953,Large Room in Historical Neighborhood,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92868,Private room,80,2,28,2019-04-25,2.09,6,160 +3829609,Brooklyn's finest. Renovated apt!,4928083,Fernando,Brooklyn,Crown Heights,40.67767,-73.95161999999999,Entire home/apt,76,5,14,2019-04-11,0.28,1,0 +9292072,Spacious 1 Bedroom Apartment,23429756,Maggie,Manhattan,Upper East Side,40.77638,-73.9476,Entire home/apt,215,1,0,,,1,0 +35315271,Design haven with private backyard & greenhouse,19689128,Billy,Brooklyn,Williamsburg,40.71413,-73.93701,Entire home/apt,131,3,2,2019-06-23,2.0,1,137 +29629370,Cozy Brooklyn Studio Apartment Condo,39483399,Kristen,Brooklyn,Fort Greene,40.69319,-73.98226,Entire home/apt,100,5,0,,,1,0 +31474638,Great clean quiet bedroom - half a block to R Line,235302401,Kin,Brooklyn,Sunset Park,40.64303,-74.014,Private room,49,1,3,2019-06-17,1.48,3,155 +32401422,"Private Studio for Events, Recording & Exhibitions",155993704,Mariah,Brooklyn,Bushwick,40.68385,-73.90653,Private room,75,1,3,2019-05-26,0.93,1,364 +32957830,Private place. Close to everything NY has to offer,248021206,Alen,Queens,Glendale,40.7071,-73.86482,Private room,50,1,0,,,1,177 +20396246,Sunny Harlem Oasis feels like Luxury,57573249,Kesina,Manhattan,Harlem,40.81677,-73.93927,Entire home/apt,185,1,6,2017-11-26,0.26,2,0 +30208046,Lovely & Sunny bedroom in Astoria ( Female only),169490939,Ikrame,Queens,Astoria,40.76635,-73.9205,Private room,89,3,2,2019-04-16,0.71,2,208 +26996347,Cozy 1BR/1BA minutes from Manhattan.,203123198,Dave,Brooklyn,East Flatbush,40.66091,-73.93244,Entire home/apt,149,2,24,2019-04-07,2.11,1,145 +19621012,Large 1 Bedroom Apt w/ Backyard!,39550178,Hassan,Brooklyn,Fort Greene,40.68898,-73.97707,Entire home/apt,275,1,0,,,1,0 +33745550,Midtown West Hotel - Empire Triple Room,252604696,Erin,Manhattan,Chelsea,40.75094,-73.99662,Private room,199,1,1,2019-05-19,0.58,20,160 +24177410,King-Suite on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.68962,-73.93352,Private room,80,2,3,2018-10-21,0.29,4,54 +11089123,Awesome bedroom in 2br apartment <3,15231059,Apollo,Manhattan,Lower East Side,40.72118,-73.98875,Private room,100,3,19,2019-04-30,0.46,4,303 +169152,Warehouse Loft with Garden view,806112,Julia,Brooklyn,Bedford-Stuyvesant,40.68131,-73.95331999999999,Entire home/apt,75,2,87,2017-04-18,1.09,1,0 +29588640,Hard to Find!! Entire Floor with 2 PRIVATE TERRACE,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67783,-73.91109,Private room,72,1,54,2019-06-30,6.43,4,239 +1190223,Large 1 Bedroom in Astoria,3202825,Joseph,Queens,Astoria,40.76797,-73.92858000000001,Entire home/apt,119,7,11,2019-04-30,0.63,1,143 +6653095,Come to Know New York III,25812962,Claudio & Rose,Manhattan,East Harlem,40.79052,-73.94364,Private room,70,1,33,2019-05-11,1.28,3,313 +24308988,Rooftop cabaña with private roof access,5717334,Antoine,Brooklyn,Bedford-Stuyvesant,40.68907,-73.953,Private room,150,5,1,2018-05-12,0.07,2,0 +1614817,PRIME apartment in East Village!,5283853,Chara,Manhattan,East Village,40.73082,-73.98693,Entire home/apt,160,2,44,2018-01-01,0.64,2,0 +24733275,Financial District Private Room,127764617,Ned,Manhattan,Financial District,40.70848,-74.0051,Private room,130,1,40,2019-07-01,2.79,1,49 +463107,Historic 3 Bedroom Eastern Parkway,2301624,Miryam,Brooklyn,Crown Heights,40.66933,-73.93798000000001,Entire home/apt,250,90,19,2018-12-16,0.22,1,311 +5136673,Spacious Brooklyn Loft/private room,8118080,Theresa,Brooklyn,Bedford-Stuyvesant,40.68716,-73.91882,Private room,40,7,0,,,1,0 +4537500,Location Nancy,3250450,Petya,Queens,Astoria,40.76496,-73.9282,Private room,39,31,2,2017-09-29,0.04,18,310 +21011427,Cheap bedroom with private half bath attached!,151291713,Kathryn,Manhattan,Washington Heights,40.85014,-73.93743,Private room,30,1,67,2019-06-22,3.07,2,72 +15553495,Sunny Room on Historic Clinton Ave. in Fort Greene,2500106,Ariel,Brooklyn,Clinton Hill,40.68908,-73.9678,Private room,65,2,18,2018-12-16,0.55,1,0 +32241019,Sonder | Stock Exchange | Smart 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01184,Entire home/apt,231,2,13,2019-06-02,3.42,327,331 +26995950,Queen Bed 2 guests UWS Manhattan,216227,Victor,Manhattan,Harlem,40.82226,-73.95569,Private room,62,1,68,2019-06-18,5.86,3,310 +11680027,Charming 1BR Apt in LES Side,13305499,J. Ryan,Manhattan,Lower East Side,40.72025,-73.98371999999999,Entire home/apt,145,2,3,2016-05-08,0.07,1,0 +36485609,43rd St. Time Square-cozy single bed,30985759,Taz,Manhattan,Hell's Kitchen,40.75751,-73.99112,Shared room,55,1,0,,,6,2 +7576910,"Private Modern room, stained glass view",39725165,Amanda,Manhattan,Harlem,40.80256,-73.94524,Private room,85,30,27,2018-12-31,0.61,1,0 +29869390,HABITACIÓN COMPARTIDA PARA AVENTURERAS(Only Women),215778245,Jessy & Christian,Queens,Corona,40.73887,-73.86561999999999,Shared room,30,2,6,2019-07-02,0.76,6,365 +36057961,"Cozy apartment, amazing location!",271094569,Weronika,Manhattan,Lower East Side,40.71895,-73.98813,Entire home/apt,99,2,1,2019-06-26,1.0,1,333 +7500030,Two bedroom with two fold out bed,19976579,Damask,Manhattan,East Village,40.72682,-73.97845,Entire home/apt,250,1,0,,,1,0 +242532,The Notorious B.N.B. { The Swoon },1177497,Jessica,Brooklyn,Clinton Hill,40.6893,-73.96602,Private room,279,1,120,2019-06-19,1.28,11,362 +35783942,Cozy one bedroom in the city!!,37140959,Cindy,Manhattan,East Village,40.72281,-73.98099,Private room,66,3,0,,,1,9 +1171674,Great One-Bed in the West Village,6414916,Jon,Manhattan,Greenwich Village,40.7302,-74.00165,Entire home/apt,225,2,136,2019-06-22,1.83,1,10 +6334492,Spacious PRIVATE Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.57679,-73.96016,Private room,75,1,127,2019-06-30,2.54,2,247 +26632917,Casa Maritza,47924569,Marco,Brooklyn,East Flatbush,40.64629,-73.932,Entire home/apt,125,3,18,2019-06-22,1.53,1,48 +5482918,Pleasant-Place JFK Private Housings Complex,26602392,Dean&Paula,Queens,Springfield Gardens,40.6631,-73.76749000000001,Private room,73,1,148,2019-05-30,3.82,2,347 +23808650,Chic 2 Bedroom in East Harlem,178675800,Michael,Manhattan,East Harlem,40.79504,-73.93495,Private room,85,6,2,2018-05-11,0.14,1,0 +34830629,"Large, luxury, one bedroom with veranda & garden",37170601,Petros,Brooklyn,Flatlands,40.61401,-73.92112,Entire home/apt,125,3,0,,,1,42 +28918405,Nice Couple in A Walk in Basement with Window,35927005,Kathy,Brooklyn,Borough Park,40.63416,-74.00721999999999,Private room,50,2,0,,,10,365 +17573027,Charming Room in Financial District,1794149,Alex,Manhattan,Financial District,40.70682,-74.00445,Private room,75,2,3,2017-03-26,0.11,1,0 +19348139,"Cozy, private room in the heart of Fort Greene",24806534,Lisa,Brooklyn,Fort Greene,40.68287,-73.97117,Private room,130,3,1,2017-07-24,0.04,1,0 +3780715,Akua's Bed-Stuy Study,18880856,Carlton,Brooklyn,Bedford-Stuyvesant,40.68358,-73.94838,Private room,120,2,82,2019-06-21,1.6,1,328 +21862803,Beautiful apt in great location,18405989,Guido,Brooklyn,Windsor Terrace,40.65281,-73.97298,Entire home/apt,150,7,0,,,1,0 +24379887,"SUITE- PRIVATE 1/2 BATH, 4 BEDS IN WILLIAMSBURG!!",184004979,Ken And Andy,Brooklyn,Williamsburg,40.709140000000005,-73.961,Private room,130,3,59,2019-06-19,3.93,2,282 +7073418,Mod Glamor in Bed-Stuy Garden Flat,4582256,Consuelo,Brooklyn,Bedford-Stuyvesant,40.682970000000005,-73.93804,Entire home/apt,250,2,3,2015-10-20,0.06,1,0 +25480539,Bronx Roon,102501688,Julissa,Bronx,Highbridge,40.83464,-73.92505,Private room,70,2,2,2018-09-30,0.17,1,348 +10249075,Nice comfy pad near Times Square,36494040,Peter,Manhattan,Hell's Kitchen,40.7609,-73.99405,Entire home/apt,250,1,0,,,1,0 +10438662,Kick Back and Relax in this Oasis,53773419,Wesleyan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.94805,Private room,70,3,33,2018-09-03,0.81,1,365 +26036861,Spacious room in modern Williamsburg condo,4122424,Mark,Brooklyn,Williamsburg,40.70621,-73.95026,Private room,60,1,36,2019-06-19,2.79,1,0 +21967336,Affordable & Cozy Apartment near Prospect Park,1852207,Christie,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96036,Entire home/apt,135,3,3,2019-01-03,0.16,1,0 +34980223,"""ADORABLE CENTRAL 1BD LITTLE ITALY/SOHO""",76192815,Sam,Manhattan,Little Italy,40.71805,-73.99714,Entire home/apt,129,33,0,,,5,333 +28184101,Great spot in Bushwick,32992928,François,Brooklyn,Bushwick,40.70076,-73.92381999999999,Entire home/apt,180,3,2,2018-09-30,0.21,1,15 +4500615,"Chelsea, balcony and 2 bedrooms!",6519939,Raj,Manhattan,Chelsea,40.75005,-73.99718,Entire home/apt,320,3,0,,,1,0 +21660787,Spacious Williamsburg Apartment,476260,Jingjing,Brooklyn,Williamsburg,40.717290000000006,-73.95051,Private room,50,2,1,2017-11-06,0.05,1,0 +33857708,"Sunnyside room close to subway, Midtown & LGA.",137358866,Kazuya,Queens,Sunnyside,40.73614,-73.92068,Private room,35,30,0,,,103,245 +7061944,"Charming, bright and airy studio",2180889,Lisa,Brooklyn,Brooklyn Heights,40.69454,-73.99499,Entire home/apt,125,1,0,,,1,24 +34673706,Wonderful Williamsburg,253843480,Yus,Brooklyn,Williamsburg,40.71801,-73.95244,Private room,43,1,2,2019-06-01,1.09,1,249 +13453271,"NEAR CENTRAL PARK, TIMES SQUARE, COLUMBIA UNIV.",17848380,Yi Qun,Manhattan,Upper West Side,40.796690000000005,-73.97126,Private room,120,1,12,2019-05-19,0.35,3,338 +26085068,"Lovely apartment in INWOOD, Manhattan",50814751,Maki,Manhattan,Inwood,40.86833,-73.92291,Entire home/apt,85,18,2,2019-01-13,0.21,1,16 +21404524,Beautiful sunny Bushwick Loft,22875538,Max,Brooklyn,Bushwick,40.70808,-73.9205,Entire home/apt,299,2,8,2019-01-01,0.63,2,0 +506571,Large sunny 1br apt in East Village,2349977,Anthony,Manhattan,East Village,40.72756,-73.97939000000001,Entire home/apt,150,7,19,2019-03-22,0.32,1,24 +34860207,Spacious 2 Bedroom - Quiet and Easily Accessible,90463984,Isabelle,Queens,Richmond Hill,40.69838,-73.84228,Entire home/apt,120,7,0,,,3,122 +21491460,Bronx room near mall,66807235,Dexter,Bronx,Melrose,40.82251,-73.91125,Private room,60,3,0,,,1,90 +995367,1BR Apt as featured in New York Mag,412783,Nick,Manhattan,Greenwich Village,40.73506,-73.99728,Entire home/apt,334,11,14,2018-05-29,0.24,1,238 +36353482,EAST VILLAGE Apt. (ABC City) w/awesome Roof Deck,44024684,Zack,Manhattan,East Village,40.72597,-73.97645,Private room,85,1,0,,,1,15 +26496645,Room with a view,110049861,Martin,Brooklyn,Williamsburg,40.709590000000006,-73.95693,Private room,10,1,0,,,1,83 +28981827,Beautiful Luxury 1 Bedroom,7021189,Sachin,Manhattan,Chelsea,40.74463,-73.9923,Entire home/apt,200,100,1,2018-10-02,0.11,1,0 +6242600,Double Bed In a Central Location,32406934,Alleyne,Brooklyn,Bedford-Stuyvesant,40.67986,-73.94259,Private room,180,2,9,2018-03-19,0.36,1,364 +25475518,Carnegie Hill-Clean Small 1 bedroom,192276715,Francis,Manhattan,East Harlem,40.78703,-73.94740999999999,Entire home/apt,115,4,44,2019-07-05,3.41,1,38 +29567252,Beautiful Artsy Apartment centrally located!,41083526,Brenda,Queens,Sunnyside,40.74322,-73.91989000000001,Entire home/apt,130,4,0,,,2,0 +35249301,Spacious 2Bedroom Village Home,265248832,Noe,Manhattan,Greenwich Village,40.72757,-74.00059,Entire home/apt,349,2,2,2019-06-13,2.0,1,186 +18959626,"Grand Central. Clean, Quiet & Elevator. +Park Ave.",21706118,Yogita,Manhattan,Murray Hill,40.75071,-73.97995,Private room,138,2,41,2019-06-21,1.9,1,66 +22412331,Subleasing-Room available starting May or earlier,369226,Omur,Queens,Astoria,40.76581,-73.92518000000001,Shared room,40,30,2,2018-05-17,0.11,1,0 +23779181,Sunny Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79232,-73.94634,Private room,30,4,5,2019-04-29,0.33,3,0 +15858922,"Brownstone Sanctuary, a Private Studio Apartment",8715723,Jacob,Manhattan,Harlem,40.80986,-73.95349,Private room,164,1,143,2019-06-21,4.82,5,221 +19954751,Fascinating Modern Apartment - 5 mins Time Square,131712054,Edison,Manhattan,Hell's Kitchen,40.76122,-73.99129,Private room,111,1,136,2019-07-06,5.86,1,51 +20441901,Comfy Room in Clinton Hill Artist & Activists Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.6898,-73.96011999999999,Private room,50,14,1,2018-11-17,0.13,3,364 +4359219,Eagle-eye view of New York,20599015,Farrell,Brooklyn,Bedford-Stuyvesant,40.69103,-73.95441,Entire home/apt,285,2,37,2016-05-09,0.65,1,0 +7246609,LES sunny and charming apartment,920222,Rosie,Manhattan,Lower East Side,40.72259,-73.99311,Entire home/apt,200,3,18,2019-01-02,0.37,1,188 +6500246,BROWNSTONE BUILDING IN CLINTON HILLS,33977124,Donovan,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95535,Private room,65,2,49,2019-06-14,1.42,2,310 +27672277,"Bay Ridge, Vista Place",208856601,Mason,Brooklyn,Bay Ridge,40.63368,-74.01956,Entire home/apt,300,3,8,2019-06-25,0.83,1,125 +18424928,Beautiful 2 bedroom apartment in Park Slope!,1507779,Lara,Brooklyn,South Slope,40.663990000000005,-73.98301,Entire home/apt,210,3,5,2019-03-08,0.21,2,3 +5735447,Charming 1BR in Brooklyn Brownstone,4471002,Janet,Brooklyn,Fort Greene,40.68914,-73.97406,Entire home/apt,200,1,0,,,2,0 +13544987,Large Open 1 Bedroom Apartment in Murray Hill,26064594,Dori,Manhattan,Murray Hill,40.74686,-73.97981,Entire home/apt,200,3,1,2016-11-26,0.03,1,0 +28467973,NYC Penthouse Private Bedroom & Balcony w/ Skyline,123567556,Sean,Brooklyn,Crown Heights,40.67596,-73.93200999999999,Private room,85,1,9,2019-06-23,5.4,2,173 +34305492,"Clean, Modern Sun-filled 2BD Home in Midtown East",258001528,Dane,Manhattan,Midtown,40.75607,-73.96768,Entire home/apt,325,4,4,2019-07-02,2.79,1,157 +22860511,Large Queen Room in Beautiful Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73531,-73.95631,Private room,58,3,9,2018-11-24,0.52,4,25 +3804690,Statue of Liberty Views Downtown,19550968,Silvia,Manhattan,Battery Park City,40.71019,-74.01705,Entire home/apt,130,60,4,2015-05-07,0.07,1,13 +35023313,Joyful,263843486,Joe,Queens,Richmond Hill,40.70053,-73.82372,Entire home/apt,120,2,2,2019-07-05,2.0,1,336 +5305619,"Newly Renovated Flat, McKibbin Loft",5663328,Scott,Brooklyn,Williamsburg,40.70429,-73.93793000000001,Private room,75,14,0,,,1,0 +10175187,Beautiful Brownstone on Tree Lined Block,52243765,Jessie,Brooklyn,Crown Heights,40.67851,-73.95566,Private room,50,3,0,,,1,0 +1091840,"Private bedroom in Manhattan, NYC ",4714927,Elisa,Manhattan,East Harlem,40.78859,-73.94715,Private room,75,2,152,2019-05-31,2.03,4,12 +815045,Stylish West VILLAGE Water Views,4281957,Marina,Manhattan,West Village,40.73227,-74.00949,Entire home/apt,340,7,38,2018-01-02,0.54,1,302 +34773903,Great room for 2 or 3 people close to the trains,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68727,-73.94736,Private room,56,1,5,2019-06-23,3.06,3,1 +13265710,Sunny Bedroom in Harlem,74712074,Noel,Manhattan,Harlem,40.81834,-73.93929,Private room,70,1,4,2016-11-21,0.11,1,0 +25796599,Common Single Room # 1,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.6861,-73.92859,Private room,40,1,125,2019-06-30,9.47,6,325 +22376064,Brooklyn Chill Space One Bedroom,5524607,Tanya,Brooklyn,Bedford-Stuyvesant,40.68576,-73.91719,Entire home/apt,95,1,35,2019-07-03,2.04,1,28 +30638353,Beautiful Studio on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.73945,-73.97934000000001,Entire home/apt,118,30,0,,,8,326 +29146446,Charming 1 Bedroom on the best block in BK Heights,3959013,Clarke,Brooklyn,Brooklyn Heights,40.69228,-73.99768,Entire home/apt,151,5,4,2019-04-18,0.63,1,27 +3247291,Comfort and Charm in Harlem Brownstone near Subway,16425715,Soon,Manhattan,Harlem,40.81198,-73.9437,Private room,80,1,134,2019-07-03,4.36,1,227 +6950074,"Beautiful, Cozy Apartment",6434434,Jenna,Queens,Ditmars Steinway,40.7789,-73.90688,Entire home/apt,110,2,14,2017-12-10,0.29,1,0 +21726358,Crown Heights Guest House B,74541079,Abraham,Brooklyn,Crown Heights,40.66894,-73.93649,Entire home/apt,59,4,34,2019-06-29,2.13,9,49 +30524542,The Gingerheadman's House!,18403410,Jonathan E,Brooklyn,Crown Heights,40.67817,-73.94691,Private room,150,1,3,2019-03-23,0.43,1,0 +8506867,"Sunny, spacious UWS abode with view",258023,Johann,Manhattan,Upper West Side,40.77799,-73.98205,Entire home/apt,220,1,2,2016-03-10,0.05,1,0 +36083269,"Serene Storefront Studio, a private cozy hideaway",3358348,Jennifer,Brooklyn,Crown Heights,40.67497,-73.94973,Entire home/apt,97,1,0,,,1,63 +34801106,Private Lrg bedroom shared aprtmnt 12mins from NYC,217484432,Dion,Queens,Ditmars Steinway,40.7754,-73.90786999999999,Private room,115,1,2,2019-05-19,1.15,2,304 +16616522,Large Apartment near Central Park up to 4 people!,61090067,Justyna,Manhattan,East Harlem,40.79465,-73.94021,Entire home/apt,180,5,33,2019-07-01,1.18,1,35 +35192077,Lovely studio in the heart of East Village,201074848,Moun,Manhattan,East Village,40.72702,-73.9798,Entire home/apt,165,4,2,2019-06-28,2.0,1,0 +19859179,"Cozy, Quite, Private, Near LGA",39134890,Di,Queens,Elmhurst,40.74083,-73.88523,Private room,39,3,25,2018-07-17,1.22,1,0 +6376487,Our Astorian Alcove,2321422,Angela,Queens,Astoria,40.76273,-73.91315999999999,Entire home/apt,122,6,0,,,1,13 +9973211,"2nd Floor, 2 Family House",51248093,Amy,Queens,Ditmars Steinway,40.77623,-73.91503,Entire home/apt,250,1,0,,,1,0 +13113038,Large apartment with a balcony in a doorman bldg,72507521,Sam,Manhattan,Harlem,40.81245,-73.94085,Entire home/apt,190,1,0,,,1,0 +23668737,Family Studio beside Empire State #53,177174475,Alberto,Manhattan,Midtown,40.74793,-73.98834000000001,Entire home/apt,120,1,3,2019-02-08,0.47,17,257 +13098705,Big & Beautiful 1-BR w/Private Backyard,14865754,Jerrell,Manhattan,Harlem,40.818290000000005,-73.94686,Entire home/apt,175,2,34,2019-06-19,0.98,1,75 +23613688,Clean Spacious Duplex by Yankee Stadium,175583687,Quisqueya,Bronx,Highbridge,40.83604,-73.93099000000001,Entire home/apt,240,1,22,2019-06-24,1.4,3,1 +15715599,"Sprawling, Sunlit Gorgeous LOFT",7728010,Jane,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95876,Private room,63,5,9,2019-05-26,0.28,1,342 +23054855,Modern sun-filled 1 bed oasis- Graham Ave L train,7216788,Pari,Brooklyn,Williamsburg,40.71563,-73.9398,Entire home/apt,140,2,18,2019-06-23,1.07,1,36 +22361893,Studio apartment -PRIVATE,163518918,N,Brooklyn,Williamsburg,40.70803,-73.94255,Entire home/apt,118,3,3,2019-05-24,1.32,1,249 +24178083,Charming mezzanine bedroom near Prospect Park,179778880,Marcus,Brooklyn,Sunset Park,40.66179,-73.99061999999999,Private room,45,2,37,2019-05-18,2.61,2,308 +5316908,Beautiful 1BD/ NEW RENOVATIONS/ELEV,1475015,Mike,Manhattan,Upper West Side,40.76917,-73.98488,Entire home/apt,87,30,7,2018-12-23,0.18,52,365 +36426788,Serene Room 5 mins from JFK / 15 mins from LGA,266645207,Michael,Queens,Laurelton,40.67025,-73.74548,Private room,75,1,0,,,2,180 +6033449,COLUMBIA PRESBYTERIAN MED CTR *AURA* Studio Apt,25237492,Juliana,Manhattan,Washington Heights,40.84035,-73.94089,Entire home/apt,95,30,11,2019-05-25,0.25,34,97 +35795817,Newly Furnished 2 Bed 1 Bath,61396454,Ash,Manhattan,Midtown,40.75508,-73.96379,Entire home/apt,220,30,0,,,14,343 +33067318,A very conducive private area near to train statn,248856446,Bilikis,Queens,Rockaway Beach,40.58891,-73.80181,Private room,50,1,1,2019-05-26,0.67,1,179 +7292891,Large 2 BR Apartment in Chelsea,9403624,Carol,Manhattan,Chelsea,40.74482,-73.99916999999999,Entire home/apt,170,5,13,2019-05-25,0.3,1,4 +2515876,"Comfortable, spacious “ 1 bedroom “ apartment",12878653,Nicholas P,Queens,Astoria,40.763740000000006,-73.90965,Private room,59,14,19,2019-05-07,0.31,1,346 +30246815,Sunny Apartment in Crown Heights,1850477,Michela,Brooklyn,Crown Heights,40.67728,-73.94536,Entire home/apt,120,3,0,,,2,0 +12492242,The Sunset Boudoir,38864859,Candi,Manhattan,Upper East Side,40.7842,-73.95105,Entire home/apt,150,1,0,,,1,0 +3760029,Charming studio for rent in Astoria,19250606,Sylvia,Queens,Astoria,40.75508,-73.91673,Entire home/apt,100,2,141,2019-07-02,2.43,1,216 +25840272,Beautiful and clean 2BR in prime Chelsea,119958898,Aaron,Manhattan,Chelsea,40.74267,-73.99971,Entire home/apt,299,3,76,2019-07-04,5.82,1,91 +10412006,Best street in New York.,53618094,Matthew,Manhattan,Nolita,40.72265,-73.99493000000001,Entire home/apt,250,1,0,,,1,0 +29590847,Artists + Travelers Private Room in Brooklyn,164178160,Karlie,Brooklyn,Bedford-Stuyvesant,40.69031,-73.95855,Private room,59,3,2,2018-11-17,0.24,1,0 +16297227,True 1 BR Midtown West / Hell's Kitchen gem,82646321,Shady,Manhattan,Hell's Kitchen,40.76428,-73.99381,Entire home/apt,130,2,77,2019-06-17,3.63,1,9 +1886978,Sunny & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64674,-73.89501,Private room,32,5,85,2019-06-16,1.25,5,155 +31058909,"Cozy home # 2 In Brooklyn 20 min from N,y,c. 3bed",118029044,Freddy,Brooklyn,Borough Park,40.61019,-73.97343000000001,Entire home/apt,200,3,0,,,2,325 +35219177,"Young adults getaway 20mins to time square,AC room",264824216,Peter,Manhattan,Harlem,40.82136,-73.95606,Private room,59,1,2,2019-06-23,2.0,3,41 +9276634,2-bedroom in the heart of the EV!,46323876,Mario,Manhattan,East Village,40.72765,-73.98199,Entire home/apt,199,2,1,2015-11-28,0.02,1,0 +302758,Sunny 1BR East Harlem Apartment,8605,Dimitry,Manhattan,East Harlem,40.7968,-73.93611,Entire home/apt,150,7,12,2016-03-26,0.14,1,0 +10191601,Spacious Astoria Home with Garden,26111326,Larry & Deb,Queens,Astoria,40.76951,-73.93077,Entire home/apt,125,2,26,2017-10-14,0.64,1,0 +1844792,Clean Cute and Cozy Harlem Apt,9638204,Teresa,Manhattan,Harlem,40.82097,-73.93765,Private room,130,1,1,2016-09-11,0.03,2,0 +4582781,Prime Williamsburg duplex Bedford L,6780571,Julia,Brooklyn,Williamsburg,40.71765,-73.95772,Entire home/apt,220,2,79,2019-06-25,1.62,1,143 +35934191,Luxury apartment in Midtown Manhattan!,8285778,Gaddi,Manhattan,Hell's Kitchen,40.7687,-73.98926999999999,Entire home/apt,179,2,0,,,1,12 +7435577,Comfy Modern Bklyn 1BR + Guest BR,28460565,Su,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92831,Entire home/apt,135,2,6,2015-12-07,0.13,1,0 +27014758,Private Room,34883773,Cansu,Brooklyn,Bedford-Stuyvesant,40.689440000000005,-73.95089,Private room,50,7,1,2018-11-10,0.12,1,0 +14902084,Modern luxury apartment in downtown Manhattan,1445618,Th,Manhattan,Financial District,40.70402,-74.00776,Entire home/apt,235,3,3,2016-10-23,0.09,1,0 +21733545,++A Global Beat hideaway Room in Manhattan,3464645,Sybilla Michelle,Manhattan,Hell's Kitchen,40.75575,-73.99374,Private room,175,2,44,2019-06-30,2.26,3,133 +28368404,Penthouse living 1 single room 4 a night or 2!!!,125320407,Sata,Queens,Jamaica,40.70507,-73.80424000000001,Private room,225,1,1,2018-10-07,0.11,5,364 +33407244,Manhattan Luxury Private Bedroom!,224317184,Luke,Manhattan,Inwood,40.86364,-73.92835,Private room,90,3,4,2019-06-01,1.85,8,237 +9607482,Cozy Studio in Midtown East,36380016,Eman,Manhattan,Midtown,40.7532,-73.96710999999999,Entire home/apt,99,1,7,2016-01-27,0.16,1,0 +13619661,Williamsburg Private Room,78870889,Carlos,Brooklyn,Williamsburg,40.71791,-73.94242,Private room,65,3,0,,,1,0 +9609246,Private bedroom w/Terrace,49720830,Sarah,Manhattan,Murray Hill,40.74899,-73.97301,Private room,119,1,1,2015-12-31,0.02,1,0 +22683927,Furnished Bedroom Meat Packing District,167188752,Percy,Manhattan,Chelsea,40.7394,-73.99964,Private room,150,3,1,2018-05-02,0.07,1,364 +13217609,"Bright Guest Room with Balcony, Harlem",1514100,Wasim,Manhattan,Harlem,40.80991,-73.94596999999999,Private room,149,3,16,2019-06-28,0.59,1,333 +3811639,Beautiful sun-filled Loft BROOKLYN,10603767,Samantha,Brooklyn,Bushwick,40.70784,-73.92224,Entire home/apt,150,3,203,2019-06-22,3.42,1,308 +17319360,Private suite,42814202,Irisha,Queens,Fresh Meadows,40.74227,-73.78707,Entire home/apt,90,1,26,2019-07-08,0.9,3,358 +13954028,Cozy Upper West Side Studio,6571805,Agata,Manhattan,Upper West Side,40.79301,-73.97544,Entire home/apt,124,2,28,2019-05-20,0.79,2,336 +16220849,☝ Your Sweet Suite Spot ☝,69189948,Ella,Manhattan,Washington Heights,40.84862,-73.93299,Private room,75,2,45,2019-07-01,1.44,3,183 +20387815,Quiet Harlem Studio w/ Backyard & Close to Train,41047066,Trinity,Manhattan,Harlem,40.81629,-73.94131,Entire home/apt,71,2,24,2019-07-01,1.45,1,55 +19701644,"Affordable, spacious room in Bed-Stuy",3309159,David,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95383000000001,Private room,50,1,0,,,1,0 +19173391,"One bedroom, calm, clean, bright.",13848128,John,Manhattan,Chelsea,40.74263,-73.99769,Entire home/apt,275,6,13,2019-06-07,0.58,1,0 +14296299,Lovely private suite in charming historic house,4269804,Mollie,Queens,Ridgewood,40.70717,-73.89395,Private room,79,3,13,2018-05-18,0.39,1,64 +5860123,Tall Ceilings & Sunlight Galore,16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68449,-73.95893000000001,Entire home/apt,172,30,6,2019-05-11,0.14,21,221 +16395800,Small Room,78497102,Ira,Manhattan,Lower East Side,40.71777,-73.98526,Private room,99,1,6,2018-01-01,0.2,1,0 +21006709,Nice Cozy Little Studio in a Quite Neighborhood!!,151249486,Tiffany,Bronx,Parkchester,40.84038,-73.85661999999999,Entire home/apt,65,3,12,2017-12-30,0.55,1,0 +27422570,Peaceful loft,34643568,Dave,Manhattan,East Harlem,40.79232,-73.94156,Private room,85,3,2,2019-05-06,0.79,6,90 +16159778,Cozy room in Williamsburg,13483196,Noelle,Brooklyn,Williamsburg,40.71212,-73.96086,Private room,90,1,0,,,1,0 +27104485,Classic Chic West Village Getaway,18416371,Tori,Manhattan,West Village,40.73144,-74.00523000000001,Entire home/apt,250,3,4,2019-01-03,0.39,1,0 +8590198,Room in Bright Brooklyn Apt.,32792372,Paul,Brooklyn,Crown Heights,40.66872,-73.95362,Private room,40,2,18,2017-06-30,0.4,1,0 +26805133,Cozy room in best New York neighborhood Chelsea,40404374,Reda,Manhattan,Chelsea,40.74137,-73.9994,Private room,92,3,8,2019-06-09,0.69,1,125 +30691484,Luxury in Brooklyn,219449657,Franklyn,Brooklyn,Bushwick,40.68225,-73.90720999999999,Entire home/apt,200,1,28,2019-07-02,4.22,1,30 +12285861,Amazing 2 Bd Loft -PRIME Williamsbu,8182126,Maggie,Brooklyn,Williamsburg,40.71791,-73.94646,Entire home/apt,159,3,2,2016-05-01,0.05,2,0 +25074072,"Family Gather + 5 bedrooms 3 full baths 2 floors",49950511,Daveth,Brooklyn,East Flatbush,40.64351,-73.95167,Entire home/apt,350,4,32,2019-07-01,2.63,1,69 +34643695,1B. Studio & Stay 30 minutes to Midtown Manhattan,37678939,Chantal,Bronx,Claremont Village,40.83513,-73.91093000000001,Private room,50,2,11,2019-07-07,6.73,2,88 +16279328,Sunny and spacious Greenpoint Artists Haven (2 br),1154016,Amy,Brooklyn,Greenpoint,40.72287,-73.94135,Entire home/apt,135,5,13,2019-01-02,0.48,1,159 +13135097,"Beautiful, New, 1 BR, Heart of Williamsburg!",70178459,Chris,Brooklyn,Williamsburg,40.71401,-73.95664000000001,Entire home/apt,150,1,6,2016-12-25,0.16,1,0 +18838909,Beautiful Seaview apt. Gated community. Near JFK.,131204454,Ronn,Brooklyn,Canarsie,40.639590000000005,-73.88158,Entire home/apt,46,1,58,2019-07-05,2.29,1,80 +16780469,Beautiful Manhattan apt. blocks from Central Park,6263861,Monica,Manhattan,Harlem,40.80249,-73.95622,Private room,55,5,2,2019-04-25,0.16,1,24 +35668212,Bright shared room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.69965,-73.93909000000001,Shared room,35,30,0,,,5,357 +34139763,Quiet & Modern Serene Bedroom near J subway train,5680111,Timothy,Brooklyn,Bushwick,40.68603,-73.91399,Private room,63,12,2,2019-05-17,1.0,7,130 +14367695,Beach Bungalow with loft,81065498,Jules,Queens,Rockaway Beach,40.58656,-73.81565,Entire home/apt,110,1,75,2019-06-23,2.14,1,56 +25084002,Private Living Room - NOT Shared With Others,24916607,Maggy S,Manhattan,Harlem,40.8163,-73.95262,Shared room,90,1,37,2019-04-18,2.75,1,60 +18976585,"sunny room, 2 mins to subway & 15mins to Manhattan",27131793,James,Queens,Jackson Heights,40.74712,-73.89329000000001,Private room,46,1,19,2017-09-09,0.75,1,0 +7457673,NEW Modern Brooklyn 1BR Apt!,2203415,James,Brooklyn,Bedford-Stuyvesant,40.68678,-73.9513,Entire home/apt,85,1,6,2015-11-29,0.13,1,0 +27853417,A Cozy Place to Stay in Woodside Queens!,137358866,Kazuya,Queens,Maspeth,40.73786,-73.90616,Private room,36,30,1,2019-05-31,0.77,103,235 +30715422,A spacious 1 bedroom apt in a landmark building,5953913,Zhanna,Manhattan,Battery Park City,40.70418,-74.01695,Entire home/apt,220,2,0,,,1,0 +5082455,15 mins to Times Square + Sleeps 4,2908101,Mahesh,Manhattan,Harlem,40.82846,-73.94393000000001,Entire home/apt,175,4,29,2018-11-05,0.55,1,7 +16055176,Stylish 1 Bedroom in heart of East Village,2407821,Susan,Manhattan,East Village,40.727540000000005,-73.98329,Entire home/apt,190,2,23,2019-06-09,0.73,1,27 +31147410,Private and cozy room,144124452,Yemi,Queens,Rosedale,40.6528,-73.73626999999999,Private room,40,1,6,2019-03-11,0.93,3,56 +11587722,Central Park Dreams,5099080,Bridget,Manhattan,Upper West Side,40.79795,-73.96155999999999,Entire home/apt,299,4,7,2017-09-15,0.19,1,0 +5793707,Lower East Side Minimalist Studio,8390853,Warren & Jessica,Manhattan,Lower East Side,40.7189,-73.99181999999999,Entire home/apt,125,3,117,2019-06-23,2.29,1,228 +27644,Sugar Hill Rest Stop ,119510,Emma,Manhattan,Harlem,40.82754,-73.94919,Entire home/apt,170,2,195,2019-07-01,2.03,1,318 +4183664,Cozy Room for 1,21705739,Maha,Brooklyn,Crown Heights,40.67196,-73.93824000000001,Private room,70,7,20,2016-01-21,0.35,1,364 +27252615,LUXURIOUS 3 BR WITH BALCONY & RIVER VIEWS,200380610,Pranjal,Manhattan,Murray Hill,40.74422,-73.97124000000001,Entire home/apt,350,60,0,,,65,327 +24226528,Private Bedroom w/ Private Entrance-Williamsburg!,1525346,Jenn,Brooklyn,Williamsburg,40.70949,-73.94892,Private room,73,4,25,2019-05-13,1.64,1,48 +16368541,1st Floor room available in 3 br 2bath Apt,6202020,Nikolas,Queens,Astoria,40.76875,-73.92769,Private room,119,1,0,,,1,0 +23247514,Private room in family apartment,29098546,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68082,-73.92161999999999,Private room,29,1,65,2019-06-23,3.88,1,5 +6395425,The Golden Chamber,33346283,Jonathan,Manhattan,Harlem,40.83001,-73.94815,Private room,70,5,42,2019-05-27,0.87,3,348 +14996256,Lovely Guestroom in Elevator Building,92322271,Mark,Brooklyn,Crown Heights,40.67059,-73.94798,Private room,88,2,0,,,2,0 +31877537,Pastel Dream Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80044,-73.95953,Private room,60,30,0,,,32,317 +26670812,Lucky home 温馨如家,88576580,Anna,Queens,Flushing,40.75432,-73.82273,Private room,60,1,1,2018-08-15,0.09,2,0 +24580422,Bright and Cozy Studio in Murray Hill,10574166,Carolyn,Manhattan,Murray Hill,40.74681,-73.97629,Entire home/apt,150,2,17,2018-12-26,1.19,1,0 +21045324,Bronx room,27187487,Summer,Bronx,Belmont,40.85444,-73.88462,Private room,30,3,5,2018-08-15,0.23,2,361 +4798794,Roomy West Village Studio,1660906,Victoria,Manhattan,West Village,40.73245,-74.00275,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +21177608,Feng Shui Private Room In Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6897,-73.9064,Private room,48,2,39,2019-06-19,1.83,4,179 +20499306,"Room with a view steps from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.6685,-73.94842,Private room,50,5,0,,,2,0 +24345718,Heart Of New York City,183699341,Ray,Manhattan,Hell's Kitchen,40.75781,-73.99750999999999,Private room,175,1,6,2018-05-21,0.41,1,365 +32190090,"CLEAN, TIMES SQUARE ONE BEDROOM",55289,E,Manhattan,Hell's Kitchen,40.76522,-73.98779,Entire home/apt,250,4,17,2019-07-04,3.98,1,200 +15715485,Beautiful Downtown Brooklyn Studio,8615868,Elle,Brooklyn,Park Slope,40.67829,-73.97891,Entire home/apt,100,1,0,,,1,0 +36061719,Private Studio-Bedroom in Duplex in Williamsburg,271282883,Terence,Brooklyn,Greenpoint,40.72779,-73.94081,Private room,99,6,0,,,2,54 +35492664,Modern Bushwick 2BR (15 Minutes to Manhattan!),266531875,Willy,Brooklyn,Bushwick,40.69222,-73.91971,Entire home/apt,200,2,2,2019-07-02,2.0,3,351 +34385166,"Dream-nest with elements of class and ""flavor""!!",91263364,Agatha,Manhattan,Harlem,40.81662,-73.94209000000001,Private room,135,4,0,,,1,66 +7800905,Sunlit oasis in WILLIAMSBURG BK,41059169,Alex,Brooklyn,Williamsburg,40.71003,-73.96096999999999,Private room,116,2,17,2019-05-07,0.37,3,329 +4773463,Bright new studio in heart of LIC,7156474,Haley,Queens,Long Island City,40.74651,-73.954,Entire home/apt,175,1,0,,,1,0 +33136564,Charming Red Hook loft with yard,116826665,Christina,Brooklyn,Red Hook,40.67962,-74.01294,Entire home/apt,122,13,1,2019-06-01,0.77,1,12 +17957197,UWS studio,2372486,David,Manhattan,Upper West Side,40.7902,-73.97568000000001,Entire home/apt,150,7,0,,,1,0 +21649044,Brownstone Diamond in Clinton Hill,157563838,Ion,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95906,Entire home/apt,99,2,0,,,1,0 +16468001,Charming Upper West Private Floor,49208451,Alix,Manhattan,Upper West Side,40.7819,-73.98366999999999,Private room,200,1,2,2016-12-29,0.06,1,0 +29144832,Luxurious home in the sky overlooking 5th Ave.,214270886,Maka,Manhattan,Midtown,40.75138,-73.98143,Entire home/apt,300,1,10,2019-02-01,1.15,1,0 +26472343,1 Bedroom 3R in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69101,-73.93773,Private room,118,1,29,2019-07-01,2.46,6,288 +20245577,Big guest room on Upper west side,20850336,Yubo,Manhattan,Upper West Side,40.77621,-73.98054,Private room,140,1,13,2019-05-26,0.77,1,54 +16768665,Huge Apartment for Experiencing New York,111319972,Clayton,Manhattan,Harlem,40.82851,-73.94054,Private room,175,1,0,,,1,0 +10656360,This is a place in the UES,55036405,Shoaib,Manhattan,Upper East Side,40.77524,-73.94682,Shared room,199,1,0,,,1,0 +18402568,A Modern and bright room,33434914,Juan,Bronx,Parkchester,40.83081,-73.87586999999999,Private room,45,2,74,2019-07-02,2.89,4,34 +7873655,- G - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71714,-73.96234,Private room,60,2,107,2019-06-21,2.26,8,84 +1229484,SUNNY AND COZY BEDROOM IN BROOKLYN!,6706914,Leanne,Brooklyn,Crown Heights,40.67322,-73.95846999999999,Private room,38,5,1,2015-08-01,0.02,2,0 +33190990,Huge Designer Loft- View of New York City Skyline!,27564513,Lauren And Jeff,Brooklyn,Williamsburg,40.70396,-73.93441999999999,Entire home/apt,250,2,7,2019-06-02,2.44,1,183 +34946772,Beyond the Valley of the Doll House,263331130,Vanessa,Brooklyn,Bushwick,40.69969,-73.9199,Private room,65,1,7,2019-06-25,4.77,1,79 +25266169,"Quiet, cozy, mid-century mod apartment in Bushwick",12458767,Jehnna,Brooklyn,Bushwick,40.69044,-73.92253000000001,Private room,80,2,12,2019-03-07,0.93,1,67 +5010368,Upper East Side Gem!,25840204,Daniel,Manhattan,Upper East Side,40.77546,-73.95165,Entire home/apt,150,3,75,2019-04-27,1.44,1,234 +19805513,"Private, Sunny, lofted bedroom in Bushwick, BK",15615036,Ronnie,Brooklyn,Bushwick,40.69017,-73.916,Private room,44,1,7,2017-07-25,0.29,2,0 +10068269,"Large Rm In Williamsburg, Brooklyn",51664119,Toyosi,Brooklyn,Williamsburg,40.71274,-73.94513,Private room,130,2,1,2016-01-03,0.02,1,0 +4601325,Cozy private bedroom in Manhattan,23847354,Nicole,Manhattan,East Harlem,40.78882,-73.94869,Private room,67,1,2,2016-02-07,0.05,1,0 +6595943,Cozy 1 bedroom in a quiet neighborh,34113764,Nick,Queens,Ditmars Steinway,40.76962,-73.89604,Entire home/apt,99,1,49,2018-09-03,0.99,2,0 +20804049,Clean apartment-styled space. 10min from JFK.,148737806,Daré,Queens,Rosedale,40.6622,-73.73135,Private room,58,1,45,2019-07-04,2.02,2,84 +13446921,Sunny Room with Back Yard in Brooklyn,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65211,-73.97872,Private room,65,1,13,2016-12-11,0.35,4,0 +13398837,Master Bedroom next to cute park on the LES,22166692,Kevin,Manhattan,Lower East Side,40.72057,-73.99185,Private room,80,5,27,2018-08-26,0.73,1,0 +28960086,Tudor Village,218289083,Faysal,Queens,Ozone Park,40.68334,-73.85837,Entire home/apt,90,7,2,2018-10-26,0.22,1,90 +29847492,Cozy Studio in the Upper East (30 DAYS MIN),159598333,Sol,Manhattan,Upper East Side,40.78179,-73.94693000000001,Entire home/apt,99,30,1,2019-03-24,0.28,5,332 +34323638,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75988,-73.98666999999999,Entire home/apt,220,29,0,,,327,333 +30948241,Book NOW this New 3br Home with lots of space.,193626078,Andy,Bronx,Belmont,40.85222,-73.89277,Entire home/apt,299,1,10,2019-06-28,1.52,3,322 +27362417,Large sunny studio space w/queen bed & living room,13639385,Farah,Brooklyn,Crown Heights,40.67713,-73.94136999999999,Private room,60,3,0,,,1,179 +34323697,Sonder | The Biltmore | Bright 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75965,-73.98652,Entire home/apt,215,29,0,,,327,338 +7854307,- H - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71692,-73.96353,Private room,60,2,97,2019-06-15,2.07,8,83 +13123232,Beautiful Private Room Near Hudson River,12341146,Michelle,Manhattan,Hell's Kitchen,40.76089,-73.99879,Private room,200,1,1,2016-06-06,0.03,1,0 +6925777,Lofty/Sunny Private Rm in Bushwick!,26330490,Sandy,Brooklyn,Bushwick,40.70479,-73.92316,Private room,40,7,5,2016-08-09,0.11,1,0 +1856803,1BR Priv. East Village Apt Sleeps 4,485738,Ross,Manhattan,East Village,40.72335,-73.98549,Entire home/apt,225,3,10,2016-09-07,0.15,1,0 +19240100,"Light/Bright Artist's Studio in Red Hook, Brooklyn",29735603,Lisa,Brooklyn,Red Hook,40.6799,-74.01146999999999,Entire home/apt,90,7,3,2018-11-02,0.13,1,215 +29684573,Nice Cozy Room In Brooklyn On A Dead End Block,31039254,Sean,Brooklyn,East Flatbush,40.64843,-73.93549,Private room,45,1,8,2019-07-07,5.0,1,334 +34062693,西藏民居,218134921,Kate,Queens,Woodside,40.74904,-73.90188,Private room,85,1,0,,,1,3 +84059,So Much Room in Brooklyn,459054,Famous,Brooklyn,Crown Heights,40.67591,-73.94715,Entire home/apt,150,5,5,2018-07-22,0.05,1,0 +22328208,Gorgeous Room in Heart of Harlem,29346825,Shemel,Manhattan,Harlem,40.81688,-73.94131999999999,Private room,34,1,1,2017-12-22,0.05,1,0 +15082723,"Williamsburg Private Room, Outdoor Space w/grill",33677512,Joseph,Brooklyn,Williamsburg,40.71204,-73.9656,Private room,95,3,29,2019-07-08,0.85,1,0 +26025308,Gorgeous room available in Trendy Bushwick BK,159608581,Heather,Brooklyn,Bushwick,40.6879,-73.91183000000001,Private room,39,2,1,2018-07-27,0.09,1,0 +9475494,Upper East Side - amazing location!,3394386,Kevin,Manhattan,Upper East Side,40.78113,-73.95452,Entire home/apt,175,1,1,2015-12-27,0.02,1,0 +13523692,RARE NYC LOFT in Perfect Location,16836897,Hudson,Manhattan,Lower East Side,40.71827,-73.98983,Entire home/apt,180,4,13,2017-10-23,0.35,1,0 +14706784,Friendly and well-located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6681,-73.97726,Shared room,78,1,46,2018-02-03,1.38,2,0 +8111321,Huge 1 BR entire apt,32441059,Cory,Queens,Astoria,40.768,-73.92429,Entire home/apt,70,2,13,2019-01-11,0.28,1,159 +1937323,"Hell's Kitchen, close to All",10023559,Judson,Manhattan,Hell's Kitchen,40.76247,-73.99225,Entire home/apt,150,21,2,2015-12-17,0.04,1,203 +7108992,Huge Upper West Side Apartment - 3 rooms,3801047,Anna,Manhattan,Upper West Side,40.7982,-73.96931,Entire home/apt,187,3,1,2015-09-05,0.02,1,0 +2519770,2-3 bedroom apt in Astoria NYC,12899510,Solange,Queens,Ditmars Steinway,40.77804,-73.91623,Entire home/apt,150,1,1,2014-08-28,0.02,1,0 +11573269,"SUNNY STUDIO - 23rd FLOOR, DOORMAN",11764237,David,Manhattan,Kips Bay,40.74342,-73.97505,Entire home/apt,135,1,1,2016-04-04,0.03,1,0 +8102145,Charming UWS Private Room,26163238,Nadalie,Manhattan,Upper West Side,40.78856,-73.97368,Private room,115,1,1,2017-06-04,0.04,1,0 +33884341,Sunny Private Room close to Manhattan(Blue),255890676,Hok Thu,Brooklyn,Bushwick,40.69612,-73.92918,Private room,66,2,11,2019-07-01,4.23,1,147 +8208090,Modern private apartment in historic brownstone,43282186,Damien,Brooklyn,Bushwick,40.689890000000005,-73.92128000000001,Entire home/apt,200,2,147,2019-06-18,3.24,1,103 +17481087,Gorgeous and Renovated Chelsea Apartment,24037775,Karen,Manhattan,Chelsea,40.74392,-73.9946,Entire home/apt,250,4,0,,,1,0 +9635981,Sweet apt by Prospect Park - 20 minutes from NYC,298841,Ella,Brooklyn,Windsor Terrace,40.65992,-73.98403,Private room,63,2,22,2019-05-14,0.51,1,48 +3852988,"Lovely, modern townhouse",12615927,Kate,Brooklyn,Sunset Park,40.65957,-73.99253,Entire home/apt,135,3,15,2019-07-07,0.32,1,10 +7843604,"Big, cozy & chic! 1BR Apt in Harlem",41329387,Calatayud Family,Manhattan,Harlem,40.80755,-73.95104,Entire home/apt,100,2,193,2019-06-14,4.17,1,213 +28941808,Just Like Home!,8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69339,-73.95881,Private room,50,2,42,2019-06-22,5.02,3,17 +21728093,Adorable Williamsburg apartment,158216643,Annie,Brooklyn,Williamsburg,40.72026,-73.961,Private room,60,10,5,2018-07-19,0.27,1,0 +35085042,"Gorgeous, spacious Brooklyn Studio",189994854,Ethan,Brooklyn,Gowanus,40.67753,-73.99084,Entire home/apt,110,30,1,2019-07-01,1.0,1,1 +24857436,Spacious Bright Room near Columbia University,187914509,Kangxin,Manhattan,Upper West Side,40.80078,-73.96394000000001,Private room,50,5,4,2018-07-26,0.28,1,0 +14426680,Luxurious and Sunny 2 bed/2 bath home (1100 sqft),2678122,Tasha,Brooklyn,Williamsburg,40.717290000000006,-73.94927,Entire home/apt,180,4,64,2019-06-06,2.0,3,57 +33853158,2 bedroom on the Brighton Beach by the ocean,73397630,Anastasia,Brooklyn,Brighton Beach,40.578590000000005,-73.95962,Entire home/apt,160,2,1,2019-04-29,0.42,1,102 +6599302,"An ENTIRE, Lovely NYC Apartment",15386409,Mateo,Manhattan,Harlem,40.828790000000005,-73.93821,Entire home/apt,80,3,3,2017-08-15,0.06,1,0 +14661553,Bright and clean room in a quaint neighborhood,515095,Mei,Brooklyn,Carroll Gardens,40.67954,-73.99935,Private room,100,2,93,2019-06-23,2.78,2,74 +11334624,Sunny Friendly 3BR Lower East Side,35095754,Lorraine,Manhattan,Lower East Side,40.72048,-73.9906,Private room,325,2,130,2019-06-21,3.3,2,139 +16193259,Sunny new room C/ 30mins to Manhattan,105640471,Jason,Brooklyn,Sunset Park,40.64052,-74.01539,Private room,48,1,10,2019-06-10,0.71,8,240 +25606562,Stunning 1 bedroom/ 1 bath apartment in Manhattan,16978300,Anna,Manhattan,Upper West Side,40.77226,-73.98876,Entire home/apt,225,2,0,,,1,0 +18729461,Studio in Upper East Side,108546781,Marlène,Manhattan,Upper East Side,40.77958,-73.95025,Entire home/apt,75,15,5,2018-08-25,0.2,1,1 +13511266,"""FALL IN LOVE WITH NYC & MY HOME""",76192815,Sam,Manhattan,Lower East Side,40.71932,-73.99396,Entire home/apt,100,32,3,2018-05-10,0.11,5,243 +6713911,"Perfect studio w/ Coutryard, piano!",34988058,Sheri,Manhattan,Upper East Side,40.762170000000005,-73.96621999999999,Entire home/apt,275,1,0,,,1,0 +32049606,3 private bedrooms in historic Harlem brownstone?,58220119,Rumiko,Manhattan,Harlem,40.8167,-73.94421,Private room,300,2,1,2019-05-27,0.7,1,76 +24656865,"Comfortable Simplistic, 8th Av walk to destination",186029613,Jazmin,Manhattan,Harlem,40.82452,-73.94219,Entire home/apt,140,2,23,2019-06-23,1.64,1,0 +28414122,3 Bedroom Artsy Apartment. Best Deal in Brooklyn.,7799229,Artem,Brooklyn,Williamsburg,40.71567,-73.95831,Entire home/apt,207,2,28,2019-06-13,3.08,2,271 +17991699,"CLASSIC UWS 3BR FAM RIVER, doorman",231704,Judith,Manhattan,Upper West Side,40.78913,-73.98043,Entire home/apt,317,31,0,,,3,82 +7275122,Stunning NYC Views,21336136,Brooklyn,Brooklyn,Vinegar Hill,40.70107,-73.98391,Entire home/apt,178,3,163,2019-06-30,3.4,1,201 +18377036,"Bright, Beautiful Double Room",13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85487,-73.91391,Private room,53,3,55,2019-05-27,2.15,4,80 +6884254,Cozy quiet room off of Broadway,19789003,Mike,Brooklyn,Bedford-Stuyvesant,40.68666,-73.91972,Private room,35,1,1,2015-08-22,0.02,1,0 +4226535,Bright Top Floor Apartment In The Heart Of BK,14543419,Juli,Brooklyn,Crown Heights,40.6721,-73.95371999999999,Entire home/apt,99,5,16,2018-12-06,0.28,1,0 +21512039,"Perfect Studio, Great location!",16255906,Alejandra,Manhattan,Financial District,40.70507,-74.009,Private room,143,2,3,2018-02-08,0.15,1,0 +4775547,"Private Studio On Roof, Private bath + Deck",4601412,Mia,Brooklyn,Bushwick,40.69437,-73.92607,Private room,90,5,107,2018-04-13,2.03,2,133 +12590077,Sunny Duplex in Brooklyn's Best Area,43438475,Viviana,Brooklyn,South Slope,40.66872,-73.98906,Entire home/apt,280,3,30,2019-06-10,0.79,3,125 +602142,2B+Office Perfect 4 Young Family!!,2233907,Kyle,Brooklyn,Prospect Heights,40.67963,-73.97237,Entire home/apt,260,14,5,2014-10-18,0.07,1,0 +29487162,"Cozy Room In The Heart Of Bushwick, Brooklyn",62925063,Andrea,Brooklyn,Bushwick,40.70167,-73.93308,Private room,50,1,3,2019-05-17,0.36,2,342 +3867293,Breathtaking Penthouse Skyline Room & 20min to NYC,18260299,Ota,Brooklyn,Bushwick,40.69349,-73.90726,Private room,50,4,3,2019-01-09,0.06,6,79 +16023497,Huge Duplex in the Heart of Brownstone Brooklyn,1447642,Chana,Brooklyn,Gowanus,40.68309,-73.98529,Entire home/apt,340,3,12,2019-07-03,0.4,1,63 +8780378,1 bedroom in large clean apt,2774528,Andrew,Brooklyn,Bushwick,40.70021,-73.92241,Private room,60,3,1,2015-10-14,0.02,1,0 +31809829,Beautiful Room in Bushwick,11672284,Hea,Brooklyn,Bushwick,40.70471,-73.92477,Private room,89,2,0,,,2,0 +21173263,Private Entrance Room in Brooklyn w/ Queen Bed,48510097,Ellen,Brooklyn,Bushwick,40.6897,-73.91512,Private room,60,2,1,2017-10-09,0.05,1,0 +22013423,Fully Stocked 1-Bedroom in Astoria!,48356178,Brandon,Queens,Long Island City,40.75797,-73.92908,Entire home/apt,113,5,9,2018-09-09,0.49,1,0 +32884159,Huge brooklyn duplex,238544255,Kynara,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91272,Private room,45,1,5,2019-06-01,1.28,1,37 +34999766,Converted 2 Bed 1 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.74442,-73.9717,Entire home/apt,225,30,0,,,23,343 +20997574,Spacious & Bright apt in Soho (Top 1% ♥ NYC pick),40507331,Arnaud,Manhattan,Nolita,40.72169,-73.9965,Entire home/apt,325,2,8,2018-10-22,0.37,1,86 +32237566,Sonder | Stock Exchange | Simple 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70648,-74.01241,Entire home/apt,229,2,7,2019-05-26,1.69,327,337 +28662351,Large Room in Manhattan Steps to Subway,51413809,Erik,Manhattan,East Harlem,40.79933,-73.94283,Private room,59,1,29,2019-06-15,2.99,1,247 +32091007,"LRG DESIGNER STUDIO/1-BED, MIDTOWN, DOORMAN, ELEV.",23502183,Daniel,Manhattan,Midtown,40.75445,-73.96471,Entire home/apt,159,30,0,,,2,249 +14783394,Bright Room in Bushwick,71379648,Jacob,Brooklyn,Bushwick,40.68815,-73.91344000000001,Private room,62,3,7,2018-03-31,0.22,1,0 +22186114,Private Room in Brooklyn,16467711,Tori,Brooklyn,Bushwick,40.69743,-73.92171,Private room,75,1,2,2018-01-01,0.11,1,0 +19410180,"Quiet, Comfy Room in Unbeatable Wburg Location!",7252535,Wes,Brooklyn,Williamsburg,40.71228,-73.9599,Private room,80,2,31,2019-06-15,1.26,2,5 +747159,sunny private room in east village,3801683,Jackson,Manhattan,Gramercy,40.73158,-73.98303,Private room,120,4,132,2019-07-02,1.62,1,267 +27459543,Central Park High Floor Luxury One bedroom,17477908,Mat,Manhattan,Upper West Side,40.79285,-73.9676,Entire home/apt,264,30,2,2018-12-24,0.25,10,343 +25434447,LGBT Friendly 15 mins to Union Square!! PRVTE BATH,147229558,Viktoria,Brooklyn,Williamsburg,40.70883,-73.93859,Private room,230,1,21,2019-04-29,1.72,1,24 +32293598,Beautiful Mid-century Modern One Bedroom Apartment,42427156,Lisa,Queens,Astoria,40.76624,-73.91475,Entire home/apt,89,3,18,2019-06-27,4.29,1,0 +33956883,Beautiful Cozy Private Room!,256403429,Brenda,Brooklyn,East Flatbush,40.65214,-73.95159,Private room,53,1,15,2019-07-06,5.56,5,77 +28815052,Quaint West Village Hideaway,217321404,Sophia,Manhattan,West Village,40.73953,-74.0049,Entire home/apt,225,3,15,2019-05-16,1.72,1,6 +13343144,Warm and Cozy Paradise,54807420,Emmanuel,Queens,Astoria,40.75619,-73.92546,Private room,80,60,3,2017-01-19,0.1,1,83 +17420832,Cozy modern stay,25426687,Cathy,Brooklyn,Borough Park,40.64551,-73.9981,Entire home/apt,110,2,45,2019-07-06,1.65,1,342 +7711161,Large and Sunny room in Downtown NY,3737483,Miguel,Manhattan,Chinatown,40.71382,-73.99769,Private room,75,6,2,2016-04-30,0.05,1,0 +27935946,Cozy room 20-101,115993835,Shimin,Brooklyn,Sunset Park,40.64021,-74.00867,Private room,29,1,18,2019-04-27,1.73,5,0 +12167152,"Chelsea ,Duplex ,Calm ,Fantastic",51434373,Yael,Manhattan,Chelsea,40.73971,-73.99829,Private room,179,3,69,2019-06-19,1.8,1,104 +34148267,"Stunning Private Apt, Perfect Location Premium Bed",14552154,Leslie,Manhattan,Midtown,40.74411,-73.98209,Entire home/apt,239,3,5,2019-06-28,2.5,4,319 +8568363,Spacious 1 Bedroom Available,45094827,Rivkie,Brooklyn,Sheepshead Bay,40.60676,-73.96011999999999,Entire home/apt,100,1,0,,,1,0 +14383283,"(Room201)7分钟拉瓜迪机场,19分钟肯尼迪机场。皇后区法拉盛中心,地段超好。#201",75216989,Wenqin,Queens,Flushing,40.76333,-73.82879,Private room,35,1,61,2019-05-18,1.72,4,342 +35967171,Private Room in Luxury Apt Building - NYC,19445589,Nicole,Manhattan,Hell's Kitchen,40.75707,-73.99764,Private room,225,2,0,,,1,20 +1815505,Peaceful Oasis. 25 mins. Manhattan,9509269,Carlos,Queens,Briarwood,40.71594,-73.82264,Private room,56,5,80,2019-06-08,1.16,2,298 +35156223,Peaceful Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68734,-73.93255,Private room,42,30,0,,,27,248 +7743287,HUGE Private Loft Bedroom! (June),40699990,Liesl,Brooklyn,Crown Heights,40.67589,-73.9287,Private room,75,2,0,,,1,0 +13278654,Large 1 Bed - Ideal UWS Location,8089285,Maura,Manhattan,Upper West Side,40.77865,-73.98104000000001,Entire home/apt,149,2,1,2016-08-20,0.03,1,0 +13900712,Homey 1BR close to US Open,63097027,J.A.,Queens,Jackson Heights,40.75145,-73.88946,Entire home/apt,150,3,4,2017-09-15,0.12,1,0 +13468830,Brooklyn palace,1661309,Richard,Brooklyn,Bushwick,40.69887,-73.93564,Entire home/apt,75,6,9,2019-06-14,1.14,1,53 +1475661,Gorgeous Apt. 20 min to Manhattan!,7897301,Rickey,Queens,Astoria,40.7703,-73.93306,Entire home/apt,140,2,13,2014-09-01,0.18,1,0 +35038269,"Comfy Space in Living Room, Midtown Manhattan",263901573,Maria,Manhattan,Midtown,40.756240000000005,-73.97171,Shared room,99,1,9,2019-07-03,7.5,3,15 +8737468,Spacious Private Room,16934136,Tracey,Queens,Queens Village,40.71341,-73.74804,Private room,65,1,0,,,1,0 +28406990,Cozy apartment in trendy financial district,214464499,Mel,Manhattan,Financial District,40.70498,-74.00992,Entire home/apt,200,1,8,2019-07-06,0.81,1,0 +28763093,"Cozy, lux studio in prime NYC with amazing view",27815282,Milan,Manhattan,Theater District,40.76226,-73.98536999999999,Entire home/apt,175,3,5,2019-06-14,0.58,1,83 +35249977,Sunny charming room right by Classon av G,10284594,Elise,Brooklyn,Bedford-Stuyvesant,40.685590000000005,-73.95478,Private room,38,30,0,,,1,1 +5737759,Sunny Studio Loft in Greenpoint,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94051,Entire home/apt,129,30,1,2018-11-07,0.12,52,311 +6988905,A Perfect Midtown Studio (24/hr Doorman),36133913,Matt,Manhattan,Midtown,40.7544,-73.97345,Entire home/apt,190,2,25,2018-11-19,0.51,1,4 +5113910,Designer's Red Hook Apartment,10125456,Carly,Brooklyn,Red Hook,40.674040000000005,-74.01021,Entire home/apt,115,5,51,2019-05-15,0.95,1,8 +25053445,Brooklyn Heights Oasis,106436589,Wendy,Brooklyn,Brooklyn Heights,40.69915,-73.9962,Private room,120,1,18,2019-06-23,1.42,2,75 +35574349,SoHo SoHo SoHo,159112181,Zachary And Ashley,Manhattan,SoHo,40.72683,-74.00222,Entire home/apt,275,1,1,2019-07-01,1.0,1,308 +25253576,Sunny & spacious Brooklyn Brownstone Bedroom,190792355,Saron,Brooklyn,Bedford-Stuyvesant,40.69464,-73.94963,Private room,95,2,4,2018-06-29,0.29,1,0 +16227620,Lovely 1 Bedroom Greenpoint Apartment Near Park,3548768,Elizabeth,Brooklyn,Greenpoint,40.72314,-73.94027,Entire home/apt,120,4,0,,,1,0 +6614604,"Nice, cozy double size bedroom",6492234,Martin,Manhattan,Washington Heights,40.83721,-73.93894,Private room,50,4,0,,,1,0 +21395676,Huge master bedroom in pristine Nolita loft,907037,Morgan,Manhattan,Little Italy,40.71966,-73.99591,Private room,325,2,5,2018-12-09,0.26,1,0 +18617676,Spacious apartment in the Lower east side,129333453,Larry,Manhattan,Lower East Side,40.72037,-73.98701,Entire home/apt,110,3,19,2019-06-29,0.73,1,34 +32237306,Sonder | Stock Exchange | Calming 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70586,-74.01078000000001,Entire home/apt,229,2,14,2019-06-23,3.65,327,323 +4853287,Currently Not Avail,23621417,Agel,Brooklyn,Williamsburg,40.70969,-73.94925,Entire home/apt,120,1,0,,,1,0 +24042844,"LOVE MANHATTAN 2 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.80863,-73.92121,Private room,50,1,33,2019-07-03,2.14,4,75 +676257,small private bedroom female only,1465539,Ouii,Manhattan,Kips Bay,40.74166,-73.97811,Private room,65,5,39,2019-01-18,0.55,1,318 +28129768,Cozy private room,10009047,Alexandra,Queens,Astoria,40.76605,-73.908,Private room,65,3,15,2019-04-10,1.51,1,0 +67288,Central Park 1BR sunny condo,101597,Per,Manhattan,East Harlem,40.79603,-73.94903000000001,Entire home/apt,124,28,22,2019-06-15,0.26,1,103 +808851,Comfortable Room in UES - NYC ,1289936,Jhon,Manhattan,East Harlem,40.78728,-73.94579,Private room,95,4,150,2019-06-23,1.88,1,192 +31948183,Stylish Bushwick apartment with private backyard,12166574,Jordy,Brooklyn,Bushwick,40.701440000000005,-73.92662,Entire home/apt,120,2,4,2019-05-28,0.85,1,14 +19222766,Quiet 1 bedroom in MANHATTAN ( Hamilton Heights),9963151,Milan,Manhattan,Harlem,40.82319,-73.95103,Entire home/apt,122,4,16,2019-06-16,0.67,1,5 +7491626,Balcony Oasis & Open View - 20 min to Manhattan,30662827,Nicole,Queens,Astoria,40.767,-73.93051,Entire home/apt,95,4,1,2016-07-08,0.03,1,0 +583337,Lovely Condo Carroll Gardens/Gowanus,2874587,Ibie,Brooklyn,Carroll Gardens,40.67859,-73.99444,Entire home/apt,115,4,61,2019-03-09,0.72,1,15 +16363175,PENTHOUSE OASIS IN THE HEART OF CHELSEA /FLATIRON,4366982,Rami,Manhattan,Gramercy,40.73741,-73.99003,Entire home/apt,149,10,9,2019-02-17,0.29,1,19 +22587295,Luxury apartment in beautiful Boerum Hill!,21784449,Stephanie,Brooklyn,Boerum Hill,40.68611,-73.98336,Entire home/apt,175,3,46,2019-06-20,2.84,1,170 +29923760,Lovely BRIGHT apt in Ft. Hamilton Brooklyn,186701037,Gabriela,Brooklyn,Dyker Heights,40.62827,-74.01078000000001,Shared room,39,5,1,2019-06-01,0.77,2,89 +22214594,A birdcage on the Upper West Side,81503286,Aissa,Manhattan,Upper West Side,40.79641,-73.97088000000001,Entire home/apt,75,3,5,2018-02-18,0.28,1,0 +23018280,Cozy studio with a fireplace close to the train,10836962,Katya,Bronx,Pelham Bay,40.85407,-73.83264,Entire home/apt,69,3,69,2019-06-19,4.21,1,21 +9107450,Spacious 2BR apt in UES,3664194,Michael,Manhattan,Upper East Side,40.78419,-73.94851,Entire home/apt,210,5,0,,,1,0 +855462,1BR in Charming Downtown Apt,4469832,Stefan,Manhattan,Lower East Side,40.72034,-73.98585,Private room,90,15,25,2018-10-10,0.46,1,35 +15102026,Large private bed/bath in 3BR close to transit,19983675,Ian,Brooklyn,Bedford-Stuyvesant,40.68678,-73.94467,Private room,55,2,3,2016-10-29,0.09,1,0 +14888012,Brooklyn Vibe,93392260,Kathleen,Brooklyn,East New York,40.67257,-73.89081999999999,Private room,55,5,27,2019-06-08,0.81,2,42 +19936586,Huge Sunny room in BedStuy (musician friendly),26091462,Tanya,Brooklyn,Bedford-Stuyvesant,40.69499,-73.94921,Private room,100,1,1,2017-11-05,0.05,2,0 +15614302,2. Private 1BR Suite in Shared Marine Park Apt.,78276061,David,Brooklyn,Flatlands,40.61863,-73.93183,Private room,55,2,39,2019-06-29,1.27,1,247 +25931882,Large sunny room in Modern Brooklyn Townhouse,33210753,Can,Brooklyn,Clinton Hill,40.69631,-73.96288,Private room,65,3,11,2019-01-01,0.85,1,356 +21782158,Beautiful Sunny Private Room #3 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61466,-74.00504000000001,Private room,70,2,24,2019-06-02,1.22,4,315 +7263899,Large Room in Bushwick Near Trains!,38029848,Ramona,Brooklyn,Bedford-Stuyvesant,40.69649,-73.93645,Private room,38,1,2,2015-11-07,0.04,1,0 +34422726,Home away from home,234422924,Arlene,Bronx,City Island,40.8439,-73.78792,Private room,29,1,2,2019-06-16,1.43,1,18 +3439207,Comfortable and Convenient,5634395,Sarah,Manhattan,Harlem,40.82186,-73.95671999999999,Private room,60,7,11,2018-08-26,0.18,2,0 +154934,Harlem/Hamilton Heights Cozy Room,745069,Kimberly,Manhattan,Harlem,40.82426,-73.9463,Private room,75,3,38,2018-05-08,0.42,3,365 +33138741,Most Convenient Apartment in Upper Manhattan,249500632,Mike,Manhattan,Harlem,40.81476,-73.94723,Entire home/apt,75,30,1,2019-05-31,0.77,1,13 +474283,Studio apartment by Columbus Circle,950232,Deborah,Manhattan,Hell's Kitchen,40.76487,-73.98470999999999,Entire home/apt,117,7,0,,,1,0 +6004786,Lovely Soho / Village 1BR,14477996,Simone,Manhattan,SoHo,40.72703,-74.00286,Entire home/apt,350,2,10,2015-12-21,0.2,1,0 +20423928,Artistic Bedstuy Apartment,12570239,Rachel,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9438,Private room,85,4,2,2017-10-09,0.09,1,0 +808476,Great Space / Private Room,3775799,Wendee,Manhattan,Harlem,40.83378,-73.94966,Private room,85,1,1,2013-11-01,0.01,1,365 +4715740,1 BR with Steinway Grand Piano (30 Day Min),13976132,Joseph,Manhattan,Harlem,40.79973,-73.95541,Entire home/apt,120,3,133,2019-06-22,2.39,1,4 +35461822,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.97399999999999,Private room,48,30,0,,,25,67 +18543045,Room in Bright and Spacious East Village Apartment,7130003,Ranita,Manhattan,East Village,40.72205,-73.98389,Private room,169,4,29,2019-06-07,1.14,2,220 +22309943,Private room in Brooklyn 3 blocks from subway.,163087464,David,Brooklyn,Bedford-Stuyvesant,40.69131,-73.95666,Private room,59,4,53,2019-07-02,2.88,1,39 +22357450,Stunning & spacious loft in the heart of W.berg,137822449,Kaitlin,Brooklyn,Williamsburg,40.71845,-73.95533,Entire home/apt,179,2,13,2019-07-02,0.71,1,35 +1859901,Prime East Village Spacious 1 BED,9702964,Amanda,Manhattan,East Village,40.72394,-73.98940999999999,Entire home/apt,150,4,43,2018-12-30,0.68,1,188 +31859521,Home Away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.69472,-73.89663,Private room,50,2,18,2019-06-07,3.6,2,127 +61406,Great room in great location,297176,Bethania,Manhattan,Harlem,40.80335,-73.9575,Private room,80,14,10,2019-06-01,2.21,2,0 +21260624,"NEW ROMANTIC SEPARATE APARTMENT , Free parking .",153180105,Lana,Staten Island,Lighthouse Hill,40.57641,-74.12931,Entire home/apt,115,2,29,2019-01-03,1.41,1,71 +17457160,Sunny room in European-style apartment,432867,Bart,Brooklyn,Prospect Heights,40.67613,-73.97095,Private room,64,2,16,2018-06-27,0.57,1,6 +17107656,Colorful 1 Bedroom in the Heart of the E. Village,65971028,Tamarinda,Manhattan,East Village,40.72709,-73.98612,Entire home/apt,125,30,2,2017-09-01,0.08,1,0 +23437788,Premier Location 2 Blocks to Central Park E. 62nd!,56283770,Lia,Manhattan,Upper East Side,40.76483,-73.96675,Entire home/apt,225,30,1,2018-08-16,0.09,6,240 +24808062,"Perfect for groups! 3BR, 2Bath feet from Subway!",97042500,Raphael,Manhattan,Harlem,40.80393,-73.95205,Entire home/apt,344,2,9,2019-01-23,0.75,4,25 +27630572,Upper West Side Studio,44034761,Matt,Manhattan,Upper West Side,40.779790000000006,-73.98513,Entire home/apt,135,1,0,,,2,93 +14274403,New York City Getaway; very close to LGA,87041889,Laverne & David,Queens,East Elmhurst,40.76777,-73.87733,Entire home/apt,76,2,75,2019-06-24,4.39,1,35 +22175113,Cozy Room in Brooklyn- 2 blocks from subway!,9104749,Bibi,Brooklyn,Bedford-Stuyvesant,40.69134,-73.95551,Private room,50,3,15,2018-05-30,0.8,1,0 +17980140,Penthouse in the Clouds,12390595,Marian,Brooklyn,Bushwick,40.69365,-73.9109,Private room,60,7,1,2017-06-16,0.04,1,0 +5238,Cute & Cozy Lower East Side 1 bdrm,7549,Ben,Manhattan,Chinatown,40.713440000000006,-73.99037,Entire home/apt,150,1,160,2019-06-09,1.33,4,188 +18675083,Lux apt,18408365,Michele,Manhattan,Kips Bay,40.74518,-73.97929,Entire home/apt,275,3,0,,,1,0 +1466081,JFK Jupiter Suites w/ Parking,7853251,Enyinne,Queens,St. Albans,40.6891,-73.7733,Private room,59,1,190,2019-06-16,2.64,5,359 +18415952,Convenient Downtown Apartment in LES/Chinatown,39619320,Grisha,Manhattan,Chinatown,40.71495,-73.99056,Private room,60,1,6,2017-06-29,0.23,1,0 +15761285,Beautiful & spacious apartment on Upper East Side,24425145,Alexandra,Manhattan,Upper East Side,40.76395,-73.96195999999999,Entire home/apt,270,1,3,2018-03-25,0.1,1,0 +25810952,1 bed in the heart of Financial District of NYC,43279803,Chelsea,Manhattan,Financial District,40.709340000000005,-74.01001,Private room,80,3,34,2019-06-22,2.58,1,83 +6079197,Single private room near train 1,31555753,Naichen,Manhattan,Upper West Side,40.80272,-73.96634,Private room,45,1,7,2015-08-02,0.14,1,0 +33474952,Spacious private bedroom in East Village / StMarks,95892016,Leonora,Manhattan,East Village,40.72503,-73.98465999999999,Private room,125,1,3,2019-06-15,0.95,5,318 +2728293,East Village w/ Private Bathroom & Roof & Elevator,12511213,Vijay,Manhattan,East Village,40.7221,-73.98259,Private room,90,4,1,2016-06-13,0.03,1,0 +34480144,Penn room 11,244817841,Aminul,Brooklyn,East New York,40.66816,-73.89577,Private room,38,7,3,2019-06-07,1.61,13,239 +10165064,❤️FAB APT WITH PRIVATE GARDEN NEAR CENTRAL PARK!,39603281,Marty,Manhattan,Upper West Side,40.79437,-73.97152,Entire home/apt,165,1,188,2019-07-05,4.42,1,328 +3452721,Prime Williamsburg 1 bd apartment,17130308,David Jerome,Brooklyn,Williamsburg,40.721540000000005,-73.95449,Entire home/apt,200,5,7,2016-01-02,0.12,1,0 +32770484,"Big Gorgeous Room•A/C| Close NYC +Modern & Clean",192187594,Joselyn,Queens,Maspeth,40.72504,-73.88976,Private room,55,2,9,2019-06-23,2.35,1,180 +18842882,Kosher Midwood/Flatbush Apartment,57821225,Alyssa,Brooklyn,Midwood,40.62017,-73.96514,Entire home/apt,85,7,1,2017-07-29,0.04,1,0 +855206,Bedroom with Private Bath and Roof,4467554,Sunny,Manhattan,East Village,40.72957,-73.98406,Private room,99,5,8,2015-11-05,0.14,1,0 +16230255,Cozy room in the lively East Village,50053528,Julia,Manhattan,East Village,40.7246,-73.98258,Private room,80,3,110,2019-06-17,3.48,1,11 +13940091,Your own Midtown Manhattan Apt & private Garden,61649970,Chantelle,Manhattan,Murray Hill,40.747440000000005,-73.97299,Entire home/apt,219,1,56,2019-06-09,1.58,2,217 +26033963,Designers 1 bedroom West Village apartment,6295182,Jeremy,Manhattan,West Village,40.73434,-73.99963000000001,Entire home/apt,230,2,11,2019-05-27,0.95,1,59 +20696496,The Consuello,148130354,George,Brooklyn,Bedford-Stuyvesant,40.68591,-73.9249,Entire home/apt,159,3,36,2019-05-19,1.6,2,2 +35164003,Stylish SoHo Apartment,42261215,Daniel,Manhattan,SoHo,40.7245,-74.00444,Private room,150,4,0,,,1,42 +34723124,little sweet room(4),255641440,Li,Queens,Flushing,40.76134,-73.80776,Private room,42,1,1,2019-05-18,0.57,7,331 +36037081,Great deal-private-NON shared apt in Chelsea,271114286,Deemy,Manhattan,Chelsea,40.741690000000006,-73.99723,Entire home/apt,240,2,0,,,1,6 +24038899,Harlem suit La barrio,10828579,Najah,Manhattan,East Harlem,40.79815,-73.93906,Entire home/apt,115,7,7,2018-11-01,0.48,2,0 +30764665,Large one bedroom with 2 walk through living rooms,230196849,Mariia,Manhattan,East Harlem,40.78909,-73.94153,Entire home/apt,350,2,4,2019-05-19,0.63,1,81 +23527260,Soulful & Spacious E.V home for two or just you.,39538634,Gabija,Manhattan,East Village,40.72608,-73.98258,Entire home/apt,174,2,0,,,1,0 +29800110,"Modern, comfy, and cool",49701856,Rachel,Brooklyn,Bushwick,40.69222,-73.90695,Entire home/apt,150,3,22,2019-07-02,2.89,1,50 +33390413,Gorgeous Lower Manhattan studio for summer sublet,251545269,Royi,Manhattan,Financial District,40.70613,-74.01583000000001,Entire home/apt,135,35,0,,,1,105 +8800203,Spacious Williamsburg 1 bedroom!,22159648,Sinat,Brooklyn,Williamsburg,40.7057,-73.94258,Entire home/apt,170,1,8,2018-09-19,0.19,2,0 +18394653,Brooklyn Paradise,44140036,Ricardo,Brooklyn,East Flatbush,40.65062,-73.93486999999999,Private room,60,2,20,2019-04-01,0.81,2,190 +2690370,Spectacular Views of Mid-Town,480923,Diane,Queens,Long Island City,40.74606,-73.95765,Entire home/apt,130,30,1,2014-08-04,0.02,1,0 +32252006,Upper Ditmars Top FL of Home with Patio,7973451,Chris,Queens,Ditmars Steinway,40.77315,-73.89908,Entire home/apt,85,5,1,2019-04-01,0.3,1,84 +33944413,Large modern one bedroom apartment -1 block subway,248831780,Camille,Queens,Astoria,40.76939,-73.92139,Entire home/apt,175,1,0,,,1,185 +28438408,The Artist's House & Roof Garden (part 2!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65518,-73.95664000000001,Private room,40,20,7,2019-04-28,0.84,4,34 +30393583,"Bespoke Central Chelsea 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73939,-73.99613000000001,Entire home/apt,343,30,0,,,232,356 +19643201,Time Square - Hell’s Kitchen,12244687,Cesare Friend,Manhattan,Hell's Kitchen,40.76223,-73.99458,Entire home/apt,163,6,25,2019-06-08,1.16,1,266 +204959,Comfortable. Spacious. Private Room.,464506,Ange,Manhattan,Chinatown,40.713,-73.99752,Private room,95,3,172,2019-07-02,1.84,2,64 +10351249,Spacious 2 Bedroom Lower East Side,53281880,Sandra,Manhattan,Chinatown,40.71288,-73.9974,Entire home/apt,180,2,167,2019-06-25,4.04,1,261 +6655786,"Sunny, modern 1 bedroom condo",7088466,Carly,Brooklyn,Prospect Heights,40.67904,-73.967,Entire home/apt,165,2,13,2016-07-04,0.27,1,0 +29038655,"Small Cozy Room in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76696,-73.91108,Private room,55,1,4,2019-01-02,0.45,3,0 +7199464,Upper West Side Rm by Central Park!,21651082,Brooks,Manhattan,Upper West Side,40.78487,-73.97816,Private room,68,6,1,2015-07-27,0.02,1,0 +6799130,1 Bedroom available for the entirety of September,35590273,Nikima,Brooklyn,Red Hook,40.67659,-74.00643000000001,Private room,35,10,1,2015-09-02,0.02,2,0 +23487775,Perfect Southside Williamsburg,90334552,Elizabeth,Brooklyn,Williamsburg,40.71254,-73.96183,Entire home/apt,220,1,0,,,1,0 +25843716,5min to JFK! Private Queen Room in New home! R2,6754369,Johann,Queens,Jamaica,40.69238,-73.80247,Private room,85,1,37,2019-03-23,2.8,4,297 +29653137,"♀ Female only Shared Bedroom, Double Bed",204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67801,-73.93141999999999,Shared room,35,15,0,,,14,0 +13056210,Very large room for 1 adult,72291606,Jon,Brooklyn,Bushwick,40.690290000000005,-73.91899000000001,Shared room,75,1,25,2017-03-07,0.66,1,155 +35385949,Private room 25 min to Manhattan,263778743,Pavel,Brooklyn,Flatbush,40.64621,-73.96208,Private room,60,14,0,,,1,76 +26808908,Twin Cabin with a Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72259,-73.99399,Private room,84,1,0,,,8,0 +14281526,Queens Village Vacation Getaway,86209218,Sophia,Queens,Queens Village,40.71168,-73.74037,Entire home/apt,65,1,152,2019-07-05,4.67,1,335 +28688612,Upper west side room,133762456,Gloria,Manhattan,Upper West Side,40.78588,-73.97117,Private room,200,4,0,,,1,365 +24735077,Studio of your own with a yard - pet friendly!,87328,Danielle,Brooklyn,Park Slope,40.67917,-73.97951,Entire home/apt,120,5,1,2018-05-15,0.07,1,0 +11984115,Sunny 1 BR Apt in Bed Stuy,25810,Sasha,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95089,Entire home/apt,75,5,7,2018-08-10,0.18,1,0 +22099266,Aquamarine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.694590000000005,-73.95551,Private room,65,2,22,2019-06-20,1.64,34,289 +8404499,Spacious and sunny 1BR w terrasse,6630320,Florie,Brooklyn,Williamsburg,40.711090000000006,-73.95918,Entire home/apt,200,2,7,2017-07-06,0.15,1,0 +923566,Sunlit Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78775,-73.98151999999999,Entire home/apt,200,6,22,2019-01-04,0.28,2,354 +34121613,"Private room in spacious, cozy Brooklyn home.",3842238,Beverly,Brooklyn,Bushwick,40.69013,-73.91176999999999,Private room,65,1,1,2019-07-01,1.0,1,88 +3725902,"Sunny zen apt in Park Slope, BK",4830699,Jennifer,Brooklyn,Gowanus,40.6779,-73.98421,Entire home/apt,162,1,9,2016-09-06,0.23,1,0 +16514760,Large 1BR Brooklyn Apt,45293248,Nicholas,Brooklyn,Williamsburg,40.70589,-73.95123000000001,Entire home/apt,137,3,3,2017-09-04,0.1,1,0 +24699739,Sunny Room in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66807,-73.9906,Private room,40,5,7,2019-05-10,0.49,2,0 +31085554,Paradise in New York City 2,185265758,Shama,Manhattan,Harlem,40.82269,-73.94969,Entire home/apt,247,2,24,2019-07-06,4.26,2,263 +19239282,Beautiful brownstone apartment on quiet street,612818,Emilie,Brooklyn,Carroll Gardens,40.67847,-73.99924,Entire home/apt,125,2,11,2019-07-01,0.45,1,26 +7194042,Spacious Williamsburg Loft Studio,7546816,Emma,Brooklyn,Williamsburg,40.71781,-73.96251,Entire home/apt,168,2,20,2018-11-11,0.41,1,0 +9826628,"Cozy Room, Huge Yard, Trendy Brooklyn",820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.6913,-73.9406,Private room,60,1,113,2019-06-27,2.66,3,332 +31313153,small room in Manhattan. Close to major nyc sites,37280441,Mary,Manhattan,Morningside Heights,40.81053,-73.96123,Private room,53,1,1,2019-01-09,0.17,2,0 +30661174,Private Room in Heart of Brooklyn!,189876110,Joy,Brooklyn,Crown Heights,40.67616,-73.9404,Private room,59,1,2,2018-12-25,0.29,1,0 +34256727,"Private, Cozy Escape! Near all!",49216953,Marina,Staten Island,Midland Beach,40.57568,-74.09522,Entire home/apt,115,2,2,2019-06-20,2.0,1,231 +21435800,Private Brownstone Basement Studio Seasonal Space,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68623,-73.93807,Entire home/apt,50,2,46,2019-07-01,2.23,5,70 +25263327,Jamaica Apartment Mins from Train & Dining,103104686,Evolve,Queens,Jamaica,40.67555,-73.77812,Entire home/apt,125,2,0,,,2,71 +19946965,Comfortable PRIVATE ROOM in a great location,62710779,Husain,Manhattan,Upper West Side,40.79982,-73.96410999999999,Private room,89,4,1,2017-08-03,0.04,1,0 +34509302,Perfect room for road warrior 20mins to Manhattan,7832790,Michael,Queens,Astoria,40.76269,-73.91232,Private room,90,1,2,2019-06-03,1.25,2,90 +35567504,Private room in big house in Bushwick,13064420,Nicolás,Brooklyn,Bushwick,40.69014,-73.91530999999999,Private room,50,7,0,,,1,6 +17447150,1 BR Contemporary Luxury Apartment w W/D in UWS,15145088,Izi,Manhattan,Upper West Side,40.78688,-73.97403,Entire home/apt,184,30,3,2018-10-22,0.12,8,346 +16219145,Loft Studio in Heart of Fort Greene,40721357,Randi,Brooklyn,Fort Greene,40.68814,-73.97452,Entire home/apt,150,2,34,2019-05-27,1.11,1,3 +31647962,Spacious and stylish Harlem apartment,237280886,Nicola,Manhattan,Harlem,40.82636,-73.94985,Entire home/apt,95,2,0,,,1,0 +284855,Charming Apt in the Best Location!,1482460,Dara,Manhattan,West Village,40.73362,-74.00923,Entire home/apt,240,5,94,2019-06-19,1.1,1,134 +9854420,Beautiful one bedroom in Soho,33889947,Gautier,Manhattan,SoHo,40.72767,-74.00344,Entire home/apt,200,2,20,2017-04-24,0.48,1,0 +25476912,3rd floor: Charming 2 BR guest suite with balcony,38675275,Margaret,Queens,Belle Harbor,40.57592,-73.84823,Private room,200,2,4,2019-06-16,1.28,2,332 +34569686,Sonder | 116 John | Dashing Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.00525,Entire home/apt,100,29,0,,,327,342 +21109039,Convenient 2 BR in Downtown Flushing Chinatown,5962328,Alan,Queens,Flushing,40.75951,-73.82189,Entire home/apt,110,30,5,2019-03-18,0.27,15,297 +27584957,4Js Room4You,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65068,-73.91811,Private room,75,1,2,2019-04-26,0.21,3,125 +19311153,Studio in Sunny Sanctuary,48891291,Chelsea,Brooklyn,Bushwick,40.70385,-73.92513000000001,Private room,40,2,3,2017-09-24,0.12,1,0 +17669480,Sunny Brownstone Studio in BedStuy Brooklyn,112814443,Jamal,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94618,Entire home/apt,125,2,104,2019-06-12,3.69,1,268 +35408591,Stylish studio by Fulton station,107724585,Jessie,Manhattan,Civic Center,40.71232,-74.00689,Entire home/apt,185,30,0,,,2,58 +17368006,Cabins at Chelsea (NYC),117365574,Maria,Manhattan,Chelsea,40.74819,-73.9954,Private room,82,1,147,2019-06-23,5.08,5,292 +21718049,"Cosy 1 bedroom, in a pre war building in Chelsea !",158137594,Zafreen,Manhattan,Chelsea,40.74727,-74.00261,Entire home/apt,185,7,0,,,1,0 +17938814,"Beautiful spacious one bedroom, upper east side",55199493,Julia,Manhattan,Upper East Side,40.7729,-73.95738,Entire home/apt,115,2,100,2019-06-16,3.67,1,91 +29917648,Perfect Studio apartment in heart of Sheepsheadbay,9059810,Vlad,Brooklyn,Midwood,40.61429,-73.94779,Entire home/apt,88,2,0,,,3,89 +23308318,Heart of Park Slope,11540159,Summer,Brooklyn,Park Slope,40.67289,-73.98316,Private room,58,2,0,,,2,0 +8190747,cozy apartment,43203249,Gina,Queens,Woodside,40.74715,-73.91104,Private room,75,7,1,2017-03-19,0.04,1,364 +30466053,Awesome 2 bed apartment in LES,45731391,Laurence,Manhattan,Lower East Side,40.72068,-73.99019,Entire home/apt,195,2,1,2019-01-01,0.16,3,0 +13919213,Spacious Harlem Garden Apartment,82623035,Alex And Maya,Manhattan,Harlem,40.82611,-73.94407,Entire home/apt,155,2,138,2019-06-23,3.79,1,232 +22376956,Best view of the Empire State in all NYC!,707534,Nanda,Manhattan,Theater District,40.75462,-73.9864,Entire home/apt,330,2,9,2019-05-28,0.48,1,5 +27760207,"Bright, airy west village retreat!Great location!",23463422,Amit,Manhattan,West Village,40.73384,-74.00010999999999,Entire home/apt,175,3,7,2019-01-01,0.7,1,0 +9435428,Cozy Studio in East Harlem,48904356,Hasan,Manhattan,East Harlem,40.79335,-73.94583,Entire home/apt,150,1,1,2016-01-02,0.02,1,0 +10512812,Bright central Manhattan bedroom,6429683,Andrew,Manhattan,Upper East Side,40.76278,-73.96638,Private room,75,1,89,2019-06-29,2.1,1,268 +29884848,private room for WOMEN ONLY near BX Little Italy,149306690,Kelcie,Bronx,Belmont,40.85504,-73.88394,Private room,24,1,4,2019-06-24,0.52,1,0 +19329734,Large Top Floor Apartment,135401519,Luka,Manhattan,Kips Bay,40.74063,-73.98205,Entire home/apt,325,30,155,2019-06-19,6.22,1,240 +26916818,Cozy bedroom with a private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71027,-73.9468,Private room,74,3,29,2019-06-14,2.6,2,44 +32866480,Loft on Ludlow (LES/Chinatown),1159268,Max,Manhattan,Chinatown,40.71614,-73.99047,Entire home/apt,200,2,0,,,1,0 +35617353,Lovely Stylish Trendy Studio,267937666,Russell,Manhattan,Hell's Kitchen,40.76286,-73.99113,Entire home/apt,129,1,4,2019-07-05,4.0,1,186 +8894773,Cozy bedroom in Bushwick,46323110,Dan,Brooklyn,Bushwick,40.6965,-73.91036,Private room,60,5,165,2019-05-21,3.63,2,261 +15411327,Very comfortable and cozy room in Williamsburg!!!,8113117,Kateryna,Brooklyn,Williamsburg,40.71228,-73.95323,Private room,80,2,181,2018-12-24,5.42,1,52 +33367026,Artist apartment in the heart of Brooklyn!,27445710,Nikolay,Brooklyn,Flatbush,40.64582,-73.96479000000001,Entire home/apt,80,1,1,2019-03-29,0.29,1,0 +5892733,Room in 3 bedroom apt.,10859726,Don Luis,Queens,Astoria,40.77093,-73.93290999999999,Private room,47,5,7,2019-05-28,0.13,3,236 +8635363,Studio in Amazing UES Location,20008462,Sara,Manhattan,Upper East Side,40.76643,-73.95809,Entire home/apt,150,1,2,2016-03-18,0.05,1,0 +22119373,Well lit and modern 1BR condo in LES,7112420,Lizzie,Manhattan,Chinatown,40.71629,-73.99065999999999,Entire home/apt,175,2,10,2018-10-01,0.54,1,0 +6395433,Charming Private Suite in the South Bronx,23693099,Justin,Bronx,Concourse Village,40.82809,-73.9159,Entire home/apt,65,4,107,2019-06-24,2.3,1,210 +27593369,Small humble apartment in perfect location LES,208206416,Mina,Manhattan,Lower East Side,40.71815,-73.98858,Entire home/apt,150,7,8,2019-06-11,0.79,1,290 +30106162,Private Room in Charming TriBeCa Loft,407922,Kristen,Manhattan,Tribeca,40.72018,-74.00451,Private room,70,30,2,2018-12-12,0.26,1,0 +32576739,The Big Apple Paradise. 10 minutes from JFK,168704622,Patrick,Queens,Rosedale,40.66294,-73.73292,Entire home/apt,300,2,4,2019-04-21,0.97,1,364 +16416474,Sun Drenched Spacious Loft in NYCs Trendiest Hood,6755652,Jenny,Manhattan,Lower East Side,40.72077,-73.99023000000001,Entire home/apt,205,3,102,2019-06-23,3.36,1,117 +14071357,Lofted Bedroom in Awesome Greenpoint Loft!,2432924,Charlie,Brooklyn,Greenpoint,40.73413,-73.95835,Private room,49,14,0,,,1,0 +34911014,Great apartment minutes away from Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76359,-73.98608,Entire home/apt,200,31,0,,,5,354 +4538012,Bright Harlem Home in New Building!,12879538,Gregory,Manhattan,Harlem,40.82102,-73.94633,Private room,85,1,21,2018-01-01,0.38,2,343 +30310984,Charming One Bedroom Garden Apt Close to Subway,782801,Cassandra,Brooklyn,Bedford-Stuyvesant,40.68677,-73.95522,Entire home/apt,125,1,9,2019-06-15,1.36,1,192 +7555283,Lovely 2 Bedroom in Upper West Side,39599671,Sara,Manhattan,Upper West Side,40.79045,-73.97361,Entire home/apt,200,5,12,2018-06-16,0.26,1,0 +31054566,Perfect location in Manhattan,231971512,Roland,Manhattan,Chelsea,40.7463,-73.9911,Private room,68,1,0,,,1,0 +7501794,Nice & Sweat Apartment in Manhhatan,10131727,Alex,Manhattan,Harlem,40.8051,-73.95069000000001,Entire home/apt,109,2,1,2015-09-03,0.02,1,0 +13413420,simple room,15380275,Sierra64,Brooklyn,Bedford-Stuyvesant,40.68825,-73.93433,Private room,38,7,0,,,1,0 +5191630,Comfortable & Spacious 1 BR apt,21538710,Marýa,Brooklyn,Crown Heights,40.67116,-73.94293,Entire home/apt,72,7,11,2016-11-11,0.21,1,0 +23107316,"Unique & Spacious, W Village. 1-Bdrm. NEW LISTING!",171678641,Max,Manhattan,West Village,40.73716,-73.99764,Entire home/apt,225,7,10,2019-04-29,0.78,1,279 +33071794,Prime Location 44stDoorman Gym Studio!5217,16098958,Jeremy & Laura,Manhattan,Midtown,40.75032,-73.97143,Entire home/apt,175,30,0,,,96,342 +8403327,Sunny Apt in Williamsburg Brooklyn,15928518,Karen,Brooklyn,Williamsburg,40.7127,-73.94048000000001,Entire home/apt,110,3,10,2019-01-01,0.22,1,0 +29701014,"Newly Renovated 3BR Apt,Minutes away from SI Ferry",223504937,Ellouise,Staten Island,Randall Manor,40.62692,-74.1299,Entire home/apt,109,3,21,2019-07-07,4.44,1,121 +2652865,Classic Upper West Side Getaway!,9951993,Jason,Manhattan,Upper West Side,40.79592,-73.97024,Entire home/apt,159,2,1,2017-11-20,0.05,1,0 +13376968,Spacious Luxury In the Heart of the East Village,8278179,Will,Manhattan,East Village,40.72886,-73.98834000000001,Private room,80,1,4,2016-07-29,0.11,1,0 +34209440,Hotel-like Cottage Private Room KING Bed 25min NYC,48684597,David,Queens,Maspeth,40.73763,-73.89533,Private room,50,1,10,2019-07-01,4.48,4,218 +18789373,Whole apartment in Williamsburg 1 block to train,130774060,Fanny,Brooklyn,Williamsburg,40.709590000000006,-73.95747,Entire home/apt,165,6,10,2019-05-15,0.39,1,18 +1410197,Your Furnished Private Apartment,4165498,L.A.,Manhattan,East Harlem,40.79813,-73.93132,Entire home/apt,120,7,64,2019-04-03,0.91,2,184 +18837073,"Bright, Modern Apt with Hi Speed Wifi! #10222",14480781,Dave,Brooklyn,Crown Heights,40.67578,-73.95491,Entire home/apt,85,30,20,2019-04-16,0.82,1,182 +2254541,Private Bedroom in Williamsburg!,6060700,Kevin,Brooklyn,Williamsburg,40.71801,-73.95869,Private room,85,14,1,2014-08-20,0.02,1,0 +24962971,Comfortable Bedroom 2 Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.649640000000005,-73.9992,Private room,75,1,13,2019-05-26,0.96,2,68 +20215712,The Bad Pad,144013169,Kara,Manhattan,West Village,40.73552,-74.00554,Entire home/apt,300,3,19,2019-06-27,0.81,1,12 +15740172,"Beautiful Room close to JFK, La Guardia, LIR",101712494,Alphanso,Queens,Rosedale,40.67126,-73.72981999999999,Private room,55,2,4,2017-10-22,0.13,2,349 +6249100,Spacious room next to 96 st Station,14614459,Dario,Manhattan,Upper East Side,40.78354,-73.94699,Private room,90,5,4,2015-12-16,0.08,4,0 +9839263,Location Little Nana (only female),3250450,Petya,Queens,Astoria,40.76036,-73.92399999999999,Private room,39,18,0,,,18,310 +20638833,Private room,147567811,Renaldy,Queens,Astoria,40.77326,-73.92676999999999,Private room,50,4,1,2017-09-22,0.05,1,0 +32847511,Luxurious 1BR Gorgeous City View High Elevation,247118366,Paul,Manhattan,Hell's Kitchen,40.76195,-73.98770999999999,Entire home/apt,260,2,14,2019-06-14,4.24,1,212 +24574987,Sunny bedroom at the heart of Harlem,6892560,Rebeca,Manhattan,East Harlem,40.80552,-73.94031,Private room,51,5,16,2019-06-29,1.12,1,17 +30694768,A Relaxing Place in Inwood,188050970,Walkiria,Manhattan,Inwood,40.85962,-73.92971,Private room,65,1,25,2019-06-26,3.89,1,86 +1745358,Spacious and Chic Times Square 1 Bedroom,9186542,Soren,Manhattan,Hell's Kitchen,40.765,-73.98904,Entire home/apt,109,2,26,2019-05-18,0.49,1,139 +26741585,Super Convenient Park Slope Room,62587696,Andrew,Brooklyn,Gowanus,40.670770000000005,-73.98969,Private room,52,2,53,2019-07-03,5.26,2,13 +25488542,Private Bedroom in Washington Heights,80926401,Jenna,Manhattan,Washington Heights,40.84501,-73.93861,Private room,40,2,6,2018-12-28,0.47,1,0 +31599728,"Great Private Br, 59th ave & Main Street flushing.",217910985,Acclaimed,Queens,Flushing,40.74295,-73.82544,Private room,55,5,0,,,1,132 +16508394,Manhattan Two Bedroom Renovated Apt.,108494755,Denise,Manhattan,Inwood,40.86253,-73.9277,Entire home/apt,75,5,0,,,1,0 +18562269,Excellent one bedroom apt for Bklyn Half runners!,24791132,Alex,Brooklyn,Prospect Heights,40.67693,-73.96517,Entire home/apt,135,3,3,2019-05-28,0.48,1,0 +172870,Large Quiet Bedroom Near Columbia U,781647,Jorin,Manhattan,Harlem,40.80518,-73.95359,Private room,89,5,43,2018-01-03,0.47,2,247 +9443911,4 Bedroom Downtown Brooklyn,48943908,Aaron,Brooklyn,Clinton Hill,40.6846,-73.96536,Entire home/apt,330,2,84,2019-06-23,2.03,1,327 +9740386,Chic 1 BR in Meatpackiing,50255130,Mary,Manhattan,Chelsea,40.74098,-74.00513000000001,Entire home/apt,175,4,0,,,1,0 +2967631,Upper East Side 1BR,15141764,Kevin,Manhattan,Upper East Side,40.78139,-73.95260999999999,Shared room,175,1,1,2015-09-28,0.02,1,0 +25031344,"Cozy Studio in East Village, close to everything",28660089,John,Manhattan,East Village,40.72547,-73.98401,Entire home/apt,170,2,7,2019-05-12,0.52,1,0 +16570975,Quiet room in apt Williamsburg 10 mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71661,-73.9551,Private room,60,2,27,2019-03-16,1.02,2,0 +4745212,Bright & Spacious in Williamsburg,2665225,Sila,Brooklyn,Williamsburg,40.71717,-73.95688,Entire home/apt,150,3,1,2016-01-03,0.02,1,0 +24314268,Easy option to stay on 611 W 177th St.,143820550,Ramy,Manhattan,Washington Heights,40.84695,-73.93593,Private room,50,1,43,2018-12-26,3.01,1,0 +4841431,Spacious 1BR By Prospect Park,24915465,Oded,Brooklyn,Prospect-Lefferts Gardens,40.66244,-73.95813000000001,Entire home/apt,139,1,44,2016-05-08,0.8,1,0 +298759,Large Double Room Queenbed Wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68622,-73.94675,Private room,52,2,93,2019-07-07,1.12,4,0 +31823858,**BROOKLYN BLUE**MODERN LUXE STUDIO SUITE,198674748,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.6615,-73.95307,Entire home/apt,126,3,23,2019-06-26,4.51,1,6 +261194,Cozy Artist Duplex **Bedstuy Charm**,696482,Christine,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95289,Entire home/apt,130,3,18,2019-06-18,0.25,1,1 +8623370,Private luxury apartment,45359132,Patricia,Queens,Queens Village,40.72001,-73.75402,Entire home/apt,85,2,57,2019-07-01,1.26,1,317 +30275273,Zenful and artistic apartment home,227385012,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95047,Private room,34,1,3,2019-01-01,0.43,1,0 +34592979,"Dreamy Nolita 1BR w/ W/D, Heated Bathroom, above SoHo cafe, by Blueground",107434423,Blueground,Manhattan,Nolita,40.72399,-73.99426,Entire home/apt,314,30,0,,,232,341 +8486946,Private Bright Garden Room|Bushwick,39769788,Nico,Brooklyn,Bushwick,40.7012,-73.92681999999999,Private room,50,3,0,,,1,0 +2292366,cozy upper east side 1 br abode,440396,Mary,Manhattan,Upper East Side,40.78103,-73.95069000000001,Entire home/apt,75,2,14,2019-06-01,0.33,1,0 +20674622,Entire Floor in 1870 Downtown Brooklyn Brownstone,33204787,Yaimara,Brooklyn,Gowanus,40.68289,-73.98532,Private room,95,2,21,2018-01-06,0.94,1,0 +21778446,Romantic Getaway,129602851,W.,Bronx,Pelham Bay,40.846070000000005,-73.83842,Entire home/apt,99,7,1,2018-02-01,0.06,2,349 +21041595,HOME AWAY FROM HOME,151560823,Fred,Brooklyn,Brownsville,40.66154,-73.91386999999999,Private room,100,1,3,2019-07-01,1.58,1,2 +2531865,Flatiron studio + dining / sunlight,4517005,Ryan,Manhattan,Kips Bay,40.73905,-73.98161,Entire home/apt,210,1,32,2018-05-08,0.5,1,0 +24116708,brooklyn next prospect park,279067,Manami,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95784,Private room,40,7,0,,,1,53 +24850009,Cute studio steps from Prospect Park,19508332,Jessica,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.9602,Entire home/apt,75,2,7,2019-06-07,0.54,1,9 +11850782,"Spacious, Artsy Room!",39476438,Rachel,Manhattan,Harlem,40.81616,-73.93885,Private room,74,2,3,2016-07-31,0.08,2,363 +21695292,1 BR near Union Square,14603774,Matt,Manhattan,East Village,40.73281,-73.9899,Entire home/apt,225,1,1,2017-11-18,0.05,1,0 +34041523,Master Room in Harlem Duplex,256998898,Hank,Manhattan,Harlem,40.80514,-73.95561,Private room,140,1,4,2019-06-18,1.88,3,350 +21230688,Harlem Hideaway Parlor Apartment,145825873,Dennis,Manhattan,Harlem,40.80436,-73.94865,Entire home/apt,96,30,5,2019-04-06,0.53,4,32 +17698990,A4Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75603,-73.93405,Private room,58,1,86,2019-06-23,3.09,9,301 +999977,Cozy studio apartment on upperwest,5497326,Jennifer,Manhattan,Upper West Side,40.77896,-73.97849000000001,Entire home/apt,295,7,2,2017-08-19,0.03,2,0 +28101926,Resort style living. Ferry to city 5 min walk.,67048974,Jonathan,Bronx,Clason Point,40.80644,-73.8518,Private room,48,2,33,2019-06-22,3.21,1,47 +16066417,Brooklyn Getaway,27294350,Jocelyn,Brooklyn,Bushwick,40.69369,-73.9291,Private room,55,3,0,,,1,0 +28984202,Middle of Williamsburg-2 stops to Manhattan,218460622,Julia,Brooklyn,Williamsburg,40.70813,-73.94707,Private room,55,10,1,2018-12-01,0.14,1,48 +2904571,Carroll Gardens Brooklyn Apartment ,6789600,Derek,Brooklyn,Carroll Gardens,40.67786,-73.99871,Entire home/apt,149,6,2,2015-08-07,0.04,1,0 +26128481,Cozy Home Away TH,179436298,Nyota,Brooklyn,Crown Heights,40.66391,-73.95618,Entire home/apt,112,2,3,2018-12-29,0.29,2,364 +27427289,Test Drive A Historic Brownstone in Brooklyn!,6456799,Cheryl,Brooklyn,Bedford-Stuyvesant,40.68726,-73.94176,Entire home/apt,125,21,2,2019-05-09,0.65,1,250 +33833725,Cozy Home Nested Between Soho and The West Village,158694,Beatrix,Manhattan,SoHo,40.72825,-74.0033,Private room,150,5,1,2019-04-30,0.43,1,97 +30418770,Beautiful bedroom in a 3 bedroom apartment,221645033,Afrah,Brooklyn,Bushwick,40.69947,-73.92005999999999,Private room,50,1,1,2019-06-25,1.0,5,333 +13914237,Apt in Heart of NYC with AC !,6338590,Dashiell,Manhattan,Upper West Side,40.78173,-73.98601,Entire home/apt,70,2,7,2017-01-03,0.19,1,0 +27551619,Spacious room with private bathroom,39285391,Siham,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92331,Private room,65,1,56,2019-06-23,5.27,2,49 +19710742,Sunny Room w/ Private Bath in Williamsburg!,2361069,Philip,Brooklyn,Williamsburg,40.71553,-73.96332,Private room,90,3,74,2019-06-23,3.29,1,79 +22651464,12 east 86th Steet Upper East Side Building,165898555,Honey,Manhattan,Upper East Side,40.77719,-73.9529,Entire home/apt,200,30,0,,,7,364 +32238933,Charming & Spacious Loft in Clinton Hill,18874653,Elsa,Brooklyn,Clinton Hill,40.69344,-73.9652,Entire home/apt,175,4,5,2019-06-30,1.19,1,40 +31119965,10 min subway to Time Square Sunny 1BR,228900167,Xi,Queens,Long Island City,40.7505,-73.94381,Entire home/apt,200,1,29,2019-06-17,4.86,1,148 +35223869,"Fort Greene Park Hideaway! Quiet, Sunny, and Cozy",265213112,Harrison,Brooklyn,Fort Greene,40.68934,-73.96959,Entire home/apt,209,2,3,2019-06-24,2.37,1,79 +3747107,Clean+Comfy+Cozy Room in NYC Home,9535767,Nayoung,Queens,Woodside,40.74626,-73.9009,Private room,50,5,3,2015-08-07,0.05,1,0 +1979744,Bright & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64605,-73.89381999999999,Private room,33,5,84,2019-06-27,1.25,5,295 +2069059,Cozy 2BR Brooklyn retreat w/Bckyard,10581580,Carolyn,Brooklyn,South Slope,40.66551,-73.98805,Private room,85,10,0,,,1,0 +28251042,"Great energy, XL,clean, plants, comfortable bed,",6048765,Raz,Manhattan,Harlem,40.81835,-73.93925,Private room,86,2,7,2018-10-05,0.69,2,87 +29095078,Beautiful room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65209,-74.01136,Private room,112,1,10,2019-05-02,1.15,2,0 +11595739,CHIC STUDIOS ON E 54TH~PRIME LOCATION~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75505,-73.96484,Entire home/apt,185,30,0,,,49,364 +23190292,Gorgeous Studio Apartment in the heart of Manhatan,13900556,Iryna,Manhattan,Upper East Side,40.77226,-73.95631,Entire home/apt,145,5,5,2019-04-09,0.3,1,0 +32495242,Quiet parlour floor apartment on tree-lined street,33299125,Natalia,Brooklyn,Bedford-Stuyvesant,40.68199,-73.95130999999999,Entire home/apt,150,15,1,2019-06-30,1.0,1,146 +16987479,Sunny LEGO’s Home,57455831,Maggie,Brooklyn,Clinton Hill,40.69259,-73.9665,Entire home/apt,150,1,5,2019-03-31,0.19,2,0 +36379669,Shared living space in the Bronx!,44378432,Bryan,Bronx,Pelham Bay,40.84735,-73.83095,Shared room,50,1,0,,,1,88 +5931103,Bright and Cheerful,24982374,David,Brooklyn,Clinton Hill,40.693540000000006,-73.96152,Entire home/apt,259,2,99,2019-06-28,3.07,1,296 +12562075,High Rise Financial District Apt,8756366,Amy,Manhattan,Financial District,40.70666,-74.00529,Private room,80,1,0,,,1,0 +12979100,South Street Seaport Loft Studio,14885449,Brian,Manhattan,Financial District,40.70725,-74.00206,Entire home/apt,160,6,2,2016-06-12,0.05,1,0 +34419439,Spacious bright classic apt in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.70539,-73.90857,Entire home/apt,155,2,2,2019-06-10,1.0,3,59 +20755049,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75161,-73.97017,Entire home/apt,175,30,0,,,33,365 +17516489,Beautiful 3 BR- 2 Full Baths in Upper Manhattan,1273890,Sergio,Manhattan,Washington Heights,40.8513,-73.93681,Entire home/apt,185,30,7,2019-03-19,0.26,2,331 +33467176,"Le Chateau Boutique in Le Brooklyn , NY ! Voila !",148725429,Javier,Brooklyn,Bushwick,40.68942,-73.91714,Entire home/apt,99,2,17,2019-07-01,6.07,2,300 +23668742,Family Studio beside Empire State #52,177174475,Alberto,Manhattan,Midtown,40.74649,-73.98723000000001,Entire home/apt,137,1,5,2019-03-21,0.34,17,162 +20523741,Cozy Mini Studio Prvt Bath & Kitchen 15 Mins JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.69006,-73.86917,Entire home/apt,34,2,93,2019-06-30,4.07,2,247 +1404828,Bohemian Paradise in Industrial BK,7581642,Ehren,Brooklyn,Williamsburg,40.70759,-73.92678000000001,Private room,99,2,189,2017-12-20,2.63,1,0 +30067603,"Comfortable, Jazzy, Netflix",45835291,Shareef,Manhattan,Harlem,40.82411,-73.95441,Private room,47,8,31,2019-06-30,4.04,6,270 +32044146,Charming Apartment in Greenpoint,138150256,Alejandro,Brooklyn,Greenpoint,40.73324,-73.95304,Entire home/apt,110,7,1,2019-05-26,0.68,2,23 +31017639,Cozy one-bedroom in Astoria!,227353438,Christina,Queens,Astoria,40.76412,-73.92055,Private room,70,2,1,2019-03-21,0.27,1,0 +33618578,★Affordable Clean Private Room#1 in Hell' kitchen★,42222090,Kita,Manhattan,Upper West Side,40.77029,-73.98761,Private room,110,3,5,2019-06-14,2.08,2,158 +6610244,Sunny Jewel In Historic Harlem,7701992,Grace,Manhattan,Harlem,40.82536,-73.94383,Entire home/apt,130,1,0,,,1,0 +2144033,Williamsburg - country house in NYC,6166889,Shelly,Brooklyn,Williamsburg,40.71473,-73.96495,Private room,145,1,52,2019-06-17,0.82,1,291 +23576132,Decent Private bedroom in 3 bd apartment.,26953965,Jen Supang,Brooklyn,Williamsburg,40.71072,-73.94382,Private room,39,7,4,2018-12-19,0.45,1,0 +16145871,#1 Rated 3br Park Slope Apt (1700sqf+Renovated!),30826993,Travis & Melissa,Brooklyn,Park Slope,40.6734,-73.98235,Entire home/apt,250,3,54,2019-06-14,1.72,1,0 +7902089,UES Pincushion Living,41666655,Andrea,Manhattan,Upper East Side,40.77098,-73.95965,Entire home/apt,150,2,5,2016-02-25,0.11,1,157 +13508567,"spacious, clean place in quiet building",75398380,Maris,Bronx,University Heights,40.86048,-73.91181,Entire home/apt,120,1,0,,,1,0 +9250196,Furnished 1-BR near all NYC'S major attractions!,30283594,Kara,Manhattan,Theater District,40.76063,-73.98577,Entire home/apt,230,30,0,,,121,363 +24432685,New nice bedrooms in 2 bedroom apt. 1R,122498535,Gf,Brooklyn,East Flatbush,40.655,-73.92764,Private room,40,30,3,2019-06-21,0.23,3,288 +25619146,Beautiful Parlor Fl. 1 br - Historic Clinton hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68339,-73.9645,Entire home/apt,99,30,3,2018-09-16,0.25,2,40 +29923634,Studio King Room | 5th Ave | Full Sofabed,220229838,Chamber Hotel,Manhattan,Midtown,40.76239,-73.97444,Entire home/apt,276,2,1,2019-06-18,1.0,11,192 +29133513,Elmhurst 1st Floor BR w/ Pvt. Bath&Balcony,219333557,Rafael,Queens,East Elmhurst,40.76251,-73.86765,Private room,59,1,17,2019-05-24,1.9,7,0 +6323445,Beautiful UES 1BR Apartment,24070095,Ryan,Manhattan,Upper East Side,40.77032,-73.96161,Entire home/apt,175,3,0,,,1,0 +11730504,Charming Brownstone Garden 1BR Historic Apartment,11292325,Diva,Manhattan,Harlem,40.81613,-73.94622,Entire home/apt,150,30,17,2018-12-15,0.42,1,157 +24599452,ELEXEY'S COMFORT.,185889529,Michelle,Queens,St. Albans,40.70389,-73.75782,Private room,50,3,58,2019-06-24,4.69,3,358 +19245830,Sunny Spacious Room + Private Bathroom in Bushwick,20507114,Tian,Brooklyn,Bushwick,40.70068,-73.92293000000001,Private room,60,3,8,2017-09-24,0.33,1,0 +34997828,Full Service 3 Bedroom Apartment-Washer Dryer,221200420,Adam,Manhattan,Murray Hill,40.74334,-73.97213,Entire home/apt,300,30,0,,,23,249 +34785397,"Artist Room, Cozy Crown Heights",230698955,Victoria,Brooklyn,Crown Heights,40.67146,-73.93483,Private room,29,5,1,2019-05-31,0.75,2,0 +23536265,Cozy room in 2BR apartment at the Upper East,159598333,Sol,Manhattan,Upper East Side,40.78167,-73.94734,Private room,89,3,7,2019-05-15,0.68,5,213 +14991,"Great Location, Manhattan Bedroom!",59023,Bianca,Manhattan,Lower East Side,40.72004,-73.99104,Private room,110,5,19,2019-05-18,0.17,1,301 +22495122,Get lost at the tip of Manhattan,89245578,Noel,Manhattan,Inwood,40.86456,-73.92799000000001,Entire home/apt,125,2,32,2019-06-23,1.77,1,19 +9118958,Nice Room in private house,22420999,Herman,Queens,Richmond Hill,40.69417,-73.83072,Private room,50,2,3,2018-01-07,0.08,5,346 +34944130,Beach Haven,263301212,Mikhail,Brooklyn,Gravesend,40.58518,-73.96846,Private room,100,2,0,,,1,87 +35704185,Cute studio with adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68729,-73.96766,Entire home/apt,125,2,0,,,2,37 +9561650,AMAZING Clean Location on a budget!,2316568,Rani,Manhattan,East Village,40.725640000000006,-73.98088,Private room,49,1,0,,,1,0 +4509357,Clean-Cozy-Beside 3 train station,15313939,Jeremy,Manhattan,Harlem,40.82412,-73.93871999999999,Private room,69,1,22,2017-01-03,0.47,1,365 +23497936,COZY APARTMENT IN CENTRAL PARK,154955520,Natalia Carolina,Manhattan,Upper East Side,40.77255,-73.96323000000001,Entire home/apt,126,3,52,2019-06-16,3.27,1,35 +408983,Brooklyn Brownstone full floor/garden ProspectPark,520189,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65937,-73.95906,Entire home/apt,229,2,92,2019-06-09,1.05,1,321 +13975292,"Sunny, peaceful home in fantastic location",165566,Irene,Brooklyn,Gowanus,40.68203,-73.98427,Private room,85,1,1,2016-08-09,0.03,1,0 +7175595,Private Room in Gorgeous Apartment,37588475,Alex,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92963,Private room,66,1,0,,,1,0 +12368109,Private room in a nice neighborhood,5741728,Ben,Queens,Astoria,40.76625,-73.91448000000001,Private room,57,2,14,2017-01-03,0.37,1,0 +32766010,Private Studio in the Center of Manhattan,246432505,Qing,Manhattan,Midtown,40.74968,-73.98722,Entire home/apt,145,1,7,2019-06-16,1.74,1,0 +29963540,"Bushwick, Prvt Room/Prvt Bath, 20mins to Manhattan",52357574,Mitch,Brooklyn,Bushwick,40.6988,-73.91388,Private room,85,1,2,2018-12-23,0.27,1,0 +31639432,Entire Cozy Studio in Central Harlem,37277862,Lucy,Manhattan,Harlem,40.80864,-73.94453,Entire home/apt,85,2,7,2019-04-20,1.24,1,0 +35805262,Discounted! Quiet 1 BR next to Times Square,10745276,Kortney William,Manhattan,Hell's Kitchen,40.75993,-73.99074,Entire home/apt,225,2,0,,,1,270 +3394517,A cozy room in a 3 bedroom apt,17125263,Mario,Manhattan,East Harlem,40.80174,-73.93925,Private room,69,2,60,2019-06-29,1.05,2,271 +20155633,The Emerald of Queens/30 mins from NYC!,126504342,Otto,Queens,Flushing,40.76271,-73.79595,Private room,50,2,74,2019-06-26,3.19,1,246 +35584546,Downtown Bronx Studio 15 min ride to Manhattan,267744284,Andre,Bronx,Melrose,40.82231,-73.91696,Entire home/apt,69,7,0,,,1,254 +24521630,THE PONDEROSA PALACE,83921231,B,Manhattan,Hell's Kitchen,40.76152,-73.98758000000001,Entire home/apt,235,2,49,2019-06-25,3.7,1,283 +20864878,High Line Sun Drenched Home,13462349,Elvis,Manhattan,Chelsea,40.7469,-73.99494,Entire home/apt,200,2,40,2019-06-19,1.81,1,288 +18692321,Amazing loft with a great view,14444,John,Brooklyn,Bedford-Stuyvesant,40.69347,-73.955,Entire home/apt,126,20,0,,,2,0 +4871966,Williamsburg Brooklyn Apartment,3896287,Andrew And Clara,Brooklyn,Williamsburg,40.71396,-73.94021,Entire home/apt,225,4,9,2016-07-18,0.16,1,0 +30212741,New Kitchen&Bath : 5min ➡︎ Subway 20min ➡︎ TimeSQ,19303369,Hiroki,Queens,Jackson Heights,40.75074,-73.89339,Private room,43,30,1,2019-05-01,0.43,37,1 +568684,800sqft apartment with huge terrace,2798644,Alessandra,Brooklyn,Bushwick,40.702020000000005,-73.92402,Entire home/apt,115,370,6,2018-04-15,0.09,1,365 +26796818,GREAT LOCATION 1 RIGHT NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69453,-73.95173,Private room,65,30,18,2019-05-10,1.54,3,354 +2086647,LES Sun Drenched w/ Balcony,10653693,Christina,Manhattan,Chinatown,40.71651,-73.99053,Entire home/apt,169,3,2,2015-05-19,0.03,1,0 +35079670,Entire one-bedroom apartment in heart of Harlem!,9524788,Nicole,Manhattan,East Harlem,40.80619,-73.94174,Entire home/apt,125,2,1,2019-07-03,1.0,1,1 +23605375,Manhattan Gem,157658093,Kara,Manhattan,Morningside Heights,40.81453,-73.96141,Entire home/apt,125,3,3,2018-07-10,0.19,1,0 +1089240,Great Apartment with luxurious bath in NYC/Chelsea,5971251,D. Anthony,Manhattan,Chelsea,40.74197,-73.99701999999999,Private room,176,2,123,2019-06-23,1.63,1,268 +4260964,"Charming, private 1BR garden apt",16212001,Erin,Manhattan,Harlem,40.81774,-73.94595,Entire home/apt,150,4,82,2019-05-22,1.53,1,46 +10022997,"A clean, spacious studio apartment",4628519,Hana,Manhattan,Upper West Side,40.79072,-73.97251999999999,Entire home/apt,150,3,0,,,1,0 +14210928,Large Furnished Rm. Near the Park,10580223,Andy,Brooklyn,Flatbush,40.65345,-73.9566,Private room,91,1,1,2016-10-04,0.03,2,250 +14381523,Beautiful Tree Lined West Village Block!,797100,Rory,Manhattan,West Village,40.7334,-74.00546,Entire home/apt,229,2,3,2016-12-13,0.09,1,67 +7367039,Welcome to our Luxury home,1472993,Yoav,Manhattan,Financial District,40.7078,-74.00914,Entire home/apt,200,1,6,2017-08-18,0.13,1,0 +10995810,Room in gorgeous Astoria Apartment,57055185,Halley,Queens,Astoria,40.76802,-73.91685,Private room,33,1,0,,,1,0 +2814076,Charming 1br apartment in Astoria,6364557,Fernando,Queens,Astoria,40.7576,-73.92698,Entire home/apt,130,4,45,2019-06-16,0.82,1,170 +35972633,New Boutique Sunny Luxury Williamsburg Condo,269112262,Sam,Brooklyn,Williamsburg,40.71443,-73.9527,Entire home/apt,175,2,0,,,1,81 +35830870,Large 2Bedroom Apartment right off Grand Central!!,20053314,Noa,Manhattan,Midtown,40.75161,-73.97025,Entire home/apt,175,1,0,,,1,250 +22192285,Chez Cozy,162152103,Sarah,Manhattan,Upper East Side,40.77141,-73.94985,Entire home/apt,150,7,4,2019-04-26,0.35,1,0 +9880140,"Huge amazing 1bdrm, Upper Manhattan",3460956,Anya & Marco,Manhattan,Washington Heights,40.85884,-73.93356,Entire home/apt,100,5,13,2018-02-19,0.35,1,0 +4172947,Your Own 2-Bd ~ Comfortable and Unique ~ Bed-Stuy,21653460,Zoya,Brooklyn,Bedford-Stuyvesant,40.6942,-73.95269,Entire home/apt,95,7,69,2018-12-07,1.79,2,0 +34498482,Large 1 Bedroom Apartment in Chelsea,6397405,Matt,Manhattan,Chelsea,40.74484,-73.99688,Entire home/apt,275,2,2,2019-06-09,1.76,1,15 +32382542,Home away from home lodging #2 with 2 Bed- 2 guest,225790094,Vena,Brooklyn,East Flatbush,40.64929,-73.92685,Private room,35,1,7,2019-07-01,1.47,3,365 +18785035,"Giant bedroom in Carroll Gardens, Brooklyn",130735852,Elsa,Brooklyn,Carroll Gardens,40.6737,-73.99891,Private room,77,2,18,2019-04-23,0.77,1,1 +18288828,☆☆☆Luxurious Couple's Retreat☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76431,-73.9891,Private room,99,1,147,2019-06-30,5.45,3,174 +22318150,Large Loft Apartment - Private Terrace and Rooftop,34403474,Kwame,Brooklyn,Crown Heights,40.67546,-73.93171,Entire home/apt,90,2,15,2019-05-05,0.84,1,0 +21393427,Entire Luxury 1BR APT on the Upper East Side,22924270,Igor,Manhattan,Upper East Side,40.77331,-73.95328,Entire home/apt,199,3,1,2017-10-19,0.05,1,17 +13058729,Sunlit Bedroom in Crown Heights.,72318418,Francisca,Brooklyn,Brownsville,40.66783,-73.92192,Private room,69,2,104,2019-06-21,2.72,3,362 +19490499,Small Artsy Room in HEART OF BROOKLYN,136818122,Leah,Brooklyn,Greenpoint,40.72351,-73.94241,Private room,40,3,3,2017-07-02,0.12,1,0 +11924694,Artist Apartment in Heart of West Village ❤️,3167887,Sarah,Manhattan,West Village,40.73178,-74.00173000000001,Entire home/apt,300,5,88,2019-06-24,2.32,1,121 +11548744,Sunny 2BR Railroad Apt. in LIC,55601638,Sarah,Queens,Long Island City,40.74493,-73.9537,Entire home/apt,158,1,1,2016-07-10,0.03,1,0 +24943484,Waycross Vista Studio Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.64432,-73.90556,Entire home/apt,125,5,6,2019-01-02,0.44,3,90 +17365636,"Greenpoint, Brooklyn - Spacious Private Room",3537298,Rachel,Brooklyn,Greenpoint,40.7355,-73.95676999999999,Private room,75,28,3,2017-05-27,0.11,1,0 +24719244,Fort Greene Brownstone Apartment for 6,186851013,Deborah,Brooklyn,Fort Greene,40.68957,-73.97449,Entire home/apt,200,2,31,2019-05-27,2.27,1,95 +21306457,Great space,100354001,Alonzo,Queens,Rosedale,40.6598,-73.73316,Entire home/apt,65,1,76,2019-06-27,3.64,1,65 +34780613,Large Two Floor Apartment in Hip Bushwick Area,31239719,Daniel,Brooklyn,Bushwick,40.70433,-73.92488,Entire home/apt,120,4,0,,,1,10 +5454050,Gorgeous 1BR New W/D Modern_BestLocation!NYC,2119276,Host,Manhattan,Hell's Kitchen,40.76494,-73.9881,Entire home/apt,185,30,15,2018-10-09,0.29,39,336 +26557068,Midtown NYC: High End Resort Sleeps 2,172190160,Millie,Manhattan,Midtown,40.7521,-73.97334000000001,Private room,300,2,2,2019-01-01,0.25,1,0 +34770571,Private room in heart of crown heights,28295132,Keira,Brooklyn,Crown Heights,40.67369,-73.94931,Private room,60,3,1,2019-05-21,0.61,1,0 +30937750,Sonder | The Nash | Simple Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97448,Entire home/apt,241,2,4,2019-06-03,1.3,327,130 +2969919,Spacious Junior 1BR Apt in USQ/Flatiron,15153596,Allie,Manhattan,Chelsea,40.73726,-73.99399,Private room,235,1,34,2019-07-01,0.68,1,135 +13542521,Comfortable room in gay friendly apt in HK,77915011,Joshua,Manhattan,Hell's Kitchen,40.76806,-73.98671999999999,Private room,100,2,1,2016-06-26,0.03,1,0 +7834765,✦Artsy Loft Master Suite✦Private Bath/High Ceiling,41261306,Hsiang Wei,Brooklyn,Clinton Hill,40.69218,-73.96127,Private room,90,2,32,2019-06-29,1.24,1,20 +13459691,Private Bedroom in Williamsburg!,8569221,Andi,Brooklyn,Williamsburg,40.71696,-73.95727,Private room,90,5,87,2019-03-24,2.43,2,305 +5404201,Sun-filled Brownstone in Brooklyn,28013319,Gagandeep,Brooklyn,Prospect Heights,40.67665,-73.97094,Entire home/apt,180,2,135,2019-06-16,2.62,1,151 +22751606,"REDESIGNED 2Bdrs in PARK SLOPE,BROOKLYN !",87786261,Sophia,Brooklyn,South Slope,40.66064,-73.98564,Entire home/apt,129,1,67,2019-06-26,3.97,5,255 +23881522,Local hosts. Luxurious room few blocks to Q train,179442361,Derek,Brooklyn,Midwood,40.61962,-73.96262,Private room,75,3,5,2018-09-26,0.36,1,67 +20420311,Efficiency-like rental,64097020,Lesley / Eric,Brooklyn,Bushwick,40.68513,-73.90987,Private room,50,2,38,2019-01-02,1.66,1,0 +53477,3 floors of luxury!,204539,Mark,Queens,Middle Village,40.71546,-73.87854,Entire home/apt,265,7,38,2019-04-27,0.38,5,365 +1935826,"Priv room in 3 bdrm apt - Room ""C""",9207223,Ryan,Manhattan,Harlem,40.80688,-73.94932,Private room,90,3,1,2015-10-14,0.02,3,177 +28867326,Beuty full bedroom,65827591,Nubia,Queens,Maspeth,40.73661,-73.90021,Private room,31,2,6,2019-01-06,0.65,3,259 +35262429,Cute Bright 1 Bedroom apartment in Bushwick,94422691,Omar,Brooklyn,Bushwick,40.696940000000005,-73.90765999999999,Entire home/apt,67,2,1,2019-07-03,1.0,1,0 +29304334,Peaceful private sunny room in spacious apartment,1216891,Amberjade,Manhattan,Harlem,40.81954,-73.94713,Private room,85,1,22,2019-06-11,2.53,1,232 +29780117,"one bedroom apartment safe, clean, best price",224056583,Sevilay,Brooklyn,Sheepshead Bay,40.6058,-73.95336999999999,Private room,75,7,4,2019-06-11,0.51,1,311 +34978307,Park Slope Sweet Home 1 Bedroom August Rental,84642468,Xiaohui,Brooklyn,Gowanus,40.66714,-73.99279,Private room,80,14,0,,,1,192 +12845943,Fully Furnished Room in Quiet Apt,51663418,Melissa,Queens,Ditmars Steinway,40.77329,-73.9163,Private room,40,14,1,2016-08-10,0.03,1,0 +22037644,Restorative haven in a great neighborhood,46972551,Catherine,Manhattan,Upper West Side,40.78623,-73.98146,Entire home/apt,110,2,33,2019-06-19,1.74,1,6 +8225997,Bright 1BD in happening E Village,11004198,Caroline,Manhattan,East Village,40.72057,-73.97997,Entire home/apt,125,31,2,2016-04-01,0.04,1,204 +6052119,Loft in South Park Slope (Brooklyn),8893700,John,Brooklyn,Sunset Park,40.66124,-73.99449,Entire home/apt,159,30,8,2018-11-11,0.81,2,51 +31120812,Sunny Bedroom off Broadway,126625033,Nina,Manhattan,Morningside Heights,40.80556,-73.96503,Private room,50,5,0,,,1,0 +28563801,"Stylish, convenient, renovated- 2 min to subway -",45466335,Boris,Manhattan,Harlem,40.82195,-73.9368,Entire home/apt,250,1,36,2019-07-06,4.62,2,301 +3132960,Lovely Park Slope Pied a Terre,2472358,Craig,Brooklyn,Park Slope,40.67668,-73.97718,Entire home/apt,250,5,2,2018-12-31,0.21,1,0 +25804970,Tropical Room in Brooklyn Heights,11280566,Paris,Brooklyn,Brooklyn Heights,40.69872,-73.99338,Private room,75,2,53,2019-06-18,4.12,1,0 +10083881,Well Equipped One-Bedroom Apartment,51743699,Oliver,Manhattan,Morningside Heights,40.80986,-73.95945,Entire home/apt,100,1,1,2015-12-23,0.02,1,0 +24157013,Cozy Brooklyn Designer Apartment,182039779,Eleanor,Brooklyn,Carroll Gardens,40.68123,-73.99424,Entire home/apt,100,3,7,2019-07-06,0.47,1,0 +18225729,Hip Soho Loft,121400000,Kristen,Manhattan,SoHo,40.72528,-74.00317,Entire home/apt,200,3,16,2018-09-24,0.6,1,15 +30160167,Warm little building 温馨小筑 따뜻한 작은 건물 D,92706260,Kane,Queens,Flushing,40.73941,-73.82099000000001,Private room,49,1,19,2019-06-11,2.5,5,48 +16314267,Luxury Apt - Private room & entry!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68194,-73.90956,Private room,57,2,151,2019-05-28,4.93,3,0 +27202986,HOSTEL,204852524,Sergiy,Brooklyn,Gravesend,40.59982,-73.98679,Shared room,100,1,1,2018-08-14,0.09,1,363 +5363874,2br Duplex w/Roof Deck Close to Empire State Build,17982486,Cheri,Manhattan,Kips Bay,40.74205,-73.97997,Entire home/apt,250,30,13,2018-04-30,0.25,1,274 +785166,Comfy Cool Convenient Downtown Manhattan,2840710,Mark,Manhattan,Lower East Side,40.71818,-73.98206,Entire home/apt,220,25,1,2013-10-17,0.01,1,350 +254131,"Read it 1st, A seprat fur BR, low $",1267021,Sharma,Queens,Jackson Heights,40.74965,-73.89344,Private room,54,5,56,2019-07-06,0.66,3,365 +13016230,Peaceful and Pleasant Studio,30074012,Laura,Brooklyn,Flatbush,40.63887,-73.96667,Entire home/apt,80,3,32,2018-09-21,0.85,1,0 +31959359,Cozy Room for Rent in Fort Greene/Clinton Hill,26923225,Meg,Brooklyn,Clinton Hill,40.69462,-73.97006,Private room,36,28,2,2019-03-25,0.46,1,0 +34316644,Yellow ButterFly,145878384,Denise,Brooklyn,East Flatbush,40.65607,-73.92942,Private room,110,3,0,,,7,320 +13093161,"West 23rd Street, Lux Chelsea 1bd serviced Apt",22541573,Ken,Manhattan,Chelsea,40.74641,-74.00401,Entire home/apt,289,30,2,2018-11-05,0.08,87,339 +25231699,Lovely room in Bushwick 2 bd with a huge backyard,9430106,Cortney,Brooklyn,Bushwick,40.70238,-73.92886,Private room,70,7,1,2018-06-30,0.08,1,0 +16617893,Modern Loft Style Apt in trendy Brooklyn,6562818,Salvatore,Brooklyn,Greenpoint,40.73693,-73.95506999999999,Entire home/apt,94,3,28,2019-05-05,0.93,1,11 +8326753,Prime Location in Theatre District,34934128,Aly,Manhattan,Theater District,40.76095,-73.98668,Private room,150,2,3,2017-06-19,0.08,1,0 +22628116,Inwood apartment closed to have fun in manhattan,130633561,Jose,Manhattan,Inwood,40.86815,-73.92342,Private room,125,1,0,,,1,89 +35706150,Shared Spaces in Candlelight;Quiescence w Relaxing,175730239,Baboucarr,Queens,Sunnyside,40.74064,-73.92871,Shared room,30,3,0,,,12,351 +20057317,Cozy well decorated/located studio in Astoria,60370951,Emanuella,Queens,Astoria,40.77297,-73.92253000000001,Entire home/apt,110,2,33,2019-06-20,1.49,2,305 +578267,*Lovely Bedroom! Big Sunny Apt*Manhattan*,1449904,Edel,Manhattan,Chinatown,40.71328,-73.99315,Private room,96,19,30,2019-04-08,0.36,1,165 +17133664,"Modern, Spacious Hideaway in Historic Brooklyn",45409030,Trouve,Brooklyn,Kensington,40.64309,-73.97707,Entire home/apt,110,6,12,2018-07-17,0.41,1,0 +35572559,Small Room in FiDi,267144101,Olivia,Manhattan,Financial District,40.70737,-74.00622,Private room,145,1,0,,,2,35 +29652274,Clean room in Soho/Nolita,126510786,Peyton,Manhattan,SoHo,40.72306,-74.00005999999999,Private room,120,1,1,2018-11-20,0.13,1,0 +21814527,Large One Bedroom in Inwood.,51152932,Katelynn,Manhattan,Inwood,40.86794,-73.91629,Entire home/apt,70,1,4,2018-10-07,0.2,1,3 +23151066,"Charming studio in the heart of UES, Manhattan!",5640467,Surani,Manhattan,Upper East Side,40.77579,-73.95628,Entire home/apt,117,5,1,2018-07-21,0.08,1,0 +23353909,Room in crown heights,63801339,Karina,Brooklyn,Crown Heights,40.66916,-73.9371,Private room,32,1,8,2018-03-29,0.48,1,0 +30427521,"Cozy, bright Bohemian pad in NYC's Epic Village",214979297,Fryske,Manhattan,Greenwich Village,40.727920000000005,-73.99877,Entire home/apt,110,5,3,2019-06-04,0.41,1,4 +32356476,Brooklyn palace,22749766,Raphael,Brooklyn,Williamsburg,40.7085,-73.94966,Private room,50,1,1,2019-03-11,0.25,1,0 +18386105,"A Special Place for You! Bed-Stuy, Brooklyn",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68435,-73.94135,Entire home/apt,150,3,40,2019-07-02,1.6,3,170 +31990543,1 berm south brooklyn,239851275,Joseph,Brooklyn,Sheepshead Bay,40.60263,-73.94355,Private room,200,1,0,,,1,363 +1093977,"Sunny Apt in Harlem, New York",6010467,Mary Anne,Manhattan,Harlem,40.81102,-73.94561999999999,Entire home/apt,85,30,23,2017-12-07,0.47,1,0 +593292,Penthouse Studio East 50s Terrace,2929585,Hillary,Manhattan,Murray Hill,40.75128,-73.97658,Entire home/apt,165,1,321,2019-06-15,3.93,1,185 +30892041,Park Slope / Spacious and Comfy / Perfect Location,4631381,Merve,Brooklyn,Park Slope,40.67801,-73.97951,Entire home/apt,220,20,0,,,1,24 +23671009,"PARK SLOPE REDESIGNED apt 2 BDRS trains F,G,R,2,3!",87786261,Sophia,Brooklyn,South Slope,40.66094,-73.98652,Entire home/apt,189,1,5,2019-03-10,0.43,5,270 +23546631,Surburban Home Near The Pier,174805880,Eileen,Brooklyn,Bay Ridge,40.63457,-74.0325,Entire home/apt,125,3,25,2019-06-12,1.57,1,348 +8935528,*Spectacular Sublet - All inclusive,35430339,Melissa,Brooklyn,Prospect Heights,40.6791,-73.97369,Entire home/apt,150,1,0,,,1,0 +30858685,Brooklyn the the way it should be,230712429,Matthew,Brooklyn,Bay Ridge,40.62611,-74.02213,Entire home/apt,90,1,0,,,1,0 +293004,Room next to Columbia Uni.,910719,Sena,Manhattan,Harlem,40.80497,-73.95146,Entire home/apt,110,1,0,,,1,0 +25422338,New York Loft,191913119,Dylan,Manhattan,Civic Center,40.71313,-74.00541,Entire home/apt,236,2,0,,,1,0 +3652230,Bay Beauty - Room On The Water!,681225,Haya,Queens,Rockaway Beach,40.5903,-73.8143,Private room,113,2,36,2019-07-07,0.74,1,365 +28777497,Gorgeous Cozy Brooklyn apartment suite,99133678,Chelsea,Queens,Ridgewood,40.7092,-73.91246,Private room,25,1,0,,,1,0 +22848378,Prime Union Square Location Private,9630772,Nada,Manhattan,Gramercy,40.73609,-73.98566,Private room,149,4,10,2019-01-02,0.65,2,0 +3625075,Available Manhattan Apt,18260128,Neal,Manhattan,Harlem,40.822790000000005,-73.94946999999999,Entire home/apt,125,3,8,2018-08-13,0.13,1,0 +21326923,Charming Private Bedroom & Bathroom in Flushing,75059797,Christina,Queens,Flushing,40.74652,-73.82873000000001,Private room,40,3,3,2019-07-08,3.0,1,66 +28918915,B2. Shared room for 4-5 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66076,-73.94547,Shared room,30,2,5,2019-04-12,0.55,6,352 +35224560,Amanecer espectacular con terraza privada,163421878,Any,Queens,Sunnyside,40.7439,-73.91409,Private room,55,1,1,2019-06-02,0.81,3,302 +22327744,Sunny room in Queens for couple,79298323,Crispy,Queens,Maspeth,40.73449,-73.89227,Private room,45,5,12,2019-06-25,0.99,3,320 +35829338,Bright 3bd/1ba Apartment in the heart of Brooklyn,219908197,Anthony,Brooklyn,Williamsburg,40.71693,-73.94266999999999,Entire home/apt,295,2,1,2019-06-23,1.0,3,354 +16756480,Modern 2 Bed 2 Bath with private roof deck,1691656,Adrian,Brooklyn,Prospect Heights,40.68237,-73.97286,Entire home/apt,125,3,6,2019-01-01,0.47,1,0 +20572472,Unique Fort Greene Getaway with Private Deck,6918423,Emilia And Michael,Brooklyn,Fort Greene,40.68481,-73.9694,Entire home/apt,275,3,62,2019-07-07,2.78,1,310 +19789620,Kozy Kingsbridge,139013186,Iris,Bronx,Kingsbridge,40.87896,-73.90674,Private room,75,2,40,2019-05-19,1.74,1,246 +23322737,Luxurious Private Bed& Bath In NYC-Weekly Discount,169589888,J & T,Manhattan,Washington Heights,40.8347,-73.94487,Private room,140,3,27,2019-06-27,1.69,1,348 +16651519,"Newly renovated 1BR apartment, 25 min to Manhattan",3019912,Michael And Meredith,Brooklyn,Sunset Park,40.65944,-73.98898,Entire home/apt,160,30,36,2019-06-10,1.21,1,53 +380730,Luxury L-Shape Studio + 3 cats,1317588,Alexander,Brooklyn,Sheepshead Bay,40.59721,-73.95149,Entire home/apt,50,30,3,2018-12-04,0.08,1,0 +13667739,"Charming 2 Bedroom Apartment, Incredible Location",8457214,Sarah,Manhattan,Nolita,40.7224,-73.99604000000001,Entire home/apt,110,1,2,2016-07-01,0.05,2,0 +7332196,Bright and Hip in Morningside,5628243,Drew,Manhattan,Harlem,40.81024,-73.9525,Private room,95,1,10,2017-01-17,0.21,1,0 +850943,ARTIST TRENDY NYC LOFT,2843998,Julie,Brooklyn,Williamsburg,40.71171,-73.96694000000001,Entire home/apt,149,5,26,2019-04-22,0.41,2,14 +16413425,Where Dreams are made of NYC,107556087,Crystal,Manhattan,East Harlem,40.80476,-73.94074,Shared room,89,1,2,2018-10-02,0.19,1,88 +8474806,"Huge 1 BR Apt close to A,B,C,D &1 trains",44630169,Stephen,Manhattan,Harlem,40.82725,-73.9453,Entire home/apt,68,2,9,2017-06-12,0.29,1,0 +11198278,2BR WITH PRIVATE PATIO EAST VILLAGE,2856748,Ruchi,Manhattan,Greenwich Village,40.73455,-73.99171,Entire home/apt,245,30,0,,,49,364 +172700,"Sunny, cozy room in Lower East Side",302772,Cheryl,Manhattan,Lower East Side,40.71473,-73.98841999999999,Private room,115,3,3,2016-02-15,0.04,2,337 +16884012,Airy Inwood Apartment,42330189,Gabriel,Manhattan,Washington Heights,40.85622,-73.93146999999999,Entire home/apt,200,1,0,,,1,0 +10163240,Private room in 3 br in Manhattan,41535999,Amber,Manhattan,Morningside Heights,40.80348,-73.9632,Private room,70,1,1,2016-01-12,0.02,1,0 +3465977,Next to Central Park and Natural Science Museum,1535732,Pablo,Manhattan,Upper West Side,40.78478,-73.97668,Entire home/apt,225,15,15,2019-06-16,0.45,1,266 +5992438,Room in Historic Fort Greene Apt.,2537749,Anna,Brooklyn,Fort Greene,40.6942,-73.97104,Private room,50,1,2,2016-09-23,0.06,1,0 +12652765,Private Studio in Herald Square,68729762,Tulika,Manhattan,Midtown,40.7504,-73.98775,Entire home/apt,150,1,2,2016-05-14,0.05,1,0 +25503149,Peaceful apartment for 2,57783233,Maia,Queens,East Elmhurst,40.757670000000005,-73.89299,Entire home/apt,50,1,2,2018-08-04,0.16,1,0 +788035,Room in 2 Bdr Apt in Nolita/Soho LES,4105376,Luis,Manhattan,Nolita,40.72232,-73.99343,Private room,95,7,46,2017-11-18,0.57,1,0 +17840682,Home away from home in the heart of Chelsea,122032246,Jaime,Manhattan,Chelsea,40.74107,-73.99936,Entire home/apt,250,2,2,2017-04-21,0.07,1,0 +7583507,Lovely Clinton Hill Bedroom,23124921,Kyle,Brooklyn,Clinton Hill,40.68973,-73.96073,Private room,65,2,2,2015-08-16,0.04,1,0 +5742615,"Spacious, Renovated 1 BR Loft Apt",29784880,Amy,Manhattan,Chinatown,40.71491,-73.99181999999999,Entire home/apt,149,7,6,2019-06-25,0.12,1,241 +21843831,"Cosy space, 30 min to Manhattan 15 Barclay Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65532,-73.91793,Private room,80,7,1,2019-04-18,0.36,9,364 +3838388,Large Sunny Nicely Furnished Studio,19772879,Kim,Manhattan,Washington Heights,40.83818,-73.94303000000001,Entire home/apt,100,1,0,,,1,0 +2995459,Cozy & Large Corner Flex 2BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.72525,-73.9418,Entire home/apt,159,30,6,2018-10-13,0.12,52,317 +28916864,Cozy 3-People Room Close to Subway,35927005,Kathy,Brooklyn,Borough Park,40.63445,-74.00524,Private room,57,1,1,2019-03-22,0.27,10,365 +13030999,Manhattan downtown luxury apartment,59552219,Chunxiao,Manhattan,Financial District,40.70645,-74.01144000000001,Entire home/apt,160,7,2,2017-01-23,0.05,1,0 +25278771,Homey Gowanus retreat for artists and dog lovers,184898953,Lindsey,Brooklyn,Gowanus,40.67602,-73.98535,Private room,100,3,8,2019-07-06,0.59,1,0 +30637957,Doorman Elevator Prime Location UN! 5242,16098958,Jeremy & Laura,Manhattan,Midtown,40.75554,-73.96533000000001,Entire home/apt,220,30,0,,,96,332 +33013974,"Amazing Room, Amazing Location!!",245637171,Min,Manhattan,East Village,40.72841,-73.98615,Private room,62,30,1,2019-05-31,0.77,8,325 +33632933,Comfy and quiet bed for women travelers,224150,Svetlana,Brooklyn,Midwood,40.61489,-73.94541,Shared room,26,2,5,2019-05-10,1.83,1,0 +15273936,*ENJOY NYC*New Renovated Apartment(Private room),95796044,Sasha,Bronx,Woodlawn,40.88253,-73.86950999999999,Private room,68,1,6,2018-10-09,0.19,1,87 +4697809,Cozy | Spacious | Great Location,4259327,Cole,Manhattan,Flatiron District,40.74128,-73.98428,Private room,95,7,10,2018-05-26,0.18,1,331 +11652590,Chic Rooms in Large NYC Apt,26405086,Bill & May,Manhattan,Harlem,40.80069,-73.95340999999999,Private room,99,28,2,2017-05-23,0.07,4,365 +1578103,Private room in Harlem gem with fab New Yorkers!,245881,Steph,Manhattan,Harlem,40.80355,-73.95227,Private room,99,2,30,2019-06-29,2.61,1,24 +8382660,One cozy bedroom in Bay Ridge NY,44170892,"Keiko, Harumi & Eric",Brooklyn,Bay Ridge,40.63421,-74.0263,Private room,85,2,36,2019-06-26,0.94,1,281 +34274062,Williamsburg big studio,133465194,Andrea,Brooklyn,Williamsburg,40.71925,-73.94293,Entire home/apt,94,7,1,2019-05-17,0.57,1,0 +15314886,Artsy Duplex in Chelsea w/ Huge Terrace,7139819,Nauman,Manhattan,Chelsea,40.74738,-74.00134,Entire home/apt,179,3,3,2017-05-20,0.09,2,0 +22886125,"Heart of Williamsburg, Sunny & Quiet Room",15377827,Karim,Brooklyn,Williamsburg,40.718990000000005,-73.95858,Private room,45,7,5,2019-01-07,0.29,1,0 +36479723,Room for rest,41326856,Jeerathinan,Queens,Elmhurst,40.74477,-73.87727,Private room,45,1,0,,,5,172 +25204010,NyStreet!,69006953,Diana,Manhattan,Hell's Kitchen,40.76306,-73.99015,Entire home/apt,280,1,0,,,1,0 +8899476,"ENTIRE Floor,PRIVATE Bath&Entrance! SUPERHOST :))",3441272,Jasmin,Brooklyn,Bushwick,40.69699,-73.93387,Private room,85,1,270,2019-06-21,5.94,5,227 +36077537,"Clean, quiet, lux BR in Midtown",10287553,Marie,Manhattan,Hell's Kitchen,40.76843,-73.9894,Private room,147,2,1,2019-07-01,1.0,1,27 +9514730,Lovely 1 BR Close to Central Park,2005639,Kasey,Manhattan,Upper West Side,40.78462,-73.97273,Entire home/apt,150,1,0,,,1,0 +16068067,colorful and huge 1BD near Prospect Park,15792248,Marina,Brooklyn,Kensington,40.63647,-73.97463,Entire home/apt,100,2,1,2017-01-02,0.03,1,0 +34085029,211 east34 st Room 6,255431206,Mohammed,Brooklyn,East Flatbush,40.65132,-73.9452,Private room,40,7,1,2019-05-19,0.58,9,106 +20319662,Warm Sunny Penthouse w/Private Bathroom + Patio,17555570,Yan,Brooklyn,Crown Heights,40.66882,-73.92245,Private room,72,1,92,2019-07-07,3.99,12,102 +24588491,"Brooklyn, New York",119864371,Felicia,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9244,Entire home/apt,99,3,44,2019-06-20,3.11,1,135 +32402997,Charming private room in Brownstone apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68557,-73.99829,Private room,85,2,11,2019-07-01,2.56,2,111 +4182568,WilliamsburgBrooklynPrivateBedroom,3267848,June,Brooklyn,Williamsburg,40.70969,-73.96225,Private room,150,1,12,2019-06-02,0.21,1,180 +16108194,"Quiet, Clean Room in Amazing Location!",2642093,Paloma,Brooklyn,Greenpoint,40.73124,-73.95527,Private room,75,5,1,2017-10-04,0.05,1,0 +27545256,"Sunny, Spacious Bedroom 1/2 Block from Ft Green Pk",8039125,Omar,Brooklyn,Fort Greene,40.68811,-73.97539,Private room,52,4,4,2019-05-31,0.36,1,329 +31359053,Affordable luxurious 2 bedroom apartment.,234823585,Anthony,Brooklyn,Kensington,40.64481,-73.97318,Entire home/apt,100,2,15,2019-07-07,2.46,1,66 +15468038,Urban Rustic Retreat - Shared Space,21105084,Sugeiry,Manhattan,Harlem,40.81674,-73.95291999999999,Shared room,65,1,23,2018-06-29,0.81,2,0 +267535,Home Away From Home-Room in Bronx,1402951,Clara,Bronx,Wakefield,40.89557,-73.8447,Private room,50,2,15,2019-06-09,0.17,1,337 +14835632,"Bright, conveniently located room in Bushwick",29480857,Elena,Brooklyn,Bushwick,40.703520000000005,-73.92971,Private room,48,2,11,2017-12-30,0.32,1,0 +5371463,Charming sun drenched sanctuary,1295576,Johnny,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95481,Entire home/apt,99,1,100,2019-01-01,1.97,1,158 +12990502,Cute small room in Astoria,2736755,Marian,Queens,Astoria,40.77091,-73.91875,Private room,40,2,36,2019-06-24,0.96,2,0 +22703920,"Central Brooklyn Beautiful Rooms +Room Florence +#1",167098774,Keisha,Brooklyn,Canarsie,40.63905,-73.89243,Private room,55,2,20,2019-06-24,1.4,3,177 +30531695,Boho tranquil room in bushwick/ridgewood,227682707,Michelle,Queens,Ridgewood,40.70383,-73.91171,Private room,60,2,2,2018-12-30,0.29,1,0 +4950357,"Quiet Room, Near Columbia University & Subway",8253604,James & Shaun,Manhattan,Harlem,40.81561,-73.95264,Private room,89,1,203,2019-06-28,3.89,2,162 +35247808,Sunny 1 bedroom at EAST VILLAGE( L train -1st Ave),48770990,Viola,Manhattan,East Village,40.72993,-73.98319000000001,Private room,78,15,0,,,1,22 +29479579,Williamsburg New Luxury Private Room + Bathroom,6255971,Scott,Brooklyn,Williamsburg,40.71145,-73.95534,Private room,85,2,7,2019-07-01,0.83,1,326 +6764316,GIANT LOFT IN DUMBO -- BY BROOKLYN BRIDGE PARK,362418,Julia,Brooklyn,DUMBO,40.70318,-73.9878,Private room,125,3,181,2019-07-05,3.67,1,111 +26749031,Bright Bedroom Steps to train Minutes to Manhattan,200621725,Sue,Brooklyn,Williamsburg,40.7132,-73.94164,Private room,69,2,75,2019-06-21,6.2,2,15 +1560408,Airy Designer Loft in Williamsburg,8300712,Andrew And Stine,Brooklyn,Williamsburg,40.7133,-73.94601999999999,Entire home/apt,280,1,124,2019-06-23,1.77,1,359 +2008190,Private: The Grey Room,8481125,Thomas,Manhattan,Upper East Side,40.76273,-73.95866,Private room,120,1,12,2016-09-22,0.19,2,206 +1183236,Fantastic 1 BR in massive share.,6472794,Joel,Queens,Long Island City,40.74984,-73.91834,Private room,60,1,0,,,1,0 +21936073,"Charming 1BR - King Bed, Full Kitchen, Laundry",6041929,Degelis,Manhattan,West Village,40.73253,-74.00859,Entire home/apt,220,4,11,2019-05-07,0.65,1,189 +16794287,Furnished 1BR on Prospect Park,13274612,Caleb,Brooklyn,Flatbush,40.650090000000006,-73.96336,Private room,39,180,0,,,1,179 +29232472,Overnight Bed in Heart of Manhattan for Female,194031970,Demir,Manhattan,Hell's Kitchen,40.76437,-73.98775,Shared room,100,1,1,2019-02-13,0.21,3,212 +13427658,Comfortable room 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.776790000000005,-73.91366,Private room,38,1,14,2019-06-30,1.46,3,24 +13782654,Large master bedroom one block from Prospect Park,819636,Matt,Brooklyn,Prospect Heights,40.67575,-73.96546,Private room,102,1,5,2016-09-06,0.14,1,0 +21955216,"Bright, contemporary Kips Bay Studio apt",8801391,Alper Demis,Manhattan,Kips Bay,40.74381,-73.97944,Entire home/apt,300,3,0,,,1,180 +31143457,Empire State Building Views in Luxury 1 Bedroom,4783028,Emma,Manhattan,Midtown,40.75334,-73.98719,Entire home/apt,250,2,4,2019-06-10,1.12,1,0 +29625454,30 minutes to Times Square! 10 to Williamsburg!,223000151,Minerva,Brooklyn,Bedford-Stuyvesant,40.68636,-73.91711,Private room,75,4,17,2019-07-05,4.02,1,9 +13148370,Beautiful Garden Level Apartment in Brooklyn,18893401,Angela,Brooklyn,Fort Greene,40.68457,-73.96969,Entire home/apt,225,2,11,2017-06-15,0.3,1,0 +24833117,2 BEDROOM APT-walk to CENTRAL PARK and restaurants,7834073,Moby,Manhattan,East Harlem,40.7879,-73.94796,Entire home/apt,250,2,27,2019-06-20,1.94,1,31 +29793730,Elevated Bushwick Apartment w/360 Brooklyn Views,32346001,Michael,Brooklyn,Bushwick,40.6989,-73.9246,Entire home/apt,160,2,19,2019-05-26,2.38,2,0 +33064746,Central Park 2 Bed Apt. Steps from Park & Subway,11305100,Shae,Manhattan,Harlem,40.79943,-73.95376,Entire home/apt,150,3,6,2019-06-03,1.59,1,10 +16260117,"Queen Room in Great 2BR Apt, 20min to Times Sq",336228,Victoria,Queens,Sunnyside,40.74673,-73.91564,Private room,95,1,2,2018-02-10,0.09,1,0 +29994675,Near 5 major trains in 1 subway station!,225489491,Ikwo,Brooklyn,Bedford-Stuyvesant,40.67773,-73.90865,Private room,40,2,4,2019-06-15,1.67,1,363 +13243946,Sunny one-bedroom two blocks from Central Park,5704909,Taeko,Manhattan,Harlem,40.80041,-73.95237,Entire home/apt,160,3,1,2016-06-12,0.03,1,0 +579716,Sweet n' Spectacular PARK SLOPE!,2851409,Mark And Stoph,Brooklyn,South Slope,40.66488,-73.98079,Private room,50,2,201,2019-07-01,2.42,1,54 +6822854,Two Story Room With Reclaimed Bed,23582893,Laramie,Brooklyn,Bushwick,40.6904,-73.91538,Private room,58,6,31,2019-05-25,0.63,8,147 +16604112,Cozy Private room in the heart of Jamaica New york,109527682,Stella,Queens,Jamaica,40.71107,-73.78429,Private room,72,1,10,2019-06-30,0.54,1,175 +13073701,Lovely Charming and quiet 2 bed apartment,35660592,Luis,Queens,Corona,40.75058,-73.8535,Entire home/apt,119,2,37,2019-07-02,1.01,6,336 +10686287,Brick Wall Charmer in Kips Bay,36998357,Lev,Manhattan,Kips Bay,40.7388,-73.98024000000001,Entire home/apt,120,1,0,,,1,0 +15158194,Sunny Manhattan 1 bedroom in Landmark Brownstone,7245581,Michael,Manhattan,Washington Heights,40.83355,-73.93839,Entire home/apt,67,180,4,2019-05-31,0.15,19,331 +28959608,The Green Atelier of Park Slope,5085951,Liz,Brooklyn,Park Slope,40.67702,-73.97907,Private room,100,2,22,2019-06-27,2.59,1,292 +12188651,Spacious home in heart of NYC,6997786,Mara,Manhattan,Chelsea,40.74369,-73.99571,Entire home/apt,225,2,5,2016-10-09,0.14,1,0 +9518,"SPACIOUS, LOVELY FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86482,-73.92106,Private room,44,3,108,2019-06-15,1.11,3,311 +10527546,Central Park Quiet 1BR,14290739,Stanton,Manhattan,Upper West Side,40.79182,-73.96564000000001,Entire home/apt,200,31,8,2018-08-14,0.22,3,342 +26734288,Super cool shared apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69099,-73.94094,Shared room,30,2,32,2019-06-23,2.66,17,85 +20917712,"@FERRY, Private Cozy Room, Renovated&Stylish.",117492425,Dine,Staten Island,St. George,40.645790000000005,-74.08027,Private room,29,4,61,2019-06-24,2.81,6,178 +13746962,Private room in a 2 Bedroom apartment - Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73938,-73.99855,Private room,150,3,0,,,2,0 +28972637,Modern living in old Harlem (the Scream2),2802223,Raluca,Manhattan,Harlem,40.82921,-73.93802,Entire home/apt,125,60,2,2019-05-31,0.23,2,3 +17922181,Cute UWS studio off CPW,5162192,Amy,Manhattan,Upper West Side,40.79857,-73.96162,Entire home/apt,110,30,9,2019-05-19,0.38,12,161 +16133101,Sunny Room in Bed Stuy Brooklyn,1626704,Meghan,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94978,Private room,75,2,55,2018-12-30,1.95,1,0 +16341416,Sunny room in BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67306,-73.92334,Private room,49,2,34,2019-06-04,1.11,5,29 +31315168,Brooklyn Bed,5800174,Rena,Brooklyn,Prospect Heights,40.67632,-73.96616999999999,Private room,70,2,17,2019-06-30,2.82,1,26 +7885044,Bedroom in Williamsburg's Heart,20792304,Baptiste,Brooklyn,Williamsburg,40.71413,-73.95044,Private room,79,2,3,2015-08-31,0.06,1,0 +449130,Your Own Private Entrance Studio in Stylish Duplex,2229582,Yamil,Manhattan,Harlem,40.8179,-73.94319,Private room,94,1,95,2019-06-28,1.09,1,18 +20802860,Greenpoint Spacious New Room on McCarren Park,11589542,Michael,Brooklyn,Greenpoint,40.72228,-73.94816999999999,Private room,135,2,2,2017-10-15,0.09,1,0 +19387402,Luxury Central Park Apartment close to everything,78325795,Bozhena,Manhattan,Harlem,40.80369,-73.94856999999999,Entire home/apt,179,2,143,2019-07-05,5.77,3,197 +32195520,Cozy Apartment in long island city /Astoria,241583701,Alejandro,Queens,Long Island City,40.75331,-73.92454000000001,Entire home/apt,140,7,4,2019-05-21,0.85,1,35 +28978145,"Heart of Ft Greene, newly renovated w garden patio",218417996,Sam,Brooklyn,Fort Greene,40.689040000000006,-73.97269,Entire home/apt,210,4,20,2019-06-20,2.32,1,268 +28721018,Brooklyn Sunny room 5 min to subway,174261493,Sophie & Max,Brooklyn,Sheepshead Bay,40.61051,-73.95508000000001,Private room,99,2,10,2019-06-02,1.05,2,0 +992977,Park Slope Pre-War Apartment,4000059,Shahdiya,Brooklyn,Park Slope,40.67359,-73.97434,Entire home/apt,100,365,1,2013-08-01,0.01,1,365 +7308735,Big room with great natural light,38288441,Nathaniel,Manhattan,Harlem,40.82416,-73.94623,Private room,55,3,8,2017-06-26,0.22,1,0 +35710560,"❥❥1*NYC Cozy: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69343,-73.86745,Private room,60,3,0,,,6,50 +35084043,Cozy Private Studio near Times Square,191976506,Vivian,Manhattan,Hell's Kitchen,40.76831,-73.98515,Entire home/apt,199,3,0,,,2,361 +6356366,Extra Large 1 Bdroom Sunny/Spacious,33113275,Iz,Manhattan,East Village,40.72872,-73.98043,Entire home/apt,249,3,3,2015-10-21,0.06,1,0 +21241829,Spacious 1BD in Greenwich Village/Union Square,78414842,Alexander,Manhattan,Greenwich Village,40.73393,-73.99306,Private room,200,3,9,2019-01-01,0.43,1,0 +22122084,Charming Crown Heights Apartment,2244532,Hazel,Brooklyn,Crown Heights,40.67666,-73.94086999999999,Private room,100,5,1,2018-09-22,0.1,1,0 +31682665,Cozy place in Astoria,8810794,Marcela,Queens,Long Island City,40.74776,-73.92875,Private room,50,1,10,2019-06-30,2.13,1,125 +17573621,The Queens Bungalow,331658,Brittney,Queens,Glendale,40.69643,-73.89362,Entire home/apt,65,3,19,2019-07-02,0.7,1,104 +18756112,Luxury 1 Bed Apt- Central Park View,119838600,Lu,Manhattan,Upper West Side,40.7932,-73.96385,Entire home/apt,260,3,1,2017-09-22,0.05,1,0 +8117213,Luxury Highline living West Chelsea Hudson Yards,722831,Jennifer,Manhattan,Chelsea,40.75165,-74.00074000000001,Entire home/apt,225,29,9,2018-12-30,0.24,1,280 +4874334,2 Bedroom Apt in downtown Brooklyn,25073318,Brook,Brooklyn,Fort Greene,40.69203,-73.97088000000001,Entire home/apt,250,4,0,,,1,0 +32588761,Private Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.5767,-73.96,Private room,45,1,5,2019-06-23,1.18,2,351 +875111,1-bedroom apt in Clinton Hill,2908554,Michael,Brooklyn,Bedford-Stuyvesant,40.68586,-73.95875,Entire home/apt,100,3,7,2019-01-27,0.11,1,0 +13630755,Apartment Available in Bay Ridge Brooklyn,79020870,Sharn,Brooklyn,Fort Hamilton,40.62106,-74.03384,Shared room,179,1,0,,,1,0 +1706997,Cozy 1BD next to Central Park,5662533,Megan,Manhattan,Upper West Side,40.77532,-73.97952,Private room,175,2,4,2016-08-05,0.1,1,0 +4830158,Loft in Brooklyn / Clinton Hill,21191214,Alex,Brooklyn,Clinton Hill,40.68348,-73.96394000000001,Entire home/apt,99,5,0,,,1,0 +35726877,Manhattan Apartment Near it All!,11490581,Pedro,Manhattan,Hell's Kitchen,40.75292,-73.99486999999999,Entire home/apt,249,2,1,2019-06-23,1.0,1,7 +29825469,Entire Top Floor Suite with Private Bathroom.,7443296,Faridath,Brooklyn,Cypress Hills,40.68072,-73.88786999999999,Private room,120,2,26,2019-07-01,3.24,1,63 +22119375,Hart House - Calm Space in Bed-Stuy Activist Home,63935474,Tok,Brooklyn,Bedford-Stuyvesant,40.69538,-73.94657,Private room,35,2,4,2018-01-01,0.21,1,0 +22483585,Best Kept Secret in Carroll Gardens BROOKLYN!!,17129810,Jeffrey,Brooklyn,Columbia St,40.68274,-74.0046,Entire home/apt,190,4,42,2019-05-28,2.42,5,299 +12795109,Charming Pr Room in E. Williamsburg,59375053,Jacqueline,Brooklyn,Williamsburg,40.70766,-73.94767,Private room,80,2,2,2016-05-29,0.05,1,0 +15618325,Sunny Prospect Park One Bedroom Apartment,19313463,Jp,Brooklyn,Windsor Terrace,40.65136,-73.9746,Entire home/apt,75,5,25,2019-04-23,0.78,1,6 +27697284,Cozy Spacious Loft Convenient to City,875439,Sami,Queens,Jackson Heights,40.749970000000005,-73.87850999999999,Entire home/apt,185,3,25,2019-07-02,3.21,1,55 +35069416,005 Comfy and Pleasant Shared Room,137999892,Simranjeet,Staten Island,Concord,40.60625,-74.089,Shared room,30,4,1,2019-06-01,0.77,7,68 +34535182,J & G Comfort Cove: Serenity Queen Room,259776956,Gladwyn,Brooklyn,Canarsie,40.6307,-73.89567,Private room,120,1,3,2019-07-06,1.76,5,365 +35462054,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69693,-73.97395999999999,Private room,48,30,0,,,25,66 +13079618,Cozy Apartment in Fort Greene,7221835,Darian,Brooklyn,Fort Greene,40.6904,-73.97285,Entire home/apt,140,3,2,2016-10-24,0.05,1,0 +30851304,Twice As Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66292,-73.76711,Entire home/apt,75,1,40,2019-07-04,6.19,2,300 +33917759,Central Park North Max-Room,234483148,Makis,Manhattan,Harlem,40.80332,-73.94853,Private room,95,1,11,2019-07-03,4.58,2,256 +22636785,Private room with visit to queens # 2,158540605,Sonia,Queens,Glendale,40.70148,-73.88954,Private room,25,2,75,2019-06-23,4.29,6,254 +28250863,Clean & Spacious room in NYC,136121042,Janilssa,Manhattan,Inwood,40.86319,-73.92671999999999,Private room,60,2,4,2019-04-30,0.39,1,359 +3455983,Perfect Apartment For Young Family,178551,Jena,Manhattan,Harlem,40.81525,-73.95279000000001,Entire home/apt,200,6,0,,,1,0 +22206970,Beautiful studio in the East Village,118407577,Vanessa,Manhattan,East Village,40.72588,-73.98243000000001,Entire home/apt,90,4,4,2019-05-06,0.22,1,5 +21287982,PERFECT LOCATION! EAST VILLAGE Private Room,117385673,Danielle,Manhattan,East Village,40.7303,-73.98340999999999,Private room,105,3,1,2017-10-23,0.05,2,0 +2028178,1BD Modern Contemporary in Williamsburg,10417106,Helene & Michael,Brooklyn,Williamsburg,40.71491,-73.94864,Private room,85,2,7,2018-05-31,0.11,1,207 +6523409,Large BR w/Private Ent & Living Rm!,2124716,Jules,Brooklyn,Park Slope,40.66923,-73.98134,Private room,99,1,100,2017-09-18,2.11,1,1 +13479511,Midtown Studio near Central Park,25168709,Lili,Manhattan,Upper East Side,40.76184,-73.9569,Entire home/apt,150,4,45,2018-11-08,1.27,1,6 +25805430,A Contemporary Homelike Stay in the Best of BK,32252422,Mckinley,Brooklyn,East Flatbush,40.63961,-73.93281,Entire home/apt,125,2,56,2019-07-02,4.22,2,332 +21306332,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.74071,-73.99977,Entire home/apt,170,30,0,,,87,307 +29646454,Large Private room in Astoria. Midtown in 20mins,7832790,Michael,Queens,Astoria,40.76416,-73.91320999999999,Private room,90,1,7,2019-06-05,1.0,2,49 +23508567,Cozy Home in Brooklyn Prime Location,13956097,Livia,Brooklyn,Williamsburg,40.71515,-73.95251999999999,Private room,70,3,2,2019-06-09,0.32,1,223 +34062876,Awesome Room in Beautiful Williamsburg Loft,130675,Marta,Brooklyn,Williamsburg,40.71074,-73.94284,Private room,79,3,4,2019-07-01,2.93,1,9 +4766468,Lovely and Immaculate Bushwick Apt,24591281,James,Brooklyn,Bushwick,40.69913,-73.91484,Entire home/apt,91,15,1,2017-01-02,0.03,1,0 +25029794,East Village gem,17145227,Ola,Manhattan,East Village,40.72458,-73.98822,Entire home/apt,206,5,3,2019-01-02,0.22,1,12 +34860549,1 room for a cozy night or 2,209915988,Ashley,Bronx,Unionport,40.82936,-73.84854,Private room,75,1,1,2019-05-26,0.68,1,365 +11740386,Williamsburg Loft,24458604,Austin,Brooklyn,Williamsburg,40.71813,-73.96464,Entire home/apt,85,5,2,2017-05-02,0.07,1,0 +22979825,"Private large bedroom in Prime Williamsburg, BK",10826049,Faye,Brooklyn,Greenpoint,40.7195,-73.95255999999999,Private room,75,4,0,,,1,0 +22018921,Clean and simple Private Ensuite in Manhanttan,70235067,Caeli,Manhattan,Washington Heights,40.84754,-73.93229000000001,Private room,34,3,4,2018-08-26,0.22,1,0 +27831715,Modern 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75497,-73.96289,Entire home/apt,204,29,0,,,96,243 +1728437,Cozy Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66182,-73.95338000000001,Private room,65,1,38,2019-05-30,0.6,10,239 +26295421,Cozy place II,197516314,Genny,Staten Island,Port Richmond,40.63408,-74.13224,Private room,55,1,40,2019-06-15,3.21,3,363 +27250227,Artist Retreat Private Single,134521683,Kathy,Manhattan,East Village,40.72401,-73.98154,Private room,50,30,3,2019-06-14,0.3,2,34 +13389280,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Theater District,40.76375,-73.98387,Entire home/apt,257,30,0,,,87,364 +18896824,Luxury Coliving Space in Modern Loft,4440278,Emmanuel,Brooklyn,Williamsburg,40.71143,-73.94009,Private room,119,3,10,2019-04-21,0.39,3,180 +36238485,Chic Room in Williamsburg + Backyard +Washer Dryer,22157126,Ryan,Brooklyn,Williamsburg,40.71773,-73.94159,Private room,91,2,1,2019-07-04,1.0,1,344 +31332746,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61203,-74.00180999999999,Private room,40,10,0,,,2,0 +35309370,SUNNY Entire Apartment in Williamsburg BROOKLYN,1678322,Chris,Brooklyn,Williamsburg,40.71004,-73.95577,Entire home/apt,180,2,2,2019-06-15,1.87,1,23 +18875740,Cozy Bedroom in the heart of Manhattan,11163128,A,Manhattan,Hell's Kitchen,40.76221,-73.98891,Private room,350,3,28,2018-12-20,1.11,1,76 +13395955,Adorable Prospect Heights 1 Bedroom,34468399,Nancy,Brooklyn,Prospect Heights,40.67649,-73.96696999999999,Entire home/apt,143,31,3,2018-07-21,0.08,1,0 +32942632,Jackson Heights coziest private room,229637274,Sonia,Queens,Elmhurst,40.74642,-73.88044000000001,Private room,30,1,15,2019-07-03,4.84,2,135 +16783144,Wonderful island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76335,-73.94937,Private room,75,1,99,2019-06-06,3.47,2,156 +21770068,Brooklyn Gem! Close to transportation!,21153742,Ezra,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95194000000001,Private room,150,3,2,2017-11-28,0.1,1,364 +23756498,Private and Cozy in the Heart of Flatbush Avenue,74033494,Jude,Brooklyn,Flatbush,40.64296,-73.95238,Entire home/apt,125,2,31,2019-06-25,2.93,1,64 +7526715,Spacious Bedroom in Central Harlem,11203708,Elizabeth,Manhattan,Harlem,40.811890000000005,-73.94148,Private room,64,2,20,2018-12-09,0.42,1,0 +11168007,Beautiful Studio in luxury building,6032945,Tabata,Brooklyn,Greenpoint,40.71987,-73.95427,Entire home/apt,110,3,0,,,1,0 +13968271,Two story Park Slope home with deck and garden,647256,Deena,Brooklyn,Park Slope,40.67922,-73.98156999999999,Entire home/apt,200,1,0,,,1,0 +30349344,Roomy and Relaxing 3 Brooklyn Apartment,144687306,Nutrice,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.9516,Entire home/apt,150,3,26,2019-07-07,3.53,2,241 +6164719,Spacious Sunny Studio in LES,886109,Tzveta,Manhattan,Lower East Side,40.721340000000005,-73.99104,Entire home/apt,180,2,25,2018-08-06,0.51,1,200 +3434211,Luxury Furnished Apt @TriBeCa/Soho,11081628,Arjun,Manhattan,Civic Center,40.71663,-74.00231,Entire home/apt,80,7,6,2018-05-29,0.18,1,0 +5625386,1 bdrm apt near Prospect Park,6372947,Michelle & Sebastien,Brooklyn,Flatbush,40.65305,-73.95818,Entire home/apt,80,5,1,2015-09-15,0.02,1,0 +20884271,Clean and cozy private bedroom in Central Harlem.,68992648,Mariaelena,Manhattan,Harlem,40.81888,-73.94345,Private room,53,2,47,2018-11-21,2.16,1,0 +1074506,Amazing Queens Oasis Steps to Train,2981156,Kia,Queens,Astoria,40.76359,-73.92531,Entire home/apt,160,2,13,2018-10-14,0.26,2,56 +23574142,queens get away!!,176185168,Janet,Queens,Laurelton,40.68209,-73.73662,Private room,65,1,119,2018-12-24,7.79,1,0 +35065348,MASTER ROOM # 2 Near from JFK & LGA Airport.,214738765,Lucio,Queens,Richmond Hill,40.6944,-73.83192,Private room,75,1,5,2019-07-05,4.05,3,365 +12155351,"Cute Apt, heart of east Village!",34507633,Paul,Manhattan,East Village,40.72772,-73.97978,Private room,80,1,1,2016-05-26,0.03,1,0 +11675341,1 bdrm Spacious Beautiful Apartment,62001039,Liz,Queens,Forest Hills,40.72227,-73.84173,Entire home/apt,120,2,4,2016-06-05,0.1,1,0 +31566109,B in Brooklyn!,154390742,Brittney,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95862,Entire home/apt,120,2,8,2019-06-02,1.41,1,0 +36448400,Central East Village Apartment,16030422,Brandon,Manhattan,East Village,40.72626,-73.98729,Private room,80,3,0,,,1,18 +841075,Spacious and Clean Brooklyn Flat,4392420,John,Brooklyn,Bushwick,40.70366,-73.9269,Entire home/apt,85,15,22,2016-10-22,0.28,1,0 +9832882,Greenwich Village 2BR family apt.,50640005,Gwendollyn,Manhattan,Greenwich Village,40.73393,-73.9982,Entire home/apt,250,2,0,,,1,0 +317905,Come and go as you please in BKLN!,1631733,Jane,Brooklyn,Kensington,40.64354,-73.97776999999999,Entire home/apt,89,3,62,2019-01-02,0.71,1,189 +21897845,One room.,159769278,Musieka,Bronx,Pelham Gardens,40.86706,-73.84674,Private room,40,2,17,2019-06-04,1.23,1,17 +9794077,Bright Private Greenpoint Room,23698012,Amelia,Brooklyn,Greenpoint,40.72276,-73.94856999999999,Private room,75,1,0,,,1,0 +19265792,Oasis Carriage House Apartment in Williamsburg,14416238,New,Brooklyn,Williamsburg,40.70851,-73.94197,Entire home/apt,125,4,0,,,1,0 +5615835,"Nice Room with Loft Bed- Manhattan, East Village",29106164,Christina,Manhattan,East Village,40.72805,-73.98415,Private room,75,3,32,2019-05-24,1.39,1,72 +9027607,Bright West Village Apartment,19435113,Mark,Manhattan,West Village,40.731390000000005,-74.00452,Entire home/apt,175,1,0,,,1,0 +3902791,Luxury West Village 1 bdrm w/ views,6426063,Sarah,Manhattan,West Village,40.73377,-74.0057,Entire home/apt,199,5,5,2016-04-29,0.08,1,0 +34814184,Shared Room By Times Square near Central Park 3,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76391,-73.98892,Shared room,75,1,3,2019-06-24,2.2,6,365 +30586349,Open view on Manhattan,105622510,Manny,Manhattan,East Harlem,40.79179,-73.93524000000001,Private room,52,2,10,2019-06-15,1.6,1,5 +1640995,One bedroom apartment - UES,8313953,Natalie,Manhattan,Upper East Side,40.76866,-73.9536,Entire home/apt,140,6,36,2019-06-06,0.69,1,71 +22177219,Private Big Room with Great Access!!!,162005440,Alba,Queens,East Elmhurst,40.76311,-73.89098,Private room,100,2,23,2019-06-08,1.23,1,95 +35709724,Private Studio steps from Herald Square ☆,218335154,Nelson,Manhattan,Midtown,40.743390000000005,-73.98205,Entire home/apt,250,1,0,,,2,360 +35991170,"Heart of NYC! - Large, Spacious, Bright 1 Bedroom!",1386697,Andreas,Manhattan,Midtown,40.75913,-73.96486999999999,Entire home/apt,133,30,0,,,1,246 +31143377,Luxury Apartment with Statue of Liberty view,232463854,Mina,Manhattan,Battery Park City,40.7077,-74.01555,Entire home/apt,300,1,3,2019-05-17,0.76,1,363 +287408,Lovely Hell's Kitchen Studio...,1495090,Carey,Manhattan,Hell's Kitchen,40.76147,-73.99152,Entire home/apt,165,2,72,2018-07-31,0.82,1,10 +25127253,Amazing Studio in Times Square,38844508,Taylor,Manhattan,Hell's Kitchen,40.75888,-73.99101999999999,Entire home/apt,239,2,17,2019-07-04,1.25,1,7 +9630342,Quiet Studio in Prime East Village,49807312,Ryan,Manhattan,East Village,40.72554,-73.9838,Entire home/apt,107,3,19,2019-06-23,0.44,1,72 +7517614,"Cute, Eclectic, & Family Friendly",39389693,Sara,Manhattan,Washington Heights,40.8327,-73.94485999999999,Entire home/apt,120,1,3,2015-09-19,0.06,1,0 +11981509,COLUMBIA PRESBYTERIAN MED CTR *ARIA* 1 Bedroom Apt,25237492,Juliana,Manhattan,Washington Heights,40.84216,-73.94100999999999,Entire home/apt,95,30,7,2018-02-04,0.19,34,322 +2015094,Private room in Manhattan,10364678,Dany,Manhattan,Inwood,40.86888,-73.92059,Private room,45,2,36,2016-06-11,0.57,2,188 +3836189,"Amazing, Spacious Bedroom in BK",9314076,Naeem,Brooklyn,Bedford-Stuyvesant,40.69291,-73.95142,Private room,80,1,0,,,1,0 +35874530,2 Bedroom w/ King Bed in Greenpoint BK,146636596,Lala,Brooklyn,Greenpoint,40.72845,-73.95791,Entire home/apt,300,2,1,2019-06-23,1.0,1,24 +27526520,Lovely Manhattan Room near GCT / Central Park,137358866,Kazuya,Manhattan,East Harlem,40.79461,-73.94199,Private room,36,30,1,2018-10-01,0.11,103,199 +27705293,Studio Apartment in historic Sugar Hill townhouse,12104046,Paula,Manhattan,Harlem,40.82862,-73.93831999999999,Entire home/apt,85,2,23,2019-07-01,2.24,2,16 +25834662,Cozy large room at the heart of NYC 41D4,190921808,John,Manhattan,Hell's Kitchen,40.75545,-73.99556,Private room,62,7,8,2019-05-22,0.77,47,355 +36307882,Adorable TriBeCa neighborhood easy subway access!,111768943,Kristin,Manhattan,Tribeca,40.71918,-74.00786,Entire home/apt,169,6,0,,,1,55 +14757774,Sunny room in PRIME Brooklyn!,6803612,Jessica,Brooklyn,Bushwick,40.70497,-73.9233,Private room,60,4,3,2018-09-23,0.09,1,0 +30146925,Sweet and modern 2BR getaway in Bed-Stuy,34277028,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68633,-73.92728000000001,Entire home/apt,150,3,15,2019-06-10,2.13,1,77 +13477342,"Historical Sugar Hill, West Harlem",25461543,David,Manhattan,Harlem,40.83079,-73.9432,Private room,95,2,14,2019-05-14,0.38,2,89 +25285637,Midtown east for 5 people,191011879,Conor,Manhattan,Midtown,40.75298,-73.96919,Entire home/apt,199,2,50,2019-06-21,3.74,2,92 +18057747,Comfortable Room near Columbia University,28642031,Laura,Manhattan,Harlem,40.806740000000005,-73.95616,Private room,60,5,1,2017-08-12,0.04,1,0 +29168569,"Home For Medical Professionals - ""The Macula""",26377263,Stat,Brooklyn,East Flatbush,40.65385,-73.93656999999999,Private room,53,19,0,,,43,347 +9043652,Great 1 bedroom apartment in the heart of soho,6304221,Phil,Manhattan,SoHo,40.72038,-73.99818,Entire home/apt,190,2,10,2019-07-01,0.97,1,41 +18776660,East Williamsburg/Bushwick Loft,130667097,Paul,Brooklyn,Williamsburg,40.70492,-73.93341,Private room,55,1,25,2018-12-30,0.96,2,364 +25245882,Recently Remodeled: Stunning & Spacious 1 Bedroom,3312372,Laura J.,Queens,Jackson Heights,40.75096,-73.88423,Entire home/apt,175,3,7,2019-06-09,0.68,1,28 +11965263,Huge sunny bedroom in Crown Heights,9028473,Molly,Brooklyn,Crown Heights,40.67265,-73.94674,Private room,75,1,0,,,1,0 +17176173,Artistic room steps from A train,1506191,Caitlin,Manhattan,Washington Heights,40.85188,-73.93588000000001,Private room,70,1,26,2019-05-19,1.08,1,0 +31517508,Light filled Room in heart of Brooklyn,7777033,Martha,Brooklyn,Crown Heights,40.66915,-73.95321,Private room,80,2,0,,,1,342 +9749211,Studio- Prime East Village Location,50289490,Michael,Manhattan,East Village,40.72613,-73.98621,Entire home/apt,140,5,0,,,1,0 +9029289,Stylish Boutique Apt Close to Central Park,46473604,Paul,Manhattan,Upper West Side,40.77739,-73.98231,Entire home/apt,88,29,71,2019-06-02,1.62,1,95 +3213813,Beautiful Room+Shared Living Room,16279457,Michael,Brooklyn,Crown Heights,40.66985,-73.95675,Private room,100,7,0,,,1,0 +25842535,The Perfect Williamsburg Apartment,35967771,Aurelio,Brooklyn,Williamsburg,40.72021,-73.95949,Entire home/apt,180,2,3,2019-03-11,0.29,1,0 +29561222,Quite and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6626,-73.87731,Private room,29,1,59,2019-07-05,7.25,2,54 +367042,Eastern Parkway Brooklyn 1BR Flat,774128,Andre,Brooklyn,Crown Heights,40.66847,-73.94875,Entire home/apt,125,5,1,2014-09-04,0.02,1,0 +17681470,"Family Vacation in NYC, Close to the City!",60244293,Savannah,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92662,Entire home/apt,160,2,45,2018-01-30,1.61,2,0 +299531,Feel like you never leave your home,1220404,Tom,Brooklyn,East New York,40.66795,-73.89232,Entire home/apt,100,1,119,2019-06-30,1.39,2,289 +30392874,Crisp 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.75963,-73.98595,Entire home/apt,316,30,0,,,232,262 +1937226,Awesome Harlem House 3 bdr 2 floors,8826175,Grover,Manhattan,Harlem,40.80874,-73.94756,Entire home/apt,174,3,177,2019-06-11,2.62,3,165 +25927829,Soho! Amazing Single Room!,192951036,Jasmine,Manhattan,SoHo,40.7258,-73.99969,Private room,119,1,35,2019-06-23,2.75,10,156 +171776,Gorgeous 1 bdrm in huge duplex!,803086,Benton,Manhattan,Harlem,40.802240000000005,-73.94558,Private room,170,2,17,2015-10-01,0.18,2,88 +14827418,private room in central SOHO,9390190,Amy,Manhattan,SoHo,40.72293,-73.99951999999999,Private room,120,1,24,2019-05-19,0.71,4,89 +29027424,"Brand new apartment in Queens, NY",38153613,Farzona,Queens,Briarwood,40.71047,-73.81562,Private room,350,4,1,2018-10-07,0.11,1,90 +13986672,Bedroom in industrial huge loft in Greenpoint,1558222,Nikki,Brooklyn,Greenpoint,40.72828,-73.94225,Private room,70,5,0,,,3,0 +35567048,Entire 3 bedroom apartment in beautiful Harlem,18042477,Madeline,Manhattan,Washington Heights,40.833290000000005,-73.94055999999999,Entire home/apt,160,14,0,,,1,59 +19093551,Studio in Brooklyn,1295284,Sue,Brooklyn,Midwood,40.61402,-73.94467,Entire home/apt,70,7,0,,,1,0 +20292523,Terrace Penthouse in Nolita,40321516,Luc,Manhattan,Nolita,40.72206,-73.99497,Entire home/apt,350,5,1,2017-11-26,0.05,1,0 +8566656,Harlem Cozy One Bedroom,6178560,Alan,Manhattan,Harlem,40.81951,-73.93715,Entire home/apt,131,1,0,,,1,0 +3304307,Lovely Shiny Private Room in NYC,12465884,Natasha,Manhattan,East Harlem,40.79269,-73.94218000000001,Private room,100,3,64,2019-06-01,1.05,1,219 +3831,Cozy Entire Floor of Brownstone,4869,LisaRoxanne,Brooklyn,Clinton Hill,40.68514,-73.95976,Entire home/apt,89,1,270,2019-07-05,4.64,1,194 +7968283,Large room & private bathroom,42045746,Owen,Brooklyn,Bushwick,40.68935,-73.9127,Private room,45,1,1,2015-10-06,0.02,1,0 +36228538,Great location. Great view. Brand new Apartment,12776694,Oren,Manhattan,Upper East Side,40.76135,-73.96139000000001,Entire home/apt,250,8,0,,,1,39 +31885820,"Private bathroom/bedroom, easy access to JFK/LGA",14501609,Zebin,Queens,Richmond Hill,40.70203,-73.82840999999999,Private room,40,2,18,2019-06-14,3.44,1,30 +1827525,Huge Room with Private Bathroom,9470293,Lana,Brooklyn,Flatbush,40.65083,-73.96101,Private room,70,3,3,2016-07-03,0.04,1,188 +498052,Modern private room in condominium,2426779,Regina,Brooklyn,Williamsburg,40.71483,-73.96216,Private room,120,1,124,2019-06-10,1.46,1,292 +24730752,MiniArtHotel|CentralParkUESManhattan|SingleCouple,1784813,Ying,Manhattan,Upper East Side,40.78237,-73.95226,Private room,95,2,35,2019-06-14,2.58,1,180 +24372429,"Spacious, Charming 2BR Apt in Trendy Bushwick",10197436,Chris,Brooklyn,Bushwick,40.68652,-73.91212,Entire home/apt,99,2,71,2019-07-06,4.8,1,140 +21786868,Spacious Lower East Side with private balcony,78999831,Michael,Manhattan,Lower East Side,40.72221,-73.99084,Private room,200,2,0,,,1,0 +7676933,Beautiful&New Bedrooms near everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80188,-73.96696,Private room,59,1,26,2019-04-19,0.68,6,326 +22731353,Cozy apartment in Greenwich Village,27960761,Christopher,Manhattan,Greenwich Village,40.72815,-73.99586,Entire home/apt,150,2,14,2018-04-22,0.79,3,0 +36079246,Spacious Clinton Hill Apartment,34774173,Natalie,Brooklyn,Bedford-Stuyvesant,40.69198,-73.96008,Entire home/apt,95,2,0,,,1,5 +832596,Spacious 1 BR Near the Water UES,1723222,Nick,Manhattan,Upper East Side,40.77613,-73.94872,Entire home/apt,250,4,1,2016-05-24,0.03,1,0 +28367094,Fantastic Room in Bushwick,212071658,Brian,Brooklyn,Bushwick,40.69238,-73.90361,Private room,65,2,24,2019-06-10,2.59,5,351 +12430126,Beautiful 2 BR by Columbia,31796914,Jenna,Manhattan,Morningside Heights,40.80507,-73.96465,Entire home/apt,290,4,3,2018-01-05,0.08,1,0 +15088367,"CLASSIC BRICK BROOKLYN. Rooftop, plants, books...",7834564,Rebecca,Brooklyn,Crown Heights,40.67415,-73.95626999999999,Private room,60,4,2,2018-08-28,0.06,1,14 +12114017,SoBro Guest House,64976141,Fran & Jason,Bronx,Mott Haven,40.80903,-73.92143,Entire home/apt,125,3,142,2019-06-25,3.59,1,185 +4813259,Big & Bright near Park & Museum,4312196,Joshua,Brooklyn,Crown Heights,40.6794,-73.9616,Private room,90,4,1,2015-07-08,0.02,1,0 +21022330,Cozy spot,137586595,Yves,Queens,Hollis,40.71455,-73.7613,Entire home/apt,100,1,3,2017-11-04,0.14,1,0 +30527526,Pelham south,228773060,Reggae In,Bronx,Bronxdale,40.85398,-73.86451,Private room,25,2,1,2018-12-14,0.14,1,0 +33661139,"Private Rm Near JFK, Beach & St. John E Hospital",234090781,Phoenix,Queens,Bayswater,40.6083,-73.75787,Private room,45,1,4,2019-06-21,2.26,2,54 +19270160,One Bedroom Walk Up in Hell's Kitchen,20292772,Noel,Manhattan,Hell's Kitchen,40.76227,-73.99035,Entire home/apt,225,2,6,2017-11-25,0.24,1,0 +25780292,Cozy 2 Bedroom in Murray Hill!,15372962,Christian,Manhattan,Kips Bay,40.74493,-73.97743,Entire home/apt,275,3,1,2018-08-09,0.09,1,0 +4936254,Big & bright 2 bedroom apartment! Lower East Side!,22087408,Dominik,Manhattan,Lower East Side,40.71763,-73.98359,Entire home/apt,150,1,17,2019-07-07,0.36,3,264 +466457,"Bright, Bedstuy Gem",2316542,Nicole Lavonne,Brooklyn,Bedford-Stuyvesant,40.689440000000005,-73.9376,Entire home/apt,100,3,182,2019-07-01,2.15,1,220 +28261459,Cozy apartment 15 minutes from midtown!,103049729,Julia,Queens,Sunnyside,40.74314,-73.92389,Entire home/apt,78,2,4,2018-12-02,0.44,1,0 +16451278,Williamsburg Loft - Short or Long term Roommate,7988793,Andres,Brooklyn,Williamsburg,40.71996,-73.95567,Private room,59,30,1,2017-02-23,0.03,1,0 +7573221,"Cozy, clean in Greenpoint Brooklyn!",5287536,Kaya,Brooklyn,Greenpoint,40.72961,-73.95656,Entire home/apt,120,1,0,,,1,0 +16933257,Bay Ridge Apt,88981564,Luis,Brooklyn,Bay Ridge,40.62158,-74.02394,Entire home/apt,175,2,35,2019-06-19,1.17,1,325 +6262821,"Manhattan, near subway, quiet street in LES!",1190853,Tanner,Manhattan,Lower East Side,40.7175,-73.98435,Private room,95,2,247,2019-06-27,4.87,1,60 +9539912,1BDRM 25 min subway to Times sq,49411357,Viacheslav,Queens,Forest Hills,40.71425,-73.84503000000001,Entire home/apt,100,14,0,,,1,0 +26538746,Studio in UES (7mins from Central Park/The MET),51783601,Gursharan,Manhattan,Upper East Side,40.77537,-73.95555999999999,Entire home/apt,120,5,1,2018-07-03,0.08,1,0 +5327598,Convenient & Updated- prime East Village location!,11576606,Katie,Manhattan,East Village,40.72259,-73.98501999999999,Entire home/apt,199,3,1,2016-10-02,0.03,1,0 +18366609,"COZY, QUIET BEDROOM IN INWOOD, ""UPSTATE MANHATTAN""",127164761,Christopher,Manhattan,Inwood,40.866890000000005,-73.92353,Private room,46,1,14,2018-07-02,0.55,1,0 +14646562,Velvet Retreat in the West Village,22218694,Lea,Manhattan,West Village,40.73455,-74.006,Entire home/apt,180,2,100,2019-07-01,2.9,2,344 +7575626,Charming West Village Full Bed Apt,35307662,Lauren,Manhattan,Greenwich Village,40.73049,-74.00111,Private room,119,2,0,,,1,0 +12521735,Cozy Apartment in Queens — 20 Min to Manhattan,34790915,Katie,Queens,Ridgewood,40.7003,-73.89983000000001,Private room,70,2,0,,,1,0 +4475128,Amazing Single Bedroom Only 5min From Central Park,16066343,Curtis,Manhattan,East Harlem,40.788340000000005,-73.9472,Private room,65,2,219,2019-06-28,3.88,2,35 +12173904,Cozy apartment on upper west side,65402364,Aleksandra,Manhattan,Upper West Side,40.78942,-73.96768,Entire home/apt,200,5,0,,,1,0 +18629326,Spacious bedroom in colorful apartment,4401058,John,Brooklyn,Kensington,40.64354,-73.97967,Private room,110,1,0,,,1,0 +30059270,Beautiful 1 bedroom in Ridgewood's heart.,225891200,Judit,Queens,Ridgewood,40.70947,-73.90039,Private room,75,2,0,,,1,0 +30429780,GOTHAM - DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75541,-73.99634,Private room,199,1,17,2019-04-20,2.34,30,354 +33239233,"STUNNING BRAND NEW 2 BDR APT IN GREENPOINT, BKLN",249983430,Emily,Brooklyn,Greenpoint,40.73644,-73.95425,Entire home/apt,300,2,22,2019-06-26,6.23,1,341 +6598624,"Private Bed, Bath & Patio in prime Williamsburg !",17382149,Rosie,Brooklyn,Williamsburg,40.716840000000005,-73.95907,Private room,110,1,48,2018-12-27,2.17,1,0 +18768127,HUGE Studio up to 4 people 15 min to Manhattan.,30237517,David,Queens,Forest Hills,40.73526,-73.85065,Entire home/apt,88,3,6,2018-05-18,0.27,6,0 +20662043,Brklyn · 2 Cozy Bedrooms one with private bathroom,109016966,Jorge,Brooklyn,East Flatbush,40.64641,-73.94955999999999,Private room,50,1,20,2019-07-05,0.88,1,244 +32555976,Cozy Bedroom with Private Bath & 2 Cats in Bedstuy,9212686,Kelly,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93695,Private room,55,2,1,2019-03-19,0.27,1,0 +12700609,Doorman Gym W&D RoofDeck!5112,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79613,-73.96638,Entire home/apt,197,30,2,2017-07-31,0.06,96,104 +174527,Cozy private family home in Bushwick,833926,Kris,Brooklyn,Bushwick,40.69055,-73.92357,Entire home/apt,150,2,11,2018-10-28,0.46,1,0 +35156439,Our lovely 3 Bedroom in the Upper East Side :),264769862,Johselyn,Manhattan,Upper East Side,40.77242,-73.95452,Entire home/apt,279,3,5,2019-07-03,5.0,1,138 +30565284,Great for family/friends! 2 bdrm duplex sleeps 6!,181651082,Fran,Queens,Rosedale,40.65861,-73.73671999999999,Entire home/apt,135,1,5,2019-06-09,0.76,3,36 +3731871,Sunny Bedroom in Bushwick Luxury Building,19072805,Carly,Brooklyn,Bushwick,40.69865,-73.92971999999999,Private room,68,5,12,2018-12-05,0.26,1,14 +14569881,Artist Loft Bushwick,65800377,Benny,Brooklyn,Bushwick,40.70087,-73.92351,Private room,70,2,90,2019-06-23,2.57,3,33 +29418015,Charming Private Room in Bed Stuy with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94998000000001,Private room,70,2,14,2019-04-25,1.61,3,365 +34650667,Unique Home Besides Times Square!! NYC!!!,261375719,Vivian,Manhattan,Hell's Kitchen,40.76383,-73.98704000000001,Entire home/apt,255,3,2,2019-06-03,1.4,1,188 +36448559,Stuyvesant comfort (Private bathroom),272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68676,-73.93788,Private room,50,1,0,,,2,144 +17493355,Luxury One Bedroom UWS,17477908,Mat,Manhattan,Upper West Side,40.79424,-73.96588,Entire home/apt,200,30,2,2018-10-31,0.11,10,338 +35912471,King Bay Area,270119171,Val,Brooklyn,Sheepshead Bay,40.5908,-73.94693000000001,Private room,35,2,2,2019-06-30,2.0,1,250 +11157167,Cozy Chinatown studio apartment,17259339,Maia,Manhattan,Two Bridges,40.7113,-73.99441999999999,Entire home/apt,100,4,26,2018-08-25,0.85,1,0 +26251284,"LYRIC - 1 Bedroom Suite, 1 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70747,-74.00663,Entire home/apt,309,1,15,2019-03-23,1.18,8,143 +35356745,New York City - Walking from Central Park,153434419,Rachel,Manhattan,Harlem,40.81433,-73.94255,Private room,75,5,1,2019-06-14,1.0,3,246 +35692073,Prime location! 5BR with 3BA Townhouse + Patio!,268207118,Rosaline,Manhattan,Midtown,40.75959,-73.96473,Entire home/apt,279,3,2,2019-06-22,2.0,1,244 +28025630,Central Park master room with private bathroom.,211678783,Judy,Manhattan,East Harlem,40.788070000000005,-73.93988,Private room,99,1,20,2019-06-02,2.03,1,0 +20333831,Basement Suite w/Private Entrance,145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.67907,-73.94915999999999,Entire home/apt,150,2,18,2019-07-06,0.86,2,86 +32914064,Chic and Cosy Private Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.760940000000005,-73.99129,Private room,120,4,8,2019-06-16,3.0,2,275 +29782067,Bedroom in Astoria for two,20037314,Marcel,Queens,Astoria,40.76339,-73.92249,Private room,97,2,0,,,1,249 +24631587,"SoHo, Entire Place, Rooftop View",186142001,Bubbles,Manhattan,SoHo,40.72591,-74.00176,Entire home/apt,215,1,0,,,1,158 +15775049,Room in charming new apartment,16878736,Gabriela,Brooklyn,Bedford-Stuyvesant,40.67989,-73.94298,Private room,55,2,16,2019-01-01,0.52,1,311 +769175,Gorgeous apt. steps from subway,4061660,Amy,Manhattan,Washington Heights,40.83556,-73.94609,Private room,65,30,1,2017-07-01,0.04,1,249 +35314165,MODERN 3 BEDROOM APARTMENT NEAR CENTRAL PARK,166208155,Stanislaw,Manhattan,Hell's Kitchen,40.76828,-73.98755,Entire home/apt,250,3,3,2019-07-02,3.0,1,42 +35315907,Clean minimal 2 bedroom top floor apartment,224614531,Amhalise,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94703,Entire home/apt,200,2,1,2019-06-30,1.0,2,5 +15513127,Brooklyn Apartment,62644193,Elle,Brooklyn,East Flatbush,40.64335,-73.92981,Private room,70,1,0,,,1,157 +5225088,Glorious Mornings Townhouse,2265022,K. Zovia,Staten Island,Mariners Harbor,40.62726,-74.1588,Entire home/apt,150,5,16,2019-05-17,0.33,1,299 +19691525,Small room in Historical home on Staten Island,128338539,Reuben,Staten Island,Stapleton,40.631440000000005,-74.07913,Private room,34,1,11,2019-04-19,0.65,4,78 +6167817,Sunny studio West Village/Chelsea,31997128,Rachel,Manhattan,West Village,40.73905,-74.0014,Entire home/apt,139,3,4,2016-09-05,0.08,1,0 +34659522,Private area for comfortable and pleasant stay.,204928236,Anup,Bronx,Parkchester,40.83717,-73.85738,Shared room,36,1,0,,,1,71 +32238548,Sonder | Stock Exchange | Lovely 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.707640000000005,-74.01077,Entire home/apt,252,2,15,2019-06-21,3.19,327,260 +16476403,livingroom for rent queen size sofa bed or air bed,23095202,Victoria,Brooklyn,East Flatbush,40.63425,-73.94861999999999,Shared room,45,2,0,,,2,88 +7967922,Big Private Room in Ridgewood,4094837,Siebren,Queens,Ridgewood,40.71111,-73.91689000000001,Private room,52,10,8,2019-03-10,0.17,1,36 +30810353,"Lovely Room, Midtown Manhattan!",204160428,Cristian,Manhattan,Hell's Kitchen,40.75934,-73.99563,Private room,160,3,30,2019-06-22,4.71,3,73 +23874025,Sonder | 116 John | Bright 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70791,-74.00545,Entire home/apt,179,29,2,2019-02-26,0.36,96,333 +19504985,"Dreamy, Boho 2 bedroom apt in the heart of Soho",125514343,Marie,Manhattan,SoHo,40.72588,-74.00286,Entire home/apt,225,2,5,2019-06-30,0.55,1,30 +29738439,La Grand Master Bedroom,217652530,Portia,Queens,Jamaica,40.67205,-73.77721,Private room,180,1,0,,,4,253 +35066003,Brooklyn's Gorgeous Garden Apt. 25' to Downtown.,47532,Tika,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92617,Entire home/apt,169,4,0,,,1,6 +24356390,Bright Modern clean convenient Brooklyn Location,138607228,Edward,Brooklyn,Bushwick,40.694320000000005,-73.90658,Entire home/apt,150,2,17,2018-08-26,1.15,3,0 +28532378,Gem,156505456,John,Brooklyn,East New York,40.66676,-73.87420999999999,Private room,40,3,9,2019-06-07,0.95,13,180 +26395296,The Yorkville Gem,198482796,Janine,Manhattan,Upper East Side,40.78023,-73.95069000000001,Shared room,110,7,15,2019-07-01,3.46,1,4 +35315339,Sleep in large quiet bedroom with sunny garden,220865756,Joe,Brooklyn,Bay Ridge,40.63331,-74.01975,Private room,99,5,0,,,2,37 +31340282,SPACIOUS Modern APT in Greenpoint/Williamsburg,155109689,Dolores,Brooklyn,Greenpoint,40.73369,-73.95196999999999,Entire home/apt,172,2,9,2019-06-15,1.61,2,281 +15129261,STUDIO NEAR UPPER EAST SIDE HOSPITALS- MODERN,25237492,Juliana,Manhattan,Upper East Side,40.76095,-73.96143000000001,Entire home/apt,110,30,10,2018-10-22,0.34,34,277 +28221478,Cozy One bedrooom Suite Mins to JFK Airport,23491471,Talia,Queens,Laurelton,40.68263,-73.7393,Entire home/apt,75,1,31,2019-06-24,3.01,1,361 +17297467,Big Beautiful Room in Quiet Area with Private Bath,55198931,Monica & Robin,Brooklyn,Flatbush,40.64774,-73.96517,Private room,65,2,12,2017-10-03,0.44,1,294 +17236095,Spectacular 2 bed 1 bath Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77878,-73.9501,Entire home/apt,180,31,10,2019-05-31,0.55,33,331 +11422779,High Rise Elevator Building in NYC,7505413,Tim,Manhattan,Lower East Side,40.71523,-73.98489000000001,Private room,91,2,42,2019-05-16,1.1,1,80 +13696267,Pretty private room in Brooklyn by Prospect park,29013448,Mari,Brooklyn,Prospect-Lefferts Gardens,40.65836,-73.96161,Private room,44,2,15,2017-09-07,0.43,2,0 +24454304,Cozy shared apartment close to Midtown!,141765510,Rebecca,Queens,Astoria,40.76343,-73.92248000000001,Shared room,110,4,3,2018-09-01,0.22,1,0 +26685314,Bedroom minutes to Manhattan - steps to train,200621725,Sue,Brooklyn,Williamsburg,40.71215,-73.94082,Private room,69,2,70,2019-06-20,5.79,2,30 +3414607,Sweet 2 bed in Elevator Building,3640784,Marta,Brooklyn,Prospect Heights,40.68148,-73.96674,Entire home/apt,150,3,25,2019-07-06,0.42,1,18 +32474739,Sunny Modern Lux Private House with Parking,12593328,Jeromy,Brooklyn,East Flatbush,40.64577,-73.93118,Entire home/apt,74,3,11,2019-06-14,2.84,3,86 +16961126,Classic Room in Vintage Loft,16300594,Ari,Brooklyn,Williamsburg,40.71586,-73.95395,Private room,50,2,9,2019-04-04,0.31,3,0 +22629010,Fashion week stay!,165907758,Helen,Manhattan,Midtown,40.75301,-73.97277,Entire home/apt,200,7,0,,,1,0 +7975360,Harlem Row House 2 BDRM Apt-City Col/Columbia Univ,12986426,Lovelynn,Manhattan,Harlem,40.82215,-73.95600999999999,Entire home/apt,180,5,95,2019-07-04,2.09,1,60 +28936557,Designer Apartment in Harlem,37957096,Gòn,Manhattan,Harlem,40.82365,-73.93786,Entire home/apt,80,10,17,2019-06-02,1.9,1,95 +8460304,Sleeps 4 people - Prime Madison Sq Park/Park Ave,44534342,Faith,Manhattan,Midtown,40.74568,-73.98324000000001,Entire home/apt,285,7,8,2018-11-10,0.18,1,302 +34910439,AMAZING TWO BEDROOMS IN BEST PART OF SoHo!!,43810674,Olimpia,Manhattan,SoHo,40.72599,-74.00249000000001,Entire home/apt,268,3,1,2019-06-13,1.0,2,178 +26779818,NEW Bright West Village 2 Bed,201369441,Teddy,Manhattan,West Village,40.7383,-74.00131,Entire home/apt,325,2,9,2018-12-05,0.76,1,0 +9925100,Luxury Apartment on Park ave,29413554,Hoda,Manhattan,Flatiron District,40.73926,-73.98758000000001,Entire home/apt,150,1,1,2015-12-28,0.02,1,0 +12912510,Stunning Brooklyn loft in a church!,37241656,Zack,Brooklyn,Williamsburg,40.71638,-73.95684,Entire home/apt,325,2,27,2017-10-22,0.72,1,0 +11618854,Walking distance to LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77107,-73.87559,Private room,45,1,412,2019-07-01,10.19,5,159 +18586018,3 BDR APT AND ROOFTOP ONE TRAIN STOP TO MANHATAN,69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71047,-73.96311,Entire home/apt,315,2,117,2019-07-02,4.44,4,262 +552519,Brooklyn Amazing 2bedrm Luxury Apt,2715012,Maurice,Brooklyn,Crown Heights,40.67356,-73.9425,Entire home/apt,185,1,215,2019-06-16,2.55,3,348 +8576773,"Modern, Sunny Apt in West Village",6926778,Maurice,Manhattan,West Village,40.73932,-74.00381999999999,Entire home/apt,289,3,10,2018-08-31,0.22,1,88 +18375246,Private Room in Clinton Hill,127250455,Laura,Brooklyn,Bedford-Stuyvesant,40.69234,-73.95993,Private room,54,2,8,2018-07-29,0.3,1,0 +33449518,21min to Manhattan & Safe Neighborhood&PrivateRoom,238989521,Takatomo,Queens,Sunnyside,40.73872,-73.92678000000001,Private room,35,30,0,,,1,1 +30442999,Bedroom in heart of Bushwick Madison 2R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68726,-73.93289,Private room,42,30,0,,,27,312 +29054973,Jul Discount! Beautiful Apartment for 3 in NYC,188741104,Susan,Manhattan,Harlem,40.80872,-73.94274,Entire home/apt,200,31,25,2019-06-18,2.81,4,91 +35468870,Sunny. Free Parking available on street.,266860944,Rohon,Queens,Rosedale,40.65792,-73.73945,Private room,44,7,1,2019-06-30,1.0,1,227 +22086518,West Village + Water Views,3484157,Lauren,Manhattan,West Village,40.73983,-74.009,Private room,250,2,2,2018-03-15,0.11,1,0 +11823125,"Peaceful, cozy and safe condo/apt",62978797,Hasi,Queens,Woodside,40.75631,-73.90199,Private room,86,2,4,2019-01-01,0.15,1,365 +35533939,Private Deluxe Queen Room with Patio View in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72085,-73.99965999999999,Private room,100,1,0,,,4,352 +14441627,Zen Temple Vibe apt in heart of Hells Kitchen NYC,88884610,Lena,Manhattan,Hell's Kitchen,40.75987,-73.99008,Entire home/apt,198,3,15,2019-05-27,0.43,1,4 +22770313,4BR Queens Apartment -30 Mins from Manhattan!,103104686,Evolve,Queens,Springfield Gardens,40.66658,-73.76581,Entire home/apt,228,2,4,2018-07-22,0.26,2,0 +9431085,Hi! Stylish Spotless 2Bdr w Terrace,1601345,Sonia,Brooklyn,Williamsburg,40.71409,-73.96359,Entire home/apt,289,3,128,2019-06-21,2.89,1,92 +12916189,Family Friendly BK Townhome With Garden Oasis!,951917,Julia And Juan,Brooklyn,Sunset Park,40.66224,-73.99805,Entire home/apt,196,365,4,2018-05-20,0.12,1,365 +22667649,Cute private room in Downtown NYC,260958,Aura,Manhattan,Chinatown,40.71391,-73.99076,Private room,65,3,3,2018-10-15,0.17,3,0 +28230432,Comfy sofa close to Manhattan!,85186349,Agustina,Queens,Astoria,40.76826,-73.92772,Shared room,40,1,18,2019-06-29,1.76,1,165 +24258565,Stylish Nolita 1 Bedroom,143589,Delia,Manhattan,Nolita,40.72213,-73.99479000000001,Entire home/apt,200,2,22,2019-06-09,1.57,1,3 +29856590,Private cozy room after long day exploring NYC,215944788,Kay,Manhattan,Upper East Side,40.77143,-73.94893,Private room,90,2,23,2019-06-23,3.0,3,17 +27656768,Central Park North Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80116,-73.96088,Private room,69,2,10,2019-04-07,0.91,4,0 +36164059,Spacious room near Brooklyn Botanic Gardens,3833262,Sara,Brooklyn,Crown Heights,40.66929,-73.96222,Private room,46,2,0,,,1,136 +9754968,Sunny Manhattan Apartment!!,10611392,Lola,Manhattan,East Harlem,40.79331,-73.94149,Entire home/apt,250,4,13,2018-10-08,0.32,1,35 +9597629,Lovely Park Slope Bklyn Brownstone,24951732,Anne,Brooklyn,South Slope,40.66519,-73.98264,Entire home/apt,350,2,0,,,1,0 +2088725,Beautiful renovated 1 bedroom Apt.,10661536,Edgar,Brooklyn,Gowanus,40.66983,-73.9904,Entire home/apt,124,4,52,2019-06-30,0.8,1,147 +9233338,"Quiet, cozy, sunlit Brooklyn home",47995413,Sethu,Brooklyn,Flatbush,40.64873,-73.96419,Entire home/apt,100,1,10,2016-07-17,0.23,1,0 +34489727,Large Room with Pull-out Sofa and Balcony,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76187,-73.98413000000001,Private room,100,1,0,,,15,349 +12186697,"Spacious, sunny room in Greenpoint",14208923,Sasha,Brooklyn,Greenpoint,40.72599,-73.94434,Private room,50,4,1,2016-04-30,0.03,1,0 +16182780,Newly Furnished Bedroom in NYC apt,105668518,Benny,Manhattan,Washington Heights,40.8407,-73.93885999999999,Private room,100,2,4,2017-05-08,0.13,1,0 +33401134,2 Bdrm Apt in Heart of Greenwich Village,29420917,Jesse,Manhattan,Greenwich Village,40.72882,-74.00089,Entire home/apt,300,2,6,2019-07-07,3.16,1,16 +11893359,"Private Room w/Wifi, Prime Location",20348541,Jessica,Manhattan,West Village,40.73146,-74.00392,Private room,105,1,14,2016-06-28,0.36,1,0 +29781691,East meets West,59459840,Michelle,Manhattan,East Harlem,40.79831,-73.94201,Entire home/apt,95,3,4,2019-07-01,4.0,1,88 +36023315,Be our guest!,40188920,Robin,Queens,Maspeth,40.72201,-73.90822,Private room,40,1,0,,,1,82 +27552868,VIP staycation deluxe movie theater indoor pool,21963202,Journey,Queens,Jamaica Estates,40.71927,-73.7868,Entire home/apt,275,1,0,,,2,329 +182095,Historic classic central cozy Village clean NYU,872805,Mike,Manhattan,West Village,40.73631,-73.99977,Entire home/apt,199,15,66,2019-04-29,0.69,2,89 +33240867,"Comfort room in Downtown NYC, Chinatown, Soho W",248961864,Lily,Manhattan,Two Bridges,40.71241,-73.99458,Private room,85,1,15,2019-06-19,4.17,3,356 +13673459,"Cozy, Chic and Convenient One Bedroom Apt",79547468,Vanessa,Manhattan,East Harlem,40.79758,-73.94518000000001,Entire home/apt,125,6,2,2016-12-31,0.06,1,0 +30791949,Cozy and spacious loft in Williamsburg/Bushwick,4510691,Gillian,Brooklyn,Williamsburg,40.70923,-73.9448,Entire home/apt,175,2,4,2019-05-13,0.62,1,34 +16037497,Luxury doorman 1br in West Village,2622616,Shaun,Manhattan,West Village,40.73596,-74.00927,Entire home/apt,220,4,0,,,1,0 +10853313,Luxury 1 bdrm Apt in Clinton Hills.,56214524,Kathleen,Brooklyn,Clinton Hill,40.6869,-73.96324,Entire home/apt,155,3,161,2019-06-21,3.94,1,251 +17141182,"Private, Clean, 1.5 Bedroom Apt",114157738,Alyssa,Manhattan,Morningside Heights,40.80338,-73.9636,Entire home/apt,100,1,19,2018-02-15,0.66,1,0 +20983319,Large Comfortable Cozy Room,33589349,Henry,Queens,Richmond Hill,40.69002,-73.83688000000001,Private room,85,3,0,,,1,88 +28933403,STYLISH OPEN-PLAN LOFT IN BUSHWICK APARTMENT.,1429693,Madeline,Brooklyn,Bushwick,40.70846,-73.92088000000001,Private room,200,2,10,2019-05-19,1.09,1,79 +19763012,Cozy Catch,139467641,Bartek,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92298000000001,Private room,47,3,8,2017-12-30,0.33,1,0 +3490317,Lovely sun-lit 3-bedroom apartment,15697051,Assiati,Brooklyn,Bedford-Stuyvesant,40.68885,-73.92354,Entire home/apt,195,2,231,2019-06-22,3.82,1,251 +34205501,Sonder | 11th Ave | Restful 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76061,-73.9967,Entire home/apt,189,29,0,,,327,334 +8236539,"Quiet room in Greenpoint, Brooklyn",43434198,Dee,Brooklyn,Greenpoint,40.72784,-73.94937,Private room,90,1,1,2015-09-21,0.02,1,0 +36043079,Beachside Serenity,36380968,Alex,Brooklyn,Brighton Beach,40.57759,-73.96218,Private room,75,1,2,2019-07-02,2.0,2,353 +16394824,Apartment in Soho on Edge of West Village,107398940,Carl,Manhattan,Greenwich Village,40.72829,-74.00233,Entire home/apt,150,3,2,2017-01-04,0.07,1,0 +11452989,Simple but spaced - Near to subway,12531773,Renata,Manhattan,Harlem,40.82195,-73.95508000000001,Private room,50,4,64,2019-06-16,3.31,2,162 +7791635,"Dominique's mini room NYC-sleep, shower & go*wifi",310670,Vie,Bronx,Eastchester,40.88001,-73.8345,Private room,62,2,5,2017-07-11,0.12,13,320 +36321224,Private bedroom & bathroom in Greenpoint BK,100427647,Denise,Brooklyn,Greenpoint,40.73261,-73.95156999999999,Private room,195,1,0,,,1,160 +19530778,Large window Private Room in Flushing Queens,137129564,Bing,Queens,Flushing,40.75221,-73.81533,Private room,60,1,32,2019-06-30,2.03,4,356 +20476779,Enjoy Manhattan without paying Manhattan prices,146178383,Diana,Staten Island,St. George,40.64262,-74.08066,Private room,68,2,29,2019-05-20,1.3,1,57 +4145124,Studio Apt,651818,Lucio,Manhattan,Hell's Kitchen,40.7555,-73.9926,Private room,100,23,12,2018-08-04,0.22,1,23 +8337597,Spacious Clinton Hill Room,43949321,Ronald,Brooklyn,Clinton Hill,40.68717,-73.96015,Private room,70,7,1,2015-10-04,0.02,1,0 +6422875,Brooklyn Creative Snooze Factory,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69271,-73.94353000000001,Private room,70,1,397,2019-06-28,7.97,2,35 +34172912,Beautiful apartment in prime Soho NYC,16862745,Andrea,Manhattan,Greenwich Village,40.72786,-74.00158,Entire home/apt,250,2,8,2019-06-21,3.69,1,310 +24398725,Relaxing place for recharge energy,110907551,Maria,Manhattan,Midtown,40.74515,-73.9813,Private room,120,1,12,2019-06-27,5.0,2,156 +11603743,Chic Room with Exposed Brick,13031745,Madeline,Brooklyn,Williamsburg,40.70878,-73.94071,Private room,50,3,3,2018-07-01,0.07,3,0 +21959695,Bronx hideaway,148100571,Jenny,Bronx,Soundview,40.82739,-73.88176,Entire home/apt,50,1,0,,,2,0 +32992225,Enchanting quiet NOLITA sanctuary loft,28480501,Elisha,Manhattan,Nolita,40.72222,-73.99691999999999,Private room,150,14,3,2019-06-21,2.57,1,36 +1465446,Historic Townhouse with Private Backyard,7850260,Raymond,Manhattan,Harlem,40.80533,-73.94665,Entire home/apt,175,1,152,2019-07-04,4.54,3,248 +1365028,Soho Loft. Authentic and Eccentric! 2 Bedroom.,7409102,James,Manhattan,SoHo,40.72411,-73.99865,Entire home/apt,265,4,95,2019-06-19,1.31,1,257 +18962999,Artist studio in the heart of Bushwick,22100955,Gabriella,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93359,Entire home/apt,134,4,65,2019-06-09,2.56,1,130 +12737335,Room for two in NYC!,69267322,Jacob,Manhattan,Washington Heights,40.8342,-73.94303000000001,Private room,60,1,1,2016-06-04,0.03,1,0 +20194954,Relaxing & cozy apt in Brooklyn mins to Manhattan,13462855,Travis,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.93928000000001,Entire home/apt,170,3,62,2019-06-30,2.7,2,280 +26473415,New York Home at Times Square,9638257,Mayur,Manhattan,Theater District,40.75934,-73.98755,Private room,85,4,14,2019-06-29,1.98,1,33 +22440046,Cozy and Laid Back in L.E.S.,164391402,Robert,Manhattan,East Village,40.72167,-73.98066,Private room,125,1,3,2018-12-31,0.38,1,365 +1336223,"Safe, Sunny, Quiet Chelsea Apt has Washer/Dryer",7245581,Michael,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,93,39,25,2019-05-13,0.35,19,245 +1326514,Sunny Private Room in Brooklyn ,7240751,Emily,Brooklyn,Crown Heights,40.67475,-73.9465,Private room,65,3,72,2017-07-01,1.22,1,157 +15943090,(2)Comfy Home Away From Home/Multiple Rooms!!!,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95402,Private room,45,1,45,2019-06-23,1.47,4,361 +241862,Great Studio in W. Village - NYC!,1269455,Mike,Manhattan,West Village,40.729690000000005,-74.00635,Entire home/apt,200,2,37,2019-01-02,0.39,1,257 +9835402,"Manhattan, luxury, 2 bedroom condo",47785416,Peter,Manhattan,Upper East Side,40.78333,-73.94996,Entire home/apt,300,1,0,,,1,0 +28345654,LaGuardia Airport 15min•COZY8PPL•10min Ride to NYC,147298964,Angela,Queens,Ditmars Steinway,40.7699,-73.91156,Entire home/apt,280,1,33,2019-06-13,3.34,1,294 +35154571,Beautiful 2BR APT in Hell's Kitchen!,147810492,Harold Huengue,Manhattan,Hell's Kitchen,40.76183,-73.9916,Entire home/apt,250,2,3,2019-06-23,3.0,1,212 +34280267,Sonder | 116 John | Cozy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70808,-74.00561,Entire home/apt,130,29,0,,,327,338 +8126091,Spacious Quiet Room,42911814,Chris,Brooklyn,Williamsburg,40.70788,-73.9426,Private room,50,10,3,2019-04-17,0.09,1,0 +9860948,Modern 1 bedroom apt. near Grand Central Station!,30283594,Kara,Manhattan,Theater District,40.75864,-73.98196999999999,Entire home/apt,239,30,0,,,121,363 +31989484,Blissful Balcony Room,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92345999999999,Private room,45,1,2,2019-03-07,0.39,2,0 +29495273,Home on Houston - 2 Rooms near SoHo/NoHo/LES,818753,Jamie,Manhattan,NoHo,40.725840000000005,-73.99306,Private room,295,2,0,,,1,5 +20651136,"Private 1 bed 1 bath- Chelsea, Manhattan",44170535,Caitlin,Manhattan,Chelsea,40.7459,-73.99866999999999,Private room,165,3,4,2017-10-10,0.18,2,0 +36309944,Lavish 1br apartment in New York's Upper East Side,30283594,Kara,Manhattan,Upper East Side,40.76288,-73.95828,Entire home/apt,269,30,0,,,121,333 +26807614,Twin Cabin with a Window One,51913826,The Bowery House,Manhattan,Nolita,40.72311,-73.99345,Private room,94,1,1,2019-03-24,0.28,8,0 +15098355,Fantastic view of the Hudson river -1 Bedroom,23303311,Sandrine,Manhattan,Hell's Kitchen,40.76133,-73.99744,Entire home/apt,250,3,1,2016-10-15,0.03,1,158 +7786903,Huge bedroom in Brooklyn duplex!,4263734,Nisa,Brooklyn,Crown Heights,40.67195,-73.95535,Private room,70,3,8,2016-10-10,0.17,1,0 +13218512,Cute 2bdrm Apt in Crown Heights w backyard,33386679,Sarah,Brooklyn,Crown Heights,40.67538,-73.95308,Entire home/apt,220,1,1,2016-05-30,0.03,2,0 +27957371,Agate Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69448,-73.95696,Private room,43,2,20,2019-06-12,1.96,34,344 +11589895,Park Avenue Studio Suite,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74596,-73.98195,Entire home/apt,110,30,4,2018-04-02,0.14,31,126 +8423636,"Large Brooklyn Apt,Private Backyard",31230100,Elissa,Brooklyn,Crown Heights,40.67352,-73.95633000000001,Entire home/apt,80,7,45,2019-06-29,1.06,3,161 +8941092,Sunnyside:Large 1 bedroom apartment,45738364,Joe,Queens,Sunnyside,40.74153,-73.91806,Entire home/apt,84,2,0,,,1,0 +2657689,Your Amazing Vacation Apartment!,9051298,Lydiah,Manhattan,Harlem,40.8106,-73.94646999999999,Shared room,100,1,0,,,2,0 +14548280,Comfy 1 bedroom in spacious lower east side apt,10013093,Shauna,Manhattan,East Village,40.72412,-73.98666999999999,Private room,84,2,1,2016-08-28,0.03,1,0 +16469710,Nantucket Lounge of Upper East Side,108078909,Andrew,Manhattan,Upper East Side,40.77174,-73.95703,Private room,113,1,7,2017-12-31,0.23,1,0 +26126894,2+1 Bedroom Apartment Upper West Side,17444700,Andrés,Manhattan,Morningside Heights,40.80724,-73.96677,Entire home/apt,250,7,4,2019-06-29,0.37,1,4 +735890,"Homey, Clean studio- East Village",3839667,Hallie,Manhattan,East Village,40.723690000000005,-73.9894,Entire home/apt,120,7,6,2018-01-02,0.08,1,0 +28985951,Spacious private bedroom and kitchen in Bedstuy,140671636,Brianna,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94896999999999,Private room,50,2,5,2019-04-29,0.56,1,0 +26058634,Highline,195831428,P,Manhattan,Chelsea,40.74441,-74.00385,Entire home/apt,350,7,4,2019-06-13,0.43,1,207 +4530160,Large apt in heart of Williamsburg,9997747,Devon,Brooklyn,Williamsburg,40.71906,-73.95798,Entire home/apt,200,3,7,2016-06-27,0.12,1,0 +23253216,Artsy Queen Room in BUSHWICK: Jefferson L train,9484908,Aj,Queens,Ridgewood,40.70991,-73.91832,Private room,30,3,13,2019-06-19,0.84,2,65 +18444575,"Bright, open 1BD in the heart of Nolita",5945526,Mimi,Manhattan,Little Italy,40.72002,-73.99629,Entire home/apt,150,3,12,2019-01-01,0.47,1,0 +9856683,"Large n Cozy Apt, 30 min to Midtown,Month Discount",3709185,Margarita,Manhattan,Inwood,40.87045,-73.91765,Entire home/apt,90,5,4,2018-06-21,0.09,1,0 +16252722,Sunny large loft&rooftop in Williamsburg,18625208,Delphine,Brooklyn,Williamsburg,40.71606,-73.95135,Private room,85,2,4,2017-10-15,0.13,1,0 +25684094,Surfin’ Bird House Red at Rockaway Beach,185956783,John & Christine,Queens,Rockaway Beach,40.584990000000005,-73.81599,Entire home/apt,99,4,21,2019-07-07,1.66,1,133 +16559041,Spacious Bedroom @ Convinience,80375387,Ash,Queens,Astoria,40.75888,-73.91747,Private room,81,1,3,2018-09-04,0.2,1,179 +8416015,Cozy apt 20 minutes to Manhattan,44329555,Enzo,Queens,Jackson Heights,40.75273,-73.87144,Entire home/apt,104,2,166,2019-06-22,3.63,1,195 +18769652,Beautiful Williamsburg Loft,1890427,Rose & Brian,Brooklyn,Williamsburg,40.71813,-73.94502,Entire home/apt,250,2,9,2018-05-20,0.36,1,0 +14297224,Luxury Apt on Wall St - Amazing Views,87312106,Marc,Manhattan,Financial District,40.707,-74.00782,Private room,189,1,22,2017-07-15,0.67,1,0 +8194369,Cute room in huge artist loft!,13076168,Jaimie,Brooklyn,Bedford-Stuyvesant,40.67889,-73.9481,Private room,49,14,9,2018-10-02,0.2,1,0 +18792285,Clean and Comfortable Room near Columbia,55377720,Dan,Manhattan,Morningside Heights,40.81233,-73.95716999999999,Private room,69,3,0,,,1,0 +21322522,Artsy 1bdrm with Piano in the heart of Brooklyn!,1892493,Whitney,Brooklyn,Crown Heights,40.66952,-73.92345,Entire home/apt,85,1,1,2018-06-04,0.08,2,99 +2098338,Big Room near Prospect Park.,4970579,Sasha,Brooklyn,Flatbush,40.63832,-73.96769,Private room,50,5,77,2018-12-16,1.14,1,33 +19699596,Intimate and Welcoming,138785704,Andrea,Manhattan,East Harlem,40.81661,-73.93471,Entire home/apt,150,2,60,2019-06-16,2.61,1,94 +2570488,Union Square - Best NYC location,153675,Matteo,Manhattan,East Village,40.73112,-73.98558,Private room,90,5,109,2019-06-22,1.73,2,21 +33521183,"Massive, Incredible Brand New East Village Loft",238779678,Dustin,Manhattan,East Village,40.72735,-73.98917,Private room,62,30,0,,,9,325 +28100624,Brooklyn Apartment,82490186,James,Brooklyn,Bushwick,40.70156,-73.91329,Private room,75,1,14,2019-05-28,1.44,1,48 +27952988,"Light-drenched room in cozy, art-filled apartment",4441146,Michele,Brooklyn,Carroll Gardens,40.677240000000005,-73.99797,Private room,75,1,25,2019-06-03,2.36,1,65 +33524882,Chic+Charming Soho Loft Apartment [True 1BR],38174433,Sophia,Manhattan,SoHo,40.72347,-74.00463,Entire home/apt,235,1,3,2019-06-04,1.25,1,34 +13725995,Full 1-Bedroom in a Picturesque Brownstone,3571172,Hugh,Manhattan,Harlem,40.81251,-73.94524,Entire home/apt,95,1,2,2016-07-25,0.06,1,0 +22985840,"Bright, beautiful bedroom 5 mins from LGA, 15toNYC",170446723,Pamela,Queens,East Elmhurst,40.75735,-73.87845,Private room,55,2,11,2019-06-18,0.71,2,179 +11337913,Private Bedroom Midtown,3660628,Michelle,Manhattan,Upper West Side,40.76898,-73.98453,Private room,105,4,0,,,1,0 +15294943,Beautiful Private Room near Columbia University,21594748,Gabriel,Manhattan,Morningside Heights,40.80751,-73.96619,Private room,110,2,5,2017-09-15,0.15,2,0 +13914226,Classic brownstone drenched with light,8812035,Claudia,Brooklyn,Clinton Hill,40.692440000000005,-73.96500999999999,Entire home/apt,130,7,1,2016-08-04,0.03,1,0 +5402632,Private BDR/BATH in Luxury Condo near Times Square,27927011,Ashley,Manhattan,Hell's Kitchen,40.75755,-73.99305,Private room,99,365,7,2018-03-08,0.14,1,337 +26844905,Trendy Union Square Apartment,201885926,Ramona,Manhattan,East Village,40.732690000000005,-73.98833,Private room,111,2,48,2019-07-02,4.17,1,0 +16352250,Lavish Upscale Room. Unforgettable.,31736547,Iza,Manhattan,East Harlem,40.78983,-73.94419,Private room,65,1,73,2019-07-01,3.32,2,34 +22882677,"Charming, Spacious Apartment on theUpper East Side",7759203,Kristen,Manhattan,Upper East Side,40.77219,-73.94763,Entire home/apt,199,5,6,2018-12-07,0.44,1,11 +36335028,Quiet and safe neighborhood close to the bus,235465195,Monica,Queens,Flushing,40.74761,-73.8138,Private room,100,1,0,,,1,177 +31641843,Sunny Bedroom in Williamsburg / Chambre privée,184600679,Raphaëlle,Brooklyn,Williamsburg,40.71013,-73.95206,Private room,85,6,1,2019-04-30,0.43,1,0 +9115251,Midtown East Room,27012583,Dasha,Manhattan,Midtown,40.7606,-73.97180999999999,Private room,86,1,3,2015-11-02,0.07,1,0 +29183581,Little Italy Sunny 2 Bedroom,116976293,Topher,Manhattan,Little Italy,40.71865,-73.99847,Entire home/apt,225,3,0,,,2,0 +22749701,"Sunny, Private and Spacious Brooklyn Apartment",12954861,Caleb,Brooklyn,Crown Heights,40.67605,-73.95791,Entire home/apt,100,2,20,2018-12-12,1.17,1,0 +19872862,Cozy and Charming,140599227,Fanny,Queens,Forest Hills,40.73076,-73.85033,Private room,45,1,43,2018-11-11,1.85,2,0 +26923846,Spacious rooms for one or two persons,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93862,Private room,75,2,2,2019-04-22,0.19,4,337 +7309459,"Large duplex in trendy Brooklyn, New York",14715701,Daniel & Lia,Brooklyn,Cobble Hill,40.68628,-73.99681,Entire home/apt,198,3,1,2018-08-19,0.09,1,5 +4128428,Sunny Bedroom in quirky apartment,21416490,Elizabeth,Manhattan,Murray Hill,40.74713,-73.98075,Private room,175,2,8,2019-06-07,0.43,1,177 +28782669,Encuentra la tranquilidad ideal,216411482,Adriana,Queens,East Elmhurst,40.76349,-73.88662,Private room,40,2,21,2019-06-27,2.27,1,30 +14140905,Beautiful Bushwick loft for August,8133558,Gryphon,Brooklyn,Bushwick,40.69493,-73.9294,Private room,38,15,0,,,1,0 +22747209,McSimon's | Cozy Private Studio | Near NYC,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63762,-73.91004000000001,Entire home/apt,95,3,4,2019-01-03,0.23,2,108 +13129533,Room in loft-like ground Floor apt,3710740,Daniel,Manhattan,Harlem,40.81777,-73.9535,Private room,60,1,63,2019-06-07,1.74,2,0 +18266775,Beautiful Room with Private Entrance by Bushwick!!,99608108,Osa,Brooklyn,Bushwick,40.705490000000005,-73.91526999999999,Private room,69,2,34,2019-06-23,1.33,3,319 +581542,Escape to our Great Beach Getaway,2861854,Jeanmarie,Queens,Arverne,40.59783,-73.80158,Entire home/apt,92,1,55,2017-06-01,0.66,1,8 +4752249,Beautiful artist brownstone,12112004,Kylie,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.92336,Private room,150,1,0,,,1,365 +18210950,2 bedroom at Wyndham Midtown 45 New York City,57571805,Gharet,Manhattan,Midtown,40.7523,-73.97299,Entire home/apt,134,4,2,2017-09-27,0.08,3,0 +7679691,Nice bedroom - Lower East Side,7065413,Johanna,Manhattan,Lower East Side,40.72014,-73.98498000000001,Private room,80,1,2,2015-08-24,0.04,1,0 +22950209,Chic Studio,170008285,Fernando And Ana,Manhattan,Midtown,40.74779,-73.98734,Entire home/apt,220,3,36,2019-07-01,2.11,1,331 +33475698,Germania's Deluxe Palace,252019224,Gladys Germania,Queens,Jamaica Estates,40.71668,-73.80588,Entire home/apt,250,1,13,2019-06-30,4.15,1,359 +33579533,Comfortable and spacious bedroom in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68899,-73.9289,Private room,57,3,8,2019-07-04,3.81,3,9 +27143808,Modern studio apt with full kitchen and bath,13031306,Rachael,Manhattan,Harlem,40.82372,-73.95121999999999,Private room,80,2,19,2018-12-03,1.71,1,0 +30504465,Modern in heart of East Village,34222449,Eli,Manhattan,East Village,40.72531,-73.97973,Private room,105,2,0,,,1,8 +34940602,Perfect peace private room in Brooklyn,263282580,Caritas,Brooklyn,Bedford-Stuyvesant,40.69593,-73.93503,Private room,60,2,2,2019-05-26,1.25,2,171 +29316878,Cute little room in a large Brooklyn house.,65407018,Harmony,Brooklyn,Greenpoint,40.72334,-73.93745,Private room,45,1,13,2019-06-09,1.63,5,160 +21937451,AMAZING STUDIO IN CHELSEA (up to 4) Special price!,21621745,Paulina,Manhattan,Chelsea,40.74927,-74.00121999999999,Entire home/apt,200,1,7,2019-03-04,0.37,1,0 +841484,cozy charming apt - Lower East Side,2682735,Andrew,Manhattan,Lower East Side,40.71892,-73.98626999999999,Entire home/apt,175,3,50,2019-06-30,0.63,1,1 +1707823,Private Room in the Heart of Greenpoint,9010955,Lindsey,Brooklyn,Greenpoint,40.73487,-73.95789,Private room,75,1,69,2019-06-30,4.43,2,49 +2346089,"Stylish, Affordable & Private Room",11981562,Maureen,Brooklyn,Bedford-Stuyvesant,40.6901,-73.94524,Private room,60,2,0,,,1,0 +9794402,Cute Apartment - heart of Astoria,17490821,Pierre,Queens,Astoria,40.7609,-73.92288,Entire home/apt,100,3,1,2015-12-28,0.02,1,0 +26858196,AWESOME 2 BEDS - QUEEN + SOFA - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69561,-73.94972,Private room,75,30,22,2019-06-22,1.83,6,318 +36279375,"Cozy, bohemian vibe private room",220991097,Jessica,Brooklyn,East New York,40.67303,-73.88620999999999,Private room,50,1,0,,,1,166 +24230067,"Beautiful 1 bed, UES - steps from Central Park!",5132019,Jocelyn,Manhattan,Upper East Side,40.77905,-73.95275,Entire home/apt,190,2,8,2019-03-05,0.54,1,3 +3765357,Feel at home in Manhattan at charming NY apartment,5160726,Tony,Manhattan,Kips Bay,40.73967,-73.98040999999999,Entire home/apt,200,13,3,2016-05-15,0.05,1,166 +13231678,Bedroom in the East Village ❤️,54778990,Eve,Manhattan,East Village,40.72572,-73.98269,Private room,50,1,0,,,1,0 +1654551,"West Village: Cozy, Quiet 1BR Apt",8772693,Billy,Manhattan,West Village,40.731190000000005,-74.00615,Entire home/apt,200,3,20,2016-10-01,0.29,1,0 +66974,"Lovely, Modern, Garden Apartment",329436,Jana,Brooklyn,Gowanus,40.68076,-73.9896,Entire home/apt,190,3,69,2019-07-01,0.79,2,258 +23627524,Private Apartment steps from Central Park,2801739,Alysha,Manhattan,East Harlem,40.78757,-73.95402,Entire home/apt,194,1,19,2019-05-17,1.23,1,177 +19140331,Arverne by The Sea ~ Surf Ave Apt,32866694,Samantha,Queens,Arverne,40.58845,-73.79514,Entire home/apt,86,2,23,2019-06-04,2.06,1,20 +25501491,"Great apartment in staten island, New York.",192449075,Alarape,Staten Island,Graniteville,40.624390000000005,-74.16634,Entire home/apt,115,1,36,2019-06-29,2.67,1,263 +5926953,"Modern, Cozy & Bright Private Room and Bathroom",30430827,Steve,Brooklyn,Fort Greene,40.69634,-73.97296,Private room,70,1,152,2019-06-24,3.02,1,249 +25554120,Cozy and modern one Bedroom Apartment,192793716,Claudia,Manhattan,Upper East Side,40.77637,-73.95151,Entire home/apt,149,30,25,2019-06-04,2.01,1,0 +29631667,"Quiet luxury condo w/ central aircon, roof & W/D",4138139,Nipun,Brooklyn,Crown Heights,40.67306,-73.95509,Private room,72,4,3,2019-07-06,1.73,1,16 +34257884,Top floor West Village apartment with city views,20944981,Monica,Manhattan,West Village,40.73521,-74.00528,Entire home/apt,180,2,4,2019-06-15,2.4,1,22 +21608234,Brooklyn apartment w/ exposed brick,2685965,Jim,Brooklyn,Crown Heights,40.67452,-73.9554,Private room,120,1,0,,,1,0 +2744106,BKLYN private room w/ private bath!,12958562,Olivia,Brooklyn,Fort Greene,40.69226,-73.98056,Private room,95,4,12,2017-11-12,0.19,1,0 +28031581,Entire House For Rent In Brooklyn NY.,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60766,-73.95384,Entire home/apt,350,1,23,2019-06-25,2.88,8,334 +19414813,1BR - Heart of West Village - 30 Day Min - Unit 2,4422523,Marie,Manhattan,West Village,40.73392,-74.00354,Entire home/apt,150,30,3,2019-01-24,0.17,6,286 +9804516,High rise apartment with Central Park views!,49347242,Josephine,Manhattan,Hell's Kitchen,40.7682,-73.98467,Entire home/apt,180,1,3,2016-08-22,0.08,1,0 +4837865,"Spacious, sunlit room w/balconies by Central Park",19636200,Sonam And Roommates,Manhattan,Upper West Side,40.77692,-73.97977,Private room,85,1,34,2019-07-02,0.71,1,8 +24693488,Quiet cave crash spot (check in is at 10pm.),186620707,Tyni,Manhattan,Harlem,40.79892,-73.95139,Shared room,44,1,49,2019-06-23,3.38,2,5 +94209,LARGE 1BR (CONV 2BR) CROWN HEIGHTS,503800,Sadatu,Brooklyn,Crown Heights,40.67473,-73.94494,Entire home/apt,100,90,0,,,1,365 +28992518,Private 1 Bedroom on Top Floor Apartment Building,218526982,Liz,Manhattan,Lower East Side,40.72165,-73.98695,Entire home/apt,175,2,11,2019-07-07,1.2,2,6 +21366268,Cozy Home Away from Home in the Heart of NYC!,66960766,Jose,Manhattan,Gramercy,40.73684,-73.98058,Private room,57,3,75,2019-06-29,3.73,1,242 +7034609,Comfy room close to Columbia,36871638,Francisco,Manhattan,Morningside Heights,40.81142,-73.95978000000001,Private room,70,4,5,2018-01-02,0.1,1,0 +30495338,"Luxe, Quiet, Bright 1br in Prime Williamsburg",228872661,Louie,Brooklyn,Williamsburg,40.71191,-73.95568,Entire home/apt,243,1,23,2019-07-02,4.63,1,107 +22450373,Spacious and modern space. Super cozy and quiet,15535829,Jay,Staten Island,West Brighton,40.632290000000005,-74.11350999999999,Entire home/apt,99,2,3,2019-05-18,0.36,1,364 +12772993,Penn Station / Chelsea North room,37521233,Jay,Manhattan,Chelsea,40.75053,-73.99685,Private room,55,2,5,2016-11-26,0.13,1,0 +262405,Spacious Townhome Apt in Brooklyn,1376778,Wade,Brooklyn,East Flatbush,40.64468,-73.94219,Entire home/apt,92,4,54,2019-06-24,0.62,1,27 +2362306,Peaceful Artsy Huge Sunny Bedroom!,10283677,Emma,Brooklyn,Flatbush,40.65173,-73.96035,Private room,55,3,8,2018-10-25,0.36,1,0 +31280733,Williamsburg Private Room in Homey Space by Trains,23308549,John,Brooklyn,Williamsburg,40.71388,-73.95744,Private room,75,2,1,2019-02-12,0.2,1,0 +3664439,"Murray Hill, The Heart of Manhattan",6913016,Alicia,Manhattan,Midtown,40.74911,-73.98201999999999,Private room,95,3,67,2019-06-11,1.65,1,355 +690603,Brooklyn's top,3530446,Maurice,Brooklyn,Crown Heights,40.67722,-73.95005,Entire home/apt,155,3,66,2019-06-30,1.75,3,309 +23439529,Newly renovated room for two/20mins to Manhattan,140057330,Joey,Queens,Ridgewood,40.69704,-73.90576,Private room,60,1,14,2019-05-01,0.88,7,64 +29858941,Luxury Affordable comfort in the Bronx-2 Bedroom!,216456504,Annick,Bronx,Wakefield,40.894,-73.84362,Entire home/apt,130,1,11,2019-06-23,1.45,3,363 +18484597,Private and quiet room near Columbia University,8594019,Jose Vicente,Manhattan,Morningside Heights,40.81651,-73.95924000000001,Private room,50,5,1,2017-05-23,0.04,2,0 +21934318,Park Slope-Gowanus Boutique Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.677040000000005,-73.9846,Private room,129,1,9,2019-07-06,0.46,17,338 +31055362,Single Room in the heart of Corona Queens,2084313,Clara,Queens,Corona,40.73729,-73.85595,Private room,46,2,4,2019-05-27,0.63,1,0 +6972089,*ODYSSEY* Sunny 1 Bedroom Apt- Bright & Cheery!,25237492,Juliana,Manhattan,Upper West Side,40.78181,-73.98465999999999,Entire home/apt,130,30,10,2019-04-01,0.26,34,303 +25674277,Private room right next to Central Park!!,193282294,Sophie,Manhattan,Upper West Side,40.79468,-73.9647,Private room,98,2,48,2019-06-19,3.95,4,238 +31595243,"Cozy and Renovated 2 BR Apt in UWS, Central Park",47038126,Brigitte,Manhattan,Upper West Side,40.7859,-73.9723,Entire home/apt,300,3,2,2019-05-11,0.45,2,40 +3116279,Cozy Studio on McGolrick Park,5352357,Bernice,Brooklyn,Greenpoint,40.72418,-73.94528000000001,Private room,83,2,2,2016-08-25,0.03,1,0 +3249253,Panoramic Penthouse - 30% OFF,14369316,Jon,Manhattan,Chelsea,40.74156,-73.99476,Entire home/apt,289,2,1,2014-06-28,0.02,1,0 +9168809,Guest Room with Queen Bed.,47718277,Steven And John,Brooklyn,Bedford-Stuyvesant,40.68878,-73.93109,Private room,65,1,71,2018-11-12,1.61,1,0 +9592655,Spacious Room (Double Bed/Sofa Bed),49649740,Jd,Manhattan,Harlem,40.81026,-73.95279000000001,Private room,80,5,0,,,1,0 +7615496,88 By The Park w/Parking Space,37676608,Akini,Brooklyn,Canarsie,40.63118,-73.89679,Entire home/apt,100,2,187,2019-06-16,3.93,1,300 +32704496,Ladies Shared Cozy Space,163749958,Brianna,Manhattan,Kips Bay,40.74433,-73.97868000000001,Shared room,39,2,1,2019-05-10,0.5,3,365 +27388568,Casa Finca Sanctuary Duplex w/ Private Garden,895135,Suanny,Brooklyn,Williamsburg,40.70732,-73.94536,Private room,130,3,12,2019-07-02,1.08,3,90 +6522938,COZY HOUSE 10 MINS FROM LA GUARDIA!,34113764,Nick,Queens,Ditmars Steinway,40.77086,-73.89578,Entire home/apt,140,3,2,2019-06-15,1.33,2,363 +1297663,Your West Village NYC 1 Bdm Apt,7055547,Tege,Manhattan,West Village,40.73532,-74.00448,Entire home/apt,144,4,27,2017-01-01,0.39,1,0 +13625610,Cute & Eclectic Studio in Lower East Side,78964994,Satsko,Manhattan,Lower East Side,40.71844,-73.9858,Entire home/apt,135,2,104,2019-06-23,2.81,1,76 +28919420,G1. Private room. For 2 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.94712,Private room,40,2,2,2019-05-31,0.74,6,364 +21383821,Brooklyn,3730706,E,Brooklyn,Bedford-Stuyvesant,40.68469,-73.94885,Entire home/apt,175,5,10,2018-09-23,0.49,1,0 +34047149,1 bedroom in North Slope with Queen bed & futon,225834252,Jodi,Brooklyn,Prospect Heights,40.67656,-73.9706,Entire home/apt,140,2,4,2019-06-25,2.22,1,130 +23957942,Kiki’s Place!,46498586,Sage,Brooklyn,Bushwick,40.69603,-73.92537,Entire home/apt,200,2,2,2019-06-25,2.0,1,32 +31935664,Luxury Private Bed Same Street As Subway!,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67895,-73.91077,Private room,75,1,15,2019-05-09,3.06,4,52 +18942119,Studio apartment near Columbus Circle/Central Park,4264890,Amedeo,Manhattan,Midtown,40.76461,-73.98263,Entire home/apt,145,3,66,2019-06-10,2.61,1,9 +3887138,Kid friendly next to Prospect Park,176285,Ari,Brooklyn,Prospect Heights,40.6742,-73.96639,Entire home/apt,200,7,2,2015-06-24,0.03,1,0 +7431316,Large private room in W. Heights,16617981,Emmanuel,Manhattan,Washington Heights,40.83523,-73.9398,Private room,40,1,2,2015-12-18,0.05,1,0 +16163768,Beautiful Queen Private Room in Financial District,104926837,Julia,Manhattan,Financial District,40.7054,-74.00763,Private room,146,3,104,2019-06-17,3.31,3,7 +3270428,Large East Village One Bedroom ,16536815,Daniel,Manhattan,East Village,40.72823,-73.9817,Entire home/apt,170,4,14,2017-10-23,0.23,1,0 +15597119,Luxury Williamsburg apt w/rooftop,2456412,Amy,Brooklyn,Williamsburg,40.71524,-73.96229,Entire home/apt,200,2,3,2017-01-05,0.09,1,0 +19272653,Hells kitchen crash pad with half bath!,1579845,James,Manhattan,Hell's Kitchen,40.76283,-73.9897,Private room,87,4,0,,,1,0 +28009721,"Upper Manhattan room like a studio ""White room""",51992385,Maribel,Manhattan,Washington Heights,40.84536,-73.93564,Private room,72,6,5,2019-06-09,0.53,1,361 +30229400,Upper East Side Sofa Bed (Shared space),227020247,Esteban,Manhattan,Upper East Side,40.77112,-73.95652,Shared room,49,2,17,2019-06-03,2.31,1,39 +9899970,Cozy Nolita Apartment,2574856,Audrey,Manhattan,Nolita,40.72051,-73.99513,Entire home/apt,225,2,29,2019-04-27,0.68,1,176 +3435260,Private Sunny Room in Park Slope,17315514,Ana,Brooklyn,Sunset Park,40.66201,-73.99719,Private room,50,10,1,2016-11-08,0.03,2,0 +18221952,The ASTORIAN'S ArtPad,17247848,Kevin,Queens,Ditmars Steinway,40.77751,-73.90902,Private room,95,1,31,2019-05-22,1.2,1,90 +36281099,Room on the garden in co-op brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.68041,-73.95579000000001,Private room,58,4,0,,,4,29 +33469797,"NYC SWEET OASIS (POOL, PATIO,& OUTSIDE SPACE)",252171508,Lisa,Queens,Jamaica,40.67282,-73.77793,Entire home/apt,190,1,16,2019-07-04,10.0,1,132 +31313870,Modern bedroom with view in a high rise building,22100836,Hana,Manhattan,Gramercy,40.73772,-73.98758000000001,Private room,65,1,11,2019-05-27,1.79,3,0 +30254510,Charming Two bedroom apartment in Greenpoint,4363775,O.,Brooklyn,Greenpoint,40.7319,-73.95739,Entire home/apt,114,31,0,,,3,219 +22120170,Cozy apartment,161599491,Victor,Brooklyn,Borough Park,40.61984,-73.97872,Shared room,50,30,8,2018-06-06,0.42,1,179 +32788864,Air conditioned Wonderful Private Room for 1 or 2,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93866,Private room,48,5,6,2019-06-16,1.91,3,28 +33777266,Home away in a cozy apartment in Times Square.,102221050,Maybee,Manhattan,Hell's Kitchen,40.76051,-73.98791999999999,Entire home/apt,220,1,0,,,2,277 +100002,"MANHATTAN Neat, Nice, Bright ROOM",523218,Giorgio,Manhattan,Washington Heights,40.85295,-73.93361,Private room,67,2,136,2019-06-17,1.37,1,296 +28585042,Lovely Room in the heart of the East Village,23354644,Nancy,Manhattan,East Village,40.72977,-73.98529,Private room,78,2,1,2019-07-05,1.0,3,38 +32449378,Shared Apartment - 1 Bedroom,12198291,Nick,Manhattan,Chelsea,40.74458,-74.00644,Shared room,180,1,0,,,1,0 +32918029,Comfy Room III,197516314,Genny,Staten Island,Port Richmond,40.63517,-74.13351999999999,Private room,52,1,3,2019-06-28,0.93,3,365 +13347857,Private room in Williamsburg,4260505,Ania,Brooklyn,Williamsburg,40.71061,-73.94289,Private room,75,2,7,2018-02-10,0.22,1,0 +29965528,1 Bedroom by Central Park - Great Location in NYC,76519640,Alissa,Manhattan,Harlem,40.79965,-73.95076,Private room,75,2,29,2019-06-12,3.73,1,2 +14142298,Charming and bright place with a good vibe!,46667080,Ellen,Queens,Woodhaven,40.6905,-73.85611999999999,Entire home/apt,85,2,74,2019-07-02,2.08,1,52 +11924652,Upper west side luxury building,39111035,Veronica,Manhattan,Upper West Side,40.78079,-73.98826,Private room,160,2,2,2016-08-31,0.06,1,0 +24635562,"SUNNY HOMY ROOM CLOSE TO MANHATTAN,LGA/JFK AIRPORT",44213272,Miss. G.,Queens,Ditmars Steinway,40.77562,-73.91431,Private room,60,2,22,2019-06-23,1.54,5,360 +26983183,Steps from Waterfront - 1 Bedroom Apartment,12512629,Kreshnik,Queens,Long Island City,40.74427,-73.95477,Entire home/apt,125,5,1,2018-08-20,0.09,1,0 +16321789,Sunny Room in East Williamsburg close to L Train,4992081,Sascha,Brooklyn,Williamsburg,40.70669,-73.94334,Private room,84,3,10,2019-07-01,0.38,1,4 +32701542,Lovely Spacious Home Close to Manhattan & Airports,244453286,Alba,Queens,Sunnyside,40.73802,-73.91901999999999,Entire home/apt,180,3,10,2019-07-06,2.48,2,123 +36149281,My Cozy Two Bedroom Apt in Soho - Very Conve,1387341,Dan,Manhattan,SoHo,40.72403,-73.997,Entire home/apt,250,2,0,,,1,247 +28608251,Bedroom 7 Bed C,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69232,-73.95654,Shared room,39,3,13,2019-06-09,1.36,34,359 +3111416,Charming and Artsy LES 1-Bedroom ,3765042,Grant,Manhattan,Lower East Side,40.71848,-73.98159,Entire home/apt,124,28,13,2018-01-12,0.21,1,38 +16026135,Discover Ridgewood/Queens,23006467,Alexandra,Queens,Glendale,40.70564,-73.89246,Private room,105,12,0,,,1,0 +34194826,Private room in Williamsburg,95381568,Elias,Brooklyn,Williamsburg,40.7134,-73.96306,Private room,85,4,3,2019-06-24,2.2,1,6 +3583605,2 Bedroom in Hudson Heights ,18051675,Alexandra,Manhattan,Washington Heights,40.85153,-73.93815,Entire home/apt,150,3,0,,,1,0 +7087255,Charming Windsor Terrace Home,3974249,Amanda,Brooklyn,Windsor Terrace,40.65459,-73.97475,Entire home/apt,267,2,14,2018-12-29,0.42,1,1 +25209293,Perfect Nolita apartment,22587087,Peter,Manhattan,Nolita,40.72277,-73.99524,Entire home/apt,182,2,11,2019-07-01,0.9,1,30 +35096744,Evergreen Modern | ♥ Lovely Room for 2 ♥,252641757,Jess,Brooklyn,Bedford-Stuyvesant,40.68526,-73.92693,Private room,65,1,6,2019-07-07,5.45,1,180 +4720558,Room in a 4 bedroom Apt. in Harlem,14140782,Adam,Manhattan,Harlem,40.81535,-73.95322,Private room,80,1,0,,,1,0 +12720048,NE..Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68807,-73.92348,Private room,47,3,32,2019-05-12,0.91,4,258 +9652413,1 Bedroom Near Columbia/Morningside,17065519,Chelsea,Manhattan,Harlem,40.80407,-73.95761999999999,Entire home/apt,89,1,1,2015-12-26,0.02,1,0 +13275896,"Gorgeous exclusive Room with all amenities, gym",71176668,David,Manhattan,Harlem,40.81646,-73.93795,Private room,110,2,4,2018-09-23,0.12,4,0 +32240537,Sonder | Stock Exchange | Delightful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.01080999999999,Entire home/apt,220,2,4,2019-05-27,1.15,327,331 +1609672,CENTRAL PARK/ TIMES SQUARE,5533135,Rodrigo,Manhattan,Hell's Kitchen,40.76476,-73.99011,Entire home/apt,99,2,55,2019-06-30,0.78,1,182 +22100970,Luxurious 1 Bedroom Fully Renovated,61391963,Corporate Housing,Manhattan,Kips Bay,40.74241,-73.97954,Entire home/apt,142,30,8,2019-04-01,0.42,91,281 +7202612,"Queen Bed, Quiet Room, Prime Williamsburg!",7252535,Wes,Brooklyn,Williamsburg,40.712790000000005,-73.96037,Private room,90,2,262,2019-06-20,5.41,2,226 +6493288,NY City for the 4th of July!,2938550,Jon,Manhattan,Midtown,40.76571,-73.98023,Entire home/apt,300,1,0,,,1,0 +23597323,Staten Island Studio,99270668,Joseph,Staten Island,New Dorp,40.570440000000005,-74.11747,Entire home/apt,57,1,0,,,1,0 +16350271,Cozy Bedroom in the heart of Williamsburg,107058927,Laura,Brooklyn,Williamsburg,40.71957,-73.95828,Private room,50,4,0,,,1,0 +14484998,Perfect for Students/Interns seeking summer rental,2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94245,Private room,55,1,0,,,3,364 +26416651,Bushwick Duplex 3 min walk to subway,152032831,Alexandria,Brooklyn,Bushwick,40.6897,-73.921,Private room,99,1,4,2018-07-13,0.32,1,0 +3249078,Brooklyn Heights 1.5BR and Cat Sit,1705205,Ebonie,Brooklyn,Brooklyn Heights,40.6906,-73.99339,Entire home/apt,115,5,0,,,1,0 +25681692,Sunny room near center of the big apple 61F2,190921808,John,Manhattan,Hell's Kitchen,40.7558,-73.99677,Private room,62,7,6,2019-05-08,0.66,47,328 +26784218,Compact Comfy Cute Private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.64165,-74.00922,Private room,39,2,6,2019-04-01,0.53,5,224 +6635179,Home in Lower East Side,3173147,Andrea,Manhattan,Lower East Side,40.71968,-73.98708,Entire home/apt,250,3,68,2019-06-08,1.36,2,166 +12083868,Sleek 1 BR apt. near major attractions in NYC!,30283594,Kara,Manhattan,Midtown,40.76536,-73.98199,Entire home/apt,239,30,0,,,121,351 +1392144,3-Bed Brownstone on Beautiful Block,1873589,Jill,Brooklyn,Crown Heights,40.67071,-73.94752,Entire home/apt,250,5,25,2019-01-02,0.35,1,220 +29844533,Bright and stylish 1 bedroom,224461227,Birce,Manhattan,Chelsea,40.74442,-73.99908,Entire home/apt,220,2,2,2019-04-14,0.32,1,0 +18628912,Unique Upper East Side apartment with backyard,27789935,Tim And Allison,Manhattan,Upper East Side,40.77568,-73.95405,Entire home/apt,170,1,20,2019-01-01,0.77,1,0 +10165410,Peaceful room in Bushwick,30658746,Isik,Brooklyn,Bushwick,40.69392,-73.92262,Private room,42,1,3,2016-04-05,0.07,1,0 +35871515,Sonder | 116 John | Stunning 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70772,-74.00673,Entire home/apt,165,29,0,,,327,347 +13157147,Spacious 1 BR Apartment w/ private backyard,2708284,Agustina,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94553,Private room,75,6,37,2019-06-17,1.53,1,329 +35607893,BRAND NEW APT CLOSE TO SUBWAY WILLIAMSBURG,223917190,Annette,Brooklyn,Williamsburg,40.70779,-73.96254,Entire home/apt,161,2,2,2019-07-05,2.0,1,288 +22096640,Elegant Room in Jazzy Harlem Neighborhood,24625767,Isaac,Manhattan,Harlem,40.82394,-73.94431999999999,Private room,75,30,2,2018-09-24,0.1,1,0 +21634030,Private Cozy Room in Uptown Manhattan,12062317,Keisy,Manhattan,Washington Heights,40.84063,-73.93928000000001,Private room,55,1,108,2019-05-25,5.34,1,13 +24855669,Gorgeous Brooklyn Oasis,187895786,Aziza,Brooklyn,Bedford-Stuyvesant,40.69327,-73.95725,Private room,75,2,0,,,1,87 +26877276,Quinn's bedroom,64540550,Quinn,Brooklyn,Bushwick,40.68974,-73.91449,Private room,31,4,10,2019-03-18,0.85,1,0 +2748128,The Haven 2beds,11757212,Jasmine,Brooklyn,Bushwick,40.6982,-73.92851999999999,Private room,69,1,159,2019-06-24,2.89,4,280 +33806317,Welcome homey ! Your new artist friend :),7216350,Ume,Manhattan,Lower East Side,40.72152,-73.98625,Shared room,117,1,5,2019-06-24,2.03,1,139 +35318942,Spacious room in Manhattan Upper East Size,226927431,Tina,Manhattan,Upper East Side,40.76665,-73.95398,Private room,140,4,2,2019-06-12,2.0,2,42 +14744794,Hamilton Heights Sunny Bedroom,91874222,Laura,Manhattan,Harlem,40.82475,-73.9507,Private room,53,1,4,2017-08-20,0.16,1,0 +17187219,Beautiful and Ridiculously Spacious Master Bedroom,115543091,Yana,Brooklyn,Flatbush,40.65221,-73.95848000000001,Private room,53,2,0,,,1,0 +24014159,"Central Brooklyn Beautiful Rooms +Room Cozy +#2",167098774,Keisha,Brooklyn,Canarsie,40.63757,-73.89205,Private room,55,2,27,2019-05-06,1.74,3,362 +35031939,"BIG APARTMENT. NEW AC ROOM, HUDSON RIVER. COMFY.",263896559,Moises,Manhattan,Harlem,40.82204,-73.95566,Private room,60,1,4,2019-07-06,3.24,3,211 +19057791,Location Location - Cozy Room In Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.759640000000005,-73.99070999999999,Private room,49,1,41,2019-01-12,1.62,2,8 +34748987,Beautiful 1 Bedroom in the heart of Williamsburg,8305133,Jessica,Brooklyn,Williamsburg,40.71642,-73.96244,Entire home/apt,150,5,0,,,1,49 +19635738,Maison 130,6920054,Joseph,Manhattan,Chelsea,40.73978,-73.9963,Shared room,250,1,0,,,1,0 +17716225,Dreamy Parkside Loft-Studio w/ Private Patio,84548731,Shelley,Brooklyn,Prospect-Lefferts Gardens,40.65531,-73.96161,Private room,50,4,6,2019-03-31,0.22,1,6 +11377777,Great Apartment in Manhatan,16969920,Talita,Manhattan,Morningside Heights,40.81633,-73.96146999999999,Entire home/apt,110,1,3,2017-01-10,0.09,1,0 +25350617,Sunny room in chilled out Fort green apt,1180925,Mark,Brooklyn,Fort Greene,40.69492,-73.97154,Private room,75,2,12,2019-06-07,0.97,3,89 +35320280,Room for jfk passengers,264043510,Ken,Queens,Springfield Gardens,40.66222,-73.76324,Private room,41,2,1,2019-06-29,1.0,6,365 +14483613,Modern Apt - 10 min from Manhattan,89211125,Caroline,Queens,East Elmhurst,40.7572,-73.89569,Entire home/apt,100,3,87,2019-06-13,2.52,1,322 +29183697,Citrine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69436,-73.95526,Private room,65,2,11,2019-07-03,1.31,34,282 +22951923,Lovely Brooklyn Brownstone Garden Apartment,17478161,Anna,Brooklyn,Bedford-Stuyvesant,40.68876,-73.95265,Entire home/apt,150,3,43,2019-07-02,2.86,1,10 +36113257,WaHi Walk Up,22528598,Jennifer,Manhattan,Washington Heights,40.85269,-73.93616,Private room,80,1,1,2019-06-29,1.0,1,68 +26365747,SuperHost 1 block to Times Square NYC City Center,109040481,Julian,Manhattan,Hell's Kitchen,40.75825,-73.98982,Private room,125,1,54,2019-06-19,4.34,1,341 +36025515,Private Spacious Artist’s Bedroom In Manhattan,271029539,Dominique,Manhattan,Harlem,40.82165,-73.95423000000001,Private room,48,1,1,2019-07-06,1.0,4,128 +28534405,New york Multi-unit building,2891643,Jacqueline,Manhattan,Harlem,40.82146,-73.94598,Private room,50,1,0,,,1,0 +34103144,Manhattan room near Apollo. 5 mins walk to subway!,137358866,Kazuya,Manhattan,Harlem,40.81622,-73.94275999999999,Private room,38,30,0,,,103,247 +22353870,Great bedroom in cozy apt. close to Central Park.,19543830,Gabe,Manhattan,Harlem,40.7987,-73.9531,Private room,60,4,1,2018-12-26,0.15,1,0 +8100914,Beautiful Apt on the UpperWest,20739852,Jenn,Manhattan,Upper West Side,40.79494,-73.97221,Entire home/apt,168,1,2,2016-01-06,0.04,1,0 +29543762,"Room w/private bathroom, Central Park & Times Sq",222456125,Mariano,Manhattan,Midtown,40.76474,-73.98187,Private room,160,3,5,2018-12-10,0.62,1,0 +22465418,"Sunny, fashionable home for Spring in Soho!",3210260,Michael,Manhattan,SoHo,40.72393,-74.00446,Entire home/apt,210,5,8,2018-05-28,0.49,1,0 +9884175,LES Private Room + Private Bath,8936829,Ashley,Manhattan,Lower East Side,40.72282,-73.98908,Private room,150,20,0,,,1,0 +35195180,Sweet Home Vacation,126415353,Alessandro,Manhattan,Harlem,40.81393,-73.94365,Private room,35,2,0,,,1,124 +34741976,Charming Studio in Meatpacking District/Chelsea,262011998,Elizabeth,Manhattan,West Village,40.74024,-74.00484,Entire home/apt,220,2,3,2019-06-23,3.0,1,58 +27850382,Superior Studio with Balcony,32866463,Bassam,Brooklyn,Bay Ridge,40.63334,-74.01784,Private room,65,1,40,2019-07-04,3.79,2,169 +3517646,"Spacious, light-filled home by Prospect Park",17711637,Carrie,Brooklyn,Kensington,40.6451,-73.97798,Entire home/apt,210,5,3,2018-08-13,0.05,1,0 +36230800,Queens room,234224181,Tafari,Queens,Rosedale,40.65933,-73.73993,Private room,34,1,0,,,1,89 +4571925,Funky East Village Garden Apt.,23699355,Harmony And Eric,Manhattan,East Village,40.7309,-73.98785,Entire home/apt,165,2,40,2016-06-29,0.73,1,0 +30326749,Spacious Neon Apartment Inspired by the Caribbean,1370324,Yeelen,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95631999999999,Entire home/apt,100,3,2,2019-05-08,0.32,1,324 +23742000,Spacious modern Apt-only 2feet from Subway!,50003794,Jennifer,Queens,Elmhurst,40.74177,-73.88445,Entire home/apt,75,1,31,2018-11-15,1.97,1,0 +25227326,Adorable Top Floor Williamsburg Apt (1 Bedroom),75452286,Sarah,Brooklyn,Williamsburg,40.71754,-73.95906,Entire home/apt,125,2,15,2019-03-24,1.14,1,0 +20624666,Sunny 1 BR with Amazing Views,17090405,Mazdak,Brooklyn,Crown Heights,40.67502,-73.95732,Entire home/apt,100,1,2,2017-09-15,0.09,1,0 +19713074,Sweet one bedroom apartment in Cobble Hill,9669516,Renee,Brooklyn,Cobble Hill,40.68698,-73.99864000000001,Entire home/apt,152,3,3,2017-07-31,0.13,1,0 +9492969,Spacious Prospect Heights Room,826493,David,Brooklyn,Crown Heights,40.67252,-73.96154,Private room,58,1,0,,,1,0 +19915204,BRIGHT LUXURIOUS MASTER BEDROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77295,-73.90512,Private room,59,1,100,2019-06-23,4.19,8,342 +35038426,Private 2 beds Studio w/sofa Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74781,-73.98769,Entire home/apt,260,2,2,2019-06-22,2.0,13,292 +13101616,EAST 60TH ST&1ST AVE/ 2BR DOORMAN BLDG,2856748,Ruchi,Manhattan,Upper East Side,40.75993,-73.96056,Entire home/apt,198,30,0,,,49,331 +9050373,Peaceful & Colorful Brooklyn Oasis Near Park+Train,1393469,Tatiana,Brooklyn,Flatbush,40.65228,-73.96428,Entire home/apt,97,2,22,2019-05-21,0.54,1,2 +17762827,"Perfect, cozy room in Crown Heights, Brooklyn",1898704,Luca,Brooklyn,Crown Heights,40.67181,-73.95865,Private room,45,25,2,2017-08-20,0.08,1,0 +6428482,2C Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80749,-73.93803,Private room,50,1,103,2019-05-31,2.07,10,365 +9920191,Bright 2 Bdrm Apt in Williamsburg,6896056,Jonathan,Brooklyn,Williamsburg,40.71569,-73.93735,Entire home/apt,180,7,0,,,1,0 +14366544,Doorman Penthouse One Bedroom Laundry 5196,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73486,-73.98611,Entire home/apt,179,30,2,2018-07-31,0.06,96,345 +7841904,Modern Private Room in Meatpacking,24976518,Mike,Manhattan,West Village,40.74005,-74.00466,Private room,75,3,4,2017-01-02,0.09,1,0 +9905474,Hamilton Heights Gem,246710,Daniel,Manhattan,Harlem,40.8235,-73.95139,Entire home/apt,200,2,0,,,1,0 +28850624,Cozy room in historic Brooklyn walk-up,47485031,Ben,Brooklyn,South Slope,40.66189,-73.97946,Private room,60,2,1,2018-10-30,0.12,1,36 +30226474,Jackie Kennedy's Nook,86973566,Karina,Bronx,City Island,40.85056,-73.78829,Private room,65,3,2,2018-12-09,0.27,1,89 +19843398,UPPER WEST SIDE - WEST END AVENUE AND 65TH ST,131647128,Emily,Manhattan,Upper West Side,40.77418,-73.98799,Entire home/apt,190,30,9,2019-02-19,0.43,25,334 +7771777,Private bedroom and bathroom,14139134,Eliza,Manhattan,Morningside Heights,40.8061,-73.96641,Private room,90,1,1,2015-08-14,0.02,1,0 +23856563,Sun-filled Artist Home 1BR in convenient L.I.C !,25497297,Megan,Queens,Long Island City,40.74643,-73.94693000000001,Entire home/apt,125,2,10,2019-05-12,0.84,1,8 +20503786,Studio for rent,145693309,Max,Brooklyn,Prospect-Lefferts Gardens,40.66202,-73.96195,Entire home/apt,80,16,0,,,1,0 +34659944,Five-star luxury Apt in Chelsea !,152747338,Paola,Manhattan,Chelsea,40.74674,-74.00316,Entire home/apt,333,1,4,2019-06-30,2.35,1,365 +17683202,Amazing Loft. Great light and view!,1721381,Malik,Brooklyn,Park Slope,40.68233,-73.97778000000001,Entire home/apt,180,3,2,2017-04-18,0.07,1,0 +9627513,Cozy 4br in the heart of Harlem,36792245,Kilandra,Manhattan,Harlem,40.80272,-73.95564,Private room,60,2,8,2016-08-22,0.19,1,0 +10567332,Private room 1 block from Bedford L,22499760,Jonny,Brooklyn,Williamsburg,40.71532,-73.95352,Private room,40,1,1,2016-01-17,0.02,1,0 +25937698,Private room in Manhattan,37280441,Mary,Manhattan,Morningside Heights,40.810390000000005,-73.95948,Private room,70,1,67,2019-04-07,5.19,2,0 +29149618,Confortable room in East Village,7795299,Margaux,Manhattan,Gramercy,40.73254,-73.98207,Private room,100,3,8,2019-07-07,1.0,1,13 +29418601,Great New York shared room 3-6,179336958,Ruby,Manhattan,Midtown,40.74757,-73.98671,Shared room,65,3,20,2019-06-14,2.51,6,169 +22150956,Brooklyn apt,28110419,Daniel,Brooklyn,Boerum Hill,40.68734,-73.98633000000001,Entire home/apt,150,13,0,,,1,0 +15133923,Private bedroom & bath/Times Square & Central Park,78022684,Pamela,Manhattan,Midtown,40.7641,-73.97989,Private room,149,2,24,2017-06-19,0.71,2,0 +28609705,20 mins from Manhattan. 10 mins frm S.I. ferry.,215922295,Muneeb,Staten Island,Rosebank,40.61088,-74.07327,Entire home/apt,200,5,8,2019-06-05,1.0,1,244 +13216246,Comfy Greenpoint room w/ easy access to Manhattan!,6531491,Stephen,Brooklyn,Greenpoint,40.72217,-73.94800000000001,Private room,75,1,55,2019-07-08,1.46,1,0 +20440432,Awesome Room 15 Minutes from Time Square,145872703,Cesar,Manhattan,Harlem,40.82198,-73.95770999999999,Private room,85,2,26,2019-06-09,1.17,2,355 +13192097,Fab Studio Apt Nr Barclays Centre Off Road Parking,6281031,Lucy,Brooklyn,Prospect Heights,40.68066,-73.96696,Entire home/apt,136,2,169,2019-06-24,4.48,1,279 +28611623,"Jazz, Harlem, Home :)",45835291,Shareef,Manhattan,Harlem,40.82253,-73.95525,Private room,53,8,37,2019-06-19,3.88,6,299 +10015258,Beautiful sunny bedroom Upper West,5041830,Edna,Manhattan,Upper West Side,40.80137,-73.9615,Private room,80,3,1,2016-07-06,0.03,1,0 +11046598,Huge 3 bdrm in Ditmas Park/Flatbush,10573152,Dasha,Brooklyn,Flatbush,40.64261,-73.95779,Entire home/apt,219,2,119,2019-06-19,2.93,1,275 +6864482,Queer friendly lofted Bedstuy room,35798207,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69468,-73.94729,Private room,80,1,0,,,1,0 +14968939,Peaceful cove in Williamsburg!,33799659,Daniela,Brooklyn,Williamsburg,40.7119,-73.94431,Private room,90,3,17,2019-06-16,0.5,1,4 +16929407,Luxury Loft in Williamsburg,14060369,Aaron,Brooklyn,Williamsburg,40.71218,-73.96048,Entire home/apt,220,3,8,2018-08-26,0.3,1,0 +33734483,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73326,-74.00511,Entire home/apt,250,3,5,2019-07-02,2.24,5,255 +14277478,Amazing View of NYC,576575,Rami,Manhattan,Hell's Kitchen,40.76044,-73.99051,Entire home/apt,200,3,9,2018-10-06,0.26,1,0 +2236458,Cozy 1 Bdrm n the Heart of Astoria!,11418277,Vanessa,Queens,Astoria,40.76437,-73.9195,Entire home/apt,65,4,2,2014-04-21,0.03,1,0 +15340649,Huge Beautiful Loft in the Heart of Williamsburg,114590,J.P.,Brooklyn,Williamsburg,40.720490000000005,-73.96027,Entire home/apt,180,3,7,2019-06-24,0.21,1,54 +29392681,Cozy Apartment in Upper West Side New York,220414847,Sergio,Manhattan,Upper West Side,40.78818,-73.96795999999999,Entire home/apt,190,3,37,2019-07-01,4.64,1,120 +30934310,AMAZING E. VILLAGE STUDIO-LONGTERM starting Aug 10,726197,Ana Maria,Manhattan,East Village,40.7243,-73.98255,Entire home/apt,129,15,0,,,1,332 +23875745,Williamsburg large 2 Bedroom / 2 Bathroom,10951481,Ann,Brooklyn,Williamsburg,40.71312,-73.9634,Entire home/apt,249,2,62,2019-05-06,3.94,5,32 +9394188,Room for 1 Female or Couple,38805180,Maria,Bronx,Mott Haven,40.8113,-73.92465,Private room,65,3,2,2019-01-02,0.05,1,356 +13478244,Art-filled bright spacious 1 bedrm W'burg + deck,14942276,Susan,Brooklyn,Williamsburg,40.71983,-73.95675,Entire home/apt,195,2,145,2019-06-25,4.03,2,230 +34886804,Entire 1 bedroom Suite All yours!!,43252773,Karim,Manhattan,Harlem,40.81103,-73.94813,Entire home/apt,289,1,0,,,2,301 +36112704,Bright & Cozy Brooklyn Apartment,713116,June,Brooklyn,Prospect-Lefferts Gardens,40.65633,-73.95721999999999,Entire home/apt,145,4,0,,,1,41 +17887213,Beautiful 2 Bedroom suite in Bedford Stuyvesant.,17859338,Jacqueline,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95470999999999,Entire home/apt,160,5,59,2019-07-04,2.4,2,243 +8815979,"Комната в Манхеттене, 19-24 октября",46182625,Kateryna,Manhattan,East Harlem,40.79333,-73.94274,Private room,50,1,0,,,1,0 +30882745,Luxury Studio In Heart of Manhattan,141720257,Mayur,Manhattan,Financial District,40.71074,-74.00627,Entire home/apt,150,30,0,,,1,0 +10017561,Murray Hill 2 Bedroom Classic (84),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74672,-73.97841,Entire home/apt,150,30,4,2018-11-02,0.12,31,128 +17134357,Cozy large BR steps to AMNH,780958,Liliana,Manhattan,Upper West Side,40.78587,-73.97468,Private room,100,5,11,2017-07-23,0.39,1,0 +33367718,Entire Floor In Landmarked Building,706037,Alex,Brooklyn,Greenpoint,40.72988,-73.95789,Entire home/apt,210,10,0,,,1,83 +32645984,Original Bed-Stuy Apartment,6410979,Alice,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94556,Entire home/apt,109,2,5,2019-04-28,1.24,2,0 +25442072,Grand Penthouse loft in Prime Williamsburg,1802807,Lily,Brooklyn,Williamsburg,40.71438,-73.95955,Private room,100,6,6,2019-02-13,0.45,2,3 +34285612,Cozy Bushwich Decatur 3F Room #4,258248138,Fanny,Brooklyn,Bushwick,40.68678,-73.90769,Private room,50,1,4,2019-06-25,1.88,2,160 +16675507,Penthouse w/ private Manhattan skyline view deck!,56735326,Christi,Brooklyn,Greenpoint,40.72347,-73.94039000000001,Entire home/apt,125,3,4,2017-07-05,0.13,1,0 +34039045,Modern Brick Exposed Brooklyn Apartment!,30995747,John,Brooklyn,Crown Heights,40.67723,-73.95133,Entire home/apt,95,4,3,2019-06-10,1.88,1,4 +33636366,Sonder | The Biltmore | Cozy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.75948,-73.98615,Entire home/apt,152,29,1,2019-05-21,0.6,327,193 +63360,Safe cute near subway& Manhattan NY NY retro style,307962,Dennis & Naoko,Queens,Astoria,40.75384,-73.91433,Entire home/apt,99,5,441,2019-06-24,4.5,1,226 +35878473,"Eclectic Love Boat, ""VACILANDA"" Far Rockaway",110721237,Kathryn,Queens,Arverne,40.595490000000005,-73.78856999999999,Entire home/apt,120,1,0,,,1,81 +9023240,Duplex Penthouse & Private Rooftop,7366091,Harry,Brooklyn,Williamsburg,40.71623,-73.9579,Entire home/apt,350,3,4,2016-05-22,0.09,1,0 +10725897,"Sunny, Arty East Williamsburg Loft",55433649,Brian,Brooklyn,Williamsburg,40.71504,-73.93613,Private room,45,1,169,2019-07-04,4.11,1,134 +14490720,Amazing apartment in NYC,34264721,Chris,Brooklyn,Sheepshead Bay,40.58721,-73.96018000000001,Entire home/apt,100,20,0,,,1,364 +35172821,"For business or pleasure 4 mins to 2,5,3,4 trains",182989977,Sasha,Brooklyn,East Flatbush,40.6541,-73.93834,Private room,69,3,0,,,5,365 +28841259,Beautiful Duplex & Private Terrace in Williamsburg,21058022,Pablo,Brooklyn,Williamsburg,40.70779,-73.94714,Private room,70,3,4,2019-06-23,0.63,3,3 +22101914,Huge room in Bushwick,81466660,Dustin,Brooklyn,Bushwick,40.69608,-73.93133,Private room,45,5,1,2018-12-28,0.16,1,0 +36066526,Convenient family friendly entire 2br in Bushwick.,5178414,Jen,Brooklyn,Bushwick,40.69859,-73.91398000000001,Entire home/apt,250,7,0,,,1,32 +17211908,Sunny and Serene,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68412,-73.92734,Private room,45,2,61,2019-06-23,2.4,3,110 +26563874,PrivateBed&BathLGAMetsTimeSqUSTAFlushingQueens,199745521,Nonie,Queens,Corona,40.75046,-73.85443000000001,Private room,40,2,19,2019-06-24,1.6,1,24 +28030557,Cozy 2 bedroom NYC apartment near LGA Airport,151520943,Kenny,Queens,East Elmhurst,40.76248,-73.86986,Private room,110,1,52,2019-03-30,4.92,1,365 +195123,"Cheerful, comfortable room",940724,Susan,Manhattan,Washington Heights,40.83403,-73.94553,Private room,50,1,225,2019-06-12,2.35,1,343 +21908184,Furnished spacious NYC studio,120762452,Stanley,Manhattan,Murray Hill,40.75006,-73.97694,Entire home/apt,195,30,1,2018-08-05,0.09,50,365 +4296710,NICE SPACE IN NYC ,1260921,Victor,Bronx,Kingsbridge,40.86809,-73.90201,Private room,37,2,63,2019-06-24,1.15,2,305 +1407364,BROOKLYN'S FAVORITE BROWNSTONE in HIPSTER BED-STUY,7591257,Ruty,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94201,Private room,275,3,20,2019-04-28,0.34,1,257 +7116034,Beautiful room. Private bathroom.,16296388,Mario,Brooklyn,Bushwick,40.68412,-73.91045,Private room,43,1,4,2017-06-06,0.13,1,0 +4365328,"Clean, cozy bedroom in sunny East Village/LES apt",2814004,Jasmine,Manhattan,East Village,40.72325,-73.98336,Private room,120,14,14,2015-10-25,0.24,2,0 +34207902,Midtown West Hotel - Bright Queen Room,252604696,Erin,Manhattan,Chelsea,40.75095,-73.99628,Private room,219,1,0,,,20,365 +8542461,JFK Airport Spacious and gorgeous Room,14046692,Pedro J,Queens,Howard Beach,40.65918,-73.83038,Private room,50,1,5,2017-10-20,0.24,2,0 +9900224,"Quiet, private room Upper West Side",3879284,Aidan,Manhattan,Upper West Side,40.77578,-73.97794,Private room,140,2,16,2018-04-01,0.47,1,0 +30912712,cute studio apartment upper east side,231017568,Meli,Manhattan,Upper East Side,40.78415,-73.95248000000001,Entire home/apt,100,30,0,,,1,99 +347865,ARTY 2 BED EAST VILLAGE GEM,251176,Jason,Manhattan,East Village,40.72143,-73.98116999999999,Entire home/apt,189,3,265,2019-06-24,2.99,2,355 +33274640,Bright & Comfortable East Village Oasis,555245,Eric,Manhattan,East Village,40.72808,-73.98273,Entire home/apt,165,1,4,2019-06-22,2.61,1,97 +18795447,Large Private Room in Heart of Diversity.,89071431,Ikello,Bronx,Mount Eden,40.84473,-73.91175,Private room,55,2,112,2019-06-30,4.65,1,271 +8231648,1st Fl Comfortable Room in Manhatan,43330303,Cristian,Manhattan,Washington Heights,40.85369,-73.93186999999999,Private room,68,3,8,2019-06-17,0.2,2,160 +19414154,Cozy room in heart of Williamsburg,136106661,Sally,Brooklyn,Williamsburg,40.71078,-73.95071,Shared room,60,15,4,2018-04-30,0.18,1,83 +26846269,Oasis II,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95130999999999,Private room,65,30,21,2019-06-05,2.05,3,365 +23646295,La Quinta Central Park West,172544686,Vijay,Manhattan,Upper West Side,40.77597,-73.97686,Private room,179,1,4,2018-03-17,0.25,4,270 +9401508,Private RM in 3 bedroom brownstone in Bedstuy,48757168,Eva,Brooklyn,Bedford-Stuyvesant,40.6869,-73.95496,Private room,34,5,34,2019-01-14,0.77,1,7 +27055191,Charming bedroom for female guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66171,-73.94417,Private room,49,1,85,2019-05-29,8.64,2,0 +16360894,Sunny Studio Apartment,7359870,Felix,Manhattan,Harlem,40.82179,-73.94776999999999,Entire home/apt,95,4,0,,,1,0 +18460756,"Bright, private room in Bushwick w/ AC",128004958,Virginia,Brooklyn,Bushwick,40.68717,-73.91708,Private room,50,1,100,2019-06-23,4.03,1,2 +13618148,"Room close to Prospect Park, minutes to NYC!",5110884,Giusy,Brooklyn,Flatbush,40.65226,-73.95732,Private room,70,2,0,,,1,0 +17481484,Brooklyn Apartment,118430352,Austin,Brooklyn,Crown Heights,40.67519,-73.9402,Private room,75,1,0,,,1,0 +20573818,2BR Apartment in Maspeth,41121514,Esteban,Queens,Ridgewood,40.71239,-73.90517,Entire home/apt,60,6,0,,,1,0 +479263,Mini Loft Williamsburg Bkln-Bedford,2373905,Jaime,Brooklyn,Williamsburg,40.7182,-73.95763000000001,Entire home/apt,145,30,36,2019-01-19,0.42,1,342 +30537849,NEW GARDEN APT IN THE HEART OF PARK SLOPE,21527486,Michele,Brooklyn,Park Slope,40.673,-73.97721,Entire home/apt,211,3,8,2019-06-11,1.2,1,90 +28020352,Rare Downtown First Floor Apt w Private Backyard,16714191,Nicolas,Manhattan,Gramercy,40.7358,-73.9806,Entire home/apt,160,3,6,2019-05-28,0.69,1,351 +11547246,"Large, sunny room - Lower East Side",22551065,Tamir,Manhattan,Lower East Side,40.71931,-73.98393,Private room,85,5,1,2016-05-16,0.03,1,0 +30122576,Charming apartment in Manhattan.,48958233,Ana,Manhattan,Gramercy,40.73619,-73.98307,Entire home/apt,259,1,14,2019-04-23,1.92,2,0 +19827594,Great private room in the heart of Williamsburg,55389878,Justin,Brooklyn,Williamsburg,40.7188,-73.95846,Private room,84,1,1,2017-07-31,0.04,1,0 +30476370,Sweet BR (B) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63832,-73.94908000000001,Private room,75,3,1,2019-07-01,1.0,3,170 +30958452,Great Room in Heart of Williamsburg,14819229,Tim,Brooklyn,Williamsburg,40.71332,-73.95591,Private room,75,4,1,2019-05-13,0.53,1,47 +11972141,Lovely Room in Beautiful Brooklyn,54043278,Marina,Brooklyn,Bedford-Stuyvesant,40.68583,-73.95676999999999,Private room,65,3,0,,,1,0 +17944802,Luxury High Rise with Huge Private Terrace,1883931,Taher,Manhattan,Murray Hill,40.74391,-73.97151,Entire home/apt,350,3,15,2019-06-19,0.55,1,0 +16424934,Stylish and cozy East Village 2 bedroom apartment,20823812,Stephanie,Manhattan,East Village,40.72798,-73.97787,Entire home/apt,135,1,1,2016-12-28,0.03,1,0 +3950114,"Warm, Spacious, Convenient and Cozy",10528897,Erika,Queens,Astoria,40.76957,-73.91502,Private room,65,2,16,2019-07-01,0.27,1,302 +24186601,Upper East Museum Roads,20367358,Maryse,Manhattan,Upper East Side,40.77456,-73.94601999999999,Entire home/apt,145,28,2,2018-11-19,0.23,1,278 +24210296,Private bedroom in Downtown Manhattan,97015202,Maya,Manhattan,SoHo,40.72741,-74.0088,Private room,150,1,61,2019-05-31,4.11,1,8 +13333916,Clean & Private Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63849,-74.02028,Private room,40,1,84,2018-07-24,2.23,4,0 +13494147,Beautiful Quiet Bedroom near City College,2571641,Erika,Manhattan,Harlem,40.81863,-73.95295,Private room,80,2,0,,,3,0 +27030230,Ground Floor Retreat near BKLYN Children’s Museum,1494238,Melissa,Brooklyn,Crown Heights,40.6726,-73.93992,Entire home/apt,135,3,24,2019-06-30,2.44,1,246 +14881637,Lovely 1 BR in Prime Location on E 26 & 3 - NYC,15310997,Mor,Manhattan,Midtown,40.76505,-73.97856999999999,Entire home/apt,125,30,3,2019-05-04,0.09,9,0 +1430650,"Columbus Circle Comfort, minutes from Times Square",7691518,Brent,Manhattan,Hell's Kitchen,40.768,-73.98695,Private room,99,1,123,2019-06-25,1.99,2,245 +21948222,Serene 2 bed w/ private backyard - flatbush ditmas,2300590,Bess,Brooklyn,Flatbush,40.64495,-73.9576,Entire home/apt,95,3,2,2018-01-06,0.1,1,0 +8873479,Beautiful modern room with private bathroom,27240092,Darin,Manhattan,Gramercy,40.73557,-73.98353,Private room,124,1,118,2019-06-23,2.7,1,278 +33932573,Modern Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70769,-73.89641,Private room,34,30,1,2019-06-08,1.0,23,325 +167222,CBG# 4Tiny room w/ huge window/AC,22486,Lisel,Brooklyn,Park Slope,40.6788,-73.97643000000001,Private room,60,1,20,2018-08-24,0.21,6,258 +13814227,"Quiet light-filled apt, subway near",28345063,Jason,Manhattan,Harlem,40.82822,-73.94864,Entire home/apt,76,16,26,2019-06-19,0.76,1,31 +3693901,THE BEST HOUSE IN BROOKLYN !,17696653,Arleta,Brooklyn,Bedford-Stuyvesant,40.69134,-73.94468,Private room,100,1,2,2016-08-28,0.04,1,365 +33660196,Airy Apartment in the Heart of West Village/SoHo,32059780,Nisa,Manhattan,SoHo,40.72681,-74.00455,Entire home/apt,200,2,0,,,1,47 +9577748,Beautiful bedroom w/ private bath,4451240,Eli,Manhattan,Morningside Heights,40.80536,-73.96228,Private room,68,14,1,2016-01-17,0.02,1,0 +21201088,Luxury designer duplex in Bed Stuy,761943,Chris,Brooklyn,Bedford-Stuyvesant,40.68019,-73.91102,Entire home/apt,225,3,12,2019-07-02,0.61,1,72 +16273143,Whole 2 bedrooms apartment in HK,85938655,Carlos,Manhattan,Hell's Kitchen,40.7625,-73.98801999999999,Entire home/apt,250,3,31,2019-06-23,1.14,2,295 +16637954,Friendly place for most suitable for Bangladeshis,109931171,Manzoor,Queens,Richmond Hill,40.70162,-73.82349,Private room,70,1,0,,,1,0 +31542976,"Cozy, Bright Room in Uptown Manhattan",112290211,Valerie,Manhattan,Washington Heights,40.84623,-73.93578000000001,Private room,70,2,10,2019-06-24,2.13,1,152 +19244237,Your Brooklyn pad,17184568,Luke,Brooklyn,Bushwick,40.70232,-73.92935,Private room,60,1,1,2017-07-02,0.04,1,0 +34866786,Amazing 2 Bed 2 Bath with Gym in the UWS #6104,116305897,Laura,Manhattan,Upper West Side,40.78932,-73.97359,Entire home/apt,250,30,0,,,9,312 +31270322,Private bedroom in Queens//Netflix,5691195,Aislyn,Queens,Flushing,40.72744,-73.81005,Private room,75,2,0,,,1,0 +29308553,Nice room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94691999999999,Private room,75,1,1,2018-10-24,0.12,2,0 +11784410,Beautiful Blue Room in West Harlem,62557719,Leomaris,Manhattan,Harlem,40.83155,-73.94489,Private room,50,7,21,2019-06-26,0.55,3,363 +1702581,PRIVATE. ROOM - Midtown/Central Park,5668786,Ed &Alexa,Manhattan,Hell's Kitchen,40.76796,-73.98601,Private room,100,2,244,2019-07-05,3.49,1,52 +20990431,天使的温暖,151087909,Keqin,Queens,Flushing,40.73565,-73.81591,Private room,36,1,0,,,1,89 +3802218,Cozy Private Bedroom,19533769,Chandra,Bronx,Mott Haven,40.80772,-73.91790999999999,Private room,53,1,321,2019-06-12,5.46,1,44 +30811789,Piece of mind in Harlem,2423570,Alex,Manhattan,East Harlem,40.81568,-73.93441999999999,Entire home/apt,150,30,4,2019-05-13,1.13,1,345 +7264496,MorningsideHeights/Columbia Studio,38032297,Melissa,Manhattan,Morningside Heights,40.80445,-73.9649,Entire home/apt,140,4,2,2015-08-21,0.04,1,0 +22059169,Spacious 2 bedroom in heart of Brooklyn,32299529,Kimberle,Brooklyn,East New York,40.6729,-73.88902,Entire home/apt,81,7,1,2018-01-13,0.06,1,0 +12657039,Heart of Williamsburg - Best Location,62058232,Kuma,Brooklyn,Williamsburg,40.711940000000006,-73.95742,Private room,90,5,3,2016-08-25,0.08,1,0 +6884647,3 bed 3 bath in Bedstuy brownstone,36074783,Brian,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95211,Entire home/apt,200,5,0,,,1,0 +23217530,Spacious private bedroom in duplex with backyard,4521174,Caroline,Brooklyn,Crown Heights,40.67184,-73.94041,Private room,65,7,0,,,3,59 +3808620,Great Renovations. Columbus Circle,1475015,Mike,Manhattan,Hell's Kitchen,40.76867,-73.98541,Entire home/apt,87,30,6,2019-04-21,0.11,52,365 +21931508,BRIGHT & AIRY,19739033,Fifi,Manhattan,Harlem,40.81426,-73.95152,Private room,85,2,75,2019-06-13,3.93,2,121 +4573728,Cool & Cozy 2B/1BA in prime LES!,23708028,Ivan,Manhattan,Lower East Side,40.72058,-73.98674,Entire home/apt,239,3,145,2019-06-30,2.63,1,1 +27434658,"Sunny and cozy room, 20 min from Manhattan",11158514,Yulia,Brooklyn,Flatbush,40.64472,-73.96263,Private room,42,10,1,2018-09-12,0.1,1,0 +30066865,Lovely new Renovation Stylish apartment 2 floor,212147885,Alisa,Brooklyn,Cypress Hills,40.6765,-73.9063,Entire home/apt,150,3,9,2019-05-26,1.27,2,179 +30824804,hip Bed-Stuy large one bedroom,6097531,Scott,Brooklyn,Bedford-Stuyvesant,40.68462,-73.95429,Entire home/apt,180,3,1,2019-03-09,0.24,1,158 +6691625,Elegant private room in beautiful apartment,2135117,Susan,Brooklyn,Windsor Terrace,40.65766,-73.97927,Private room,52,2,53,2019-07-07,2.87,1,55 +4839357,1 Bedroom apartment with Backyard ,854567,Oketo,Brooklyn,Bushwick,40.68843,-73.91577,Private room,40,1,0,,,2,0 +1581579,★★★★★- Lux Astoria |❤of NYC| Near subway/Manhattan,7748180,Ryan,Queens,Ditmars Steinway,40.77787,-73.91471999999999,Entire home/apt,188,2,260,2019-07-07,3.97,1,312 +26362898,subletting for one week while traveling,37072476,Natia,Brooklyn,Bushwick,40.69952,-73.92623,Private room,60,7,0,,,1,0 +29627988,Upper East Chic 1BR Apartment Near Central Park,65498336,Song,Manhattan,East Harlem,40.78918,-73.94787,Entire home/apt,199,1,41,2019-06-25,5.37,1,228 +23768377,Forest Hills-Easy Parking-Easy commute to midtown!,97262966,John,Queens,Forest Hills,40.71263,-73.85372,Entire home/apt,175,2,9,2018-12-27,0.66,2,0 +10498577,Cozy bedroom in Astoria,54123180,Shirley (Fred),Queens,Astoria,40.75869,-73.91899000000001,Private room,49,1,5,2019-05-26,0.13,1,332 +23502842,Cozy East Village studio,34777741,Tiffany,Manhattan,East Village,40.72205,-73.98132,Entire home/apt,159,2,10,2019-06-19,0.7,1,17 +14125183,Full bed in private Bushwick room,5914717,Kait,Brooklyn,Bushwick,40.69822,-73.92918,Private room,50,2,59,2018-04-22,1.67,1,0 +33191754,renovated sunnyside with NY city views,40949032,Ana,Queens,Sunnyside,40.74149,-73.92327,Entire home/apt,131,30,0,,,1,182 +20558461,"Big Private Room in shared apt in Rego Park, NY",146823994,Abdul,Queens,Rego Park,40.73086,-73.85663000000001,Private room,44,2,12,2019-01-01,0.53,1,0 +7434316,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65628,-73.96014,Private room,70,5,3,2015-09-22,0.06,2,0 +9970462,Large East Village Apartment,28336810,Gabi,Manhattan,East Village,40.72571,-73.98833,Entire home/apt,150,1,3,2016-03-15,0.07,1,0 +23764185,Sonder | 180 Water | Sleek 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70747,-74.00435999999999,Entire home/apt,222,29,0,,,96,241 +34306797,Bright & Beautiful Park Slope One-Bedroom,258251034,Julie,Brooklyn,South Slope,40.66678,-73.98822,Entire home/apt,175,2,2,2019-05-27,1.15,1,14 +29945283,Beautiful spacious bedroom in classic nyc walkup,2315692,Hugo,Queens,Ridgewood,40.70356,-73.90241,Private room,75,2,2,2019-05-20,0.32,1,52 +24473230,Beautifully designed + renovated 3 bedroom home,184853043,Shannon,Brooklyn,Kensington,40.64655,-73.97251999999999,Entire home/apt,250,2,31,2019-07-02,2.88,1,58 +8126282,Quintessential West Village apartment,3228421,Ilton,Manhattan,West Village,40.73319,-74.00502,Entire home/apt,205,3,47,2019-06-23,1.01,1,262 +11359148,Cozy Garden Apartment,42389158,Han And Denyce,Brooklyn,Flatbush,40.64181,-73.9522,Entire home/apt,85,2,168,2019-07-06,4.22,1,246 +6658870,"Modern, Cute Room in The Heart of Williamsburg",30858029,Becca,Brooklyn,Williamsburg,40.71018,-73.94988000000001,Private room,99,1,0,,,1,0 +31188378,NY HUDSON YARD DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75495,-73.99825,Private room,209,1,6,2019-05-31,1.01,8,88 +34777979,"The Red Brick Abode, in the heart of Williamsburg",15010925,Carlos,Brooklyn,Williamsburg,40.71317,-73.96066,Entire home/apt,160,1,13,2019-07-01,7.96,1,120 +28049456,Best of Williamsburg,8179150,Michael,Brooklyn,Williamsburg,40.71119,-73.94349,Private room,90,31,0,,,1,0 +30092606,Time Square West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75665,-73.99838000000001,Private room,129,1,18,2019-05-05,2.4,30,140 +23074259,"Wonderful 15 minutes Barclay Center,25 Manhattan",94214493,Dadrine,Brooklyn,East Flatbush,40.65625,-73.91901,Private room,80,7,2,2018-11-01,0.13,9,58 +4792430,Bedroom in 19th Century Charmer - Clinton Hill,13343955,Sarah,Brooklyn,Clinton Hill,40.68451,-73.96461,Private room,75,2,6,2019-05-23,0.2,1,133 +21048346,Room in Hell's Kitchen luxury building,4421545,Adam,Manhattan,Hell's Kitchen,40.76892,-73.99016,Private room,110,3,2,2018-02-06,0.09,1,0 +11175261,"Nice, Comfortable Cozy 1 Bedroom.",32124237,Damian,Brooklyn,Prospect-Lefferts Gardens,40.65505,-73.96086,Entire home/apt,100,4,4,2016-10-23,0.11,1,0 +13417410,Zions Destiny Home away from Home !,76453466,Devon,Brooklyn,East Flatbush,40.66167,-73.92854,Entire home/apt,45,1,112,2019-06-10,2.99,1,244 +2314589,"Large, 2fl/2bdrm Williamsburg Apt",305132,Alix,Brooklyn,Williamsburg,40.70771,-73.94344,Entire home/apt,200,3,13,2017-01-01,0.22,1,0 +30442508,Bedroom in Brooklyn Madison 3R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93123,Private room,42,30,0,,,27,358 +29703038,LUXARY 2BR DUPLEX LOFT Downtown Brooklyn,48194192,Allen,Brooklyn,Clinton Hill,40.69509,-73.96462,Entire home/apt,191,1,42,2019-06-23,5.94,4,28 +35776956,"luxury apt in long lsland city +1min to subway",221012726,Lyn,Queens,Long Island City,40.74786,-73.93889,Private room,46,1,0,,,1,6 +25085427,Amazing Studio step away from time square /71B,48146336,Irina,Manhattan,Hell's Kitchen,40.76243,-73.99316,Entire home/apt,120,30,4,2019-06-30,0.35,20,342 +35268203,"Super Jackpot +Central Park, 6 and Q Train!Takeit",265527861,Anthony,Manhattan,Upper East Side,40.78481,-73.95303,Private room,78,3,0,,,1,322 +30349105,Entire studio Central Park west,4431107,Ally,Manhattan,West Village,40.730340000000005,-74.01021999999999,Entire home/apt,200,1,0,,,3,158 +20135169,New Amazing Apartment In Washington Heights,143181766,David,Manhattan,Washington Heights,40.85213,-73.9336,Entire home/apt,120,3,32,2019-04-22,1.39,1,3 +15399031,Beautiful & Cozy Brownstone Apt In Gowanus,86592511,Chezi,Brooklyn,Gowanus,40.66734,-73.99383,Entire home/apt,135,2,19,2019-06-19,0.6,1,35 +8293281,GREAT LOCATION QUIET BKLYN STREET,634004,Chris,Brooklyn,Prospect Heights,40.67835,-73.97074,Entire home/apt,125,2,80,2019-06-24,2.83,1,105 +19980048,Sun soaked apartment in the Friends Building,15200154,Casey,Manhattan,West Village,40.73275,-74.006,Entire home/apt,350,2,2,2017-08-13,0.09,1,0 +29383018,"Comfort room A in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81548,-73.95931,Private room,80,1,38,2019-06-22,4.4,4,57 +11712888,Private room available with river view!,412228,Natalie,Manhattan,Upper West Side,40.77889,-73.9878,Private room,95,14,0,,,1,0 +4053912,"Lots of space, great location",21017521,Isis,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.95915,Private room,75,18,0,,,1,0 +3911453,"Sweet Studio Near Subway, LGA, and Central Park",20260083,Tim,Manhattan,East Harlem,40.79332,-73.94105,Shared room,45,1,6,2017-09-14,0.21,1,0 +29610742,Hip and minimal neighborhood loft,948095,Ellen,Manhattan,East Village,40.72455,-73.9783,Entire home/apt,265,14,2,2018-12-31,0.29,1,0 +33061842,"Cozy house , very quiet , clean room !",140630987,Jiali,Queens,Flushing,40.77078,-73.82615,Private room,60,1,13,2019-06-23,4.94,6,125 +784088, 1 Bed Apt in Utopic Williamsburg ,1506795,Anthony,Brooklyn,Williamsburg,40.71188,-73.9608,Entire home/apt,155,2,8,2014-04-28,0.1,1,0 +27747288,"Modern 3Beds/2bedroom Apartment, 5min TIME SQUARE.",45578040,Ryan,Manhattan,Hell's Kitchen,40.76457,-73.98765999999999,Entire home/apt,269,1,18,2019-06-25,1.67,2,55 +4144630,Bedford Ave,21500500,Juan,Brooklyn,Williamsburg,40.717940000000006,-73.95682,Private room,125,2,0,,,1,0 +15664673,Big room in the heart of Chelsea.,86408170,Malin,Manhattan,Chelsea,40.74368,-73.99825,Private room,120,1,1,2016-10-27,0.03,1,0 +20052107,Cozy 1BD Apartment in Brooklyn Prospect Lefferts,9215302,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65558,-73.956,Entire home/apt,90,2,6,2017-08-31,0.26,1,0 +20054438,Bright Bedroom,142486709,Antonia,Queens,Astoria,40.75815,-73.91143000000001,Private room,80,3,35,2019-06-08,1.5,1,154 +20991704,Gorgeous Master Bedroom for Sukkot!,17742578,Sarah,Brooklyn,Midwood,40.6229,-73.96169,Entire home/apt,79,1,0,,,1,0 +35410832,Kips Bay Manhattan 2 Bedroom Huge Apartment,265005813,Brandon,Manhattan,Kips Bay,40.74122,-73.98274,Entire home/apt,214,2,1,2019-06-20,1.0,1,185 +19297780,"Beautiful, Sunny, & Spacious 3 Bedrooms at Subway",23401472,Heather,Manhattan,Harlem,40.82452,-73.94499,Entire home/apt,57,30,0,,,2,95 +35847458,"Spacious, cozy and bright bedroom in Sunset Park",39259484,Clarissa,Brooklyn,Sunset Park,40.64458,-74.02001,Private room,50,2,0,,,1,20 +7208745,Beautiful Furnished Master Bedroom,3415,Nataraj,Queens,Fresh Meadows,40.73859,-73.78891,Private room,59,3,4,2019-06-02,0.09,1,365 +21119908,"Cozzy Room on Bedford, 20 minutes to Manhattan",28953246,Maxim,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95396,Private room,100,1,0,,,1,0 +29481874,"Large, comfortable, one-bedroom Astoria apartment",20310357,Kira,Queens,Ditmars Steinway,40.77489,-73.9161,Private room,170,1,0,,,1,157 +9820053,SoHo Studio,22440410,David,Manhattan,SoHo,40.72688,-74.00058,Entire home/apt,195,2,1,2016-01-06,0.02,1,0 +32920999,Tranquil Manhattan Room close to Trains,3228429,Austin,Manhattan,Harlem,40.82791,-73.94752,Private room,65,2,6,2019-07-02,2.07,1,72 +18309683,"Bright, Beautiful Brooklyn Brownstone",126643339,Sarah,Brooklyn,Clinton Hill,40.68854,-73.96848,Entire home/apt,160,4,7,2017-05-22,0.26,1,0 +30444500,Brooklyn Comfy Getaway,193963715,Steph,Brooklyn,East Flatbush,40.65074,-73.92945,Entire home/apt,75,6,2,2018-12-25,0.3,1,24 +3583702,Brooklyn's Finest,18018059,Erin,Brooklyn,Bushwick,40.68258,-73.90472,Entire home/apt,122,1,157,2019-07-01,2.64,1,235 +13695031,Beautiful Chelsea Apartment with many amenties,52237758,Lara,Manhattan,Chelsea,40.74075,-73.99566999999999,Entire home/apt,155,2,1,2016-06-27,0.03,1,0 +4190301,Cool room while I'm away!,21739563,Redding,Brooklyn,Bedford-Stuyvesant,40.69525,-73.93768,Private room,100,1,0,,,1,0 +33993343,Unique peaceful apart smartly located in Astoria,156286838,Ella,Queens,Astoria,40.77698,-73.93389,Entire home/apt,150,7,0,,,1,342 +9514860,Amazing last minute Thanksgiving,16675838,Marc,Manhattan,Hell's Kitchen,40.76526,-73.99096,Entire home/apt,299,1,0,,,1,0 +20425579,Beautiful 2 Bedroom apt. close to Times Sq.,72715655,Javier,Manhattan,Hell's Kitchen,40.76347,-73.98785,Entire home/apt,250,2,97,2019-06-21,4.21,1,145 +31102915,Comfortable Classy Apartment,232419771,Avi,Brooklyn,Midwood,40.61708,-73.95559,Entire home/apt,120,1,2,2019-02-17,0.35,1,126 +8569534,Cozy 3 BD in the East Village,45100854,Will & Tash,Manhattan,East Village,40.72249,-73.98042,Private room,105,5,74,2018-10-04,1.61,2,0 +21607905,Lenox Suit Hotel Themed Studio,81908583,Kasey,Manhattan,Harlem,40.81865,-73.93684,Entire home/apt,80,1,89,2019-06-21,4.44,1,47 +33135591,Beautiful 1 Bedroom,549971,Ginta,Manhattan,Chinatown,40.7142,-73.99254,Entire home/apt,150,30,3,2019-05-17,1.25,1,33 +15518025,"Cozy East-Village Walk, Blocks from Union Square",24634123,Amanda Brooke,Manhattan,East Village,40.72978,-73.98584,Entire home/apt,250,5,1,2016-10-18,0.03,1,0 +326832,Cozy Upper East Side Studio,668564,Nitzan,Manhattan,Upper East Side,40.77471,-73.95574,Entire home/apt,159,2,32,2019-06-23,0.47,1,7 +30949075,Shared room for 2 persons 15 sec away from Mtrain,133802988,Sergii,Queens,Ridgewood,40.70482,-73.90342,Shared room,40,30,0,,,6,365 +18127,Charming East Village One Bedroom Flat,69829,Josh,Manhattan,East Village,40.72828,-73.98801,Entire home/apt,190,5,21,2019-01-02,0.2,1,224 +3675957,"Brooklyn Loft Studio, One Subway from Manhattan",2076525,Douglas,Brooklyn,Navy Yard,40.69839,-73.97666,Entire home/apt,125,14,15,2019-06-18,0.41,1,32 +1185357,Central Park Room/Bath with a View!,6482637,William,Manhattan,Upper West Side,40.79631,-73.96152,Private room,85,3,118,2019-01-23,1.61,1,0 +27656004,Cozy Brooklyn Apartment,45675260,Victoria,Brooklyn,Bushwick,40.69632,-73.9193,Private room,65,3,5,2018-09-21,0.46,2,0 +34446800,Sunlit Brooklyn Bedroom perfect for Summer,117187237,Patrick,Brooklyn,Bushwick,40.70371,-73.92877,Private room,50,14,6,2019-06-19,5.0,1,0 +30507110,Small room in shared APT near CUMC.,228945290,Daehan,Manhattan,Washington Heights,40.84215,-73.94266,Private room,45,1,4,2019-06-23,0.57,1,90 +31538945,PRIVATE ROOM IN ARTSY WILLIAMSBURG LOFT!,52531721,Pamela,Brooklyn,Williamsburg,40.71126,-73.94917,Private room,55,2,26,2019-06-29,5.1,1,156 +15984905,Single room 2 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80762,-73.94445999999999,Private room,50,30,5,2018-11-18,0.16,6,151 +19456350,"Bright, Spacious Penthouse Near Park",126144914,Miles,Manhattan,Upper West Side,40.7789,-73.98527,Entire home/apt,250,10,5,2018-08-07,0.21,1,0 +19847790,Spacious 3 BDR APT Brooklyn Sleeps 12!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64377,-73.95085,Entire home/apt,160,3,53,2019-07-01,2.24,2,294 +12747935,S...Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68962,-73.92345999999999,Private room,37,3,40,2019-05-10,1.06,4,212 +26778845,Williamsburg apartment with roof terrace,2478942,Francesca,Brooklyn,Williamsburg,40.71085,-73.96136,Private room,65,4,10,2019-05-28,0.87,1,5 +27489188,Nice Apartment in Gramercy Park,27336207,Juan Eduardo,Manhattan,Gramercy,40.735690000000005,-73.98097,Entire home/apt,160,3,6,2019-05-19,0.56,2,0 +36359394,Madeline’s Place,135363269,Hal,Brooklyn,Sunset Park,40.64372,-74.00656,Entire home/apt,120,3,0,,,1,320 +11397141,Luxury apartment in Williamsburg,31284498,Abe,Brooklyn,Williamsburg,40.71905,-73.95425999999999,Entire home/apt,200,1,0,,,1,0 +21766524,Beautifully Decorated Entire Floor of Brownstone,965946,Sunil,Brooklyn,Park Slope,40.67271,-73.97663,Entire home/apt,200,5,1,2019-06-30,1.0,1,31 +10930279,House Near Subway,25044529,Xin,Manhattan,Upper West Side,40.79583,-73.97493,Entire home/apt,87,1,0,,,1,0 +2466687,"New, spacious 1BD in Williamsburg",8778997,Lee,Brooklyn,Williamsburg,40.71512,-73.94978,Entire home/apt,102,7,26,2019-05-27,0.41,1,2 +7483049,Lovely 2-Bedroom Near Prospect Park,11816453,Natalie,Brooklyn,South Slope,40.66266,-73.98885,Entire home/apt,150,3,4,2017-09-30,0.09,1,0 +35488159,Spread Love it's Brooklyn,242361272,Alicia,Brooklyn,East New York,40.66192,-73.88213,Entire home/apt,80,1,0,,,1,297 +1693524,1 rm @ 3BR loft williamsburg room 3,4864306,Joseph,Brooklyn,Greenpoint,40.72668,-73.95555,Private room,50,2,13,2019-06-17,0.22,3,282 +36044645,"Cozy, perfect located, Room in the middle of NYC",271170087,Ricardo,Manhattan,Hell's Kitchen,40.76557,-73.9909,Private room,185,4,1,2019-06-30,1.0,1,50 +12477280,QUEEN-SIZED ROOM IN LUXURIOUS PARK AVENUE FLAT,283395,H,Manhattan,Murray Hill,40.7493,-73.9794,Private room,159,1,17,2017-12-10,0.44,2,155 +20976974,Light and airy room in Soho/Nolita,50028284,Tobi,Manhattan,Nolita,40.72234,-73.99625,Private room,110,7,0,,,1,0 +22505049,Beautiful & sunny large room in a gorgeous apt.,138768335,Maria,Brooklyn,East Flatbush,40.65547,-73.92567,Private room,40,30,7,2019-06-10,0.44,2,317 +22342547,3 BR apt on 2nd floor. Close to airport & Shopping,152371030,KerryAnna,Queens,Springfield Gardens,40.66566,-73.76002,Entire home/apt,95,2,44,2019-04-27,2.53,1,190 +6545519,Amazing Studio-Loft w/Outdoor Space,3174520,Peter,Manhattan,Greenwich Village,40.733990000000006,-73.99305,Entire home/apt,185,2,52,2019-01-01,1.04,1,35 +23108877,A cozy room in a newly renovated UWS apartment,47023469,Olga,Manhattan,Upper West Side,40.79728,-73.97348000000001,Private room,100,1,28,2019-06-08,1.66,3,270 +15207725,HugeTropical Bedrm near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.64057,-74.0786,Private room,110,1,20,2019-07-01,0.63,3,337 +31828585,"Large Private Room in Modern, Rustic 2BR Apartment",61278632,Owen,Manhattan,Harlem,40.82049,-73.95268,Private room,50,3,3,2019-07-01,0.74,1,7 +25132414,Bedstuyvesant Apartment,81087558,Eric,Brooklyn,Bedford-Stuyvesant,40.68423,-73.94125,Entire home/apt,75,3,3,2018-11-05,0.22,1,0 +14066228,Spacious in 1BR East Harlem NYC,46460278,Amanda,Manhattan,East Harlem,40.79474,-73.9383,Entire home/apt,110,3,26,2019-06-23,0.73,1,5 +3953942,Spacious 1 Bedroom Apt in Brooklyn,8015051,Justine,Brooklyn,Crown Heights,40.67042,-73.95608,Entire home/apt,115,2,76,2019-06-16,1.3,1,283 +8173434,LOFT2bdrm apt near metro20min to Manhattan/wall st,38378985,Rebekah,Brooklyn,Bedford-Stuyvesant,40.67797,-73.93966999999999,Entire home/apt,239,5,147,2019-06-18,3.19,1,142 +4824052,"Big, bright Park Slope 2.5 bedroom!",24839116,Ainsley,Brooklyn,South Slope,40.66437,-73.9823,Entire home/apt,175,3,14,2017-07-22,0.25,1,0 +22191646,Bright Private Balcony Apartment in Midtown,30424811,Nona,Manhattan,Midtown,40.74566,-73.98125999999999,Entire home/apt,248,3,2,2018-06-14,0.11,1,0 +33202973,LARGE PRIVATE ROOM IN GREAT NEIGHBORHOOD! UES.,878938,T. S.,Manhattan,Upper East Side,40.77927,-73.95165,Private room,98,1,10,2019-06-18,4.35,1,327 +17620638,Fantastic Studio in Brooklyn's core,19289048,Jae,Brooklyn,Fort Greene,40.68773,-73.97901999999999,Entire home/apt,240,2,15,2018-06-10,0.62,1,66 +15342701,"New, elegant private apartment for 2 near JFK",97825348,Frank,Queens,Arverne,40.59065,-73.79563,Entire home/apt,150,2,20,2019-07-07,0.61,1,76 +9882012,Stay in an artist warehouse!,5229579,Ryan,Brooklyn,Williamsburg,40.71801,-73.96405,Private room,59,3,0,,,3,0 +32845516,Brooklyn stylish studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95415,Entire home/apt,90,1,14,2019-06-20,3.39,5,55 +22335475,Millions of View Luxury Apartment In Manhattan,31660984,Echo,Manhattan,Chelsea,40.75271,-73.99573000000001,Entire home/apt,205,3,0,,,1,0 +16337271,"Charming Central 1- Bedroom Apartment, Gramercy",28450419,Jenna,Manhattan,Gramercy,40.73794,-73.98423000000001,Entire home/apt,200,10,4,2019-01-02,0.15,1,48 +16783828,GORGEOUS Very Large Room next to Central Park!,44688209,Mike,Manhattan,Upper East Side,40.76281,-73.96718,Private room,117,3,67,2019-06-29,2.26,1,99 +255601,Cozy 2 Bedroom 20 Min from City,1343630,Antonio,Brooklyn,Bedford-Stuyvesant,40.69241,-73.94885,Entire home/apt,170,2,190,2019-06-23,2.04,1,315 +4615887,Lofted duplex in Kips Bay,23073152,Cara,Manhattan,Kips Bay,40.7396,-73.98228,Entire home/apt,350,2,0,,,1,0 +9787634,Studio in Upper East Side,20328794,Maxim,Manhattan,Upper East Side,40.77507,-73.94896,Entire home/apt,70,10,3,2017-08-21,0.07,1,0 +32467087,Sonder | The Nash | Lively 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74918,-73.97379000000001,Entire home/apt,204,29,0,,,327,158 +2254428,Spacious Duplex Apt in Brooklyn,11512676,Danni,Brooklyn,Bedford-Stuyvesant,40.68835,-73.95568,Private room,40,3,10,2018-01-08,0.16,1,0 +23576986,Spacious room near CU Mailman campus,51037916,Lujayn,Manhattan,Washington Heights,40.83767,-73.94171,Private room,39,5,0,,,1,0 +34465167,Stylish apartment in the heart of New York,22146650,Marion,Manhattan,Harlem,40.81257,-73.94444,Entire home/apt,178,2,2,2019-06-15,1.36,1,52 +918239,Cozy bedroom in Artist Loft,4930847,Rachel,Brooklyn,Williamsburg,40.70159,-73.94346,Private room,56,1,103,2019-06-10,1.6,1,65 +22420304,Nice bunkbed room with private bathroom!,164164069,Marcia,Staten Island,Westerleigh,40.61422,-74.13167,Private room,40,2,17,2018-09-07,0.92,1,36 +3751048,GREAT ONE BED! ELEVATOR/LAUNDRY ,1475015,Mike,Manhattan,Upper East Side,40.77175,-73.95742,Entire home/apt,95,30,10,2018-11-10,0.22,52,336 +18728915,Spacious Bushwick Studio,67895564,Noah,Brooklyn,Bushwick,40.70373,-73.92848000000001,Entire home/apt,100,3,3,2018-11-25,0.12,1,0 +30727105,Modern and charming Brooklyn apartment,4679911,Ana Luiza,Brooklyn,Greenpoint,40.73473,-73.95229,Private room,54,21,1,2018-12-22,0.15,1,0 +35196099,Ornate cozy Victorian studio at Central Park,118013873,Frances,Manhattan,Upper West Side,40.80103,-73.9706,Entire home/apt,150,6,2,2019-07-07,2.0,1,69 +8357147,Perfect Solo Traveler Room in Williamsburg,33874814,Victor,Brooklyn,Williamsburg,40.70617,-73.95055,Private room,44,2,0,,,1,6 +10605897,Chic Modern Luxury Apartment. 2 bed 2 bath. Patio,13731605,Antonella,Brooklyn,Crown Heights,40.67689,-73.93966999999999,Entire home/apt,199,4,52,2019-06-24,1.31,2,242 +18457273,"Clean and Cozy Private Room in Inwood, Manhattan",17420574,Kayleigh,Manhattan,Inwood,40.8677,-73.9225,Private room,55,2,4,2017-05-29,0.15,1,0 +12053427,Modern Studio in Middle Village,8896489,Florin,Queens,Maspeth,40.72153,-73.88753,Entire home/apt,79,3,64,2019-06-23,1.6,1,311 +11640637,Riverside Single Room near Columbia,34220831,Yilin,Manhattan,Morningside Heights,40.81377,-73.96166,Private room,46,1,2,2016-07-29,0.05,1,0 +13865089,Convenient Gem in Midtown East,32833394,Arthur,Manhattan,Midtown,40.7542,-73.96862,Private room,90,12,0,,,1,70 +23792656,G&G Brooklyn Palace,176001804,Garcia,Brooklyn,Prospect-Lefferts Gardens,40.65924,-73.94959,Entire home/apt,125,2,68,2019-06-29,4.45,1,290 +19057479,COZY 2BR IN MANHATTAN,10448572,Malen,Manhattan,East Harlem,40.79632,-73.93387,Entire home/apt,115,3,12,2018-08-06,0.47,1,7 +33937108,#2 ROOM 4LEDY (4 guests),256235740,Levi,Brooklyn,Crown Heights,40.66779,-73.93729,Shared room,45,2,0,,,3,179 +18935508,Entire space !!! Yours alone! New building,43252773,Karim,Manhattan,Harlem,40.81119,-73.94751,Entire home/apt,199,2,5,2019-06-02,0.24,2,61 +18838643,Private bedroom in West Soho/West Village,3714721,James,Manhattan,SoHo,40.72681,-74.00771,Private room,76,2,60,2019-06-21,2.37,2,116 +33430867,Warm&clean private room near Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76389,-73.98872,Private room,138,1,8,2019-06-09,2.79,5,95 +6783518,PRIVATE Room||Luxury Apt,35512327,Mayowa,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94243,Private room,75,3,0,,,1,0 +319844,Cute Room in Historic Loft!,1639884,Nora,Brooklyn,Greenpoint,40.73028,-73.95926999999999,Private room,79,14,22,2019-05-02,0.25,1,268 +1131422,ART HOUSE BIGGIE SMALL,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68312,-73.94082,Private room,40,1,66,2019-06-17,0.89,4,118 +12685533,Cute Room in Big Apt in Brooklyn,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67858,-73.93713000000001,Private room,76,2,69,2019-06-06,1.81,3,11 +13245721,Gorgeous 1 BD in the West Village,10039614,Parth,Manhattan,West Village,40.73506,-74.00518000000001,Entire home/apt,249,1,0,,,1,0 +16259629,New Year's Eve Time Square,82319393,Denise,Manhattan,Midtown,40.75073,-73.98439,Private room,350,3,1,2017-01-02,0.03,1,0 +34061088,"Bright, Spacious Studio near Water in Lux Highrise",73670220,Maya,Manhattan,Financial District,40.70673,-74.01518,Entire home/apt,208,5,4,2019-06-26,2.11,1,9 +35744074,Sparkling 3BR near subway/beach - with a yard!,73670512,Monika,Brooklyn,Gravesend,40.59301,-73.975,Entire home/apt,140,3,3,2019-07-07,3.0,2,222 +4567518,Cozy 2BD Near Columbia Univ,23671946,Yonatan,Manhattan,Morningside Heights,40.81473,-73.96039,Entire home/apt,160,4,10,2019-06-02,0.43,2,0 +24575257,"Private, big, clean cozy room, in TIMES SQUARE",146182000,Shir,Manhattan,Theater District,40.75885,-73.98147,Private room,120,3,25,2018-11-03,1.72,1,0 +5316158,Sunny 2-bedroom in Clinton Hill ,936258,Kelsey,Brooklyn,Clinton Hill,40.68378,-73.96483,Entire home/apt,175,2,8,2016-08-22,0.15,1,0 +10138349,"Cute Brooklyn Apt, Close to Trains.",10474877,Rachel,Brooklyn,Boerum Hill,40.68358,-73.98127,Private room,71,7,11,2018-11-27,0.42,1,98 +7037999,Bright Bedroom in Bustling Bed Stuy Brooklyn,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92825,Private room,50,2,34,2019-07-01,0.7,3,279 +19769057,Bright 1 Bed Apartment in Fort Greene,3019399,Andreas,Brooklyn,Fort Greene,40.68633,-73.97164000000001,Entire home/apt,180,2,15,2019-07-01,0.64,1,4 +26753081,Trendy Nabe Bunk for travelers,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69124,-73.93911,Shared room,21,1,35,2019-06-20,2.92,17,78 +14055341,Cozy Private Room in LIC close to Everywhere in NY,25537819,Joelle,Queens,Long Island City,40.74604,-73.94194,Private room,70,1,13,2018-08-24,0.36,2,0 +14627817,"Fullszbd, prvt room & bth, kitchen & living room",90807417,Gilbert,Manhattan,East Harlem,40.79505,-73.94204,Private room,99,1,14,2017-06-17,0.41,1,50 +33373366,Full Private Studio - No Roommate Hassle,251418685,Liz,Manhattan,Midtown,40.7531,-73.96986,Entire home/apt,130,4,2,2019-04-21,0.75,1,63 +5944801,Brownstone Duplex Harlem/Columbia U,27796188,John,Manhattan,Harlem,40.809470000000005,-73.95392,Entire home/apt,300,2,60,2019-07-05,1.18,2,198 +26383523,Bright Artist's Loft on the Lower East Side,18252465,Liza,Manhattan,Lower East Side,40.71452,-73.98201,Entire home/apt,225,4,2,2019-01-02,0.29,1,0 +2445856,"Guest rm, 2 stops from GrandCentral",3578009,Walther,Queens,Long Island City,40.74955,-73.95081,Private room,100,2,37,2018-10-06,0.58,2,97 +727835,Pristine Room and Art Experience,3772684,Glasshouse,Brooklyn,Williamsburg,40.70866,-73.95166,Private room,99,6,89,2017-12-12,1.09,2,89 +30010084,Very spacious 2 BR in Crown Heights,15823232,Nicolas,Brooklyn,Crown Heights,40.67812,-73.94618,Entire home/apt,129,3,30,2019-06-26,3.96,3,81 +18736484,Minutes from JFK airport and famous mall,128086219,Hannah,Queens,Rosedale,40.65219,-73.73729,Private room,49,2,61,2019-03-25,2.36,2,65 +17269656,"Magical, Welcoming & Beautiful Huge 1 Bedroom Apt",57655724,Kay,Manhattan,Midtown,40.75598,-73.97034000000001,Entire home/apt,260,2,64,2019-06-16,2.36,1,131 +32841707,"Fresh, Spacious 2-Bed with Garage Parking",247064022,Sunny,Queens,Flushing,40.74551,-73.82661999999999,Entire home/apt,189,3,10,2019-07-01,2.68,1,51 +14837884,Small Bedroom in Heart of SoHo,91280958,Sandra,Manhattan,SoHo,40.721790000000006,-73.99795,Private room,49,3,1,2016-09-15,0.03,1,0 +5067417,Study in 1885 Gothic Brownstone.,8954264,Rod,Manhattan,Harlem,40.80858,-73.95132,Private room,177,10,25,2019-06-08,0.51,1,213 +4629211,Brooklyn - Funky 1 Bedroom,3754729,Mike,Brooklyn,Bushwick,40.69087,-73.90916999999999,Entire home/apt,122,3,48,2019-06-04,0.87,1,256 +5511036,1BR bottom fl apt Prospect Heights,28584269,Andre,Brooklyn,Crown Heights,40.67687,-73.96242,Entire home/apt,99,3,72,2019-06-23,1.4,1,266 +13659914,Large & sunny 2-bedroom in Windsor Terrace,15588105,Anna,Brooklyn,Windsor Terrace,40.64999,-73.97306999999999,Entire home/apt,100,30,2,2018-08-06,0.06,1,222 +6492864,Private Artisitic Room East Village,1480124,Goldwyn,Manhattan,East Village,40.72174,-73.98418000000001,Private room,82,3,11,2015-09-26,0.23,1,0 +33810243,Azur Queen Bedroom UES (Shared),225055374,David,Manhattan,Upper East Side,40.77019,-73.95449,Shared room,75,30,0,,,3,331 +35487203,Sweet-room,266983536,Nawa,Bronx,Longwood,40.827940000000005,-73.90411999999999,Private room,45,2,1,2019-06-24,1.0,1,364 +33544651,Sun Lit Room in Ridgewood/Bushwick 25 mins to NYC,135280693,John,Queens,Ridgewood,40.70811,-73.91054,Private room,60,3,3,2019-06-01,1.15,2,264 +4644688,2 Bedroom New York Charmer,16927633,Lee,Manhattan,Hell's Kitchen,40.76198,-73.98718000000001,Entire home/apt,350,2,9,2016-07-12,0.21,1,0 +24732974,1 bedroom (entire) apartment very spacious,186318389,Joanna,Bronx,Mount Eden,40.84059,-73.92156,Entire home/apt,150,1,4,2018-05-17,0.28,1,0 +250536,The Lenox in Harlem,1313306,Yvette,Manhattan,Harlem,40.81068,-73.94288,Private room,125,1,11,2017-09-25,0.12,2,365 +30651242,"Modern, Luxury Style, private balcony/City view!",193709,Glenna,Brooklyn,Greenpoint,40.73506,-73.954,Entire home/apt,150,11,2,2019-05-12,0.32,1,15 +2978421,Hip Chinatown Apt in Great Location,5418972,Nico,Manhattan,Chinatown,40.71433,-73.99028,Entire home/apt,125,2,11,2019-05-31,0.27,1,0 +29109909,Cozy financial district manhattan spot,219383069,Melli,Manhattan,Financial District,40.70494,-74.00964,Entire home/apt,220,1,8,2019-06-06,0.89,1,0 +31053208,Boutique Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69488,-73.93115,Private room,55,1,23,2019-06-10,3.77,2,28 +5598465,1 BR Bohemian Oasis in Astoria,18941320,Alexandra,Queens,Astoria,40.76327,-73.92456999999999,Entire home/apt,105,1,7,2017-10-22,0.14,1,0 +8445883,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72831,-73.98481,Private room,125,1,2,2015-10-26,0.04,2,0 +6799932,[302] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76015,-73.99086,Private room,155,1,200,2019-06-16,4.07,11,240 +36213323,✨Executive Room One King Bed and Kitchenette✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75237,-73.93342,Private room,89,1,0,,,8,298 +14167380,Greenpoint/Williamsburg Comfortable New Apartment,44454496,Gino,Brooklyn,Greenpoint,40.73101,-73.9405,Entire home/apt,160,3,57,2019-06-11,1.63,1,314 +36177747,* Brooklyn's Prospect Park Perfection *,13422723,Zoē,Brooklyn,Flatbush,40.65296,-73.95724,Entire home/apt,90,4,1,2019-07-03,1.0,1,14 +9253823,Spacious 2BR (4 rooms) in the Upper West Side,31537314,Katja,Manhattan,Upper West Side,40.80118,-73.96642,Entire home/apt,250,5,12,2019-06-15,0.27,1,20 +35125511,Wow Fabulous Hell's Kitchen Place,223833249,Diane,Manhattan,Hell's Kitchen,40.76277,-73.99594,Entire home/apt,300,3,3,2019-07-04,3.0,1,325 +35375569,Alphabet City Summer!,266310389,Kirk,Manhattan,East Village,40.72837,-73.98170999999999,Private room,50,30,0,,,1,97 +30155262,Room on Forest Hills,34508000,Venera,Queens,Rego Park,40.72276,-73.85683,Private room,40,1,6,2018-12-07,0.79,1,0 +134934,Prime Williamsburg Apartment,652842,Giovanni,Brooklyn,Williamsburg,40.71823,-73.95849,Entire home/apt,225,10,22,2019-05-30,0.38,1,52 +21668437,SPACIOUS PRIVATE ROOM IN TRENDY BAY RIDGE BROOKLYN,156672333,Eddie,Brooklyn,Bay Ridge,40.6247,-74.03094,Private room,80,3,1,2018-01-01,0.05,1,363 +14882309,Sid's Victorian Peaceful Haven,92720308,Sidney,Brooklyn,Flatbush,40.64028,-73.96095,Private room,100,1,134,2019-06-19,3.95,3,307 +10899004,Stylish Windsor Terrace Flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65627,-73.97955,Entire home/apt,250,7,0,,,3,0 +28369552,Boerum Hill 2 BR Suite in Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68528,-73.98634,Private room,98,1,9,2019-06-09,0.89,3,25 +34595441,Best Midtown Location! 5 Bedrooms!,2571687,Kam,Manhattan,Flatiron District,40.74191,-73.99011,Entire home/apt,299,1,7,2019-07-01,4.12,1,347 +27333008,Delacroix’s Studio,18884557,A-B,Manhattan,West Village,40.73494,-74.00463,Entire home/apt,150,30,1,2019-06-20,1.0,1,86 +33169141,Split level entire 2Bedroom Apt.,219333557,Rafael,Queens,East Elmhurst,40.76258,-73.86855,Entire home/apt,95,1,16,2019-07-03,4.4,7,81 +28344161,One Bedroom in Midtown East,15736460,Shirley,Manhattan,Midtown,40.76054,-73.96425,Private room,75,5,0,,,1,72 +4063357,Stuvesant East,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.68439,-73.92811,Entire home/apt,130,3,132,2019-06-21,2.53,2,257 +34207544,Madison Square Sunny Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75055,-73.99481999999999,Private room,149,1,0,,,20,351 +20283488,Large bedroom in shared apartment - Short term,9430316,Eugenio,Queens,Astoria,40.7641,-73.91879,Private room,160,2,1,2018-01-02,0.05,1,0 +10096788,The Red Door,51813748,Genny & Gina,Brooklyn,Williamsburg,40.71936,-73.94225,Entire home/apt,185,4,77,2019-06-20,1.8,1,25 +30399972,Charming room Newly Renovated Apt30 mins from city,228268188,Motlaq,Brooklyn,Borough Park,40.62801,-74.00328,Private room,65,1,7,2019-05-21,1.0,1,351 +19585955,"Quiet Full Bed, loft and couch",4471200,Adam,Queens,Ridgewood,40.69654,-73.90034,Private room,40,2,1,2017-07-04,0.04,1,0 +1073780,Sunny Clinton Hill Apt w/Patio,1149419,Alex,Brooklyn,Crown Heights,40.6803,-73.96059,Entire home/apt,149,28,18,2019-04-29,0.36,1,265 +4734170,Modern 1 BD near Prospect Park,17893360,Charles,Brooklyn,Crown Heights,40.67238,-73.95768000000001,Entire home/apt,109,1,18,2017-04-14,0.38,1,0 +18521860,Skylight Suite on Park Block,7797101,Athena,Brooklyn,Park Slope,40.66832,-73.97662,Entire home/apt,180,2,67,2019-07-02,2.88,1,289 +27612070,Stylish Studio Perfect Location-Empire State,89767580,Jk,Manhattan,Midtown,40.74673,-73.98499,Entire home/apt,250,5,59,2019-06-24,5.82,1,58 +983625,Great Studio in the heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80421,-73.94301999999999,Entire home/apt,135,30,190,2019-06-04,2.63,4,253 +20814478,New York Experience,37038571,Haniel,Manhattan,Upper West Side,40.79796,-73.97255,Entire home/apt,250,2,1,2017-10-09,0.05,1,0 +27126270,ENTIRE APARTMENT: BRIGHT & CHARMING- best location,7615002,Paloma,Manhattan,East Village,40.72338,-73.98346,Entire home/apt,100,2,14,2019-07-07,1.39,2,5 +26593665,Sunny Windsor Terrace 3BR with deck,2487882,Craig,Brooklyn,Windsor Terrace,40.65163,-73.97910999999999,Entire home/apt,150,5,0,,,2,0 +13584582,Stylish Midtown Retreat,78430614,Jay,Manhattan,Hell's Kitchen,40.75666,-73.99444,Entire home/apt,185,2,174,2019-06-22,4.88,1,65 +32493667,JFK LUXURY BEDROOM # 4,244082709,Jfk,Queens,Springfield Gardens,40.65994,-73.77069,Private room,85,1,14,2019-07-05,3.89,7,163 +29644544,Cosy One-Bedroom in vibrant Washington Heights,41323748,Karen,Manhattan,Washington Heights,40.834140000000005,-73.94565,Entire home/apt,125,5,18,2019-06-24,2.19,1,1 +21594210,It's a Beautiful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67794,-73.90639,Private room,48,1,114,2019-07-02,5.65,5,235 +8903147,Yankees Room in the Bronx,3684360,Enrique,Bronx,Norwood,40.87709,-73.88228000000001,Private room,38,1,50,2018-06-27,1.1,4,267 +21551617,Summer Savings! Central Park 1BR/1Bath/UWS,156699963,Jennifer,Manhattan,Upper West Side,40.77538,-73.97743,Entire home/apt,350,1,11,2019-05-22,0.54,1,80 +28306661,Small private room for single ones comfy and clean,17450152,Tiba,Manhattan,Hell's Kitchen,40.76438,-73.98955,Private room,85,2,29,2019-06-21,2.87,5,0 +1039215,Heart of Williamsburg - authentic & central!,4911550,Marc,Brooklyn,Williamsburg,40.72091,-73.96124,Entire home/apt,90,3,166,2018-07-28,2.21,1,104 +32527598,Castle Nolita,138492193,Antonio,Manhattan,Little Italy,40.71907,-73.99685,Entire home/apt,160,1,25,2019-06-21,5.47,1,29 +1140826,Private room/bedroom in Park Slope/Gowanus BK,6256118,Katie,Brooklyn,Gowanus,40.67173,-73.98968,Private room,49,1,9,2017-08-19,0.19,1,98 +1334633,Meatpacking District Large Loft,7125872,Joe,Manhattan,West Village,40.73896,-74.00522,Entire home/apt,175,4,5,2017-12-03,0.07,1,0 +4531990,Charming and Clean Brooklyn Apt.,23497375,Liat,Brooklyn,Bedford-Stuyvesant,40.68157,-73.92023,Private room,75,1,0,,,1,0 +7894907,Cosy studio in East Village,1830864,Natasha,Manhattan,East Village,40.72395,-73.98001,Entire home/apt,150,2,25,2016-07-22,0.55,1,0 +23273676,Little Italy Spacious Room,116976293,Topher,Manhattan,Little Italy,40.71913,-73.99835,Private room,69,2,45,2019-06-16,2.75,2,0 +13397786,"Huge bright room with own bathroom, Williamsburg",4445885,Alexandra,Brooklyn,Williamsburg,40.71685,-73.94668,Private room,85,5,0,,,1,0 +36134580,COSY 2BR APARTMENT IN LOWER EAST SIDE,55814811,Doni,Manhattan,Lower East Side,40.71989,-73.98459,Entire home/apt,198,3,0,,,1,5 +7324832,UWS Bedroom with Rooftop Access!,379663,Kenya,Manhattan,Upper West Side,40.78763,-73.97308000000001,Private room,129,3,5,2015-09-26,0.1,1,0 +7265253,1 Bed in a Lux Apt on Wall Street,15899061,Amelia,Manhattan,Financial District,40.70583,-74.00717,Shared room,47,1,2,2015-08-17,0.04,1,0 +3816499,2,23633,Eugene,Brooklyn,Bushwick,40.70315,-73.93124,Private room,75,2,2,2015-11-01,0.04,2,0 +25844166,"Last minute pricing! quiet street, heart of SoHo",7266843,Asaf,Manhattan,SoHo,40.7258,-74.0015,Private room,45,6,2,2019-03-03,0.17,1,0 +22355365,Master room w/ Private Bath in Financial District,100701558,Emeka,Manhattan,Financial District,40.70521,-74.00678,Private room,100,1,0,,,1,0 +31530836,Cozy Priv Room! in Prime East Village!,180126576,P,Manhattan,East Village,40.72471,-73.98366999999999,Private room,100,3,1,2019-04-12,0.34,3,0 +35687862,Beautiful 3 bedroom apartment in East Williamsburg,268465931,Sumergida,Brooklyn,Williamsburg,40.7043,-73.94285,Entire home/apt,200,2,1,2019-07-01,1.0,1,338 +36082127,Stylish apartment near Central Park!,113344533,Alina,Manhattan,East Harlem,40.79446,-73.94455,Entire home/apt,170,1,1,2019-07-03,1.0,1,20 +8108376,"home, sweet home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74267,-73.78737,Entire home/apt,100,1,59,2019-06-09,1.58,3,132 +12376365,SERENITY ROOM,45601111,Dlb,Queens,Laurelton,40.66952,-73.74624,Private room,40,2,47,2019-02-15,1.19,5,173 +28418722,"Apartment minutes away from JFK, LGA, CitiField",214424497,Michelle,Queens,St. Albans,40.70454,-73.7656,Entire home/apt,64,1,32,2019-07-07,3.47,1,259 +30819021,Your 1BR home in Murray Hill!,41955015,Angeles,Manhattan,Murray Hill,40.74719,-73.97478000000001,Entire home/apt,150,1,2,2019-01-07,0.32,1,0 +30525727,15 minutes From Times Square!!,56778641,Ari,Manhattan,Washington Heights,40.85127,-73.92985,Private room,31,1,28,2019-07-02,4.57,1,111 +8223230,Bright and Cozy Room Williamsburg,43361668,Lia,Brooklyn,Greenpoint,40.71923,-73.95204,Private room,98,1,31,2019-06-21,0.67,1,343 +16257916,Studio Apartment in Wyndham Midtown 45.,42734903,Barry & Verone,Manhattan,Midtown,40.75374,-73.97138000000001,Entire home/apt,300,3,0,,,1,0 +9464543,Prime Location in CHELSEA,15208048,Philipp,Manhattan,Chelsea,40.74601,-73.99987,Private room,98,1,1,2015-12-14,0.02,1,0 +26099255,"Serenity Studio; Light, Bright and Cute",196171209,Marina,Brooklyn,Crown Heights,40.67316,-73.95397,Entire home/apt,85,2,57,2019-07-03,4.62,1,110 +13583633,Spacious 1 Bedroom Apt in heart of Williamsburg,23657588,Matthew,Brooklyn,Williamsburg,40.71307,-73.95084,Entire home/apt,185,1,49,2019-06-30,1.34,1,50 +16206794,1BR apartment one block from Columbia U and subway,9601972,Samer,Manhattan,Morningside Heights,40.80724,-73.96348,Entire home/apt,189,2,1,2017-01-04,0.03,1,0 +9736071,COOL STUDIO IN THE HEART OF MIDTOWN,17870643,Matt,Manhattan,Midtown,40.75843,-73.96265,Entire home/apt,195,1,0,,,1,0 +4483517,Stunning room. 15mins to Manhattan!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92508000000001,Private room,100,30,2,2015-04-28,0.04,4,7 +13184355,Spacious bushwick brownstone,73737053,Elicia,Brooklyn,Bushwick,40.69239,-73.91416,Private room,85,1,44,2019-06-23,1.26,3,365 +17095035,Large NYC FLAWLESS Room Close to public transport,55948559,Barry,Bronx,Pelham Gardens,40.86686,-73.84206999999999,Private room,35,1,16,2019-01-21,0.61,4,3 +9969565,Child friendly 1 Bedroom,51230222,Hamish,Manhattan,Morningside Heights,40.80541,-73.96576,Entire home/apt,97,1,0,,,1,0 +20688359,GRAMERCY EAST 22ND-REFURBISHED WITH LIVE IN SUPER,76104209,Rated,Manhattan,Gramercy,40.73638,-73.98089,Entire home/apt,239,30,0,,,33,242 +30158061,Beautiful Williamsburg Bedroom by McCarren Park,8189649,Samantha,Brooklyn,Williamsburg,40.71876,-73.94436,Private room,96,3,0,,,1,0 +16122441,Big and Bright Apartment with Balcony,6171011,Sebastian,Manhattan,East Harlem,40.81067,-73.93896,Entire home/apt,150,7,4,2019-04-02,0.3,1,127 +23103116,New York Bedroom for rent in East Harlem,171629811,Arthur,Manhattan,East Harlem,40.79661,-73.93831999999999,Private room,40,5,3,2018-03-20,0.18,1,0 +20390763,Private Guest Room in Manhattan,145391611,Lauren,Manhattan,Harlem,40.82744,-73.94707,Private room,50,2,86,2019-07-03,4.01,1,97 +24906924,Spacious One Bedroom in Downtown Manhattan,14396470,Ileang,Manhattan,Chinatown,40.71694,-74.00076,Entire home/apt,150,3,0,,,1,0 +28359512,East Village Pad with a View,131454177,Ali,Manhattan,East Village,40.72907,-73.98388,Entire home/apt,195,7,0,,,1,295 +21549554,*NEWLY RENOVATED PRIVATE ROOM*,48183551,Carlos,Queens,Elmhurst,40.74403,-73.88167,Private room,58,6,50,2019-07-07,2.56,5,257 +26465413,Spacious & charming apartment in the heart of NYC,199014573,Elizabeth,Manhattan,Midtown,40.75486,-73.97251999999999,Private room,125,3,8,2018-09-16,0.65,1,0 +19384034,Great space for 1 or 2 guests!,135877454,Zoilo,Queens,Astoria,40.76065,-73.90905,Entire home/apt,80,4,6,2018-09-01,0.48,1,0 +33428109,Spacious bedroom in the heart of the West Village,23020619,Lorenzo,Manhattan,West Village,40.73587,-74.0043,Private room,70,2,3,2019-04-28,1.22,2,128 +4456555,Entire flr-thru 2bdrm apartment near ProspectPark!,747671,Sarah Jazmine,Brooklyn,South Slope,40.66347,-73.98438,Entire home/apt,180,1,7,2017-01-01,0.12,1,0 +13308276,The Manhattan - Apartment Near Central Park,75085688,Mark,Manhattan,Upper West Side,40.801,-73.9613,Entire home/apt,150,2,11,2017-11-25,0.31,1,2 +27454358,Sunny Huge Room 3rd Floor,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95108,Private room,40,30,2,2018-12-14,0.27,3,331 +30348944,Spacious modern condo by Columbia University,2964135,Jessie,Manhattan,Harlem,40.80623,-73.95343000000001,Entire home/apt,200,3,3,2019-05-23,0.98,1,0 +20942873,MOST CENTRAL LOCATION,117287,Lara,Manhattan,Hell's Kitchen,40.76888,-73.98639,Private room,134,2,1,2018-09-30,0.11,3,316 +25308697,UPPER WEST SIDE: Renovated 2 FLOOR - 2 BED & BATH,15807180,Michael,Manhattan,Upper West Side,40.7846,-73.97315,Entire home/apt,99,2,0,,,3,93 +22829069,Sunny spacious apartment in NY available today!,22610399,Dmitry,Brooklyn,Midwood,40.62306,-73.96965,Entire home/apt,66,18,0,,,1,0 +35183293,Park Slope Studio w/3 beds (15 Mins to Manhattan!),264934283,Susan,Brooklyn,South Slope,40.6611,-73.98446,Entire home/apt,165,3,2,2019-07-01,2.0,2,346 +28519623,clean& airy in Brooklyn w/private bathroom and AC!,215257373,Erica,Brooklyn,Williamsburg,40.71601,-73.93961999999999,Private room,105,1,71,2019-07-05,7.34,1,55 +32610834,Manhattan by the water!,12132369,Omar,Manhattan,Kips Bay,40.73767,-73.97384,Entire home/apt,150,7,0,,,1,9 +27875757,Sun-Drenched Perch in Charming Brownstone,210578372,Joyce,Brooklyn,Carroll Gardens,40.68112,-73.99296,Entire home/apt,150,4,9,2019-05-18,0.87,1,0 +21781515,Garden Apartment in the Heart of Greenpoint,35020019,Michael,Brooklyn,Greenpoint,40.72513,-73.94829,Private room,110,2,21,2019-06-24,1.37,1,336 +22226558,Homely Queens Home,162411010,Victor,Queens,Ozone Park,40.68562,-73.83498,Entire home/apt,125,7,3,2019-06-15,0.33,1,69 +17122439,Charming Studio with your Own Private Patio,115057851,Chito And Xavier,Manhattan,East Harlem,40.80827,-73.93813,Entire home/apt,100,3,103,2019-07-01,3.61,2,32 +26574652,Private room in walking distance from Central Park,199828653,Vady,Manhattan,East Harlem,40.79872,-73.93954000000001,Private room,59,1,66,2019-06-19,5.38,1,126 +11194693,NYC Private Apt by Subway and Yankee Stadium,29510402,Douglas,Bronx,Longwood,40.82345,-73.9033,Entire home/apt,89,1,185,2019-07-07,4.52,3,104 +36452965,"❥❥NYC Apt: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69389,-73.86823000000001,Entire home/apt,140,3,0,,,6,232 +9409457,Two Bedroom Apt w/Private Balcony & Small Bathroom,48790146,Violet,Brooklyn,Bedford-Stuyvesant,40.69182,-73.95696,Entire home/apt,125,2,127,2019-06-17,2.92,1,126 +7561686,Cozy Large Studio - Yankee Stadium,39639929,John,Bronx,Concourse,40.82381,-73.92725,Entire home/apt,110,1,1,2015-08-08,0.02,1,0 +22031905,"Sunny, Large Bushwick room - private ROOF TERRACE",9018136,Kyrié,Brooklyn,Bushwick,40.69699,-73.91530999999999,Private room,60,2,8,2019-01-02,0.43,1,0 +36031282,"Luxury, Doorman, Steps From United Nations,",52950465,Gal,Manhattan,Midtown,40.75258,-73.97111,Private room,134,30,0,,,12,365 +33962986,Room 2 ( 10 by 10),255431206,Mohammed,Brooklyn,East Flatbush,40.6529,-73.94493,Private room,40,7,2,2019-07-06,0.91,9,114 +30281771,Charming duplex with backyard in Carroll Gardens,13291840,Agathe,Brooklyn,Carroll Gardens,40.67992,-73.99282,Entire home/apt,100,4,2,2019-04-26,0.31,1,35 +27501755,"Spacious, Sunny 1-Bedroom By the Park",557166,Jonathan,Manhattan,Upper West Side,40.79287,-73.97333,Entire home/apt,150,5,2,2018-09-01,0.18,1,0 +5796405,Manhattan Condo at Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75245,-73.97341999999999,Private room,295,1,6,2017-09-19,0.12,3,0 +519310,YOU ROOM IN NYC,1366310,Janina,Queens,Woodside,40.74377,-73.91225,Private room,75,2,251,2019-07-07,2.92,2,317 +9414237,Your Park Slope Retreat,14435697,Jacob,Brooklyn,Park Slope,40.67159,-73.97482,Entire home/apt,120,14,0,,,1,0 +936218,Clean-Furnished Room Near The Apollo (W 125th St.),5052897,Anthony,Manhattan,Harlem,40.81378,-73.95353,Private room,55,14,17,2019-06-30,0.23,1,41 +13671936,Playful Room in Techie Loft,9371652,Albert,Brooklyn,Williamsburg,40.70704,-73.93763,Private room,50,2,1,2017-05-27,0.04,1,0 +35803121,Private room with a sofa bed in Greenpoint BK,138150256,Alejandro,Brooklyn,Greenpoint,40.73171,-73.95374,Private room,50,3,0,,,2,0 +3831962,Lg Quiet Artist Home -Ditmas Park -,2236848,Liz,Brooklyn,Flatbush,40.64699,-73.96307,Entire home/apt,50,24,0,,,1,0 +25925504,SoHo! Private Room in Comfy Apt!,192951036,Jasmine,Manhattan,SoHo,40.72788,-74.00301,Private room,129,1,38,2019-07-06,2.98,10,151 +29596175,Private Room in the heart of Williamsburg,222782619,Carl,Brooklyn,Williamsburg,40.7156,-73.95233,Private room,150,2,7,2019-01-09,0.86,1,0 +10293298,Private Room/Private Bath in Gorgeous Brooklyn 2BR,52954055,Victoria Maria,Brooklyn,Bedford-Stuyvesant,40.68574,-73.93021999999999,Private room,51,5,13,2019-06-26,0.33,1,89 +30767280,Nice Room 3min walk to Subway Plus Balcony and AC,218336964,Wei,Queens,Rego Park,40.73058,-73.86963,Private room,40,3,14,2019-06-21,2.07,4,8 +16815519,"Sunny, Quiet Oasis w/ Elevator - Close to Subway!",10703290,Mike,Manhattan,Upper East Side,40.77328,-73.94981999999999,Private room,130,3,7,2019-05-27,0.24,3,0 +36018750,Spacious private room - minutes to Manhattan train,22534862,Christina,Queens,Rego Park,40.72364,-73.85605,Private room,100,1,0,,,1,341 +12227008,South Williamsburg Private Room,65776450,Emily,Brooklyn,Williamsburg,40.70952,-73.95567,Private room,150,2,0,,,1,0 +17591452,"2 Bed Apt Brighton Beach, Brooklyn by Beach",119523037,Anna,Brooklyn,Brighton Beach,40.582,-73.96185,Entire home/apt,120,1,119,2019-07-01,4.2,4,85 +6516344,Beautiful Spacious 1 Bed in Hip Harlem Neighborhd,25865233,Leonarda,Manhattan,Harlem,40.81698,-73.95259,Entire home/apt,115,3,71,2019-04-07,1.43,1,4 +22572695,Simple studio,48616155,Michelle,Brooklyn,Flatbush,40.64663,-73.96186999999999,Shared room,23,1,57,2019-06-23,3.27,1,58 +7256741,1BR @ East Village - better than a luxury hotel,1468231,Alan,Manhattan,East Village,40.7333,-73.98943,Entire home/apt,219,2,30,2019-06-10,0.62,1,2 +14386712,★1000 ft² designer loft in SOHO - Little Italy★,88329273,Zev,Manhattan,Little Italy,40.71725,-73.99811,Entire home/apt,250,1,180,2019-06-18,5.07,1,229 +9768333,"Spacious 1BD, City View, Near Train",9144218,Daniel,Queens,Astoria,40.76476,-73.91935,Entire home/apt,125,8,0,,,1,0 +29946074,Cuarto en Queens,89902143,Jose,Queens,Jackson Heights,40.75457,-73.86162,Private room,100,7,0,,,2,179 +29652691,♀ Female Only Large Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67817,-73.93198000000001,Shared room,35,15,0,,,14,0 +33310428,Confortable y limpio,250896604,Cristina,Manhattan,Washington Heights,40.85487,-73.92759000000001,Private room,32,2,26,2019-07-03,8.48,1,280 +20425394,Studio Apartment in Chelsea,26329486,Nick,Manhattan,Chelsea,40.74418,-73.9999,Entire home/apt,162,3,4,2017-12-30,0.18,1,0 +15282411,Private room for 1 or 2 in Chelsea. Prime location,2764786,Lindsay,Manhattan,Chelsea,40.74853,-73.99593,Private room,120,1,18,2017-01-11,0.55,1,0 +1305265,Perfect House for the Whole Family,7092157,Dennis,Brooklyn,Kensington,40.64342,-73.97851,Entire home/apt,299,3,4,2017-07-30,0.06,1,321 +16981845,Smart Studio,16420977,Alli,Manhattan,East Village,40.7251,-73.98914,Entire home/apt,140,2,0,,,1,0 +30961345,2-bedroom apartment on the Upper East Side,86534046,Sierra,Manhattan,Upper East Side,40.78228,-73.94715,Entire home/apt,130,1,4,2019-02-17,0.63,1,0 +830840,Private Bedroom in a Studio,4350748,Anna,Brooklyn,Midwood,40.62908,-73.95965,Private room,68,7,1,2012-12-12,0.01,1,87 +66275,Lower East Side Magic Room,314941,Tony,Manhattan,Lower East Side,40.71904,-73.99391999999999,Private room,95,1,109,2019-06-23,1.11,3,364 +25231000,Spacious Studio in the Heart of West Village,29124230,Robert,Manhattan,West Village,40.73133,-74.00461,Entire home/apt,180,7,5,2018-08-31,0.39,1,34 +6711306,Brownstone in Heart Of Park Slope!,14946552,Nathan,Brooklyn,Park Slope,40.66866,-73.98214,Private room,100,14,0,,,1,0 +2415563,The Big Brooklyn,12346795,Ron,Brooklyn,Crown Heights,40.670190000000005,-73.95541,Private room,60,1,35,2018-04-24,0.54,1,333 +20707833,"Charming, Spacious Private Room in Harlem, NYC",148241246,Ella Jane,Manhattan,Harlem,40.82444,-73.95111999999999,Private room,65,3,69,2019-07-01,3.16,1,57 +34421507,Private bedroom in high-rise at Times Square,259846443,Charlie,Manhattan,Theater District,40.76127,-73.98579000000001,Private room,130,2,10,2019-06-25,5.0,1,24 +15126483,Kitschy Corner Bedroom on a Friendly Astoria Block,4811900,Bridget,Queens,Ditmars Steinway,40.77021,-73.90947,Private room,70,2,59,2019-05-27,1.77,2,232 +31149641,Charming Private Room Near Central Park,60281397,Lugao,Manhattan,Upper West Side,40.79721,-73.96875,Private room,99,2,6,2019-05-12,0.93,3,49 +13659949,2bdr BIG Oasis. Price cut for cat caretakers.,4606955,Jens,Brooklyn,Clinton Hill,40.68552,-73.9609,Entire home/apt,259,6,4,2018-05-14,0.11,1,7 +12814578,Colorful Brooklyn Garden Casita,40332331,Joyce,Brooklyn,Windsor Terrace,40.65827,-73.97962,Entire home/apt,125,2,117,2019-07-08,3.08,2,262 +24620408,"Perfect Location, surrounded with all your need",186059643,Night,Queens,Ridgewood,40.70022,-73.90025,Entire home/apt,200,2,38,2019-06-23,2.73,1,363 +2093304,Hidden gem in Fort Greene,9791461,Brian,Brooklyn,Fort Greene,40.69286,-73.96993,Entire home/apt,100,4,45,2019-01-03,1.01,1,190 +13669613,Spacious East Village 2 bedroom with living room.,79501489,Christopher,Manhattan,East Village,40.73172,-73.9846,Entire home/apt,177,1,2,2016-06-29,0.05,1,0 +19317196,Luxury 1 Bed Apartment with GYM,12624062,Fabiana,Manhattan,Financial District,40.70716,-74.01035999999999,Entire home/apt,210,1,8,2018-08-31,0.34,1,54 +29336922,LUXURY 2BR CONDO APT IN THE HEART OF BROOKLYN,217568399,Kelly,Brooklyn,Bath Beach,40.603190000000005,-73.99591,Entire home/apt,150,1,13,2019-01-02,1.54,1,0 +35965985,My comfy space,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.68708,-73.94657,Entire home/apt,44,1,0,,,3,179 +21990254,"The BlossomBoudoir. Clean, Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68514,-73.87333000000001,Shared room,49,2,32,2019-07-06,1.67,3,5 +30015731,1 Bedroom Spacious and Cozy UWS Apartment,43043667,Dina,Manhattan,Upper West Side,40.78105,-73.97633,Entire home/apt,249,2,13,2019-02-28,1.82,1,0 +16826741,The Gramercy East,111798802,Ritchy,Manhattan,Gramercy,40.73575,-73.98,Entire home/apt,155,2,3,2018-09-29,0.12,1,3 +28526676,Cozy Room,28740462,Andrea,Brooklyn,Borough Park,40.64465,-73.99078,Private room,40,1,36,2019-07-03,3.74,1,63 +15452878,Discounted! Comfy and quiet room in SoHo.,1475812,Ignani,Manhattan,Nolita,40.72104,-73.99498,Private room,130,2,123,2019-06-07,3.79,3,59 +449660,Art & Music Salon,2233165,Liz,Brooklyn,Windsor Terrace,40.648140000000005,-73.97304,Private room,80,2,118,2019-06-16,1.35,1,353 +849567,Your own large 1BR apt in Manhattan,52394,Geraldine,Manhattan,Inwood,40.86585,-73.92693,Entire home/apt,80,4,16,2018-05-11,0.2,1,0 +14280163,Large modern chic 1-BR apt near World Trade Center,60557711,Sameer,Manhattan,Financial District,40.70851,-74.00563000000001,Entire home/apt,300,6,3,2018-12-30,0.1,1,358 +32466254,Sonder | The Nash | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74706,-73.97594000000001,Entire home/apt,200,29,0,,,327,311 +13634496,It must be your BDAY because this deal is great,28841406,Jd,Manhattan,Two Bridges,40.71298,-73.99406,Private room,75,3,0,,,1,0 +15282119,Private Retreat in Brooklyn,97122846,Tim & Rachel,Brooklyn,East Flatbush,40.65141,-73.92511999999999,Entire home/apt,75,3,109,2019-06-20,3.29,1,232 +35005829,Sonder | The Nash | Vibrant 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74725,-73.97606999999999,Entire home/apt,202,29,0,,,327,365 +4401193,"Private Studio, Columbia University",22205787,Adrien,Manhattan,Morningside Heights,40.80699,-73.95936999999999,Entire home/apt,130,4,4,2015-09-26,0.07,1,0 +14167624,"1brm apartment ,Charming, with beautiful light",8671553,Sophia,Manhattan,East Harlem,40.79356,-73.94164,Entire home/apt,95,7,0,,,1,0 +17847040,Spacious 1bd in the heart of Midtown High Rise !,31451454,Terry,Manhattan,Midtown,40.76352,-73.9831,Entire home/apt,199,2,70,2019-06-15,2.65,1,263 +29457680,Awesome Room with 2 Beds and Large Closet,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69388,-73.94501,Private room,70,3,19,2019-06-04,2.24,3,361 +36317597,"Alphabet City Cul de Sac, 3 roommates",130159651,Theo,Manhattan,East Village,40.72327,-73.98026999999999,Shared room,40,7,0,,,1,42 +6156319,Bright Studio Perfect for the Wknd!,7775447,Sara,Manhattan,Upper East Side,40.78073,-73.94976,Entire home/apt,185,1,4,2015-12-07,0.08,1,0 +32816601,BROOKLYN 2BR RESIDENCE CLOSE TO TRAIN/Manhattan,120616904,Rhykel & Glenny,Brooklyn,Cypress Hills,40.67915,-73.89986,Entire home/apt,135,2,20,2019-07-03,5.56,1,297 +4016121,Located in the heart of NoLita.,14707270,Hamish,Manhattan,Nolita,40.72322,-73.99351,Entire home/apt,350,1,1,2016-01-05,0.02,1,0 +31262842,Cute and spacious room in prime Astoria!!,233423542,Asheera,Queens,Astoria,40.76622,-73.92896999999999,Private room,60,4,0,,,2,0 +25938492,Cozy Manhattan 2 bedroom,194958383,Shen,Manhattan,East Harlem,40.79019,-73.94839,Private room,190,3,19,2019-06-28,1.53,1,14 +225887,Brooklyn B & B close to Manhattan,663879,Christopher,Brooklyn,Fort Greene,40.68645,-73.97538,Private room,130,3,154,2019-06-19,1.63,2,305 +22370386,1 Bedroom in 2 bedroom apartment near Central Park,126735001,Deundre,Manhattan,Harlem,40.80106,-73.95905,Private room,78,2,36,2019-06-24,1.94,1,0 +34448753,Madinina 2,116874533,Bertin,Manhattan,Harlem,40.81454,-73.94424000000001,Private room,55,2,8,2019-07-02,4.44,2,330 +818518,MANHATTAN BEAUTIFUL FIRESCAPE ROOM,4299040,Ale,Manhattan,Harlem,40.82238,-73.95534,Private room,60,2,48,2019-06-23,0.61,4,114 +32592405,Nice room with private living-room.,242816206,Diaby,Bronx,Longwood,40.82236,-73.90227,Private room,75,2,0,,,1,361 +6660373,Come to Know New York II,25812962,Claudio & Rose,Manhattan,East Harlem,40.79131,-73.94344,Private room,40,1,62,2019-07-05,1.35,3,257 +32678727,In the center of all Broadway Theater ACTION!,244361589,Row NYC,Manhattan,Theater District,40.75821,-73.9882,Private room,249,1,0,,,9,298 +9645338,Lovely room in prime Crown Heights,14965776,Kyra,Brooklyn,Crown Heights,40.66931,-73.9555,Private room,55,5,5,2017-08-04,0.12,1,0 +7730160,Furnished NYC 1BR apt near Rockefeller Center!!!,30283594,Kara,Manhattan,Theater District,40.75967,-73.98573,Entire home/apt,135,30,0,,,121,174 +4097279,A room with a window,2705041,Alexa,Manhattan,East Village,40.73131,-73.98321,Private room,105,2,0,,,1,0 +11605693,Noir Apartment in Chinatown - Private Room,61420312,Jay,Manhattan,Two Bridges,40.71222,-73.99566,Private room,75,2,25,2019-06-10,1.04,1,271 +16308331,Sunny beautiful airy bedroom in Modern Apartment,9367785,Camilo,Brooklyn,Greenpoint,40.725,-73.94633,Private room,63,1,10,2018-04-08,0.32,1,0 +19503971,"Breakfast and a Cozy Room, 30 Seconds From Train",5751765,CK & Tia,Manhattan,East Harlem,40.79956,-73.94113,Private room,82,2,93,2019-06-21,3.9,2,323 +2524451,Close to Maimonides Center. Room D,8288419,Jason,Brooklyn,Borough Park,40.64492,-73.99611999999999,Private room,47,1,90,2019-06-08,1.43,4,74 +27723717,Beautiful Private Room Big Windows,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95042,Private room,60,30,11,2019-04-18,1.02,4,361 +10458099,room in Bushwick,53884572,Hans,Brooklyn,Bedford-Stuyvesant,40.69433,-73.93262,Private room,45,5,2,2019-05-27,0.06,1,342 +28966945,Lugar acogedor y confortable,153809989,Sandy,Bronx,Mount Eden,40.84084,-73.92178,Private room,48,2,0,,,1,0 +13369841,Charming LES Backyard w/ brick exposed large Bdrm,15318852,Patrick,Manhattan,Lower East Side,40.71775,-73.98612,Private room,99,2,22,2017-06-18,0.59,1,365 +33474649,"private room for women, central location in NYC",175152790,Stella,Manhattan,Midtown,40.74567,-73.98478,Private room,65,1,14,2019-06-13,4.72,1,0 +844319,"XL 90m2 2BR Victorian area,sleeps 7",683027,Camille,Brooklyn,Flatbush,40.62961,-73.9572,Entire home/apt,130,1,219,2019-06-13,2.91,1,237 +29780690,Home away from home,224062220,Tevin,Brooklyn,East Flatbush,40.65155,-73.92907,Private room,80,1,22,2019-07-01,2.76,1,162 +7714664,Authentic Apartment in the heart of Brooklyn,2520125,Katja,Brooklyn,East New York,40.66045,-73.89873,Entire home/apt,72,4,121,2019-06-24,2.54,2,33 +31127529,Cozy Room 3 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68931,-73.93131,Private room,65,3,9,2019-06-03,1.79,4,126 +22418899,Central Park Gem,1741413,Austin,Manhattan,Harlem,40.80116,-73.95286999999999,Private room,110,1,5,2018-06-28,0.27,1,0 +4629726,Sunny Studio,23971405,Monica,Queens,Kew Gardens,40.70705,-73.83346,Entire home/apt,100,2,1,2016-01-02,0.02,1,0 +25519971,Brooklyn Gidi,192583202,Fola,Brooklyn,Brownsville,40.65832,-73.90486,Private room,65,1,1,2018-09-19,0.1,1,0 +5346743,Beautiful room close to Manhattan,7451917,Fe,Brooklyn,Bay Ridge,40.63304,-74.02811,Private room,55,15,7,2018-12-13,0.13,2,317 +15059292,HUGE ROOM IN CENTER CITY! AMAZING LOCATION!,95205288,Anush,Manhattan,Midtown,40.76276,-73.97652,Private room,110,4,32,2019-06-17,0.94,1,167 +20688524,1630 Madison Avenue 4C,130239329,Maria Teresa,Manhattan,East Harlem,40.79633,-73.94819,Entire home/apt,104,30,3,2019-04-27,0.16,1,212 +14065198,Sleek 1BR in the heart of Williamsburg!,27178707,Brian,Brooklyn,Williamsburg,40.71597,-73.95223,Entire home/apt,199,3,2,2016-09-19,0.06,1,0 +25889072,private room near columbia,1226850,Tony,Manhattan,Morningside Heights,40.81338,-73.96042,Private room,70,3,0,,,1,0 +21239054,Spacious apartment in historic Cobble Hill,11369083,Parker,Brooklyn,Cobble Hill,40.68611,-73.99877,Entire home/apt,115,2,2,2017-12-16,0.1,1,0 +12211018,Buck room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.6886,-73.94153,Private room,79,2,0,,,3,319 +35960702,Marvelous Studio Available 5mins from Times SQ NY!,247335568,Evelyn,Queens,Long Island City,40.74753,-73.94054,Entire home/apt,170,3,0,,,7,16 +34895344,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Hell's Kitchen,40.76957,-73.99292,Entire home/apt,229,30,0,,,87,115 +20152950,Sunny Spacious 1BR Yard Roof at GrattanHouse,128414475,Nitya,Brooklyn,Williamsburg,40.70609,-73.92828,Private room,91,1,3,2017-08-27,0.13,3,0 +16194421,Historic Lower East Side,42734669,Rebecca,Manhattan,Chinatown,40.7155,-73.99198,Entire home/apt,120,20,4,2017-10-09,0.13,1,0 +22571028,Apt. 2nd Floor (A) 2/4 Guest,87073749,Benedetta,Brooklyn,Williamsburg,40.70982,-73.95609,Entire home/apt,125,2,80,2019-06-22,4.44,2,74 +35040098,Trendy One Bedroom Apartment in UES,62560525,Saud,Manhattan,East Harlem,40.78766,-73.9423,Entire home/apt,134,3,2,2019-06-20,2.0,1,26 +23483134,2 Bathrooms-Modern Room in Queens (3),175311339,Eduardo,Queens,Jackson Heights,40.75251,-73.86401,Private room,51,2,60,2019-07-01,3.93,5,125 +318021,Room in Huge 1200sf W Harlem Suite,1632149,Michael,Manhattan,Harlem,40.80343,-73.9531,Private room,110,3,47,2019-06-30,0.57,1,248 +35459328,Best Views of Times Square,266780775,Margarita,Manhattan,Hell's Kitchen,40.76021,-73.99976,Entire home/apt,305,1,2,2019-06-19,2.0,1,133 +421554,Garden - Brownstone Experience,2096690,Richard,Brooklyn,Bedford-Stuyvesant,40.685590000000005,-73.93896,Entire home/apt,250,15,37,2016-10-30,0.52,2,54 +10120021,2BR Gut-Renovated Apartment,51844270,Alex,Manhattan,East Village,40.73046,-73.98643,Entire home/apt,250,7,1,2016-01-10,0.02,1,0 +21460249,"Stylish, cozy 1BR in Upper West Manhattan",8687478,Marie,Manhattan,Harlem,40.82523,-73.95357,Entire home/apt,180,5,1,2018-01-02,0.05,1,0 +36453160,LUXURY MANHATTAN PENTHOUSE+HUDSON RIVER+EMPIRE BLD,224171371,LuxuryApartmentsByAmber,Manhattan,Chelsea,40.75204,-74.00291999999999,Entire home/apt,350,1,0,,,1,9 +30505732,Renovated 2-Bedroom Apt in Williamsburg with Patio,228937001,Manuela,Brooklyn,Williamsburg,40.7161,-73.95427,Entire home/apt,165,1,24,2019-06-15,3.77,1,213 +25856211,Sunny hip room in Bushwick 2 mins from the L train,30940393,Sarah,Brooklyn,Bushwick,40.68869,-73.90581999999999,Private room,50,3,22,2019-04-11,1.76,2,0 +13007629,The spot in chinatown,3059285,Pierce,Manhattan,Chinatown,40.71536,-73.99794,Entire home/apt,290,2,3,2016-10-30,0.08,1,0 +9916371,Beautiful stylish Brooklyn apartmen,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94138000000001,Entire home/apt,120,3,3,2016-08-09,0.08,2,0 +28014733,Warm & Cozy Room in Sunnyside. Awesome Location!,137358866,Kazuya,Queens,Sunnyside,40.73703,-73.92179,Private room,38,30,0,,,103,245 +35496842,"Private, cozy, comfortable, it feels like home",127836236,Segun,Bronx,Williamsbridge,40.88125,-73.84921999999999,Entire home/apt,85,1,6,2019-07-04,6.0,1,362 +32477130,Sunny Artist's Loft,38786890,Sancar,Brooklyn,Clinton Hill,40.69151,-73.96059,Entire home/apt,120,3,2,2019-05-03,0.82,1,113 +7716148,Whole Floor In Cobble Hill,40206276,Jon,Brooklyn,Cobble Hill,40.6881,-73.99498,Entire home/apt,145,2,4,2016-07-08,0.09,1,0 +22224072,Beautiful & Modern in the Heart of East Village,13097902,Bruna,Manhattan,East Village,40.72652,-73.98966,Entire home/apt,250,2,29,2019-06-30,1.58,1,38 +8274113,Bed-Stuy Apartment w/ Rooftop Patio,1804684,Daniel,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93884,Private room,67,60,6,2019-06-22,0.13,1,266 +29083751,PRIME LOCATION CLEAN SOHO PRIVATE ROOM 2 BEDROOM,26860800,Jonathan,Manhattan,SoHo,40.72614,-74.00076,Private room,115,1,31,2019-06-12,3.39,1,1 +29761111,"Clean, Convenient & Comfy Apt in FLATIRON! :-)",33041007,Jenny,Manhattan,Midtown,40.74559,-73.98550999999999,Private room,139,4,14,2019-06-30,1.75,1,28 +20213442,Master Bedroom in Jazz Era Townhome,7285042,Max,Brooklyn,Crown Heights,40.67586,-73.9504,Private room,75,3,5,2017-10-28,0.22,1,0 +29460026,Beautiful Room with 2 Beds Near Metro.,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94384000000001,Private room,68,2,15,2019-05-15,1.76,3,365 +26877259,*Times Square Luxury Apartment Private Room*,172864847,Jae,Manhattan,Theater District,40.759640000000005,-73.98731,Private room,100,1,137,2019-07-07,12.05,1,36 +33042309,Cozy & Affordable Room in 3 Story Brownstone,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68613,-73.9295,Private room,100,1,1,2019-04-23,0.39,6,356 +31058918,"Dvine Home, 5 Minutes from JFK, FREE parking",227919091,Flyn,Queens,Jamaica,40.67546,-73.7974,Entire home/apt,65,2,27,2019-06-24,4.4,1,182 +13882858,Serene and Spacious Sunnyside Retreat,80686298,Dean,Queens,Sunnyside,40.74498,-73.91385,Entire home/apt,99,2,2,2016-07-27,0.06,1,0 +23110037,Nice Room for ONE (1) Person,130972997,Wilson,Brooklyn,Crown Heights,40.67544,-73.94023,Private room,45,2,21,2019-06-22,1.35,2,339 +32739899,Spacious Room in the Heart of East Village!,245637171,Min,Manhattan,East Village,40.72789,-73.98557,Private room,82,30,1,2019-05-11,0.51,8,364 +7262068,Studio apt. Central Park West,24884055,Monada,Manhattan,Upper West Side,40.79715,-73.96873000000001,Private room,80,1,0,,,1,0 +2049322,Private room in Brooklyn Loft,9446761,Paul,Brooklyn,Williamsburg,40.70371,-73.93344,Private room,45,7,0,,,1,0 +2065538,Sunny Place in Cool Hood,617671,Jason,Brooklyn,Crown Heights,40.67659,-73.95608,Entire home/apt,88,2,14,2018-07-13,0.21,1,16 +412180,"Morocco in Brooklyn with the flyest loft, Amazing!",2051961,Kim,Brooklyn,Bedford-Stuyvesant,40.69321,-73.9442,Entire home/apt,95,5,9,2018-09-03,0.1,1,0 +22058586,Private & Comfortable Room close to Manhattan!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95155,Private room,60,2,73,2019-06-30,3.82,3,180 +10134285,"Cute bedroom in Chinatown,",566660,Markus,Manhattan,Chinatown,40.71615,-73.99539,Private room,99,1,42,2018-01-01,0.98,1,0 +21802684,30+Day Stay: Designer Home with Skylight & Rooftop,137522531,Ali,Queens,Flushing,40.75759,-73.80815,Entire home/apt,228,5,50,2019-06-07,2.63,7,178 +9858259,"Private guest studio in the heart of Astoria, NYC",50451849,Bianca,Queens,Astoria,40.76993,-73.91762,Entire home/apt,65,2,92,2019-07-03,2.19,1,12 +2821294,Beautiful Furnished Room!,5986790,Gen,Manhattan,Washington Heights,40.83418,-73.94274,Private room,39,30,18,2019-05-27,0.3,6,168 +10446429,Studio in West Village/Cornelia St,11386786,Sam,Manhattan,West Village,40.7327,-74.00341,Private room,80,1,0,,,1,0 +14272980,Clean 1 Bed/with En Suite Shower,84684940,Clyde,Brooklyn,Flatbush,40.64831,-73.96181,Private room,50,3,98,2019-06-20,2.77,2,140 +17251611,"Cozy bdrm. Astoria, Queens. 10 min to Manhattan.",26561588,Tyler,Queens,Astoria,40.7578,-73.92368,Private room,40,2,1,2017-02-20,0.03,1,0 +6371373,Save$PrivateRoom walking distance to Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76525,-73.98895,Private room,140,1,159,2019-06-30,3.17,5,249 +9987543,Lovely Private Browstone Apt,9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68945,-73.94595,Private room,60,1,2,2016-01-05,0.05,2,0 +26576819,Cozy Em’s Place 2 (3 people),174492861,Siri,Queens,Jackson Heights,40.74942,-73.88248,Private room,49,2,6,2019-06-08,0.5,2,89 +12917057,Lower East Side Apartment,26476746,Zachary,Manhattan,Lower East Side,40.72118,-73.98697,Entire home/apt,140,4,6,2018-01-03,0.16,1,0 +34108545,Sunny top floor 1BR in Victorian Brooklyn,218940337,Julie,Brooklyn,Flatbush,40.63981,-73.96534,Entire home/apt,120,90,0,,,1,49 +30441795,Stunning Luxury Priv. Room: Prime Upper East!,184670155,James,Manhattan,Upper East Side,40.77566,-73.94747,Private room,100,1,6,2019-03-17,1.02,2,0 +26808322,10 MINS TO MANHATTAN! Very private & sunny room.,54640485,Cagkan,Queens,Long Island City,40.75463,-73.93448000000001,Private room,55,3,44,2019-07-01,3.75,1,37 +431865,Elegant Uptown Historic District Garden Apartment,361855,Kurt,Manhattan,Washington Heights,40.83451,-73.93885,Entire home/apt,275,3,50,2019-06-30,0.87,2,277 +20469589,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67257,-73.97775,Private room,90,1,0,,,2,0 +5804170,"Queens,Woodside.NY",30063582,Vic,Queens,Woodside,40.74905,-73.90185,Private room,37,1,0,,,1,0 +20436075,"Douglaston apartment Room B +(2nd room )",18996093,Leonard,Queens,Douglaston,40.757540000000006,-73.73068,Private room,45,1,12,2019-02-02,0.55,5,226 +24348514,For All Classical Lover's 2,96694697,Glory,Brooklyn,Sheepshead Bay,40.60759,-73.96023000000001,Private room,65,2,11,2019-03-01,0.77,2,156 +21325658,Room for rent,154375347,Stan,Manhattan,Kips Bay,40.74524,-73.97995,Private room,75,4,1,2017-10-28,0.05,1,0 +22224790,Large Bright FULL 1BD in the Heart of BUSHWICK !,1695734,Amira,Brooklyn,Bushwick,40.70108,-73.91409,Entire home/apt,95,3,4,2018-10-09,0.21,1,0 +20961894,Californiacation Studio with Garden in Bushwick,42422823,Arina,Brooklyn,Bushwick,40.70163,-73.92366,Entire home/apt,120,4,3,2019-01-09,0.14,1,0 +12897616,Upper West Side Room,70637655,Andrea,Manhattan,Upper West Side,40.80288,-73.96629,Private room,75,1,1,2016-06-13,0.03,1,0 +19531580,SUNNY N.Y.C. APARTMENT,8816087,Danilo,Manhattan,East Harlem,40.80183,-73.94358000000001,Entire home/apt,130,2,0,,,2,0 +31987806,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80042,-73.96146999999999,Private room,60,30,1,2019-06-16,1.0,32,317 +26080980,Magical Room in the Heart of West Village,12810839,Kytzia,Manhattan,West Village,40.73157,-74.00480999999999,Private room,90,2,1,2018-07-13,0.08,2,0 +16356884,Cozy shared male room at center of Manhattan III\),39528519,Max,Manhattan,Lower East Side,40.71239,-73.98626,Shared room,32,14,0,,,28,342 +35268953,87st304,19303369,Hiroki,Queens,Elmhurst,40.74045,-73.87776,Private room,30,30,0,,,37,0 +1497024,New York City Historical Brownstone Ground Floor,8000315,Naima,Manhattan,Harlem,40.82124,-73.94973,Entire home/apt,100,2,271,2019-06-30,3.85,2,270 +29870750,Creative House for Traveling Creatives,40883581,Morian,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95428000000001,Private room,55,1,4,2019-04-06,0.53,1,0 +22161395,Sunny Urban Jungle,100675420,Mama Batata,Brooklyn,Bedford-Stuyvesant,40.69129,-73.9523,Private room,70,1,87,2019-07-05,4.58,1,8 +31886403,"Large, sunny room with private bath.",238955568,George,Brooklyn,Kensington,40.63581,-73.96977,Private room,40,2,20,2019-06-10,3.8,1,6 +27359897,"ACintheroom!NEAR 3-4-A-C lines, quiet neighborhood",47782497,Robianddebbie,Brooklyn,East New York,40.67061,-73.8759,Private room,45,7,24,2019-06-29,2.11,3,313 +65556,"Room in S3rd/Bedford, Williamsburg",320422,Marlon,Brooklyn,Williamsburg,40.71368,-73.9626,Private room,60,3,0,,,1,0 +31622448,Home Studio Suite,4852748,Michelle,Manhattan,Harlem,40.8063,-73.9454,Private room,105,4,2,2019-05-31,1.15,6,119 +15774629,"Spacious, Great Location, Garden, 1 stop to City.",101883929,Timothy,Brooklyn,Boerum Hill,40.68326,-73.98004,Entire home/apt,182,4,83,2019-06-23,2.82,1,254 +18812046,nice /clean env.10 mins from JFK with free parking,130974654,Joseph,Queens,Cambria Heights,40.68722,-73.73254,Private room,80,5,23,2018-11-25,1.0,1,83 +9679310,Two Large Rooms in Union Sq Duplex,25165109,Alex,Manhattan,Gramercy,40.73429,-73.98689,Private room,160,2,1,2015-12-13,0.02,1,0 +6699725,Quiet room around corner fr. Subway,34914311,Sandrine,Bronx,Longwood,40.8198,-73.90341,Private room,99,1,0,,,1,0 +17744351,1 Bd furnished Bayridge Brooklyn NY,119029523,Ebada,Brooklyn,Fort Hamilton,40.62241,-74.02863,Entire home/apt,115,4,3,2019-05-19,0.48,3,295 +32189352,Wyndham Midtown 45 - Hotel Room,77021411,Jennifer,Manhattan,Midtown,40.75231,-73.97331,Private room,300,4,0,,,1,0 +12815139,Beautiful Tranquil Bright Prime Location 1 bedroom,33816358,Rachel,Brooklyn,Prospect Heights,40.67764,-73.9647,Entire home/apt,110,3,8,2017-05-22,0.23,1,0 +204065,St. James Pl Garden Studio 1block to PRATT &Gtrain,51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.96161,Entire home/apt,248,2,58,2019-06-04,0.61,6,199 +2782449,1BD on Smith St. in Carroll Gardens,621971,Ethan,Brooklyn,Carroll Gardens,40.68238,-73.99481,Entire home/apt,150,4,0,,,1,0 +22109528,Studio apartment with a view!,161519048,Ashleigh,Manhattan,Murray Hill,40.7487,-73.98123000000001,Entire home/apt,250,4,0,,,1,0 +21027182,Private ROOM & BATH (City Central) Time Square NYC,31929860,Bryan,Manhattan,Hell's Kitchen,40.76181,-73.9905,Private room,155,1,62,2019-06-02,2.87,4,307 +6157276,Bright LARGE BED near Manhattan,23591164,Angela,Queens,East Elmhurst,40.76664,-73.87576999999999,Private room,65,1,466,2019-06-22,9.16,4,331 +5904538,Spacious Midtown-East Bedroom/Apt,30667773,Alexander,Manhattan,Kips Bay,40.74405,-73.97780999999999,Private room,150,1,0,,,1,0 +33845173,"Cozy, Friendly Apt Share For Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66945,-73.95716999999999,Private room,64,30,1,2019-06-29,1.0,7,94 +30389504,"Sweet Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73947,-73.99776999999999,Entire home/apt,283,30,0,,,232,334 +25208477,1 bedroom apt in the heart of the east village,62183764,Lauren,Manhattan,East Village,40.7286,-73.98334,Entire home/apt,115,1,0,,,1,0 +3202590,The Lincoln,9209820,Althea,Brooklyn,Crown Heights,40.67138,-73.94949,Entire home/apt,225,3,76,2019-05-18,1.24,3,275 +16486996,Apartment in Park Slope / Rooftop Access,36431705,Upinder,Brooklyn,Gowanus,40.6714,-73.99257,Private room,75,4,7,2019-05-26,0.23,1,253 +35275242,Sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.74774,-73.94757,Private room,80,2,0,,,2,4 +17510140,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.76485,-73.98436,Entire home/apt,195,30,0,,,23,364 +1302684,"1 Bedroom, Near Subway, Wash Hts",3003533,Jeff,Manhattan,Washington Heights,40.84346,-73.94471,Entire home/apt,110,29,10,2018-08-20,0.14,1,205 +32838697,Habitación privada cerca aeropuerto la Guardia.,202350344,Diana Carolina,Queens,East Elmhurst,40.76091,-73.88686,Private room,45,2,11,2019-07-01,3.67,2,294 +3257345,Beautiful LES Apartment,417100,Tara,Manhattan,Chinatown,40.71338,-73.99226,Entire home/apt,135,1,18,2016-12-16,0.35,1,0 +21579960,"Comfy, spacious room- Astoria.",9956828,Nick,Queens,Astoria,40.76168,-73.91976,Private room,55,3,2,2017-12-16,0.1,1,0 +1427518,"Spacious, amenity-filled 1 BDR Williamsburg Apt",7654662,Elizabeth,Brooklyn,Williamsburg,40.71385,-73.93861,Entire home/apt,160,6,1,2013-09-07,0.01,1,0 +2243962,Spacious & Convenient UWS Apt,11461795,Helen,Manhattan,Upper West Side,40.79859,-73.9697,Private room,125,2,0,,,1,0 +11960466,Spacious 1BR Williamsburg Apartment,18994094,Kailei,Brooklyn,Williamsburg,40.712140000000005,-73.95837,Entire home/apt,175,2,28,2019-04-22,0.7,1,0 +10251082,"Large, private 2BR in historic brownstone",14084903,Polina,Brooklyn,Prospect Heights,40.67473,-73.96529,Entire home/apt,295,3,182,2019-06-26,4.33,1,226 +22815257,room C Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81351,-73.95186,Private room,65,1,0,,,11,364 +8404181,Crown Heights Great Single Bedroom,44273727,Wes,Brooklyn,Crown Heights,40.67416,-73.93854,Private room,70,1,3,2015-11-02,0.06,1,0 +33223,Cozy BR in Wiliamsburg 3 Bedroom,72014,Lulú,Brooklyn,Williamsburg,40.71165,-73.96087,Private room,80,3,200,2019-06-22,1.86,4,262 +9490600,Room in Williamsburg penthouse,26415140,Gabriele,Brooklyn,Williamsburg,40.71002,-73.94796,Private room,50,5,0,,,1,0 +23812583,★ Clean/Trendy/Sunny room ★ in the center of NYC,4427689,Nour,Manhattan,Hell's Kitchen,40.76489,-73.98822,Private room,129,5,97,2019-06-19,6.11,2,114 +7980191,1 Bedroom Apt in Midtown Manhattan,27331181,Telitha,Manhattan,Murray Hill,40.74763,-73.9733,Entire home/apt,250,2,26,2017-01-02,0.58,1,0 +35520721,A Treasure by The Water,26543881,Walt & Daisy,Queens,Rockaway Beach,40.58447,-73.81704,Entire home/apt,200,3,2,2019-06-30,2.0,1,261 +20235701,Very large sunny one bedroom that can be for 2-3,87814281,Sharon,Manhattan,Harlem,40.83103,-73.94653000000001,Private room,80,1,0,,,2,0 +17267017,Spacious Private 1BR with more sleeping space,95341719,Estie,Brooklyn,Crown Heights,40.67013,-73.94397,Entire home/apt,165,2,23,2019-07-04,0.83,3,182 +3167768,Family-friendly 3-bedroom condo,16067583,Natasha,Brooklyn,Prospect Heights,40.67765,-73.96378,Entire home/apt,275,4,19,2019-07-05,0.32,1,34 +8540941,Sunny & Quiet Room in Woodside,6653707,David,Queens,Sunnyside,40.748540000000006,-73.91338,Private room,37,1,0,,,1,0 +476527,1RW- CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72893,-73.98278,Entire home/apt,89,30,57,2019-05-05,0.67,6,0 +25285275,Central SPACIOUS Triplex - LOCATION LOCATION LOC..,191007759,Robert,Manhattan,Gramercy,40.73773,-73.98321999999999,Entire home/apt,250,6,11,2019-06-29,0.85,1,223 +14230982,Great private room with all amnetities!,86510175,Oonamaria,Brooklyn,Cypress Hills,40.68139,-73.89034000000001,Private room,55,2,7,2016-08-29,0.2,1,0 +34790625,Sublet in the upper west side,249325265,Abdulla,Manhattan,Upper West Side,40.79632,-73.969,Private room,79,1,7,2019-06-21,5.0,1,42 +20302205,"Quiet, Spacious, Artsy 1-Bedroom in Ridgewood",38266438,Alex,Queens,Ridgewood,40.70216,-73.89944,Entire home/apt,75,10,1,2017-08-25,0.04,1,0 +25236786,Ensuite Private bath with Comfortable bed,62533391,Yvonne,Brooklyn,Borough Park,40.63404,-74.0072,Private room,60,1,20,2019-06-04,1.52,7,177 +4756578,"Clean | Green | Spacious +WB BK Sanctuary! 2BR/2BA",24544724,Katrina,Brooklyn,Williamsburg,40.71383,-73.96289,Entire home/apt,298,3,16,2019-06-23,0.39,1,4 +32518771,Sunny and cozy studio 30 min from Manhattan,1938828,Shay,Brooklyn,East Flatbush,40.64882,-73.94537,Entire home/apt,85,6,12,2019-07-05,3.33,3,215 +1939283,Wyckoff Street Garden Apartment,7329934,Laurence,Brooklyn,Gowanus,40.68437,-73.98654,Entire home/apt,130,5,36,2019-06-29,0.53,1,224 +22672516,Artsy 1 bedroom Apartment in East Village,15537429,Walid,Manhattan,East Village,40.72785,-73.97976,Entire home/apt,155,1,80,2019-06-26,4.62,3,21 +3544610,Apartment near the US Open,17845064,Ingrid,Queens,Forest Hills,40.733340000000005,-73.85433,Entire home/apt,150,1,0,,,1,364 +476899,NYC studio in ST MARKS PLACE & 1AVE,2363997,Teresa,Manhattan,East Village,40.72693,-73.98521,Entire home/apt,155,6,17,2018-10-11,0.2,1,0 +28513774,Cozy 2 Bedroom Apt w/ Patio & Hot Tub near Trains,108249932,Yngrid And Jiovanni,Brooklyn,East New York,40.6757,-73.88925,Entire home/apt,175,3,22,2019-06-30,2.89,2,285 +9757351,Two Bedroom next to Central Park,7952263,Anne,Manhattan,Upper East Side,40.78389,-73.95306,Entire home/apt,200,4,1,2016-08-27,0.03,1,0 +27832008,Private 1BR with Private Bathroom feet from subway,104607422,Tunde,Manhattan,Harlem,40.83005,-73.93992,Entire home/apt,119,1,29,2019-06-30,3.02,1,103 +32966499,A Sweet Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.6758,-73.94145999999999,Entire home/apt,100,3,6,2019-05-12,2.17,4,246 +30226880,Big room near Central Park,206648175,Bella,Manhattan,East Harlem,40.78535,-73.94268000000001,Private room,99,2,12,2019-06-12,1.64,1,176 +16487157,Great room 3 min to train 25 min to Manhattan.,85499618,Ibi,Queens,Rego Park,40.72507,-73.86959,Shared room,110,1,5,2019-05-18,0.39,1,56 +28751660,Alcove Studio 10 mins walk to Times Square,84720132,Nidhi,Manhattan,Hell's Kitchen,40.76591,-73.99493000000001,Entire home/apt,300,4,4,2019-05-11,0.44,1,5 +14473545,Heart of BK - 1 bedroom w/extra room,37419591,Phil,Brooklyn,Clinton Hill,40.6919,-73.96511,Entire home/apt,140,6,9,2018-01-01,0.26,1,0 +19677749,Midtown Room,117295184,Dorian,Manhattan,Midtown,40.76554,-73.98245,Private room,80,1,46,2019-06-25,1.93,1,6 +30767259,Luxury Private Bed in Brooklyn 2L-1,230192510,Zach,Brooklyn,Fort Greene,40.6969,-73.97565999999999,Private room,48,30,0,,,25,340 +19567154,"Cozy, Private Apartment with Balcony",2128192,Jacqueline,Brooklyn,Greenpoint,40.72485,-73.94582,Private room,99,5,0,,,1,0 +28811363,Warm little oasis in Brooklyn with Full size bed,42561290,Carla,Brooklyn,East New York,40.66197,-73.86794,Private room,30,2,3,2019-02-01,0.46,4,158 +9863626,"Private room in charming, comfortable & bright apt",11402864,Milen,Brooklyn,Crown Heights,40.66891,-73.9533,Private room,50,2,4,2017-07-24,0.1,1,0 +35619784,Patty Home,267951770,Patricia,Queens,Ozone Park,40.68761,-73.84241,Entire home/apt,100,1,0,,,1,189 +13205892,"Gigantic Apartment, Fun Roommates, Best Location!",1837583,Ben,Manhattan,Two Bridges,40.71141,-73.99408000000001,Private room,100,3,0,,,1,0 +22291938,"Modern, Private Williamsburg Bedroom",83170219,Hannah,Brooklyn,Williamsburg,40.7052,-73.94397,Private room,60,2,1,2018-02-13,0.06,1,0 +14294585,"Top 7th floor sunny 1 bedroom - Sugar Hill, Harlem",24103270,Andres,Manhattan,Harlem,40.82485,-73.94366,Entire home/apt,49,30,11,2019-03-02,0.32,1,36 +29657991,1BR Apartment close to Prospect Park,16502641,Marni,Brooklyn,South Slope,40.66036,-73.98494000000001,Entire home/apt,93,5,10,2019-07-07,1.6,1,2 +12303877,ROOM in Great Location,51522009,Diego,Manhattan,Hell's Kitchen,40.76446,-73.99175,Private room,80,3,0,,,1,0 +19566229,法拉盛(Flushing)独立出入Basement套房出租。2房1卫 2Rooms/1Bath,137129564,Bing,Queens,Flushing,40.75388,-73.81560999999999,Private room,54,1,70,2019-07-01,2.86,4,85 +5893277,Enjoy Views of NYC Skyline,30606207,Liza,Queens,Ditmars Steinway,40.77842,-73.92549,Private room,175,30,5,2019-03-25,0.31,1,283 +10732341,Entire Home Cozy Studio on Upper East Side,34040597,Joseph F,Manhattan,Upper East Side,40.76443,-73.95833,Entire home/apt,130,2,19,2019-07-01,0.45,1,13 +30007787,SUNNY STUDIO IN CHELSEA,4932419,Andrew,Manhattan,West Village,40.73836,-74.00128000000001,Entire home/apt,130,8,6,2019-05-26,1.13,1,1 +29381786,La Cabina al Mare,25059454,Luca,Queens,Rockaway Beach,40.58409,-73.81665,Entire home/apt,65,2,13,2019-07-06,1.54,1,73 +12836932,Spacious Private room near Columbia,70082670,Gina,Manhattan,Morningside Heights,40.80539,-73.96409,Entire home/apt,92,1,2,2016-05-09,0.05,1,0 +31057368,2 bedroom apt in the heart of Bushwick (House),13143585,Robert,Brooklyn,Bushwick,40.69577,-73.92612,Entire home/apt,250,2,1,2018-12-30,0.16,2,0 +33154669,Center Located OneBedroom CloseTo LGA Train7/E/F,90131587,Yu Qun,Queens,Elmhurst,40.73716,-73.87957,Entire home/apt,109,2,3,2019-05-26,1.15,1,0 +22087812,Cozy Studio with Private Entrance,161352782,Linda,Staten Island,Clifton,40.61603,-74.08666,Entire home/apt,65,1,70,2019-06-28,8.43,1,300 +35428765,Very cosy apartment in uptown Manhattan,44452858,Taner,Manhattan,Inwood,40.86639,-73.92369000000001,Entire home/apt,150,7,0,,,1,8 +28914077,✦Luxury Upper East Side Studio Apartment✦,217948247,Jodi,Manhattan,Upper East Side,40.77707,-73.95154000000001,Entire home/apt,275,2,8,2019-01-02,0.91,1,0 +30859838,Bright and stylish West Village gem,46389451,Martin,Manhattan,West Village,40.73245,-74.00328,Entire home/apt,190,3,13,2019-06-25,2.36,3,115 +27786467,Spacious Harlem Home,7692306,Gordon,Manhattan,Harlem,40.80597,-73.95348,Entire home/apt,200,3,2,2018-12-31,0.24,1,16 +9619848,Beautiful apt 2 blocks from Central Park,1509237,Leandro,Manhattan,East Harlem,40.79686,-73.9459,Entire home/apt,199,2,5,2019-05-02,0.12,2,177 +34352766,*PRIVATE* Bedroom near Central Park,259357065,Clement,Manhattan,Midtown,40.76381,-73.97314,Private room,175,3,0,,,1,0 +36037899,Beautiful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.712590000000006,-73.96669,Private room,95,2,0,,,5,193 +15056050,ENTIRE Cozy 1BR apt. 5 min from Q/B train,15198834,Leandro,Brooklyn,Flatbush,40.64837,-73.9618,Entire home/apt,88,4,8,2018-08-20,0.24,1,0 +2201581,Sunny Brooklyn Home,11231506,Reid,Brooklyn,Bedford-Stuyvesant,40.69587,-73.94037,Entire home/apt,85,4,9,2019-06-03,0.22,1,1 +8045552,"A Gem Studio Apartment +Astoria,NYC",42488595,Tony,Queens,Astoria,40.76762,-73.90727,Entire home/apt,87,3,151,2019-06-17,3.32,1,210 +33486731,"Sunny, spacious Apt. near Prospect Park",21877010,Clara,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.95926,Entire home/apt,120,4,3,2019-05-26,1.15,1,0 +29778083,NYC East Village 1 BR / Studio,28418563,Eli,Manhattan,East Village,40.72546,-73.98396,Entire home/apt,179,1,20,2019-07-01,2.65,1,268 +20156382,"The BABY ""O""",143431362,Okela,Brooklyn,East Flatbush,40.63831,-73.94572,Private room,89,1,14,2019-05-05,0.62,1,364 +20941420,Room in Chelsea,15487773,Sorcha,Manhattan,Chelsea,40.74063,-73.99998000000001,Private room,100,2,4,2017-10-30,0.19,1,0 +14737992,Large bedroom in Luxury bldg West Harlem,91804427,Laura,Manhattan,Harlem,40.82483,-73.95394,Private room,41,14,25,2019-06-05,0.75,1,6 +19944880,The Bedford,5350896,Zaher,Brooklyn,Williamsburg,40.71312,-73.9617,Entire home/apt,175,3,30,2019-06-25,1.28,1,24 +35728246,Massive Victorian Home with Parking!,122178596,Elana,Brooklyn,Flatlands,40.62948,-73.94088,Entire home/apt,195,2,0,,,3,80 +10099080,Private large room in Bushwick,7375144,Polly,Brooklyn,Bushwick,40.70348,-73.91476999999999,Private room,65,1,0,,,1,0 +23992737,Big Room in Quiet Neighborhood,4841646,Esmee,Queens,Elmhurst,40.72806,-73.87572,Private room,40,1,24,2018-10-28,1.68,1,0 +33963211,Hang The World In Your Memory© (SLEEPS 1 to 5),233986410,S,Bronx,Parkchester,40.83754,-73.85764,Private room,150,1,0,,,1,267 +4831603,Cozy Lower East Side Apartment,24872048,Kelly,Manhattan,Lower East Side,40.72229,-73.98913,Entire home/apt,225,1,0,,,1,0 +17812444,3 bedroom in the heart of the west village,54850437,Lauren,Manhattan,West Village,40.73581,-74.00666,Entire home/apt,185,4,22,2019-07-02,0.81,1,22 +20137347,Cozy One Bedroom in Spanish/East Harlem,51532290,Janelle,Manhattan,East Harlem,40.79815,-73.93475,Entire home/apt,82,2,3,2017-08-24,0.13,1,0 +15133721,"A Clean, Quite, Great room for NY visit.",95936966,Yenpo,Queens,Forest Hills,40.71871,-73.8532,Private room,59,3,9,2017-02-19,0.27,1,95 +24244796,ARTIST LOFT ON HISTORIC TRENDY BLOCK IN SOHO,70091196,Frances,Manhattan,Nolita,40.72402,-73.99452,Entire home/apt,199,2,53,2019-07-04,4.02,1,99 +35228252,LARGE PERFECT 1 bedroom Clean and Chic w/ JACUZZI,98442821,Darlene & Richard,Manhattan,East Village,40.7267,-73.97965,Entire home/apt,205,1,1,2019-06-02,0.81,1,349 +18646653,Upper East Side 1 bedroom near Central park,33786241,Sean,Manhattan,Upper East Side,40.77481,-73.95640999999999,Entire home/apt,123,3,32,2019-05-27,1.22,1,4 +19308804,2br/1bth Garden Townhouse Apartment,135061108,Carmelo,Brooklyn,East Flatbush,40.65042,-73.94842,Entire home/apt,225,1,6,2019-07-01,0.25,2,152 +8813306,Cozy Apartment Near Times Square,4385138,Mike,Manhattan,Hell's Kitchen,40.7567,-73.99277,Entire home/apt,185,2,241,2019-06-24,5.65,1,22 +13326584,"Cosy room in NYC, two blocks from Central Park!",37218085,Marie,Manhattan,Upper West Side,40.79964,-73.96437,Private room,70,3,2,2016-08-13,0.06,1,0 +15284819,Wyndham Midtown 45 New York City Studio,60085031,Vacation Generation,Manhattan,Midtown,40.7536,-73.97306,Entire home/apt,125,2,9,2017-09-15,0.34,1,0 +239899,Spacious & Charming by Prospect Pk,1258363,Todd,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.96003,Entire home/apt,80,21,5,2018-12-19,0.12,1,0 +7037537,Gigantic Private Brooklyn Apartment,36897569,Nikki,Brooklyn,Greenpoint,40.72442,-73.93956999999999,Entire home/apt,115,10,2,2016-07-06,0.04,1,0 +35185876,PRIME Chelsea Modern Luxury Home *****,205909,Nikki,Manhattan,Chelsea,40.74042,-73.99883,Entire home/apt,225,1,0,,,1,228 +3822172,Colorful 2 Bedroom in Brooklyn,19663195,Alison,Brooklyn,Williamsburg,40.71863,-73.94416,Entire home/apt,75,24,0,,,1,27 +20206749,Ideal Greenpoint 1 Bedroom,3402375,Colin,Brooklyn,Greenpoint,40.73038,-73.95548000000001,Entire home/apt,189,1,0,,,1,0 +4623771,Bright + Cheerful Apt- the Real NYC,23267314,Millie,Manhattan,East Harlem,40.79127,-73.94431,Entire home/apt,147,2,45,2019-05-15,0.92,2,154 +22531031,Comfortable Brooklyn Studio,56757345,Brenda,Brooklyn,East Flatbush,40.64857,-73.94407,Entire home/apt,89,2,43,2019-07-07,2.74,1,10 +26084024,"Quiet, sunlit apartment in heart of Brooklyn",23718772,Allan,Brooklyn,Crown Heights,40.67415,-73.96291,Entire home/apt,139,2,2,2019-05-26,0.7,1,12 +793951,Beautiful Bedroom in Harlem,4182834,Cruz,Manhattan,Harlem,40.82169,-73.93881999999999,Private room,78,1,52,2017-08-14,0.66,1,0 +21934601,Convenient x Cozy Carroll Street Stay,41617175,Emily,Brooklyn,Gowanus,40.67787,-73.98635,Private room,70,2,1,2017-12-30,0.05,1,0 +27057237,"Bright, Industrial-Chic 1 Bedroom w/Outdoor Patio",203585325,Judd,Brooklyn,Prospect-Lefferts Gardens,40.6597,-73.94863000000001,Entire home/apt,200,2,4,2019-03-20,0.34,1,11 +20148331,"BIG-3 BDRM house, 1hr to Manhattan, near beach",7927832,Yulia,Staten Island,"Bay Terrace, Staten Island",40.55182,-74.14439,Entire home/apt,150,3,1,2018-08-16,0.09,1,0 +34205576,Convenient ground floor duplex - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70998,-73.94694,Private room,155,3,1,2019-05-27,0.7,3,365 +24455779,Chic & Cozy Brooklyn Apartment,27532205,Nichole,Brooklyn,Bushwick,40.68994,-73.90526,Private room,65,1,8,2019-07-06,3.08,1,106 +5804184,Dreamy belltower room in huge loft,30112106,John,Brooklyn,Bushwick,40.70033,-73.93964,Private room,45,6,13,2019-06-23,0.25,1,0 +33585726,Amazing New 1 Bedroom in the UES #6132,113805886,Yaacov,Manhattan,Upper East Side,40.77721,-73.95222,Entire home/apt,206,30,0,,,33,189 +21695415,"Beautiful, private 1 BR Apt in Hamilton Heights",42237462,Stephanie,Manhattan,Harlem,40.82722,-73.9457,Entire home/apt,78,6,4,2018-09-29,0.2,1,0 +34120977,"Chic, Spacious, Bright BK 2-Bedroom w/ Backyard",257576232,Russell,Brooklyn,Williamsburg,40.70992,-73.94969,Entire home/apt,305,2,14,2019-06-30,6.46,1,296 +30387351,Palatial Wall Street 1BR w/ Luxury gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.70492,-74.00678,Entire home/apt,289,30,0,,,232,341 +10880196,Beautiful Large Apartment in NYC,617990,Christopher,Queens,Jackson Heights,40.75055,-73.88365999999999,Private room,89,14,4,2017-02-07,0.1,2,0 +16614713,Brooklyn Refuge-Private Bedroom w/ Sitting Room,109667882,Hildegaard,Brooklyn,South Slope,40.66489,-73.9805,Private room,80,2,35,2019-06-23,1.16,1,88 +19430074,Quiet Manhattan: top floor 1 BR across from park,3600282,Joel,Manhattan,Inwood,40.8674,-73.92411,Entire home/apt,99,3,4,2018-04-22,0.18,1,0 +19952847,Spacious 2 BDR APT BROOKLYN Sleeps 8!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64323,-73.95085999999999,Entire home/apt,95,2,43,2019-07-01,1.97,2,338 +4435766,West Village - Celebrities + LIGHT,23025661,Lee,Manhattan,West Village,40.73191,-74.00679000000001,Entire home/apt,300,3,0,,,1,0 +33094622,BEAUTIFUL 1 BED ROOM 10 MINS FROM JFK,29349060,Ode,Queens,St. Albans,40.6853,-73.76814,Private room,55,1,12,2019-06-18,3.13,3,180 +36201798,A specious and bright 1 bedroom in hart of Queens,272267421,Darkhan,Queens,Maspeth,40.73455,-73.88899,Private room,50,1,0,,,3,73 +9945127,Convenient & Spacious & Feel Good Apartment,14521821,Koen,Brooklyn,Brooklyn Heights,40.69261,-73.99252,Entire home/apt,200,2,2,2016-07-25,0.05,1,0 +938022,Private Bedroom in Williamsburg,1866827,Gregory,Brooklyn,Williamsburg,40.7078,-73.94827,Private room,99,1,94,2019-06-16,1.22,1,358 +23548260,Spacious one bedroom apartment in Chelsea,52751563,Rory,Manhattan,Chelsea,40.74248,-73.99568000000001,Entire home/apt,96,1,32,2019-06-02,2.03,1,2 +11651505,"与众不同,方便停车。值得一试!",61804662,Niki,Queens,Flushing,40.76049,-73.81633000000001,Private room,55,1,126,2019-06-18,3.13,2,180 +30352862,Comfy and Artsy Big Room in EAST VILLAGE,64934891,Scarlett,Manhattan,East Village,40.7219,-73.97819,Private room,70,3,0,,,1,0 +28859453,"Gorgeous, Prime West Village Apt!",93705483,Andrea,Manhattan,West Village,40.73161,-74.00171999999999,Entire home/apt,310,2,4,2019-06-21,0.48,2,8 +34280940,"Mi casa es tu casa, Habitación 1",241565326,Valentina,Queens,Woodside,40.7432,-73.90304,Private room,50,1,16,2019-07-03,7.06,2,81 +35827600,Amazing apartment half block away from the subway,64185868,Adriana,Brooklyn,Bedford-Stuyvesant,40.67822,-73.90938,Private room,50,5,1,2019-06-19,1.0,1,32 +30574688,Modern&pretty 3-B apt near everything you want!!!,33064599,Yukee,Manhattan,Upper West Side,40.80002,-73.9671,Entire home/apt,199,1,4,2019-04-23,0.68,6,320 +21913859,Private room in East Village(Female guest only),34281260,Reese,Manhattan,Stuyvesant Town,40.727340000000005,-73.97203,Private room,65,2,6,2017-12-29,0.31,1,0 +35911322,Dope Yurt in Brooklyn,1648806,Maraliz,Brooklyn,Williamsburg,40.71358,-73.94091999999999,Private room,60,1,0,,,2,173 +19686426,PRIVATE ROOM IN SPACIOUS APARTMENT IN WILLIAMSBURG,15820210,Scott,Brooklyn,Williamsburg,40.70932,-73.93489,Private room,60,2,36,2019-07-06,1.96,2,52 +33930406,Absolutely Beautiful!,20851517,Maggie,Manhattan,Hell's Kitchen,40.76597,-73.9893,Private room,98,6,2,2019-05-14,0.97,3,4 +13440481,Magnificent Apartment Near the Central Park 4BDR!,17385374,Dennis J.,Manhattan,Upper East Side,40.76642,-73.97107,Private room,301,3,0,,,1,83 +2066165,Cozy room in NYC 5,5164854,Lilia,Manhattan,Harlem,40.82078,-73.93771,Private room,45,4,19,2019-04-10,0.31,8,42 +1578776,Nice private room in Astoria,4645357,Beatrix,Queens,Long Island City,40.75909,-73.93217,Private room,51,1,165,2019-06-23,2.36,1,361 +1221517,Private Room (Cozy & Clean) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.8035,-73.94041,Private room,41,30,4,2018-07-01,0.09,5,217 +271083,Sleep & Wake near Botanical Gardens,1217923,Kevin,Brooklyn,Prospect-Lefferts Gardens,40.65772,-73.96131,Entire home/apt,93,4,115,2019-06-12,1.25,1,312 +22001621,Entire Loft Style 1BR Apartment in Greenpoint,103863147,Gabriele,Brooklyn,Greenpoint,40.73388,-73.95536,Entire home/apt,159,3,32,2019-06-18,1.67,1,56 +15968426,Comfy spacious Astoria aptmt 15m from Manhattan,2753243,Jwanah,Queens,Astoria,40.76248,-73.92421999999999,Private room,56,3,0,,,1,0 +30405178,Luxury Apartment in Midtown West,51937277,Jessica,Manhattan,Hell's Kitchen,40.75399,-73.99764,Entire home/apt,243,2,14,2019-05-26,1.89,1,93 +3549074,Modern Townhouse - Chic Sunny Room - L/J/A/C Train,17866326,Rony,Brooklyn,Bushwick,40.70228,-73.92824,Private room,54,3,2,2017-01-02,0.05,2,0 +11178582,Charming bedroom downtown,6980995,Dominik,Manhattan,Chinatown,40.71312,-73.99669,Private room,90,1,5,2017-05-19,0.12,5,0 +35805037,Lovely & Spacious 2 Bedroom Apartment,269345069,Joyce,Brooklyn,Vinegar Hill,40.70112,-73.98402,Entire home/apt,225,2,1,2019-06-27,1.0,1,303 +32474426,Private Room in Heart of Brooklyn,35004442,Perrian,Brooklyn,Bedford-Stuyvesant,40.697,-73.93788,Private room,96,2,2,2019-06-21,1.82,1,103 +1942935,Family house in South Park Slope,1479666,Maria,Brooklyn,South Slope,40.66583,-73.98956,Entire home/apt,150,14,10,2016-08-06,0.21,1,0 +31065551,Room 25 min away from Manhattan 7train/busQ67,31044879,Ara,Queens,Sunnyside,40.73718,-73.9209,Private room,60,3,8,2019-07-01,1.27,2,0 +14698446,纽约之家(SunnyHome5),45600001,Amy,Queens,Flushing,40.7445,-73.83171999999999,Private room,50,1,31,2019-06-16,0.91,3,79 +32428327,Huge Bedroom in Gorgeous Sunlit-Apartment in Wahi!,112430492,Justin,Manhattan,Washington Heights,40.83591,-73.94033,Private room,75,1,5,2019-06-29,1.19,1,0 +3605654,Large 1 bedroom/bathroom w/balcony,18170442,Giuliana,Manhattan,Financial District,40.7055,-74.00865999999999,Entire home/apt,165,1,0,,,1,0 +24234359,Town House in Popular Forte Green,2560891,Petra,Brooklyn,Fort Greene,40.69613,-73.97117,Entire home/apt,95,7,6,2018-12-03,0.45,1,19 +16674233,Huge Comfy Room,8254680,Juliette,Brooklyn,Bushwick,40.70163,-73.9227,Private room,49,2,0,,,1,0 +23899015,Beautiful Brooklyn Brownstone!,23422026,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93715999999999,Entire home/apt,125,3,0,,,1,125 +17265284,"Luxury/3 bdrms/2 baths/private parking/1,000 sqft",116396065,Amy,Brooklyn,Sheepshead Bay,40.6027,-73.9486,Entire home/apt,179,2,101,2019-07-06,3.53,1,211 +3857863,Studio In Townhouse,19902271,John & Catherine,Manhattan,Washington Heights,40.83602,-73.94294000000001,Private room,105,3,104,2019-06-24,1.79,1,288 +3798874,Spacious Duplex Garden Apt Park Slope Brooklyn,19510462,Tracey,Brooklyn,Park Slope,40.68098,-73.97925,Entire home/apt,275,3,4,2016-09-17,0.07,1,0 +13634292,"Positive and Spacious Bedroom in Sunnyside, Queens",12722812,Dominic,Queens,Sunnyside,40.73846,-73.92273,Private room,60,4,6,2017-09-04,0.17,1,0 +30064760,Spacious Sunny Bedroom in Bushwick/Ridgewood,12625398,Marcela,Queens,Ridgewood,40.70581,-73.90978,Private room,43,2,4,2019-04-21,0.55,1,0 +19413230,2 bedroom flat in Greenwich Village New York,136098610,Lydia,Manhattan,West Village,40.73247,-74.00335,Entire home/apt,225,2,54,2019-06-20,2.22,1,79 +14043849,Comfy private room in Williamsburg's top location!,48100358,Ivan,Brooklyn,Williamsburg,40.70843,-73.9588,Private room,54,1,148,2019-06-22,4.11,3,19 +20325986,Brooklyn Condominium - Bushwick,145013050,Dylan,Brooklyn,Bushwick,40.70423,-73.91595,Private room,75,1,3,2017-09-01,0.13,1,0 +17027226,"Modern,Elegant,Private,with parking spot,safe area",114219274,Safa,Brooklyn,Fort Hamilton,40.62203,-74.0303,Entire home/apt,87,1,116,2019-06-27,3.99,1,242 +14722273,Midtown 3 BR Elevator - Best Location,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76071,-73.99032,Entire home/apt,175,30,4,2019-03-31,0.21,91,138 +7928917,Studio in Full Service Chelsea Bldg,41810578,Anisha,Manhattan,Chelsea,40.7393,-73.99609,Entire home/apt,215,1,0,,,1,0 +21199630,Updated 1 Bedroom Best Location Modern Finishes,61391963,Corporate Housing,Manhattan,Upper East Side,40.7717,-73.96115999999999,Entire home/apt,125,30,5,2018-12-14,0.26,91,347 +2011692,STAYING IN MANHATTAN ,2933058,Anne,Manhattan,Morningside Heights,40.80446,-73.96366,Private room,95,4,9,2018-10-13,0.13,1,0 +32777169,Beautiful Bedroom in Manhattan,53725579,William,Manhattan,Washington Heights,40.84332,-73.93829000000001,Private room,45,1,20,2019-06-24,4.88,3,227 +19177019,Bright Designers' Apartment in Historic Brownstone,1382888,Sam & Stefanie,Brooklyn,Greenpoint,40.72781,-73.95526,Entire home/apt,215,3,2,2017-11-30,0.09,1,0 +28011840,Beautiful 2 Bedroom Apartment Near LGA and City,70774951,Farhan,Queens,East Elmhurst,40.76708,-73.8795,Entire home/apt,129,1,52,2019-06-21,4.92,3,296 +34429111,Central Manhattan Shared Ladies Apartment,247453895,Kamila,Manhattan,Murray Hill,40.74532,-73.97534,Shared room,43,2,2,2019-06-01,1.43,3,358 +35599237,Spacious Williamsburg Apartment (PERFECT location),3078929,Sonia,Brooklyn,Williamsburg,40.70919,-73.95755,Entire home/apt,100,30,0,,,1,235 +3265275,"2BR, UWS, Doorman, Balcony, CntrlPK",16512899,Jeremy,Manhattan,Upper West Side,40.7898,-73.9708,Entire home/apt,200,1,0,,,1,0 +24622596,Two Bridges Private Escape,16754308,Marcel,Manhattan,Lower East Side,40.71152,-73.99166,Private room,59,30,4,2019-03-31,0.34,1,52 +29653847,Luxurious Duplex Condo in the heart of Brooklyn,223198021,Roy,Brooklyn,Prospect-Lefferts Gardens,40.66235,-73.94619,Entire home/apt,165,2,19,2019-06-29,2.3,1,102 +34746555,The Little Italian Manor,139871943,Patrick,Manhattan,Little Italy,40.71889,-73.99716,Private room,100,30,0,,,3,327 +26978092,Private room for all Midtown attractions,202979735,Troy,Manhattan,Hell's Kitchen,40.76092,-73.9922,Private room,180,2,5,2019-04-21,0.48,1,16 +34537321,Pleasant & comfortable furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75972,-73.96146999999999,Entire home/apt,110,30,0,,,8,331 +5266736,Cozy Garden Flat.,27261471,Philmore,Brooklyn,Canarsie,40.64716,-73.89403,Entire home/apt,120,2,1,2019-06-30,1.0,2,140 +20679388,SPECTACULAR Midtown East location!,21464170,Js,Manhattan,Midtown,40.7531,-73.97085,Private room,115,1,33,2019-06-23,1.49,1,0 +15520792,Huge & Sunny Room in Williamsburg w Roof,42328181,Guillaume,Brooklyn,Williamsburg,40.71969,-73.94135,Private room,100,2,0,,,1,0 +2062630,Large 1 bedroom apartment (shared),6313448,Lexy,Bronx,Bronxdale,40.85667,-73.86543,Entire home/apt,80,1,1,2014-08-19,0.02,1,0 +21161038,Red Hook Garden Apartment,11310249,Adam,Brooklyn,Red Hook,40.67844,-74.01058,Entire home/apt,120,2,98,2019-06-10,4.64,1,193 +34654811,"JUST 4.5 MILES FROM MANHATTAN, NEAR THE TRAIN",132786535,Carlos,Queens,Middle Village,40.7125,-73.87703,Entire home/apt,169,2,4,2019-06-15,2.79,2,155 +27874671,room in a soho loft,3968209,Swetha,Manhattan,SoHo,40.72099,-73.99920999999999,Private room,100,3,8,2019-04-29,0.81,2,361 +20405958,2BED 2 BATH CENTRAL PARK /BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.776,-73.98815,Entire home/apt,300,30,7,2019-03-29,0.85,25,312 +1316961,Huge Sunny Apt Hip/Family Area,772862,Jesse,Brooklyn,Clinton Hill,40.68645,-73.96587,Entire home/apt,160,3,24,2019-05-18,0.33,1,365 +5602369,3 bedroom brownstone duplex,1407325,Przemek,Brooklyn,Prospect Heights,40.67909,-73.97315,Entire home/apt,250,5,17,2018-12-31,0.33,1,36 +29661866,Minimal East Village studio in the BEST location!,20087466,Adela,Manhattan,East Village,40.724340000000005,-73.98018,Entire home/apt,110,3,15,2019-04-17,1.89,1,0 +29233640,Gorgeous Big 2 BedRoom Apt in Brooklyn Brownstone,220232423,Ella,Brooklyn,Bay Ridge,40.63432,-74.02663000000001,Entire home/apt,119,1,32,2019-07-03,3.6,1,276 +12885921,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74472,-73.99266,Entire home/apt,280,30,3,2019-03-03,0.1,87,364 +26979053,Newly renovated House next to Downtown,202979435,Outpost,Brooklyn,Gowanus,40.68188,-73.98978000000001,Private room,96,30,1,2018-08-29,0.1,2,333 +36411407,Brand new 1 bedroom steps from Soho!,33917435,Mike,Manhattan,Lower East Side,40.71825,-73.99019,Entire home/apt,150,4,1,2019-07-06,1.0,1,13 +34111820,Quiet Uptown Stay in Historic Building,29740456,Giovanny,Manhattan,Washington Heights,40.83298,-73.93874,Private room,75,2,4,2019-06-04,1.9,1,0 +21564493,Cozy Washington Heights Home,143405573,Ryan,Manhattan,Washington Heights,40.83294,-73.94218000000001,Private room,80,2,1,2017-11-19,0.05,1,0 +704838,An Oasis in the Big Apple 1,3621183,Paul,Queens,Woodside,40.74723,-73.89706,Entire home/apt,120,3,60,2019-07-04,1.59,3,281 +2303583,Awesome Hells Kitchen Apt!,11764444,Cory,Manhattan,Hell's Kitchen,40.76532,-73.99061,Entire home/apt,150,1,11,2018-07-01,0.26,1,0 +15342056,"Cozy Private Bedroom, Access to Terrace",918668,Eric,Brooklyn,Crown Heights,40.677,-73.95923,Private room,200,30,0,,,1,88 +4205232,Private Room in Brooklyn,6468894,Cherng-Mao,Brooklyn,Williamsburg,40.71564,-73.95107,Private room,75,1,10,2016-04-19,0.17,1,0 +35795970,Sutton Place High Rise,61396454,Ash,Manhattan,Midtown,40.75518,-73.96306,Entire home/apt,190,30,0,,,14,365 +19779217,Cozy and private room in the East Village,27895393,Daniel,Manhattan,East Village,40.72295,-73.98487,Private room,95,3,23,2019-05-27,1.05,1,229 +8855930,Chic and Inviting East Village Apartment,46365876,Josefine,Manhattan,East Village,40.73113,-73.98295,Entire home/apt,125,2,2,2016-08-31,0.06,1,0 +3686972,1 BR Apt steps from Central Park! #10223,18690148,Luci,Manhattan,Upper West Side,40.77905,-73.97939000000001,Entire home/apt,200,4,22,2019-07-01,0.45,1,2 +46911,Large Room in private Brownstone in Park Slope,210746,Kathleen R.,Brooklyn,Prospect Heights,40.67868,-73.97306999999999,Private room,120,3,51,2019-06-24,0.48,3,250 +8652556,A Rm 8 Dbl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68522,-73.97856,Private room,83,1,202,2019-06-25,4.53,4,0 +24509757,Wonderful 3 bed 1.5 baths 20 Mins to Times Square!,1273890,Sergio,Manhattan,Washington Heights,40.85081,-73.9368,Entire home/apt,150,30,0,,,2,339 +4311648,Modern & Sunny w/ Private Terrace,4644513,Liana,Brooklyn,Williamsburg,40.71436,-73.96361999999999,Entire home/apt,285,3,43,2019-05-26,0.75,1,12 +20614820,Bright & Spacious Chinatown Loft,75109,Jaymie,Manhattan,Chinatown,40.71618,-73.99225,Entire home/apt,145,4,13,2019-07-02,0.6,1,68 +12411737,Great Location 1 BR Apt - Manhattan,52559052,Abe,Manhattan,Midtown,40.76657,-73.98207,Entire home/apt,150,2,0,,,1,0 +19073637,"Green Renovated Victorian, Central AC/Radiant Heat",16006197,Lydia,Brooklyn,South Slope,40.66744,-73.98798000000001,Private room,80,2,50,2019-07-06,1.98,1,86 +18124558,MANHATTAN by Central Park/Subway Private Bedroom!,3084731,Cristine,Manhattan,East Harlem,40.78949,-73.94461,Private room,79,5,47,2019-06-28,1.77,1,131 +13528101,Perfect NYC neighborhood! 15 min. to Central Park!,66981456,Iris,Manhattan,Upper East Side,40.77512,-73.95254,Private room,99,6,35,2019-06-22,1.06,1,59 +35082055,NY style 2 Bedroom apartment,253308587,Stef,Manhattan,Chinatown,40.71752,-73.99387,Entire home/apt,295,4,3,2019-06-14,2.73,1,169 +685435,Cozy Private Bedroom $800 Month,1360296,Maria Daniela,Brooklyn,East New York,40.67635,-73.89124,Private room,35,3,13,2019-05-29,0.16,1,2 +15929625,"East Village/Gramercy Park, 1 Bedroom",103367641,Nidhi,Manhattan,Gramercy,40.73338,-73.98535,Private room,110,1,8,2018-04-28,0.25,1,0 +34687035,Hotel-like Small PrivateRoom Single Bed 25 Min NYC,48684597,David,Queens,Maspeth,40.73759,-73.89704,Private room,35,1,8,2019-07-01,4.44,4,234 +11679675,Huge Brooklyn Studio,61553719,Katrina,Brooklyn,Bedford-Stuyvesant,40.68205,-73.94469000000001,Entire home/apt,85,2,39,2018-11-17,0.98,1,190 +13907229,Beautiful Beach Home,82469513,Sonya,Queens,Rockaway Beach,40.58633,-73.80603,Private room,85,1,0,,,1,0 +12955402,Private room w/ lush garden quiet area,2714164,Jasmine,Brooklyn,Greenpoint,40.72311,-73.94489,Private room,50,2,15,2019-06-14,0.55,2,27 +36141106,Honest clean living,13605253,Kerrey,Queens,Springfield Gardens,40.67136,-73.76248000000001,Entire home/apt,95,2,0,,,1,81 +976167,Newly Furnished Beautiful & Quiet,5341060,Simo,Brooklyn,Fort Hamilton,40.61806,-74.03195,Entire home/apt,149,4,33,2018-01-07,0.46,1,313 +749965,Charming Brooklyn Abode,3905456,Amber,Brooklyn,Flatbush,40.64294,-73.96016,Entire home/apt,110,1,3,2016-08-21,0.05,1,0 +25857843,Coney Island / Brighton Beach Private rm duplex,75671801,Lucky,Brooklyn,Brighton Beach,40.57941,-73.975,Private room,75,1,12,2019-06-30,1.03,1,90 +14548579,Brand New One Bedroom In Prime Bushwick,52441724,Asaf,Brooklyn,Bushwick,40.69834,-73.92755,Entire home/apt,125,1,19,2019-06-29,0.55,1,281 +30462998,Urban Oasis Steps from Central Park,228707670,Mohan,Manhattan,Harlem,40.80466,-73.95635,Entire home/apt,112,3,14,2019-06-19,3.31,1,16 +26250574,Perfect Pied-à-Terre,9962257,Erika & Brett,Brooklyn,Greenpoint,40.7287,-73.95607,Entire home/apt,171,2,19,2019-06-16,1.51,1,81 +6688780,"Private Room at ""The Boat House""",11199830,Meagan,Manhattan,Marble Hill,40.87495,-73.90982,Private room,45,2,1,2015-11-09,0.02,1,0 +4262707,"Upscale, JFK/Beach, modern 1BR apt.",22124628,Aj,Queens,Howard Beach,40.65443,-73.84605,Entire home/apt,63,30,2,2014-10-11,0.03,1,362 +20171270,Neat Cozy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75686,-73.81326999999999,Private room,43,2,65,2019-06-07,2.87,6,364 +8743269,Studio: Heart of Harlem w backyard,12226733,Henna,Manhattan,Harlem,40.81132,-73.94496,Entire home/apt,95,2,1,2015-10-20,0.02,1,0 +13223949,Designer Apartment - Sunny and spacious 1 bedroom,7195006,Sarah,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95035,Entire home/apt,115,5,1,2016-07-05,0.03,1,0 +18257701,Cozy 1 BR w/ Natual Sunlight & Exposed Brick,125585107,Krishaine,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91707,Private room,65,2,2,2017-05-16,0.08,1,0 +29584983,Large quiet bedroom near williamsburg bridge,53413881,Donald,Brooklyn,Williamsburg,40.70803,-73.95475,Private room,55,2,4,2019-05-30,1.3,1,0 +9560034,Huge room in LES townhouse,23854797,Joel,Manhattan,Lower East Side,40.72136,-73.98767,Private room,85,1,1,2016-06-06,0.03,1,0 +245607,big 1 bedroom apt very central,825022,Jaidev,Manhattan,Chelsea,40.75127,-73.99637,Entire home/apt,226,5,34,2019-07-01,0.39,1,302 +23339298,Cosy and comfortable 2 Bdrm with Outdoor Space,82930,Ed And Heather,Brooklyn,Bushwick,40.693740000000005,-73.91199999999999,Entire home/apt,105,2,45,2019-06-30,3.98,1,74 +35521820,Bright & beautiful loft - heart of Williamsburg!,10160373,Mj,Brooklyn,Williamsburg,40.71144,-73.96488000000001,Entire home/apt,200,2,0,,,1,4 +6397059,Sunny Bedroom in West Village Loft,33355603,Lisa,Manhattan,West Village,40.73314,-74.00835,Private room,250,2,0,,,1,0 +25160226,Fully Private Two-Bedroom Duplex House,158566993,Nnenna,Brooklyn,East Flatbush,40.64333,-73.92526,Entire home/apt,150,2,4,2019-01-07,0.31,1,106 +9559335,Designer Duplex - Highline. Brand new mattresses!,49494701,Rand,Manhattan,Chelsea,40.74835,-74.00336,Entire home/apt,299,1,176,2019-06-22,4.02,1,297 +32613384,Gorgeous Luxury Brooklyn 1 Bedroom Apt,139145066,Kerri-Ann,Brooklyn,East New York,40.67561,-73.88072,Entire home/apt,106,1,33,2019-07-04,7.56,2,15 +18772198,Clean Cozy & Comfy Apartment In NYC!,41658748,Ben,Manhattan,Gramercy,40.73742,-73.98219,Entire home/apt,265,2,58,2019-06-09,2.65,3,323 +34124049,Private bedroom located in Downtown Manhattan,257599351,Sandra And Katharina,Manhattan,Chinatown,40.71703,-73.99538000000001,Private room,120,2,8,2019-07-01,3.69,1,34 +36200103,Quite boutique type time share,272243990,Victoria,Manhattan,Midtown,40.76358,-73.97825,Entire home/apt,180,1,0,,,1,57 +7376952,Brownstone@Central Park❤️Manhattan historic area,32004384,Karen,Manhattan,Upper West Side,40.77976,-73.97837,Private room,120,7,11,2019-06-09,1.16,1,362 +11459084,LES sunny bedroom with roof access,20175896,Zack,Manhattan,Lower East Side,40.72132,-73.98369,Private room,110,3,26,2019-04-22,0.64,1,0 +4509500,Prime Chelsea~XL1Br~Terrace~Sleeps4,2119276,Host,Manhattan,Chelsea,40.73984,-74.0006,Entire home/apt,150,30,7,2019-06-14,0.15,39,339 +22232463,Cosy Apartment in the Heart of Manhattan,7286095,Lior,Manhattan,Chelsea,40.7443,-73.99732,Entire home/apt,135,1,0,,,1,0 +19281846,Top of the Heights Harlem Duplex!,94877519,Joseph,Manhattan,Harlem,40.82798,-73.95201999999999,Entire home/apt,180,3,40,2019-05-19,1.69,1,65 +12412900,Cozy 5Min2CentralPark/BroadwayShows/TimesSquareNY,2874126,Joseph,Manhattan,Hell's Kitchen,40.76535,-73.98874,Private room,81,4,27,2018-06-25,0.7,1,188 +9508202,Sugar Hill Airbnb,43707936,Adriaan,Manhattan,Washington Heights,40.83279,-73.94174,Private room,110,2,0,,,1,0 +22324099,Comfortable room in Manhattan Chinatown Apartment,21028594,Gorm,Manhattan,Chinatown,40.71623,-73.99521,Private room,41,15,3,2018-01-16,0.16,1,0 +13694692,Queens size bed in a safe & spacious bedroom,21325944,Xi,Manhattan,Harlem,40.819320000000005,-73.95761,Private room,50,2,16,2019-06-28,0.46,1,0 +27681899,Cozy One Bedroom Manhattan Apartment with Office,128610997,Zani,Manhattan,Harlem,40.82663,-73.94108,Entire home/apt,170,3,3,2018-12-08,0.28,2,180 +23741304,Private master bed and bath in Astoria,59860568,Molly,Queens,Astoria,40.76708,-73.92315,Private room,75,7,0,,,1,0 +35268673,43ave c,19303369,Hiroki,Queens,Elmhurst,40.74171,-73.87645,Private room,33,30,0,,,37,0 +29908325,"12 minutes from JFK, private room and bath.",212899703,Ms. Debra,Queens,Jamaica,40.67903,-73.76535,Private room,83,2,2,2019-04-15,0.27,3,322 +5396325,Clean and Cozy in Greenpoint/W'burg,1721426,Ashia,Brooklyn,Greenpoint,40.72559,-73.95384,Entire home/apt,167,5,2,2015-06-09,0.04,1,0 +1244117,Cozy Huge Brownstone in Bedstuy,6781477,Joseph,Brooklyn,Bedford-Stuyvesant,40.69324,-73.93217,Entire home/apt,125,1,153,2019-06-17,2.21,1,1 +28129565,Fun Leffert's Gardens Suite,212473045,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.9504,Private room,99,1,31,2019-05-09,3.06,1,0 +13307480,Peaches Bungalow,74180901,Etta,Manhattan,Washington Heights,40.83791,-73.94075,Entire home/apt,150,1,89,2019-06-18,2.41,1,139 +18691204,Luxury Apt in Williamsburg + Huge private terrace,68472942,Alex,Brooklyn,Williamsburg,40.70943,-73.95064,Entire home/apt,175,3,3,2018-08-26,0.28,1,364 +32719444,"2 entire floors,2 (Website hidden by Airbnb) to everything.",34313176,Eddie,Queens,Rego Park,40.71702,-73.86183,Entire home/apt,239,2,0,,,4,299 +5944460,views to die for apartment on water,17300177,Peggy,Brooklyn,Williamsburg,40.70965,-73.96817,Entire home/apt,180,30,4,2017-06-22,0.13,1,13 +12454556,Fun room in East Village,8671253,Atlanta,Manhattan,East Village,40.724140000000006,-73.9801,Private room,80,2,3,2016-05-31,0.08,1,0 +12426778,TH BRKLYN,7963317,Rob,Brooklyn,Boerum Hill,40.68834,-73.98601,Private room,150,1,0,,,1,0 +12497783,Clean and safe department in NYC.,67677095,Baochan,Manhattan,Upper West Side,40.8015,-73.96605,Private room,40,3,1,2016-07-16,0.03,1,0 +5826468,Large 2 bed 2 bath w private patio!,27894798,Aya,Manhattan,East Harlem,40.79372,-73.94315999999999,Entire home/apt,200,30,0,,,1,0 +3363364,Cozy 1 bedroom in charming home.,16968100,Sandra,Brooklyn,East Flatbush,40.652840000000005,-73.94413,Private room,150,1,0,,,1,299 +29648368,Duplex Room in the heart of Williamsburg,108426646,Dan,Brooklyn,Williamsburg,40.71205,-73.95838,Private room,70,3,4,2019-06-23,0.48,1,0 +15834067,Charming 1BD Astoria Penthouse,100781220,Allison,Queens,Astoria,40.75732,-73.92019,Entire home/apt,110,2,67,2019-06-24,2.13,1,191 +19103622,Comfy private room in the heart ❤️ of Williamsburg!,42729298,Aigerim Aika,Brooklyn,Williamsburg,40.71911,-73.95805,Private room,65,1,122,2019-06-20,4.82,2,11 +1240530,Large Sunny Room in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69107,-73.91995,Private room,70,3,12,2018-07-27,0.65,2,0 +31238549,"Gorgeous Bedstuy Duplex: space, light and style",2235105,Sarah,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93456,Entire home/apt,209,3,0,,,1,0 +1903288,Beautiful and spacious bedroom in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.71351,-73.94315999999999,Private room,70,6,1,2017-08-26,0.04,2,0 +16394576,"Master bedroom , your own bathroom in 2bed apart",52176200,Viktoria,Manhattan,East Harlem,40.79227,-73.94536,Private room,89,1,138,2019-06-30,5.31,1,34 +26326115,East Harlem room,128731102,Veronica,Manhattan,East Harlem,40.79486,-73.94038,Private room,80,5,15,2019-06-27,1.23,1,0 +6384622,Sunny room right by park!,31752474,Tine,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.96197,Private room,45,14,9,2017-04-06,0.19,2,0 +18911463,"Affordable, UES, Studio near Central Park",6759067,Bryon,Manhattan,Upper East Side,40.77127,-73.95493,Entire home/apt,105,2,21,2018-02-21,0.82,1,0 +29287515,Upper East Side Family Apartment,213586067,John,Manhattan,Upper East Side,40.78108,-73.95439,Entire home/apt,215,3,0,,,1,0 +36101190,Flushing Hideout,30839692,Stavros,Queens,Flushing,40.75406,-73.80613000000001,Shared room,25,1,1,2019-06-30,1.0,3,86 +3231460,Bright & Spacious Fort Greene 1 Bed,15384170,Jonathan,Brooklyn,Fort Greene,40.68727,-73.972,Entire home/apt,175,3,12,2016-07-31,0.2,1,0 +3531345,Ensuite in Duplex Brownstone with Private Terrace!,12337318,Andrew,Manhattan,Harlem,40.82435,-73.94507,Private room,70,2,28,2019-04-26,0.82,2,80 +24229031,3 QUEEN size lofts in Williamsburg/grrenpoint!!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72552,-73.95647,Private room,300,1,8,2018-11-11,0.53,7,14 +15095005,"Charming, Cozy & Convenient 1 Bd Apartment",24696055,Pavle,Brooklyn,Park Slope,40.67634,-73.98311,Entire home/apt,125,14,10,2018-06-30,0.3,1,20 +32240076,Sonder | Stock Exchange | Lovely 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70637,-74.01199,Entire home/apt,248,2,17,2019-06-17,4.08,327,271 +33448379,Comfortable 3 Bedroom Loft Apartment,251985344,Marilyn,Brooklyn,Bushwick,40.70041,-73.92483,Private room,54,3,0,,,1,99 +34844239,❀ Bright and cozy townhouse | Ideal for families ❀,154268909,Malik,Queens,Bellerose,40.74027,-73.71829,Entire home/apt,180,2,0,,,2,281 +30387469,"Dandy Wall St 1BR w/ Office nook, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70617,-74.00842,Entire home/apt,320,30,0,,,232,310 +23064260,Bushwick Mid-Century Artist Enclave,19849721,Joshua,Brooklyn,Bushwick,40.701240000000006,-73.91988,Entire home/apt,250,1,0,,,1,0 +34487491,Spacious Luxuary Kind Bed in Prime Central Park,261761196,Park Central,Manhattan,Midtown,40.76368,-73.98225,Private room,100,1,0,,,8,311 +16688119,Stunning Brooklyn Condo,31429300,Cindy,Brooklyn,Greenpoint,40.73677,-73.95418000000001,Entire home/apt,109,90,1,2017-04-10,0.04,1,35 +36026771,A cute guest unit in Brooklyn,270309212,Abe,Brooklyn,Borough Park,40.64137,-73.98654,Entire home/apt,67,1,1,2019-07-02,1.0,1,49 +21997804,"Studio, Best Location near Columbus Circle",812331,Oliver,Manhattan,Hell's Kitchen,40.76691,-73.98545,Entire home/apt,150,7,1,2018-01-03,0.05,1,7 +219922,"Lovely Bdr in Harlem, Manhattan",1139574,Carmel,Manhattan,Harlem,40.816,-73.95545,Private room,100,1,33,2019-05-25,0.38,1,84 +10686809,Feel at home in Brooklyn,15927582,Hena,Brooklyn,Park Slope,40.67706,-73.98227,Entire home/apt,95,1,0,,,1,0 +25292558,Sunny and Zen room in Chelsea,15668272,Pedro,Manhattan,Chelsea,40.74194,-73.99914,Private room,100,2,1,2018-06-25,0.08,1,0 +9745297,Big Bedroom in Huge Loft Apartment,18830662,Jack,Manhattan,SoHo,40.72051,-74.00168000000001,Private room,75,1,1,2015-12-17,0.02,2,0 +33943045,Steps away from Manhattan!,55203569,Anna,Queens,Astoria,40.767520000000005,-73.91433,Entire home/apt,250,3,13,2019-06-26,5.49,1,76 +2141975,Charming and Large UES ROOM for travellers,1580799,Jenn,Manhattan,Upper East Side,40.77459,-73.95149,Private room,85,5,44,2019-06-28,0.77,1,299 +29051174,Hidden Gem in the Upper East Side,10989161,Michele,Manhattan,Upper East Side,40.77513,-73.94977,Entire home/apt,135,1,20,2019-03-12,2.74,1,1 +18235200,Cozy Private Bedroom Near LGA,62466309,Paula,Queens,East Elmhurst,40.76518,-73.89182,Private room,50,2,1,2018-12-02,0.14,1,34 +35001663,Bedroom for sublet with GREAT VIEW in prime area,77477955,John,Manhattan,Stuyvesant Town,40.73159,-73.97471999999999,Private room,72,14,0,,,1,128 +7801262,"COZY ZEN 1 bedroom, top of CENTRAL PARK! safe :)",2083759,Mei,Manhattan,Harlem,40.79996,-73.95485,Entire home/apt,104,3,42,2019-06-08,0.89,1,219 +19949310,Brooklyn Basement,112186372,Kinser,Brooklyn,Bedford-Stuyvesant,40.68322,-73.91702,Shared room,200,1,1,2017-09-02,0.04,1,179 +2087970,West Village Wonder -spacious 1 bed,10658486,Owen,Manhattan,West Village,40.73552,-74.00716,Entire home/apt,239,4,52,2019-06-26,0.82,1,84 +789686,Cute & Quirky Private Room,3055496,Tessa,Manhattan,Washington Heights,40.85082,-73.9378,Private room,80,3,0,,,1,0 +16368233,Private room in beautiful apartment,6153409,Isaac,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95535,Private room,45,15,3,2016-12-26,0.1,1,0 +30521015,Comfy Cozy,228691487,Steven,Brooklyn,East Flatbush,40.63835,-73.94402,Entire home/apt,90,1,39,2019-06-23,5.44,1,141 +14159853,Private Queen bedroom in Soho/Nolita Apartment,618586,Jennifer,Manhattan,Nolita,40.7232,-73.9946,Private room,67,1,86,2019-06-16,2.5,1,45 +1893225,"Modern, spacious 2 BR, 2 Bath - BK",1297675,Helena,Brooklyn,Prospect Heights,40.68049,-73.97301999999999,Entire home/apt,275,4,19,2018-08-07,0.28,2,205 +9507112,Perfect one Bed in central Location #12,3256433,Ira,Manhattan,Lower East Side,40.72292,-73.99306999999999,Entire home/apt,200,30,7,2018-10-22,0.19,7,0 +13794590,Comfy Queen Bed in Harlem,81080113,Christopher,Manhattan,Harlem,40.81893,-73.94118,Private room,90,1,0,,,1,0 +11850380,Sunny Spacious Sublet near Prospect Park,5245797,Sarah,Brooklyn,Kensington,40.64225,-73.97197,Entire home/apt,115,2,5,2017-04-30,0.13,1,0 +26501791,**Private Entrance Apartment W/ Bedroom & Bath**,199315923,Jacqueline,Queens,Glendale,40.70271,-73.87716999999999,Entire home/apt,65,3,49,2019-07-02,4.06,1,293 +35657486,AMAZING APARTMENT BROWNSTONE CONFI AND BIG!,86724810,Antia,Brooklyn,Bedford-Stuyvesant,40.69252,-73.93786999999999,Entire home/apt,200,1,1,2019-06-21,1.0,1,344 +25077481,Plant Vibes Private Bedroom,2846279,Nick & Vance,Brooklyn,Bedford-Stuyvesant,40.68791,-73.92256,Private room,45,2,61,2019-07-04,4.38,1,92 +10886628,Large Bedroom Available in 5BR Apt,56412357,Scott,Brooklyn,Greenpoint,40.72527,-73.94803,Private room,34,1,0,,,1,0 +13394748,Cozy Spacious Double Bed #2A Near JFK & J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69628,-73.85255,Private room,45,1,141,2019-07-03,3.77,4,287 +6288004,Cozy Room with Exposed Bricks,27054429,Hien,Manhattan,Two Bridges,40.71063,-73.99526,Private room,90,10,133,2019-06-22,2.64,1,81 +7664863,A Cozy Room In A Brooklyn House,40236384,Oates,Brooklyn,Prospect-Lefferts Gardens,40.65933,-73.95931,Private room,65,1,35,2017-04-30,0.73,2,0 +29124414,Large 2 Bedroom Gem,12171344,Marta,Brooklyn,Crown Heights,40.66506,-73.95177,Entire home/apt,185,2,6,2019-06-16,0.79,2,2 +30998033,A beautiful huge quiet Brooklyn apartment.,231503052,Jack,Brooklyn,Sheepshead Bay,40.6001,-73.94974,Entire home/apt,199,3,16,2019-06-28,2.57,1,129 +23223028,"Luxury Apartment, best of Brooklyn, mins from MH",7760617,Nick,Brooklyn,Downtown Brooklyn,40.69472,-73.98337,Entire home/apt,133,3,2,2018-06-13,0.15,1,0 +15370219,Modern Apartment in Manhattan,30494687,Eduardo,Manhattan,Harlem,40.80887,-73.94889,Private room,90,3,3,2017-07-01,0.09,1,0 +31378549,Sonder | 180 Water | Chic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70768,-74.00603000000001,Entire home/apt,197,29,2,2019-06-02,0.51,327,334 +7696843,Room in the heart of Williamsburg,40425528,Matthew,Brooklyn,Williamsburg,40.71608,-73.95966999999999,Private room,60,3,1,2015-10-21,0.02,1,0 +35573043,"TIMES SQUARE! Minutes Away, Studio Apartment",257348210,J,Manhattan,Midtown,40.75372,-73.97232,Entire home/apt,350,3,0,,,1,51 +18569142,Amazing Apt. in the heart of Williamsburg!,128914189,Edgar,Brooklyn,Williamsburg,40.72034,-73.96030999999999,Entire home/apt,190,30,0,,,2,1 +3495686,Lofted Murray Hill 1-bedroom w/ spiral staircase,721833,Joshua,Manhattan,Kips Bay,40.74593,-73.97915,Entire home/apt,184,3,0,,,1,0 +18347469,Home Away from Home in Central Harlem,126973731,Andy,Manhattan,Harlem,40.82439,-73.94014,Private room,55,1,4,2017-05-21,0.15,1,0 +31593170,Cute and Cozy Private Room,19418202,Yulia And Amine,Bronx,Van Nest,40.84555,-73.86787,Private room,50,1,19,2019-07-06,4.35,1,32 +12494870,Private Room in Beautiful Apartment,12140588,Kiri,Brooklyn,Greenpoint,40.72619,-73.95563,Private room,50,3,2,2017-01-02,0.06,1,0 +20692888,Large Bedroom in Williamsburg 10 mins to Manhattan,3879852,Zaki,Brooklyn,Williamsburg,40.712790000000005,-73.94662,Private room,65,3,1,2017-09-20,0.05,1,0 +30509757,"Cozy area, Woodside! w/ 3windows& AC",200239515,Shogo,Queens,Woodside,40.7434,-73.89908,Private room,32,30,2,2019-03-29,0.32,15,38 +23412268,"2 Bed/2 Bath, spacious, modern & bright!",174584122,Eduardo,Manhattan,Two Bridges,40.71124,-73.99455999999999,Entire home/apt,68,3,64,2019-05-20,3.92,1,13 +28137623,"Queens, NYC Centralized: 3 min-JFK; Secs. to LIRR",157393936,Apostle John,Queens,Springfield Gardens,40.66932,-73.7514,Private room,95,5,1,2018-10-17,0.11,2,90 +24715620,Room B Close to NYU Langone H/Metro station,105640471,Jason,Brooklyn,Sunset Park,40.64193,-74.01483,Private room,43,1,11,2019-05-28,1.11,8,146 +24182137,Wyndham Midtown 45 (2 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75383,-73.97278,Entire home/apt,339,3,28,2019-03-17,1.93,12,0 +21550717,Cute studio in Ditmas Park,7229833,Melody,Brooklyn,Kensington,40.63178,-73.97128000000001,Entire home/apt,32,1,0,,,1,0 +19720126,Spacious West Harlem Studio!,96742320,Anne,Manhattan,Harlem,40.82411,-73.9509,Entire home/apt,98,2,2,2017-08-22,0.09,1,0 +11796761,LRG Sunny One Bedroom Garden APT w/ Big Backyard.,1039519,Brian,Brooklyn,Bedford-Stuyvesant,40.68407,-73.9531,Entire home/apt,165,4,5,2018-07-07,0.13,1,0 +35127308,PVT room w/ mini fridge 20 mins from NYC airports,34880938,Abe,Queens,Jamaica,40.70642,-73.78298000000001,Private room,40,2,4,2019-07-05,3.64,1,55 +28564366,1Cosy room for solo/couple in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69326,-73.90431,Private room,50,2,22,2019-06-05,2.48,8,362 +236671,"Williamsburg Garden Home, 5 minutes from Manhattan",1240820,Triny,Brooklyn,Williamsburg,40.71746,-73.95496999999999,Entire home/apt,180,2,125,2019-07-06,1.36,3,248 +9384723,North of Madison Square Park Duplex,13838573,Zachary Robert,Manhattan,Midtown,40.74538,-73.98313,Entire home/apt,285,31,5,2016-05-24,0.12,1,365 +29992271,Bright & Spacious Bushwick Bedroom,4024013,Dan,Brooklyn,Bushwick,40.69696,-73.93024,Private room,50,14,4,2019-06-25,1.21,1,129 +34115136,Sonder | Stock Exchange | Gorgeous 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70756,-74.01229000000001,Entire home/apt,210,2,3,2019-06-22,3.0,327,302 +1920085,Small Room With Private Loft Bed,1229984,John,Queens,Long Island City,40.744040000000005,-73.95233,Private room,40,25,8,2017-06-11,0.12,3,0 +13743350,cozy two bedroom apt by central park,5490071,Alex,Manhattan,East Harlem,40.78672,-73.94519,Entire home/apt,175,3,119,2019-06-28,3.31,3,238 +29192462,Spacious apartment in front of Prospect Park,42735733,Slava,Brooklyn,Crown Heights,40.663920000000005,-73.95994,Entire home/apt,110,1,52,2019-06-28,5.98,1,81 +2156111,Lg Private Rm wTerrace Midtown West,305395,Ritza,Manhattan,Hell's Kitchen,40.76337,-73.98576,Private room,130,5,98,2019-06-24,1.73,1,48 +9822635,Beautiful Serene Bedroom,50593630,Yari,Brooklyn,Crown Heights,40.67239,-73.93225,Private room,110,1,6,2016-09-19,0.14,1,0 +34649628,Super private room and bath with private entrance,40632179,Valentina,Manhattan,Harlem,40.8303,-73.9407,Private room,60,1,0,,,3,278 +12797684,,69715276,Yan,Manhattan,Upper West Side,40.79843,-73.96404,Private room,100,1,0,,,2,0 +22745460,Cozy Room,32304780,Nicauris,Manhattan,Harlem,40.823890000000006,-73.95014,Private room,48,30,5,2019-05-31,0.32,3,332 +19766555,1.5 Bed Condo in heart of Williamsburg,20163996,Russ,Brooklyn,Williamsburg,40.71441,-73.94527,Entire home/apt,140,3,4,2018-10-09,0.2,1,0 +13099742,Perfect Summer Apartment (1 Bedroom available),72770139,Francisco,Brooklyn,South Slope,40.66665,-73.98875,Private room,60,1,1,2016-07-09,0.03,1,0 +24334422,"ROOM with a VIEW! +LOCATION LOCATION!",17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76169,-73.98839,Private room,120,3,16,2019-05-19,1.11,3,89 +32845010,Private 2 Bedroom APT Close to City & Expressway.,139238261,Ilya,Queens,Fresh Meadows,40.73566,-73.79059000000001,Entire home/apt,95,3,17,2019-07-07,4.51,1,329 +35702066,Private Bedroom in cozy apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.69386,-73.93256,Private room,52,4,1,2019-06-22,1.0,3,325 +6601194,Modern prime location in Williamsburg,7155363,Lauren,Brooklyn,Williamsburg,40.71198,-73.96114,Private room,80,2,12,2019-05-19,0.38,1,356 +4734709,Bright & quiet 2 bedroom brownstone,6274029,Belle,Brooklyn,Prospect Heights,40.67895,-73.97233,Entire home/apt,200,4,5,2016-12-31,0.1,1,21 +30143717,"Bright, modern 2 bedroom oasis middle of Flatiron!",46068130,Laura,Manhattan,Flatiron District,40.7443,-73.99056,Entire home/apt,225,5,4,2019-06-04,0.54,2,1 +28889141,"PRIVATE ROOM in 2bdr, 2bth NEW YORK Brighton Beach",181356989,Kseniya,Brooklyn,Brighton Beach,40.57646,-73.96641,Private room,69,2,8,2019-06-23,0.9,2,4 +36223123,Fantastic Location in Brooklyn,1409706,Dasi,Brooklyn,Fort Greene,40.68739,-73.97792,Private room,135,6,0,,,2,26 +17510141,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76321,-73.98356,Entire home/apt,243,30,0,,,23,364 +7500903,HUGE room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64305,-73.99959,Private room,40,2,1,2015-08-09,0.02,2,0 +28737665,Beautiful NYC loft 10min walk from Central Park,216764638,Bo,Manhattan,East Harlem,40.79145,-73.93961999999999,Private room,100,3,22,2019-07-01,3.42,1,23 +17367187,Superhost HUGE Room+Private Bath -Yankee Stadium,11196496,Amílcar,Bronx,Highbridge,40.83173,-73.92824,Private room,75,1,127,2019-06-30,4.45,1,134 +33970684,Its the Brooklyn way!,256510832,George,Brooklyn,Brownsville,40.67144,-73.91457,Entire home/apt,180,2,7,2019-06-23,2.63,1,352 +30817394,Spacious apartment in East Williamsburg!,192740917,Dotan,Brooklyn,Williamsburg,40.7054,-73.94239,Entire home/apt,120,7,1,2019-01-01,0.16,1,189 +35561531,"Spacious and bright room, with easy commute in nyc",6048765,Raz,Manhattan,Harlem,40.81868,-73.93937,Private room,67,3,0,,,2,88 +9298895,Spacious Sunny room in East Village,3856750,Sabra,Manhattan,East Village,40.72283,-73.98356,Private room,60,7,6,2018-01-05,0.18,2,0 +4625126,Bedroom and art studio/office space,7799229,Artem,Brooklyn,Williamsburg,40.71387,-73.95652,Private room,41,4,14,2018-10-06,0.37,2,0 +26717498,studio apartment,51278311,Sven,Brooklyn,Gowanus,40.66873,-73.99263,Entire home/apt,55,9,0,,,1,0 +22147426,Prime Harlem Condo -Bright!- with Outdoor Space,161742462,Rashida,Manhattan,Harlem,40.80814,-73.94238,Entire home/apt,249,6,40,2019-05-30,2.35,1,293 +30251543,Sunny floor-to-ceiling windows apartment in UES,3356798,Makedonka,Manhattan,Upper East Side,40.78139,-73.94678,Entire home/apt,150,30,1,2018-12-12,0.14,1,146 +34356850,Huge One Bedroom Haven In The Heart Of Manhattan,1413085,Rosie,Manhattan,Gramercy,40.73525,-73.98074,Entire home/apt,150,14,0,,,1,0 +26324904,Best place at queens,167568754,Konrad,Queens,Middle Village,40.710640000000005,-73.87463000000001,Entire home/apt,100,1,4,2018-09-09,0.34,1,0 +29466848,Simple Perfect Soho Sublet,2047776,Jennifer,Manhattan,Nolita,40.7223,-73.99606999999999,Entire home/apt,180,30,0,,,2,249 +5632551,"Home 4 Medical Professionals- The ""Zona""",26377263,Stat,Brooklyn,Bushwick,40.70406,-73.91811,Private room,48,30,3,2019-03-02,0.06,43,224 +21558111,"Clean, cozy and bright room 4 mins from subway!",13400096,Ron,Brooklyn,Crown Heights,40.6777,-73.94251,Private room,48,45,3,2018-08-04,0.15,3,0 +20364240,Sunny lifestyle room,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67389,-73.93363000000001,Private room,54,2,47,2019-06-23,2.05,4,345 +23700333,Private room only 1 min from Empire state Building,18882408,Rina,Manhattan,Midtown,40.74995,-73.98602,Private room,108,3,7,2019-04-28,0.44,1,0 +29849331,Spacious and Bright Williamsburg Loft,5537011,Ian,Brooklyn,Williamsburg,40.71474,-73.94440999999999,Entire home/apt,175,2,6,2019-06-29,2.37,1,176 +3013404,Cozy Williamsburg Apartment,15134522,Enma,Brooklyn,Williamsburg,40.70971,-73.9639,Entire home/apt,200,4,15,2017-08-18,0.32,1,95 +23650259,"1 private bedroom in Lower East Side, Manhattan",176983812,Lawrence,Manhattan,Lower East Side,40.72142,-73.98411,Private room,350,10,2,2018-05-05,0.13,1,87 +20034244,Two rooms in one. A family friendly neighborhood.,113295877,Jonathan,Staten Island,Tompkinsville,40.635290000000005,-74.09068,Private room,59,3,26,2019-06-22,1.11,3,351 +4384820,N 6th & Bedford PRIME Williamsburg ,22764554,Linda,Brooklyn,Williamsburg,40.71797,-73.95981,Private room,135,1,1,2014-11-04,0.02,1,0 +14578109,Location Location - Spacious Room in Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.75912,-73.98985,Private room,106,1,63,2019-05-12,1.84,2,19 +36480292,Gorgeous 1.5 Bdr with a private yard- Williamsburg,540335,Lee,Brooklyn,Williamsburg,40.71728,-73.94394,Entire home/apt,120,20,0,,,1,22 +13117160,Bedroom in Clean Uptown Apartment,1921498,Pedro Pablo,Manhattan,Washington Heights,40.84467,-73.93374,Private room,55,6,2,2019-05-10,0.08,3,3 +3447238,"Spacious, Sunny 1 Bedroom Apartment",13637847,Sasha,Brooklyn,Crown Heights,40.67432,-73.95949,Entire home/apt,98,5,11,2019-06-17,0.18,1,188 +30188200,SOHO|LITTLE ITALY|CHINATOWN|HIDEOUT,117831982,Luke,Manhattan,Little Italy,40.71781,-73.99783000000001,Private room,130,3,17,2019-06-23,2.34,1,84 +34777870,Cosy 2-bedroom apartment on UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7927,-73.94033,Entire home/apt,300,3,0,,,3,17 +22411833,Luxury Times Square High Rise,35805776,Rajan,Manhattan,Hell's Kitchen,40.75857,-73.99189,Entire home/apt,300,3,6,2019-05-26,0.32,1,0 +28389715,Entire 3 bedroom apartment in best location.,203564743,Angel,Queens,Long Island City,40.75651,-73.93441,Entire home/apt,170,3,31,2019-06-17,3.32,1,238 +36209003,A homey home.,272327753,Robert,Brooklyn,Bay Ridge,40.62373,-74.02676,Entire home/apt,200,1,2,2019-07-08,2.0,1,356 +30428730,Charming Studio in the heart of West Village,17618432,Camellia,Manhattan,West Village,40.73563,-74.00659,Entire home/apt,215,1,3,2019-01-01,0.42,1,0 +26572767,Cozy Private Upper Eastside Bedroom,109196702,David,Manhattan,Upper East Side,40.77673,-73.95525,Private room,143,2,4,2018-10-01,0.34,2,0 +7801783,Private 2 Bedroom Apartment in the East Village,2033003,Darren,Manhattan,East Village,40.72935,-73.98465,Entire home/apt,200,2,6,2019-04-08,0.13,2,134 +26836650,Brooklyn Loft near Pratt,79657553,Ben,Brooklyn,Clinton Hill,40.69042,-73.96046,Private room,44,6,6,2019-02-11,0.52,1,1 +24120512,Live in our Bushwick Townhouse,17200390,Nabeel,Brooklyn,Bushwick,40.69211,-73.90634,Private room,60,12,0,,,1,14 +7981341,Couch for the Night,42125531,Michelle,Manhattan,Chelsea,40.75091,-73.99414,Shared room,200,1,0,,,1,0 +13032261,2bd Presidential NYC,57571805,Gharet,Manhattan,Midtown,40.75315,-73.97339000000001,Entire home/apt,350,2,3,2017-06-20,0.1,3,0 +5470350,Spacious rm 15 mins from downtown!,1340207,Deena,Manhattan,Harlem,40.815740000000005,-73.94877,Private room,80,2,5,2016-09-19,0.1,1,0 +219818,✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿,1138692,Keera (Jena),Manhattan,Lower East Side,40.71892,-73.98401,Entire home/apt,199,1,14,2015-07-20,0.15,2,158 +31038321,Center of Astoria,3369352,Anup,Queens,Ditmars Steinway,40.775940000000006,-73.90799,Private room,55,2,0,,,1,35 +12867918,DESIGNER STUDIO NEAR CENTRAL PARK UPPER EAST SIDE,9293730,Inna,Manhattan,Upper East Side,40.76875,-73.95723000000001,Entire home/apt,150,30,12,2019-06-01,0.35,16,325 +23455106,"Spacious Comfy Space, Full of Light",33395500,David,Brooklyn,Boerum Hill,40.68307,-73.97981,Private room,55,15,0,,,1,0 +30343546,"Ridgewood/Bushwick Lovely, Clean and Inviting! A/C",1460313,Soraya,Queens,Ridgewood,40.69598,-73.89972,Private room,56,5,14,2019-07-01,2.2,2,35 +23723855,Sunny Room in Townhouse near Central Park,28752891,Sarah,Manhattan,Upper West Side,40.791140000000006,-73.9671,Private room,175,4,11,2019-06-27,0.77,2,63 +33835408,Luxury Corner Apt&bigTerrace. Water&city view 55Fl,67738361,Julie,Manhattan,Hell's Kitchen,40.75966,-73.99277,Entire home/apt,350,1,0,,,2,83 +13782533,Very private/cute/spacious room,15700083,Sarah,Queens,Maspeth,40.71609,-73.9025,Private room,30,20,0,,,1,0 +563442,Designer Studio in the HEART of WV!,2770788,Laura,Manhattan,West Village,40.73514,-73.99954,Entire home/apt,197,14,29,2016-12-05,0.36,1,0 +25085816,Master bedroom in E Harlem with balcony&Doorman,77716287,Marwa,Manhattan,East Harlem,40.80173,-73.94035,Private room,65,2,11,2019-05-09,0.83,1,365 +249414,Large & bright 900ft² 1br in WV,1306587,Andy,Manhattan,West Village,40.73291,-74.00059,Entire home/apt,246,4,6,2017-06-28,0.16,1,0 +4293935,Beautiful brownstone room,1141935,Ana,Brooklyn,Crown Heights,40.67391,-73.9472,Private room,99,1,74,2019-06-09,1.34,3,290 +35900875,Private Bedroom en-suite Bathroom - Manhattan,270029540,Aamir,Manhattan,Harlem,40.81561,-73.94823000000001,Private room,99,1,1,2019-06-30,1.0,1,256 +13757845,Centrally Located One Bedroom Apt,5514044,Garron,Manhattan,Chelsea,40.73942,-74.00065,Entire home/apt,199,2,1,2016-09-16,0.03,1,0 +22174455,Adorable Hamilton Heights Apartment,5132258,Jessica,Manhattan,Harlem,40.82434,-73.95066,Entire home/apt,200,3,14,2019-03-09,0.73,2,0 +5991434,Charming Studio Apt w Home Theater,31108509,David,Brooklyn,Borough Park,40.6409,-73.99891,Entire home/apt,150,3,51,2019-06-28,1.07,1,180 +32503167,Beautiful apt in Nolita - your perfect stay,244182582,Milena,Manhattan,Lower East Side,40.72088,-73.99311999999999,Private room,86,30,0,,,4,310 +21366188,Studio apartment near JFK airport /Free parking,154705359,Anabell,Queens,Jamaica,40.66875,-73.78506,Entire home/apt,96,1,259,2019-07-07,12.99,1,307 +15648993,Brooklyn Historic Brownstone with Garden,57125089,Lauren & Anthony,Brooklyn,Bedford-Stuyvesant,40.68118,-73.91107,Entire home/apt,119,2,152,2019-06-24,4.68,1,14 +2998174,Sanctuary Bedroom in Huge Duplex,5684941,Jade,Brooklyn,Bushwick,40.69666,-73.93248,Private room,59,20,16,2018-10-11,0.28,1,54 +28584690,Upper East Cozy Apt,42601145,Eva,Manhattan,Upper East Side,40.77481,-73.95558,Private room,60,1,48,2019-06-27,4.97,1,8 +17266255,Custom Designed West Village 2 Bedroom,29893723,Sam,Manhattan,West Village,40.73115,-74.00429,Entire home/apt,158,1,5,2017-05-11,0.18,1,0 +35319436,jungle oasis loft in red hook,8835932,Brandi,Brooklyn,Red Hook,40.6774,-74.00304,Entire home/apt,199,2,0,,,1,11 +8473811,NYC.ANGUS.5. 20.min to manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68251,-73.91944000000001,Entire home/apt,200,1,52,2019-06-22,1.82,4,359 +16933481,Entire 3rd Floor of Brooklyn brownstone,359480,Autumn,Brooklyn,South Slope,40.66398,-73.99041,Entire home/apt,77,3,4,2018-11-25,0.14,1,0 +10143705,Studio Apartment,31698014,Janine,Manhattan,East Village,40.72747,-73.98833,Entire home/apt,60,5,2,2016-01-17,0.05,1,0 +21781648,3 Bedroom designer apartment with views,98014,Raza,Brooklyn,South Slope,40.66821,-73.98834000000001,Entire home/apt,245,3,0,,,1,0 +17922242,Spacious and quiet East Village Private Studio,14135981,Elsa,Manhattan,East Village,40.72439,-73.97606999999999,Entire home/apt,130,5,2,2019-06-11,1.58,1,363 +22134428,"Spacious living room, walk-in closet",159726656,Uttara,Manhattan,Upper West Side,40.78898,-73.97418,Shared room,53,3,7,2018-12-31,0.38,1,0 +27748069,NYC NARNIA ROOM Walking Distance to Central Park!,4233057,Hajah,Manhattan,East Harlem,40.79709,-73.93585999999999,Private room,61,3,8,2019-04-22,0.85,3,95 +27876980,"Private, big, clean cozy room, in TIMES SQUARE",121657084,Naor,Manhattan,Midtown,40.7571,-73.98014,Private room,95,3,28,2019-06-15,2.71,1,0 +660036,Great Apt Steps from Central Park,3330459,Lynne,Manhattan,Upper West Side,40.78754,-73.96989,Private room,113,1,93,2019-05-21,1.12,1,2 +7144807,"Spacious, Clean , Close to Local Transportation",37360127,Mel,Staten Island,Castleton Corners,40.61363,-74.12151999999999,Private room,45,30,0,,,1,365 +30692462,Bright 2-bedroom in Brooklyn,229737810,Cameron,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94711,Entire home/apt,125,3,1,2019-01-02,0.16,1,95 +13083221,1 bedroom in a 3 bedroom apartment,46407854,Deniz,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.94317,Private room,55,1,0,,,1,0 +35464662,BEAUTIFUL MADISON AVE STUDIO -- EXPERIENCED HOST!,25012594,Shane,Manhattan,Upper East Side,40.76801,-73.96896,Entire home/apt,140,2,2,2019-06-22,2.0,1,105 +16230905,Bright & Sunny Studio in the Upper East Side,49900664,Kelcey,Manhattan,Upper East Side,40.76954,-73.94904,Entire home/apt,91,2,2,2016-12-19,0.06,1,0 +413876,Finest Gateway to historic Financial District,2059155,Dan,Manhattan,Financial District,40.70537,-74.00992,Entire home/apt,160,1,36,2018-09-26,0.57,1,365 +6970965,"Cozy and Spacious, 1 Bedroom, Astoria",36551297,Sebastian,Queens,Astoria,40.76194,-73.91881,Private room,70,2,8,2016-12-23,0.16,1,0 +4594620,Spacious Full 2br Holiday Home ,1520215,Brad,Brooklyn,Boerum Hill,40.68598,-73.98004,Entire home/apt,250,3,0,,,1,0 +4365765,Beautiful spacious bedroom,22661810,Marie,Brooklyn,East Flatbush,40.63213,-73.94598,Private room,55,4,10,2019-01-01,0.2,2,100 +15734642,"Sunny huge room, 15m away from Manhattan",8076786,Suri,Brooklyn,Sunset Park,40.65888,-74.00044,Private room,89,1,2,2019-06-25,0.1,3,281 +4296126,POSH High Rise near Times Square,22299389,Lindsay Alexa,Manhattan,Hell's Kitchen,40.7555,-73.99369,Entire home/apt,259,4,25,2019-06-17,0.44,1,255 +309342,Giant Sunny Bedroom & Private Bath in my Apartment,1586945,Ben,Manhattan,Upper West Side,40.79044,-73.97513000000001,Private room,99,3,14,2015-08-19,0.22,1,365 +35277302,Elegant Room in Upper Manhattan-18min Time Square,6057887,Mutaz,Manhattan,Washington Heights,40.84853,-73.93805,Private room,79,4,2,2019-06-10,1.87,5,16 +16663520,Brooklyn's Bed & Breakfast (3 BR),110198200,Athelstan,Brooklyn,Prospect-Lefferts Gardens,40.660340000000005,-73.95981,Entire home/apt,225,2,64,2019-07-03,2.24,2,337 +29360292,COZY ROOM TO CRASH,48049796,Chester,Manhattan,East Village,40.72935,-73.98441,Private room,100,1,10,2019-06-13,1.15,2,90 +29923252,ONE Bed Room →→→20mins to Manhattan ☆彡 Wow! COZY!,43044876,Haruhisa,Queens,Woodside,40.74824,-73.89961,Private room,30,29,1,2019-04-01,0.3,5,1 +6536744,Spacious One-Bedroom near Prospect Park,8479809,A,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96240999999999,Entire home/apt,75,5,0,,,1,0 +4772987,Queen size bedroom. 15 min to NYC,24597265,Freda,Queens,Ditmars Steinway,40.77183,-73.90973000000001,Private room,50,6,17,2019-06-02,0.34,8,365 +34196510,Midtown West Hotel - Boutique Queen,252604696,Erin,Manhattan,Chelsea,40.74948,-73.99506,Private room,199,1,0,,,20,189 +34614782,Cozy & Charming Oasis in Williamsburg Brooklyn,107069094,Jimmo And Ames,Brooklyn,Williamsburg,40.71912,-73.95727,Entire home/apt,240,3,3,2019-07-01,2.0,1,85 +29909077,Gorgeous Room with private bath in Crown Heights,224892300,Jose,Brooklyn,East Flatbush,40.6614,-73.93867,Private room,110,2,3,2018-12-31,0.38,1,176 +10078736,Newly Renovated Carriage House,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.68886,-73.93084,Entire home/apt,225,2,68,2019-06-04,1.69,3,273 +35800448,LUXUARY 2 BEDROOM APARTMENT,243288727,Matt,Manhattan,Hell's Kitchen,40.76793,-73.9882,Entire home/apt,190,30,0,,,7,354 +22994960,Studio Apartment in Murray Hill,96317547,Adam,Manhattan,Murray Hill,40.74827,-73.97851,Private room,120,3,0,,,1,0 +21141704,Private bedroom hideaway in East Village gem,5443000,Erin,Manhattan,East Village,40.73091,-73.98223,Private room,110,2,29,2019-06-16,1.47,2,0 +8272327,Quiet Brownstone Parlor Studio,38465372,Nadege & Charles,Brooklyn,Cobble Hill,40.6869,-73.99741,Entire home/apt,225,3,38,2019-06-30,0.96,1,135 +7718995,Private Space with Outdoor Patio,25169596,Jessica,Manhattan,Upper West Side,40.77148,-73.98226,Private room,182,1,221,2019-06-10,4.65,2,327 +33488037,"Beautiful, eclectic large Soho-Tribeca 2-Bed Apt",4977373,Jesse,Manhattan,Tribeca,40.72078,-74.00726,Entire home/apt,300,4,5,2019-07-01,2.88,1,20 +6105240,Ideal Greenpoint Location,184833,Edward,Brooklyn,Greenpoint,40.72123,-73.95357,Entire home/apt,245,7,6,2018-05-08,0.12,1,67 +28259695,D&G Chateau,106667717,Darian,Manhattan,Harlem,40.82761,-73.94192,Private room,85,1,9,2019-05-04,0.9,1,364 +13426171,Stunning New High-Rise Apartment - 1 Bedroom NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76207,-73.99937,Entire home/apt,239,30,0,,,121,365 +22617426,Beautiful Private Bedroom for rent Crown Heights,166286543,Mark,Brooklyn,Crown Heights,40.67439,-73.95286,Private room,35,10,5,2019-02-01,0.29,2,350 +32190629,Charming Astoria,92510990,Kristen,Queens,Long Island City,40.76235,-73.92651,Private room,100,3,5,2019-06-01,1.4,1,42 +3838375,"Cheerful, Comfortable & Convenient",177233,Lisa,Manhattan,Upper West Side,40.79903,-73.96451,Entire home/apt,249,2,80,2019-07-06,1.35,1,58 +8186181,AMAZING LOCATION Large Studio Centrally Located,56350,Steven,Manhattan,Midtown,40.75463,-73.97445,Entire home/apt,124,2,14,2018-06-28,0.42,1,0 +535095,Beautiful bedroom in Prospect Heights,598770,Maite & Javi,Brooklyn,Prospect Heights,40.6744,-73.96558,Private room,90,7,43,2019-06-29,0.52,1,38 +33116655,Very quite and convenient location.,38604449,Pasang,Queens,Woodside,40.75563,-73.90493000000001,Private room,50,2,1,2019-05-11,0.51,2,262 +11650863,Cozy East Village Home,61800014,Shasta,Manhattan,Lower East Side,40.72093,-73.98493,Entire home/apt,140,1,144,2019-06-23,3.63,1,98 +29929331,“TIME SQUARE” 43rd street SINGLE BED,30985759,Taz,Manhattan,Hell's Kitchen,40.759640000000005,-73.99002,Shared room,70,1,59,2019-07-04,7.47,6,314 +7124926,Sunny 2BR in Heart of Fort Greene,2055744,Hila,Brooklyn,Fort Greene,40.68842,-73.97254000000001,Entire home/apt,149,4,1,2015-12-31,0.02,1,0 +5261712,Large bedroom in East Village,17491348,Valentin,Manhattan,East Village,40.72878,-73.97747,Private room,60,7,1,2015-05-15,0.02,1,0 +23004287,"Brooklyn, KingsHwy . 1 room for 1 person",166204258,Olga,Brooklyn,Sheepshead Bay,40.6092,-73.9572,Private room,27,1,1,2018-02-05,0.06,1,0 +15056748,"Sunny private bedroom in Bushwick, Brooklyn",20598700,Natalia,Brooklyn,Bushwick,40.70015,-73.92506999999999,Private room,40,1,5,2017-06-30,0.15,1,0 +982038,Entire 1bdrm cnr of Fort Greene- off Park,5378922,Eileen,Brooklyn,Fort Greene,40.688590000000005,-73.9729,Entire home/apt,130,9,3,2018-09-25,0.04,1,329 +25348802,Cozy & comfortable STUDIO in MIDTOWN NYC,23121862,Robin,Manhattan,Midtown,40.75815,-73.96489,Shared room,165,4,0,,,1,12 +36305071,Eclectic and Peaceful Suite with Private Bathroom,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93508,Private room,75,2,0,,,2,115 +14183900,Spacious Apartment in the Heart of LES,20132140,Helen,Manhattan,Lower East Side,40.72094,-73.98649,Entire home/apt,228,1,1,2016-08-08,0.03,1,0 +17893069,Spacious 1-Bedroom Apartment in Greenwich Village,10838291,Brian,Manhattan,Greenwich Village,40.73307,-73.99277,Entire home/apt,250,7,1,2017-05-13,0.04,1,0 +33077121,Bright and Spacious Queens Townhouse,4037192,Lukasz,Queens,Middle Village,40.72355,-73.87456,Entire home/apt,100,30,1,2019-05-31,0.77,1,323 +16781601,Room 14,74633496,Justine,Bronx,University Heights,40.8562,-73.90899,Private room,43,3,36,2019-06-10,1.26,5,365 +20835690,CHARMING OLD WORLD FLAT - WEST VILLAGE NEAR SOHO,1651791,Juliana,Manhattan,West Village,40.73145,-74.00184,Private room,114,1,10,2017-11-28,0.47,1,0 +29706358,Bright and Airy Greenwich Village Junior 1 Bedroom,259123,Caitlin,Manhattan,Greenwich Village,40.73492,-73.99604000000001,Entire home/apt,300,2,2,2018-12-15,0.26,1,11 +24159289,Great View of New York city,41366374,Jiangyang,Queens,Long Island City,40.75047,-73.9408,Entire home/apt,150,1,0,,,1,0 +20861411,East Village Rooftop Oasis w/ Private Entrance!,12374283,Ryan,Manhattan,East Village,40.72411,-73.97825999999999,Private room,150,3,103,2019-07-01,4.71,4,94 +16236157,Beautiful townhouse apt on historic street,2748223,Ming,Manhattan,Harlem,40.80447,-73.94623,Entire home/apt,120,14,1,2017-01-01,0.03,1,188 +22069581,Luxury Private room located in Fresh Meadows,137858241,Holyfield,Queens,Flushing,40.73067,-73.80691,Private room,45,1,9,2019-07-05,0.48,1,328 +9979094,Sunny Room Downtown Queens NYC,51278789,Grace,Queens,Corona,40.74071,-73.86498,Private room,36,16,55,2019-05-28,1.43,2,110 +10938544,"Spacious, Private Room Near Subway",10583598,Devon,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.95963,Private room,40,2,9,2016-08-24,0.22,1,0 +2807615,1 bedroom in the heart of the UWS,14361027,Matthew,Manhattan,Upper West Side,40.78882,-73.97945,Entire home/apt,179,2,15,2017-05-20,0.26,1,0 +27425265,Brooklyn House,147590647,Ava,Brooklyn,Dyker Heights,40.61699,-74.01042,Private room,55,1,39,2019-07-07,3.45,1,45 +23728251,Private Room in Big Classic Williamsburg Art Space,9223263,Eric,Brooklyn,Williamsburg,40.71665,-73.96269000000001,Private room,45,3,3,2018-04-11,0.19,1,0 +27807260,Private room in East Harlem,50169207,Richie,Manhattan,East Harlem,40.79409,-73.94006999999999,Private room,150,2,2,2019-06-10,0.24,2,67 +33801781,Lower East Side Classic Vibes,69831679,May,Manhattan,Lower East Side,40.72059,-73.98514,Entire home/apt,170,3,6,2019-07-01,2.57,1,235 +13114542,NYC,58735878,Jiandong,Manhattan,Harlem,40.82889,-73.94599000000001,Private room,40,1,1,2016-05-27,0.03,1,0 +32445673,Sunny King-Sized Manhattan 1BR w/Views Awaits You!,28556029,Cheyenne,Manhattan,East Harlem,40.81213,-73.93751999999999,Entire home/apt,95,3,16,2019-06-30,4.07,1,0 +3281606,"great spacious 2BR duplex apt in S. Harlem, NYC",16509287,Taller,Manhattan,Harlem,40.80002,-73.95559,Private room,155,2,14,2018-12-09,0.23,1,172 +30526468,"Elegant Ft. Greene One-Bedroom, 5 min from Subway",10674184,R.,Brooklyn,Fort Greene,40.685,-73.97275,Entire home/apt,185,4,8,2019-06-16,1.33,1,0 +771436,3BR/3 Bath House in Astoria,4070269,William,Queens,Ditmars Steinway,40.78027,-73.90821,Entire home/apt,250,28,0,,,1,88 +11045529,Centrally located Midtown 1BR,57322543,Richard,Manhattan,Hell's Kitchen,40.76355,-73.99391,Entire home/apt,150,1,52,2019-06-20,1.26,1,7 +23515323,Room with a view in Greenpoint,1687425,Alex,Brooklyn,Greenpoint,40.73075,-73.95725,Private room,80,2,0,,,1,0 +9606832,HIP MODERN 2BR1b Williamsburg/Grnpt,49709755,Julianna,Brooklyn,Greenpoint,40.723040000000005,-73.95239000000001,Entire home/apt,135,1,0,,,1,0 +34307310,St Marks PL,20500770,Ofer,Manhattan,East Village,40.72712,-73.98402,Entire home/apt,200,3,4,2019-06-30,1.97,1,4 +9692740,Convenient apartment in Manhattan,50013026,Abby,Manhattan,Upper West Side,40.80012,-73.96441,Private room,50,1,2,2015-12-04,0.05,1,0 +23435615,Private New Brooklyn Room,125431405,Kacey,Brooklyn,Bushwick,40.697,-73.93115999999999,Private room,35,1,1,2018-05-12,0.07,1,0 +15482081,Spacious Room in Stylish Brooklyn - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69143,-73.94301999999999,Private room,50,1,186,2019-05-29,5.65,4,0 +24942474,"Ideal Brooklyn Room, Spacious Apartment w/Garden",45376603,Carolyn,Brooklyn,Bushwick,40.69495,-73.92075,Private room,41,2,9,2018-09-20,0.64,1,0 +28046097,Cozy Room in East Williamsburg Apartment,37243605,Amy,Brooklyn,Williamsburg,40.71311,-73.94036,Private room,65,2,1,2019-06-30,1.0,1,303 +30015658,private spacious LES bedroom,220601248,Nora,Manhattan,Lower East Side,40.71752,-73.98886999999999,Private room,75,2,24,2019-06-23,3.14,2,7 +18683699,"Private, artsy room steps from Prospect Park!!",11881734,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65475,-73.96186,Private room,80,1,24,2017-12-11,0.92,1,0 +36270530,Heart of Harlem Studio,272787571,Rj,Manhattan,Harlem,40.81374,-73.9439,Entire home/apt,125,4,0,,,1,158 +26185195,Private bedroom in Fort Greene home,20480059,Mallary,Brooklyn,Fort Greene,40.69358,-73.97065,Private room,75,3,4,2018-07-30,0.32,3,0 +30908766,Modern Studio Apartment near transportation,16089151,Sahla,Queens,Queens Village,40.722190000000005,-73.73605,Entire home/apt,85,2,17,2019-06-24,2.63,1,14 +16570631,Cozy room in MASSIVE bushwick house,11586393,Jared,Brooklyn,Bushwick,40.68863,-73.90874000000001,Private room,80,1,1,2017-01-01,0.03,1,66 +21200108,The Henry - A One Bedroom Cobble Hill Apartment,151645438,Parker,Brooklyn,Cobble Hill,40.68553,-73.99804,Entire home/apt,165,2,0,,,1,0 +29886141,BK Getaway:Private bath/bed/balcony near Barclays!,20321004,Sara,Brooklyn,Clinton Hill,40.68272,-73.96675,Private room,125,1,33,2019-06-24,4.34,1,0 +33831129,Charming and Bright Apt. in Heart of Williamsburg,8860345,Riya,Brooklyn,Williamsburg,40.71339,-73.96112,Entire home/apt,175,2,3,2019-06-17,1.14,1,4 +3423516,Independence in NYC,17256091,Timothy,Manhattan,Upper East Side,40.77565,-73.95085999999999,Entire home/apt,150,2,0,,,1,0 +33994927,"Stylish Large 2 Bedroom, Perfect Location",256680416,Drew,Manhattan,Murray Hill,40.74818,-73.98246999999999,Entire home/apt,299,2,7,2019-07-02,3.18,1,16 +23470849,Perfect room in between walks&fun in Manhattan,22188,Laura,Manhattan,Upper West Side,40.78046,-73.98818,Private room,90,3,2,2019-04-30,0.63,2,339 +895368,Large 2 bedroom apt in Manhattan,4770121,Somaya,Manhattan,Harlem,40.82434,-73.93956999999999,Entire home/apt,100,180,0,,,4,365 +6718257,"Home 4 Medical Professionals - The ""Clinomania""",26377263,Stat,Brooklyn,East Flatbush,40.660790000000006,-73.9342,Private room,48,30,2,2018-09-22,0.06,43,249 +22173762,Newly renovated 3 BEDROOM in Astoria woodside NY,123136283,Niki,Queens,Astoria,40.76403,-73.90612,Entire home/apt,280,2,69,2019-06-27,3.68,1,307 +17951580,Townhouse on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.690540000000006,-73.9328,Entire home/apt,150,2,69,2019-07-05,2.86,4,278 +27264907,Low price private room train nearby,204786430,Shamyra,Queens,Ridgewood,40.70665,-73.90969,Private room,53,7,4,2019-01-02,0.36,2,0 +12427898,NEW Modern Apartment w/ OutdoorDeck,67223979,Arkadiy,Brooklyn,Sunset Park,40.66482,-73.99609,Entire home/apt,199,1,164,2019-06-20,4.25,1,340 +35847646,south bronx luxury amenities building,269656657,Dev,Bronx,Port Morris,40.80855,-73.92948,Entire home/apt,220,30,0,,,1,180 +6438239,A spacious studio in Midtown / UES,11885649,Jay,Manhattan,Upper East Side,40.76313,-73.96191999999999,Entire home/apt,195,3,0,,,1,0 +11337187,"Cute, cozy, hip Williamsburg nest",22570120,Charles,Brooklyn,Williamsburg,40.70969,-73.9592,Entire home/apt,95,30,10,2019-02-09,0.3,2,27 +27188155,Sunny One bedroom in the heart of the East Village,192554415,Nina,Manhattan,East Village,40.7297,-73.98552,Entire home/apt,250,7,16,2019-06-25,1.72,1,135 +5251719,1 Bedroom in Luxury Wall street Apt,27181498,Ben,Manhattan,Financial District,40.70573,-74.00855,Shared room,75,1,0,,,1,0 +4718314,Cozy apartment in Brooklyn,24374791,Emelie,Brooklyn,Bedford-Stuyvesant,40.67893,-73.95236,Entire home/apt,90,4,12,2016-04-14,0.22,2,0 +25249692,wonderful presidential suite in midtown manhattan,119328219,Eric,Manhattan,Midtown,40.75439,-73.97339000000001,Entire home/apt,175,30,6,2019-05-02,0.91,1,22 +16810023,"5m walk to L, Great Location ❤️ Priv. Bath/Balcony",1699648,Benjamin,Brooklyn,Williamsburg,40.71842,-73.94467,Private room,95,5,66,2019-06-11,2.24,1,25 +20923712,Private room in 2br apartment near subway (train),16795575,Zack,Queens,Flushing,40.75484,-73.82323000000001,Private room,70,1,0,,,2,0 +9409873,Greenwich Village - SoHo Duplex+Balcony+Terrace,1442864,Alex,Manhattan,Greenwich Village,40.72824,-73.99517,Entire home/apt,275,4,18,2019-07-01,1.9,1,85 +30046359,The Ultimate Dumbo Pad - 1 Large Bedroom~Sleeps 4,26603179,Gal,Brooklyn,DUMBO,40.7034,-73.98544,Entire home/apt,219,3,16,2019-06-26,2.5,1,332 +30965475,Cool Private Bedroom & Office/Living Room Bushwick,213069141,Evan,Brooklyn,Williamsburg,40.7033,-73.93583000000001,Private room,60,2,1,2019-07-01,1.0,1,210 +1374457,Bedroom in Williamsburg Brooklyn,5386695,Joanne,Brooklyn,Williamsburg,40.71668,-73.94083,Private room,55,28,0,,,1,365 +20520689,The Belvedere - A Luxury One Bedroom with Loft,146504288,Rick,Brooklyn,Williamsburg,40.71121,-73.95079,Entire home/apt,175,2,3,2018-12-23,0.27,1,0 +17875002,Nice private room in quiet E Village apt,10387304,Michael,Manhattan,East Village,40.73057,-73.986,Private room,125,2,21,2019-07-01,0.77,2,329 +9679935,"Wyndham Resort Midtown 45 NYC Studio Sep 1-4, 2019",24199235,Dar,Manhattan,Midtown,40.75328,-73.97211999999999,Private room,224,3,0,,,1,3 +20860448,"ROOM EN NEW YORK, MANHATTAN",23005126,Juan,Queens,Holliswood,40.71768,-73.77308000000001,Private room,125,3,0,,,1,363 +9977322,Private bedroom in Tribeca,12573771,Guerin,Manhattan,Tribeca,40.71689,-74.00563000000001,Private room,75,1,0,,,1,0 +7331958,Sunny luxurious loft Studio,2282450,Philip,Manhattan,West Village,40.73529,-74.00323,Entire home/apt,235,3,111,2019-06-10,2.38,2,126 +35431400,Wonderful 1 Bedroom Apartment (NYU CAMPUS),266651586,Mike,Manhattan,Greenwich Village,40.72812,-73.99963000000001,Entire home/apt,150,30,0,,,1,180 +9682898,Bright room in Williamsburg,17261034,Cillian,Brooklyn,Williamsburg,40.71211,-73.95949,Private room,95,12,1,2017-01-01,0.03,1,0 +18476851,Beautiful Private Room Near Manhattan & JFK,106430338,Alana,Brooklyn,Bensonhurst,40.612770000000005,-73.99695,Private room,60,3,43,2019-06-13,1.65,2,173 +32240110,Sonder | Stock Exchange | Artsy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70609,-74.01219,Entire home/apt,241,2,7,2019-06-16,2.08,327,331 +7095888,A Spacious & Homelike Brooklyn Stay,32252422,Mckinley,Brooklyn,Canarsie,40.64796,-73.89175999999999,Entire home/apt,110,2,38,2019-07-06,0.81,2,290 +30180208,Nice bedroom in cosy Harlem apartment,75349777,Charles,Manhattan,Harlem,40.81533,-73.95733,Private room,70,3,3,2019-01-02,0.42,1,0 +11584340,Super Cute and Sunny Studio,10563705,Hailey,Manhattan,Washington Heights,40.85043,-73.936,Entire home/apt,110,4,0,,,1,0 +6476242,Huge duplex apartment with garden!,33833944,Andreas Per Daniel,Manhattan,Midtown,40.76015,-73.96378,Entire home/apt,247,5,25,2019-02-23,0.51,1,0 +34619743,Massive One Bedroom with Office /Yoga Room /Yard,10099608,Alexa,Brooklyn,Greenpoint,40.72455,-73.94633,Entire home/apt,149,3,2,2019-06-19,2.0,1,6 +8522756,In the heart of the East Village,44875359,Sandra,Manhattan,East Village,40.72184,-73.98165,Shared room,60,10,0,,,2,0 +19981294,Great Room on Kips Bay,132080218,George,Manhattan,Kips Bay,40.74023,-73.97847,Private room,120,1,14,2018-01-01,0.59,1,0 +2918393,Beautiful Garden rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9425,Entire home/apt,151,3,34,2018-12-04,0.54,5,308 +16805446,Perfect Cobble Hill Apartment for Two,7786166,Kate,Brooklyn,Cobble Hill,40.68687,-73.99471,Entire home/apt,190,2,15,2019-06-22,0.53,1,162 +18197137,"ENTIRE, PRIVATE NYC home 3mins from JFK Airport",125557444,Ada,Queens,Jamaica,40.67057,-73.77956,Entire home/apt,80,1,7,2019-01-17,0.27,2,304 +64015,Prime East Village 1 Bedroom,146944,David,Manhattan,East Village,40.72807,-73.98594,Entire home/apt,200,3,0,,,1,0 +36241914,"❥❥❥*NYC Room: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69342,-73.8684,Private room,55,4,0,,,6,150 +27952152,Ladies bedroom Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95668,Shared room,36,1,15,2019-06-01,1.45,34,365 +16587776,Taaffe Loft,33674633,Michael,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95877,Private room,55,1,0,,,1,0 +29490752,Williamsburg Bedford av. Comfy bedroom.,85942706,Pedro,Brooklyn,Williamsburg,40.71351,-73.96066,Private room,72,2,48,2019-06-28,5.83,1,95 +14779590,Quiet room with loft bed,16300594,Ari,Brooklyn,Williamsburg,40.716,-73.955,Private room,52,5,57,2019-06-25,1.65,3,104 +30393342,"Neat FiDi Studio w/ Gym, Doorman, + Roof deck by Blueground",107434423,Blueground,Manhattan,Battery Park City,40.704440000000005,-74.01711999999999,Entire home/apt,232,120,0,,,232,163 +1148279,Family Owned & Operated Brownstone,6294856,Yoki,Brooklyn,Bedford-Stuyvesant,40.68018,-73.94839,Private room,60,3,140,2019-01-01,1.87,1,189 +22154118,Heart of Williamsburg - HUGE 1BR Apartment modern,16725099,Shawn,Brooklyn,Williamsburg,40.716440000000006,-73.94807,Entire home/apt,160,2,1,2017-12-08,0.05,1,0 +19802994,Entire Loft with Private Bath in Queens,28270349,Jie,Queens,Flushing,40.76589,-73.79449,Entire home/apt,89,1,105,2019-07-07,4.38,2,0 +2683758,City Life in Harlem,13736818,John,Manhattan,Harlem,40.80494,-73.95638000000001,Entire home/apt,105,5,132,2019-06-20,2.09,1,12 +26158157,Sunny & Quiet 2 bedroom Apt In Greenwich Village,2697373,Anna,Manhattan,Greenwich Village,40.7298,-73.99838000000001,Entire home/apt,289,3,6,2019-04-22,0.52,1,0 +30591382,Comfy Room w/ Bunk Bed - Great for Friends!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.9413,Private room,55,1,25,2019-06-29,3.52,7,42 +24286518,Large Bright Apt Near Brooklyn's Prospect Park,183191309,Marie,Brooklyn,Prospect-Lefferts Gardens,40.65711,-73.95655,Entire home/apt,150,3,26,2019-04-27,1.84,1,26 +21515092,"Sunny, peaceful room in Ridgewood/Bushwick",102599996,Dean,Queens,Ridgewood,40.70707,-73.91455,Private room,40,30,6,2018-05-02,0.29,1,0 +4717237,Spacious Apt in Bushwick!,2358032,Vanessa,Brooklyn,Bushwick,40.70027,-73.9231,Entire home/apt,70,4,8,2017-09-17,0.33,1,0 +15751495,"Entire home in East Village, 2BD, Family friendly",1515114,Roman,Manhattan,East Village,40.72503,-73.97851,Entire home/apt,300,10,4,2019-05-14,0.53,1,16 +16766855,Manhattan - 15 mins to Midtown!,111298791,Nidia,Manhattan,Washington Heights,40.84941,-73.93432,Private room,60,3,51,2019-06-03,1.78,1,0 +35920784,Stunning Bedroom in NYC!! Walking to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80321,-73.93781,Private room,80,3,1,2019-07-03,1.0,3,213 +35939805,Chill & Cozy bedroom in the heart of Brooklyn.,104423008,Mimi & Elen,Brooklyn,Bedford-Stuyvesant,40.68715,-73.94232,Private room,45,2,1,2019-06-29,1.0,1,6 +1876969,Penthouse in Bedford Stuyvesant ,9582999,Shane,Brooklyn,Bedford-Stuyvesant,40.68305,-73.9419,Entire home/apt,150,1,0,,,1,0 +6512929,Large Studio on the Upper East Side,34052554,Whitney,Manhattan,Upper East Side,40.77499,-73.94875,Entire home/apt,120,1,1,2015-06-29,0.02,1,0 +31145928,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.98666999999999,Shared room,35,14,0,,,28,321 +6101104,1 BR UPPER EAST SIDE,9107715,Michele,Manhattan,Upper East Side,40.77526,-73.95075,Entire home/apt,170,5,26,2019-05-18,0.55,1,115 +32381165,"Elegant & Luxurious, Clean & Cheerful entire house",243147506,Peter,Staten Island,Stapleton,40.6279,-74.08202,Entire home/apt,275,2,11,2019-07-03,3.51,1,182 +9757167,1 Full Size Bed with Bike Rental,4422477,Crystal,Manhattan,East Village,40.72936,-73.97882,Private room,100,2,1,2016-07-31,0.03,1,0 +34279388,Hamilton Heights sanctuary,9070754,Michele,Manhattan,Harlem,40.82672,-73.94948000000001,Private room,50,10,0,,,1,55 +5070183,Sunny NYC APT - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74513,-73.91685,Entire home/apt,90,30,10,2019-05-23,0.28,3,332 +16363747,Comfy Room in Cobble Hill,107158968,Jessica,Brooklyn,Carroll Gardens,40.68384,-73.99065,Private room,45,1,8,2018-03-16,0.26,1,0 +18209427,Sunny big designer room in Art-loving Bushwick,2208374,Elena,Brooklyn,Bushwick,40.7016,-73.92103,Private room,85,3,8,2019-04-19,0.3,2,3 +15538057,Cute room for rent,84141567,Alida,Queens,Maspeth,40.73577,-73.89981,Private room,75,1,1,2018-10-25,0.12,3,173 +3251638,"Subletting in CrownHeights,Brooklyn",8243983,Sara,Brooklyn,Crown Heights,40.66758,-73.95033000000001,Private room,50,1,0,,,1,0 +35344126,Newly Renovated Apartment 47 Buffalo 3F Room#4,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67838,-73.92349,Private room,60,1,3,2019-06-24,3.0,2,176 +21440734,Great Finding! 3 stops away from Manhattan,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68558,-73.94230999999999,Private room,44,5,1,2017-11-28,0.05,7,0 +21435076,Charming Grand Central Two Bedroom (2F),37487997,Sean,Manhattan,Murray Hill,40.74866,-73.97755,Entire home/apt,138,30,1,2018-08-07,0.09,1,188 +15800923,Spacious and peaceful apt in East Village,25495114,Guisela,Manhattan,East Village,40.73016,-73.98170999999999,Entire home/apt,178,9,22,2018-03-22,0.71,1,0 +6188022,Handsome historic Greenpoint 2BR,1811344,Jennifer,Brooklyn,Greenpoint,40.73163,-73.95434,Entire home/apt,225,3,1,2015-08-01,0.02,1,0 +9546994,Spacious 1BR in UES townhouse,45595980,Tny,Manhattan,Upper East Side,40.76866,-73.96562,Entire home/apt,130,30,10,2019-01-07,0.41,12,13 +33734068,★Warm + Welcoming BEDSTUY - Private2BR on J/M/Z★,608700,Rachel,Brooklyn,Bedford-Stuyvesant,40.69156,-73.93496999999999,Entire home/apt,125,3,9,2019-06-26,3.18,1,24 +21624428,Quiet Upper West Side Brownstone Oasis,89013063,Gabriella,Manhattan,Upper West Side,40.78901,-73.98057,Entire home/apt,199,5,12,2019-06-30,1.35,1,12 +16543637,"Huge Sunny Bedroom, 20 min to Times Square!",10460189,Michael,Queens,Sunnyside,40.74171,-73.9254,Private room,55,6,23,2019-01-06,0.76,1,0 +30882957,Greenpoint Light & Plant filled Apt mins from city,37147077,Ashli,Brooklyn,Greenpoint,40.73787,-73.95281,Entire home/apt,115,3,2,2019-02-18,0.32,1,0 +18828846,"Private Studio Apartment, Staten Island, NYC",131115416,Kat,Staten Island,Emerson Hill,40.60642,-74.11756,Entire home/apt,49,1,43,2019-07-01,1.67,1,64 +35032636,Private Room w/a Patio in Center of Manhattan!,263901573,Maria,Manhattan,Midtown,40.75476,-73.97118,Private room,135,1,4,2019-06-18,4.0,3,29 +22217757,3-BR duplex in Bed-Stuy Brownstone,3616251,Michael,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95109000000001,Entire home/apt,66,3,41,2019-06-25,3.3,1,219 +20119459,Comfortable medium size room in downtown New York,8962305,Cici,Manhattan,Lower East Side,40.71375,-73.98988,Private room,75,5,3,2018-08-11,0.13,3,11 +18803219,One COSO private room in 108th,28649974,Ding,Manhattan,Upper West Side,40.80152,-73.96696,Private room,50,1,0,,,1,0 +9093219,Serenity Space,47411697,Marie,Manhattan,Harlem,40.81185,-73.94579,Private room,90,2,67,2019-06-22,1.54,1,211 +20639280,Prime Location close to Central Park!,5137740,Stefanie,Manhattan,Upper West Side,40.78696,-73.97293,Shared room,125,3,0,,,1,0 +35224490,Brand New 2 Bedroom Apartment Next To Times Square,94092661,Mendy,Manhattan,Theater District,40.76187,-73.98599,Entire home/apt,249,1,3,2019-06-25,3.0,1,127 +16024539,"Beautiful Greenpoint, Brooklyn apt by the park",1622733,Cristina,Brooklyn,Greenpoint,40.72413,-73.9509,Entire home/apt,75,2,14,2019-06-08,0.7,1,93 +7545060,Perfect UWS Studio Sanctuary!,24265578,Jasmine,Manhattan,Upper West Side,40.79955,-73.96369,Entire home/apt,125,2,7,2016-10-23,0.15,1,0 +9696357,Huge 1BD near Central Park Sleeps 5,48678883,D,Manhattan,Upper East Side,40.76871,-73.95479,Entire home/apt,177,1,136,2019-06-19,3.12,1,258 +322604,Artist Loft-McCarren Park-Williamsburg-BrooklynNYC,1651591,Todd,Brooklyn,Williamsburg,40.71819,-73.95414,Private room,95,2,160,2019-07-02,1.8,2,79 +30817001,"Beautiful, Newly Furnished, Luxury, Grand Central",52950465,Gal,Manhattan,Midtown,40.7541,-73.97055999999999,Entire home/apt,169,30,0,,,12,365 +30393609,"Sauve FiDi Studio w/ Private terrace, Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70864,-74.0051,Entire home/apt,224,30,0,,,232,338 +26911755,Eclectic sun-filled LES one bedroom,16253164,K,Manhattan,Lower East Side,40.71536,-73.98951,Entire home/apt,110,5,3,2019-03-16,0.28,1,1 +32564618,Furnished apartment United nation! Doorman 5243,16098958,Jeremy & Laura,Manhattan,Midtown,40.75619,-73.9654,Entire home/apt,135,30,0,,,96,306 +22714327,Birth place of Hip hop in the heart of the Bronx.,167560332,Schomberg,Bronx,Hunts Point,40.81978,-73.88743000000001,Private room,45,2,0,,,1,0 +24279771,Gorgeous Times Square Flat!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76008,-73.98846,Entire home/apt,299,2,41,2019-05-29,2.79,5,169 +7024778,Charming & Modern One Bedroom in BK,238354,Israel,Brooklyn,Clinton Hill,40.68524,-73.9607,Entire home/apt,150,3,125,2019-06-25,2.6,1,271 +22570044,Convenient bedroom in a modern apartment,790872,Tri,Manhattan,East Harlem,40.8049,-73.94012,Private room,80,1,4,2018-03-15,0.23,2,0 +9699559,Newly Renovated Midtown Apartment,3655401,Stephen,Manhattan,Kips Bay,40.74106,-73.97818000000001,Entire home/apt,150,3,2,2016-01-02,0.05,1,0 +29564676,Beautiful Bedroom in Booming Bushwick!,124069492,Maria,Brooklyn,Bushwick,40.70264,-73.92514,Private room,65,1,47,2019-07-03,5.53,2,29 +33044128,Morden spacious Private room near subway M/J/L/G,248161322,Sergii,Brooklyn,Bushwick,40.69995,-73.93933,Private room,64,30,0,,,14,364 +22373128,Bronx Norwood Apt,163586662,Cory,Bronx,Norwood,40.87446,-73.87453000000001,Private room,187,3,4,2019-07-04,0.22,1,76 +30345024,Very cozy apartment in the heart of Ridgewood =),223191465,Kiryl,Queens,Ridgewood,40.70844,-73.90905,Entire home/apt,120,3,16,2019-06-23,2.32,2,60 +3841048,"2BR, Heart of Lower East Side",18286622,Ryan,Manhattan,Lower East Side,40.72174,-73.98501,Entire home/apt,150,1,8,2015-06-19,0.13,1,0 +12902467,Cozy and relaxing East Village home,1411232,Thomas,Manhattan,East Village,40.7266,-73.97872,Entire home/apt,150,1,3,2016-05-19,0.08,1,0 +32876527,"Cozy place to stay, 30 min away from Manhattan.",71968525,Raya,Brooklyn,Borough Park,40.62688,-73.99795,Shared room,50,3,1,2019-03-13,0.25,1,177 +26259541,Cozy sunny loft in East Williamsburg,5314938,Olya,Brooklyn,Williamsburg,40.70937,-73.94113,Private room,94,2,18,2019-06-23,1.48,1,0 +35608298,High Floor two Bed One Bath,221200420,Adam,Manhattan,Murray Hill,40.744240000000005,-73.97272,Entire home/apt,190,30,0,,,23,343 +12344456,"NEWLY RENOVATED, studio in Park Slope",40040638,Karen,Brooklyn,Park Slope,40.67522,-73.98063,Entire home/apt,132,1,67,2019-06-27,1.77,1,264 +31270742,Meyers Inn,234006406,Daniel,Manhattan,Hell's Kitchen,40.75975,-73.99533000000001,Private room,150,1,7,2019-02-18,1.29,1,88 +35990312,3 Bed Astoria Dream By N/W Train | Street Parking,253839975,J,Queens,Ditmars Steinway,40.77674,-73.91031,Entire home/apt,190,4,0,,,1,152 +22700068,Room next to Central Park on the UES!,50765187,Lejla,Manhattan,Upper East Side,40.772870000000005,-73.95897,Private room,175,2,0,,,1,88 +44212,West Inn 2 - East Village,72062,Bruce,Manhattan,East Village,40.72518,-73.98034,Private room,125,1,84,2019-06-23,0.78,4,310 +8532763,D Rm 12 Sgl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68347,-73.97971,Private room,72,1,201,2019-06-26,4.45,4,5 +4785563,Holiday Sublet in Carroll Gardens,1977947,Stephanie,Brooklyn,Carroll Gardens,40.67725,-73.99968,Private room,100,1,0,,,1,0 +19857263,One bedroom luxury apartment!,26178020,Monica,Queens,Long Island City,40.75265,-73.9405,Entire home/apt,180,30,0,,,1,83 +7516992,Bedroom in Midtown Apartment,29544115,Chisom,Manhattan,Midtown,40.75737,-73.96916,Private room,70,1,1,2015-08-24,0.02,1,0 +1806138,Brooklyn Heights One Bedroom Loft,8423479,Sherief,Brooklyn,Brooklyn Heights,40.7001,-73.99183000000001,Entire home/apt,275,5,16,2018-08-28,0.23,1,12 +36453642,"☆ HUGE, SUNLIT Room - 3 min walk from Train !",53966115,Nora,Brooklyn,Bedford-Stuyvesant,40.69635,-73.93743,Private room,45,29,0,,,2,341 +20741446,"Colorful, Open and Spacious 1br in Inwood!",3731184,Lulu,Manhattan,Inwood,40.8608,-73.9281,Entire home/apt,87,2,5,2019-05-29,0.23,1,20 +32197473,26 Mt Morris Park Bldg in A la Soho!,217807652,Jennifer,Manhattan,Harlem,40.80625,-73.94646999999999,Private room,75,5,0,,,1,0 +31121622,Artists Home and Studio in Gramercy Park 2,307241,E. Adam,Manhattan,Gramercy,40.73583,-73.98037,Entire home/apt,155,3,18,2019-06-21,3.1,1,70 +10732197,Live on an island in NYC!,22774265,Pika,Manhattan,Roosevelt Island,40.76189,-73.94934,Private room,64,3,51,2019-06-30,1.28,1,40 +27196874,"Convenience, comfort & charm on the Upper West",8749245,Sarah,Manhattan,Upper West Side,40.78461,-73.98078000000001,Entire home/apt,175,30,2,2019-05-24,0.27,1,215 +19212024,Home,764688,Itamar,Brooklyn,Prospect Heights,40.67649,-73.97113,Entire home/apt,160,7,1,2017-07-13,0.04,1,0 +4842507,Two Bedrooms in Chelsea Apartment,6954001,Arian,Manhattan,Chelsea,40.74372,-73.99682,Private room,150,1,0,,,1,0 +16779705,Cozy West Village Studio,11699846,Natasha,Manhattan,Greenwich Village,40.73239,-73.9996,Entire home/apt,103,2,15,2018-10-28,0.57,1,0 +19274584,"Private Bedroom, 10 Minutes to Lower Manhattan",24842789,David,Brooklyn,Williamsburg,40.70717,-73.94949,Private room,60,1,5,2017-07-04,0.2,1,0 +26520475,Family suites in UpperEastSide Townhouse,199466039,Sydney,Manhattan,Upper East Side,40.77669,-73.95283,Private room,299,1,4,2019-06-23,0.35,3,365 +5692870,Greenpoint Master Bedroom,4471002,Janet,Brooklyn,Greenpoint,40.72705,-73.95504,Private room,70,5,0,,,2,0 +6973159,Bed-stuy belle,4225192,Gaby,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94653000000001,Private room,40,1,1,2015-07-11,0.02,1,0 +4216183,Cozy and Vibey Apt in Williamsburg,14565233,Gabriela,Brooklyn,Williamsburg,40.71543,-73.94159,Entire home/apt,115,2,3,2015-01-04,0.05,1,0 +23377720,Charming 1 Bedroom Apt in Sunnyside,96686669,Colleen,Queens,Sunnyside,40.74497,-73.91752,Entire home/apt,125,1,16,2018-12-09,0.98,1,0 +2067166,Private Room in Upper East Side,10573163,Diana,Manhattan,Upper East Side,40.77127,-73.95033000000001,Entire home/apt,75,3,2,2017-07-25,0.08,1,0 +36210603,Large River view room with king size bed,270849897,Helen,Manhattan,Washington Heights,40.83967,-73.94189,Private room,70,1,0,,,2,165 +28315707,!AMAZING PRIVATE ROOM 2 MIN FROM TRAIN STATION!,213795822,MateusDaniela,Brooklyn,Bushwick,40.68236,-73.90765,Private room,45,1,30,2019-07-05,3.63,2,327 +34087749,Sonder | 116 John | Laid-Back Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70803,-74.00639,Entire home/apt,100,29,0,,,327,325 +32550619,Cozy Upper West Side Spacious Studio,51268465,Sebastian,Manhattan,Upper West Side,40.79467,-73.96923000000001,Entire home/apt,135,1,1,2019-03-30,0.3,1,0 +28436764,5. Beautiful Clean room just 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73773,-73.92227,Private room,75,2,15,2019-07-06,1.84,6,342 +21259931,Brooklyn Style Williamsburg 2 BR Apartment,1189195,David,Brooklyn,Williamsburg,40.71153,-73.96088,Entire home/apt,195,3,4,2018-09-24,0.22,1,0 +28335929,Mott Haven Dorm-Bed B,174785358,Rem,Bronx,Port Morris,40.80952,-73.93005,Shared room,28,1,17,2019-06-03,1.79,7,83 +30389262,Large Couples Room for that Perfect New York Stay,137358866,Kazuya,Queens,Woodside,40.74635,-73.90774,Private room,62,30,2,2019-01-31,0.32,103,269 +23090887,"Family Apartment. Close to city. 3 bed, 2 Bath",116365995,Dan,Queens,Woodside,40.74652,-73.90738,Entire home/apt,289,4,10,2019-07-06,0.91,2,271 +2055467,Great Location on St. Marks Place,10526877,Steven,Manhattan,East Village,40.72852,-73.98705,Entire home/apt,150,1,0,,,1,0 +30672441,Brooklyn Pvt Bedroom with an amazing rooftop!,229588502,Nat,Brooklyn,Williamsburg,40.71251,-73.96061999999999,Private room,80,3,0,,,1,0 +17219608,Beautiful 2 Bedroom Apartment in Ridgewood,115939440,Mika,Queens,Ridgewood,40.69645,-73.90223,Entire home/apt,100,2,1,2017-07-14,0.04,1,0 +32447993,Private room in cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73238,-73.99954,Private room,110,1,13,2019-07-02,3.0,2,0 +6590549,Luxury 1bdrm w/ private terrace,6495511,Kari,Brooklyn,Williamsburg,40.712140000000005,-73.95111,Entire home/apt,175,3,5,2016-08-15,0.1,1,0 +18764,Cozy 2 BR in Williamsburg ,72014,Lulú,Brooklyn,Williamsburg,40.71154,-73.96112,Private room,145,3,61,2019-04-22,0.54,4,238 +33468225,Spacious Two-Bedroom Apartment with Private Garden,5421086,Steven,Manhattan,Harlem,40.82254,-73.9501,Entire home/apt,110,30,0,,,1,102 +1717226,BIG BROOKLYN HOUSE TO LOVE,9053876,Amy,Brooklyn,Crown Heights,40.6776,-73.93504,Entire home/apt,220,7,18,2019-06-30,0.27,2,156 +21108458,Cute bedroom in the heart of Williamsburg,127985639,Sarah,Brooklyn,Williamsburg,40.71171,-73.95158,Private room,45,7,0,,,1,0 +8844652,Quiet living room in Greenpoint 1BR,34738391,Rae,Brooklyn,Greenpoint,40.7308,-73.95394,Private room,60,1,4,2016-10-23,0.09,1,0 +807882,Apt in Heart of Williamsburg,4250697,Brandon,Brooklyn,Williamsburg,40.71986,-73.95925,Entire home/apt,149,4,1,2013-06-30,0.01,1,0 +16328372,Room In Bed-Stuy Apartment,68547639,Darren,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95371,Private room,100,1,0,,,1,0 +29850433,A Express Train Studio,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95025,Entire home/apt,70,30,3,2019-04-30,0.42,3,281 +22151092,Comfy New Bedroom near D line Fort Hamilton PKWY,5853457,Stanley,Brooklyn,Borough Park,40.64226,-73.99706,Private room,56,1,12,2019-03-11,0.65,4,333 +23166556,Private Quiet Room in Chelsea Brownstone Apartment,625092,Anne-Lise,Manhattan,Chelsea,40.75115,-73.99786999999999,Private room,63,7,4,2019-03-09,0.39,1,31 +21891982,LUXURY IN MURRAY HILL-25TH FLR/W/DRYER-FANTASTIC!,2856748,Ruchi,Manhattan,Murray Hill,40.74864,-73.97383,Entire home/apt,350,30,0,,,49,330 +21992083,"Walk everywhere, See everything! +2BR Midtown West",95010593,Julien,Manhattan,Hell's Kitchen,40.75289,-73.99403000000001,Private room,300,1,104,2019-07-05,5.59,1,19 +1046443,"Beautiful & spacious apartment in Astoria, Queens",5760970,Chris,Queens,Ditmars Steinway,40.77117,-73.90427,Private room,200,1,16,2019-06-30,0.68,2,364 +22233039,Room in Central Harlem for the holidays,12821514,Axelle,Manhattan,Harlem,40.80961,-73.94588,Private room,34,2,4,2019-06-26,0.21,1,0 +33172249,"#3 Cozy Studio , 2 blocks from Central Park",231138233,Filiz,Manhattan,East Harlem,40.78878,-73.94838,Entire home/apt,165,1,23,2019-07-07,6.83,5,102 +29826781,Beautiful Artist couples Home in Chinatown.,13619313,Kaylee,Manhattan,Little Italy,40.71731,-73.99861999999999,Entire home/apt,175,4,0,,,1,179 +2700596,Comfortable bedroom for one person,13792543,Gregory,Manhattan,Harlem,40.80697,-73.95203000000001,Private room,85,3,100,2019-06-30,1.6,3,341 +34116007,Sky luxury building 1b1b summer rental,217642173,Xiangjun,Manhattan,Hell's Kitchen,40.76229,-73.99994000000001,Private room,199,30,0,,,2,140 +20583769,Comfy Room w/UPGRADE to entire apartment,166634,Lou,Brooklyn,Brownsville,40.660340000000005,-73.91416,Private room,49,2,6,2019-06-11,2.2,5,191 +21541783,Bright and cozy studio apartment,156600754,Mike,Bronx,Longwood,40.82245,-73.90875,Entire home/apt,110,2,19,2018-12-16,0.97,1,0 +30584271,"SuperBig Beautiful room,clean manhattan 30min.",229421782,Sunny,Brooklyn,East Flatbush,40.64743,-73.94355999999999,Private room,43,3,3,2019-03-21,0.43,2,58 +25127644,One- Bedroom Apartment in the heart of LES.,44887757,Ina,Manhattan,Lower East Side,40.71865,-73.98982,Entire home/apt,159,4,12,2019-06-24,0.89,1,31 +9596551,Blocks Away From Central Park - NYC,37058836,Andrew,Manhattan,East Harlem,40.79682,-73.94876,Entire home/apt,260,1,1,2016-01-01,0.02,1,0 +11905096,Cozy Modern Luxury with Full Balcony,63506844,Andre,Brooklyn,Flatbush,40.63397,-73.9654,Entire home/apt,119,3,121,2019-07-08,3.38,1,280 +33666887,Close to Manhattan ( S ).,253748268,Katie,Queens,Elmhurst,40.74623,-73.88974,Private room,55,1,4,2019-07-05,1.94,1,83 +903972,Great Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82085,-73.94025,Private room,49,1,607,2019-06-21,7.75,3,293 +23629960,"Bright, spacious loft in the heart of Soho",33153151,Ellen,Manhattan,Greenwich Village,40.7275,-74.0,Entire home/apt,250,2,14,2019-06-01,1.24,1,0 +34640995,Far West Village loft,792823,Andrew,Manhattan,West Village,40.73437,-74.00739,Entire home/apt,175,30,0,,,1,0 +23924218,Apartment in the heart of Williamsburg,1966537,Matthieu,Brooklyn,Williamsburg,40.714490000000005,-73.96265,Entire home/apt,105,2,13,2019-01-27,0.82,1,0 +1748189,UPPER EAST SIDE 1BR APT - CENTRAL,1411399,Carlos,Manhattan,Upper East Side,40.77219,-73.95073000000001,Entire home/apt,199,1,29,2019-05-29,0.42,5,339 +9173352,Beautiful Brooklyn Apartment Share (Yellow Room),706623,Emilia,Brooklyn,Bushwick,40.69513,-73.90881,Private room,69,1,0,,,4,334 +8590777,BEAUTIFUL&BRIGHT 1 bd (E. Village),6346333,Zac,Manhattan,East Village,40.72917,-73.98517,Private room,180,1,27,2017-02-22,0.59,2,0 +8151536,Sunny Room in Williamsburg Brooklyn,24982391,Maythem,Brooklyn,Williamsburg,40.71248,-73.96379,Private room,90,1,5,2015-10-19,0.11,1,0 +5525510,Cozy Bohemian Room in New York City,23086547,Arya,Manhattan,Chinatown,40.71705,-73.99668,Private room,62,6,62,2019-06-23,1.27,1,317 +25480207,Art Lover’s Loft on SoHo/Greenwich Village Border,27871113,Ruben,Manhattan,Greenwich Village,40.72926,-73.99968,Entire home/apt,300,3,14,2019-01-01,1.07,1,0 +9614969,Cozy Room in East Harlem,49673620,Vanessa,Manhattan,East Harlem,40.79651,-73.93184000000001,Private room,60,3,10,2019-01-02,0.23,1,0 +24535857,Sonder | 21 Chelsea | Charming 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74081,-73.99616,Entire home/apt,265,29,0,,,96,331 +33945670,Quaint City Island.Come and enjoy our home,43332874,Margaret,Bronx,City Island,40.83959,-73.78586999999999,Private room,100,7,0,,,1,180 +11778761,Rose: Warm STG Welcome Yankees!,13750728,Gayle,Bronx,Longwood,40.81778,-73.90858,Private room,60,2,63,2019-06-24,1.68,4,336 +23230395,Enormous and illuminated on top floor (long term),84529,Alek,Queens,Elmhurst,40.74524,-73.8876,Entire home/apt,100,60,2,2019-01-02,0.17,1,132 +5361824,"1BR bright studio w/ priv bathroom, own entrance!",1290741,Kelvin,Brooklyn,Williamsburg,40.71539,-73.95425999999999,Private room,65,4,2,2018-11-20,0.04,1,0 +14397396,Lots of light Upper East Side Apartment.,8116703,Valentina,Manhattan,Upper East Side,40.77315,-73.95848000000001,Entire home/apt,210,3,0,,,1,0 +12443469,Private patio on the LES.,970831,Phillip,Manhattan,Chinatown,40.71472,-73.99081,Entire home/apt,195,2,80,2019-06-16,2.04,1,14 +12764378,Brooklyn Suite,69255438,Mark,Brooklyn,Crown Heights,40.67828,-73.95051,Entire home/apt,180,1,1,2016-05-23,0.03,1,0 +29705049,"Sunny, Cozy Apt in the Heart of BedStuy for Cheap",82286,Linda,Brooklyn,Bedford-Stuyvesant,40.68615,-73.9356,Entire home/apt,79,3,2,2019-05-09,0.25,1,157 +17366042,An Oasis in the Big Apple,40032009,Arianna,Manhattan,Morningside Heights,40.80391,-73.96576,Entire home/apt,140,5,0,,,2,0 +26450173,Dekalb Stop Flat,25545946,Tyler,Queens,Ridgewood,40.70772,-73.9118,Private room,80,2,0,,,1,88 +11138910,HUGE apartment in GREAT location!!!,827235,Adam,Brooklyn,Bedford-Stuyvesant,40.68437,-73.95849,Entire home/apt,109,3,3,2018-08-17,0.08,1,0 +22096731,Amazing room for NYC holiday season! Dec. 20-28,10775192,Joshua,Brooklyn,Crown Heights,40.66838,-73.96,Private room,45,1,0,,,2,88 +7733315,sunny and spacious respite,3010260,Genevieve & Brett,Brooklyn,Crown Heights,40.66983,-73.95331999999999,Entire home/apt,198,4,4,2018-08-12,0.08,1,0 +462454,Beautiful Lower East Side Apt! Women only.,2298239,Sunserae,Manhattan,Lower East Side,40.71746,-73.98782,Private room,89,5,4,2018-03-24,0.06,1,0 +17311284,Plant-filled 1 BD by Prospect Park,9152821,Jazmine,Brooklyn,Flatbush,40.65258,-73.9624,Entire home/apt,100,1,0,,,1,0 +35197500,Spacious 1 BR W/ adjustable Queen bed. Comfy!,121851703,Mo,Queens,Queens Village,40.72048,-73.73478,Entire home/apt,150,2,4,2019-07-08,4.0,2,19 +14690331,Unique Designer 1BR in Best NYC Neighborhood,27984357,Patrick,Manhattan,West Village,40.73316,-74.00782,Entire home/apt,300,4,24,2019-06-20,0.7,1,61 +12145578,Spacious Parkside Abode,2589215,Caroline,Brooklyn,Flatbush,40.65206,-73.96149,Private room,100,4,5,2018-11-09,0.14,1,7 +11185885,CHARMING 1 BEDROOM IN PERFECT LOC!,1613244,Ariel,Manhattan,East Village,40.72438,-73.98782,Entire home/apt,110,30,10,2018-08-12,0.28,9,337 +26410307,"1BR in Newly Renovated Apartment - Rm C, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.7052,-73.93016999999999,Private room,49,1,6,2019-06-09,0.53,7,343 +29359092,Sweet room,217159080,Illias,Queens,Elmhurst,40.74133,-73.88345,Private room,41,2,44,2019-06-22,5.24,1,123 +11542467,Manhattan Gem-Space & Convenience,52203920,Jennifer,Manhattan,Washington Heights,40.8348,-73.94067,Entire home/apt,150,2,119,2019-06-30,2.95,1,300 +14217692,Perfect Area in Williamsburg - Room,6702100,Dasha,Brooklyn,Williamsburg,40.71014,-73.95871,Private room,90,1,10,2017-07-30,0.28,1,0 +20780311,Cozy Apartment in Washington Heigths,106863782,Mariarosa,Manhattan,Washington Heights,40.85148,-73.9301,Entire home/apt,175,2,2,2017-11-05,0.09,1,0 +4404818,Bountiful Space and Cozy Home,2909990,Daniel,Manhattan,Washington Heights,40.851040000000005,-73.93616999999999,Entire home/apt,110,7,0,,,1,0 +243708,Williamsburg - Quiet and Comfy stay,288711,Andy,Brooklyn,Williamsburg,40.70875,-73.95508000000001,Entire home/apt,199,30,242,2019-04-01,2.59,1,102 +27389930,42NDFLR VIEWS!LINCOLN SQR-LUXURY MIDTOWNWEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77095,-73.98626,Entire home/apt,220,30,0,,,65,364 +19122371,Huge WV / Meatpacking 1 Bdrm,13377549,Opal,Manhattan,West Village,40.73848,-74.00251999999999,Entire home/apt,250,28,13,2019-01-01,0.52,1,0 +19326520,Awesome Williamsburg Apartment,16342788,Carlos,Brooklyn,Williamsburg,40.70857,-73.94501,Private room,85,1,2,2017-09-18,0.09,2,64 +35384123,Botanical Home,266360944,Olga,Queens,Springfield Gardens,40.66104,-73.76250999999999,Private room,70,1,1,2019-06-16,1.0,1,89 +7968983,4 bedroom 3 bath duplex w roof deck & washer/dryer,780477,Donavan,Brooklyn,East New York,40.66125,-73.89976,Entire home/apt,275,3,77,2019-07-03,1.67,1,256 +10173750,Simple Affordable Room in Brooklyn,24840827,Prashast,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93444000000001,Private room,55,1,0,,,1,0 +7867805,Best location in manhattan,41464907,Furkan,Manhattan,Kips Bay,40.74086,-73.9803,Entire home/apt,67,1,1,2015-08-20,0.02,1,0 +31090684,Comfy room in the Heart of Bushwick,23074465,John,Brooklyn,Bushwick,40.70304,-73.91694,Private room,60,1,21,2019-06-13,3.35,3,78 +31085679,Master bedroom in Bedstuy,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93115,Private room,80,3,11,2019-06-25,1.95,4,160 +26750461,Manhattan view from Queens- 15 min from NYC & BK,40643524,Mary,Queens,Sunnyside,40.73758,-73.92820999999999,Shared room,79,2,1,2018-07-22,0.09,1,0 +32672993,Cozy room in LES/Chinatown,2238256,Jaclyn,Manhattan,Chinatown,40.71463,-73.99054,Private room,128,13,0,,,1,91 +11010008,Private Spacious Room ~ Near Trains,57069872,Allison,Queens,Astoria,40.76101,-73.91573000000001,Private room,70,3,65,2019-06-20,1.66,1,89 +1586576,Private Bedroom in QUEENS,8452695,Macit,Queens,Maspeth,40.74033,-73.89921,Private room,56,28,14,2017-04-15,0.2,2,310 +11137382,"Modern Garden 2BD w/ Backyard, Dishwasher, Laundry",24839836,Kai,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94975,Entire home/apt,165,4,123,2019-06-23,3.08,1,43 +808313,Sunny East Village studio apartment,4252788,Suzana,Manhattan,East Village,40.72721,-73.98411,Entire home/apt,200,7,3,2015-11-13,0.04,1,0 +17157615,"East Village, Private room with access to garden",115395049,Adi And Evangel,Manhattan,East Village,40.725840000000005,-73.9894,Private room,78,1,38,2019-06-21,1.3,2,138 +35474470,Cute Apartment steps from Time Square,264805208,Mariel,Manhattan,Hell's Kitchen,40.75765,-73.99247,Entire home/apt,211,3,4,2019-06-28,4.0,1,56 +4392596,Great room in a 2 BD apartment,20820856,Waleed,Queens,Ditmars Steinway,40.77431,-73.9114,Private room,75,1,4,2019-05-26,1.85,1,0 +13300059,Quiet Home Base for Exploring an Exciting City!,36478779,Isa,Brooklyn,Prospect-Lefferts Gardens,40.66071,-73.9558,Entire home/apt,94,3,98,2019-07-03,2.71,1,94 +12303,1bdr w private bath. in lofty apt,47618,Yolande,Brooklyn,Fort Greene,40.69673,-73.97584,Private room,120,7,25,2018-09-30,0.23,1,311 +15789405,Bedroom available in Chic & Modern loft-like apt.,7607175,Rodney,Manhattan,Lower East Side,40.7208,-73.9819,Private room,75,5,1,2017-12-19,0.05,1,157 +29776797,"Huge bright 1,500SqFt loft. Subway down the street",224029433,Adrian,Brooklyn,Clinton Hill,40.68215,-73.96526,Entire home/apt,250,3,15,2019-06-23,1.99,1,43 +13912712,SUNNY & QUIET STUDIO NEAR CENTRAL PARK UPPER EAST,9293730,Inna,Manhattan,Upper East Side,40.76911,-73.95694,Entire home/apt,129,30,10,2019-04-15,0.35,16,299 +4566340,Spacious 2BR Greenpoint Getaway,54712,Nick,Brooklyn,Greenpoint,40.73455,-73.95489,Entire home/apt,245,3,0,,,2,0 +6967201,Huge Room on Central Park,36530547,Tj,Manhattan,Upper West Side,40.79126,-73.96738,Private room,110,1,0,,,1,0 +13511359,visit nyc and live like a local,25750650,Bernadette,Manhattan,East Village,40.72152,-73.9838,Private room,109,4,25,2019-05-31,0.91,1,140 +1763736,Charming Upper West Side 1 Bedroom,1304097,Edon,Manhattan,Upper West Side,40.78448,-73.97386,Private room,116,1,43,2018-08-01,0.63,1,0 +20981267,*Private-Comfortable space 2 min from train,150993634,Linda,Brooklyn,Bushwick,40.68157,-73.90547,Private room,52,2,84,2019-06-30,3.93,1,310 +35633408,Impeccable Private one&half bedroom and full bath,83132880,Alyandry,Queens,Maspeth,40.73859,-73.89534,Private room,49,2,0,,,4,307 +16230581,Cozy apartment in the heart of Williamsburg!,326185,Martina,Brooklyn,Williamsburg,40.71532,-73.95563,Entire home/apt,108,3,3,2017-07-28,0.1,1,0 +20942352,Private Room in Astoria minutes to NYC,150565606,Mayra,Queens,Ditmars Steinway,40.77864,-73.91445,Private room,47,1,90,2019-05-13,4.13,2,100 +33656146,"Open Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.7609,-73.98594,Entire home/apt,240,30,0,,,232,189 +30706817,Large Sunny 2 Bedrooms in Manhattan-Steps2Subway,229844097,Dave,Manhattan,East Harlem,40.798190000000005,-73.94294000000001,Private room,89,1,23,2019-06-05,3.37,1,285 +26787899,Gourgeous room in Brooklyn,201419214,Bryant,Brooklyn,Clinton Hill,40.6853,-73.96385,Private room,65,30,31,2019-06-03,2.7,3,365 +9408123,Beautiful Loft - Willimsbrg Bedford,31368679,Brenda,Brooklyn,Williamsburg,40.71914,-73.95709000000001,Entire home/apt,280,1,13,2016-10-29,0.3,1,363 +29037276,Affordable 5-P Room n Private bath,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00541,Private room,45,1,3,2019-05-26,0.42,7,357 +4183424,Charming West Village 1 bdrm,9405848,Susie,Manhattan,West Village,40.73314,-74.00475,Entire home/apt,145,3,11,2019-04-08,0.34,1,0 +20125722,AG's Palace 4,121612198,Maura,Brooklyn,Canarsie,40.6433,-73.91333,Private room,89,1,2,2018-10-07,0.16,4,359 +16905585,Bright and Spacious East Village Loft,112851539,J,Manhattan,East Village,40.72977,-73.98841,Entire home/apt,350,3,85,2019-06-24,2.87,1,208 +19312705,Serene brownstone in the heart of Brooklyn,42947876,Susan,Brooklyn,Clinton Hill,40.68664,-73.96285999999999,Entire home/apt,212,5,11,2018-08-08,0.46,1,10 +30388750,Cozy Midtown 1BR w/ Doorman near Penn Station by Blueground,107434423,Blueground,Manhattan,Midtown,40.75335,-73.99029,Entire home/apt,267,30,0,,,232,274 +24493940,Private Bedroom with En Suite Bath on Central Park,1114587,Keenan & Emily,Manhattan,Upper West Side,40.79591,-73.96204,Private room,90,2,9,2019-06-12,0.62,3,181 +33536886,★ Private Room in great location near Times Square,228151544,Rubens,Manhattan,Hell's Kitchen,40.7637,-73.99037,Private room,135,1,12,2019-07-07,5.9,1,278 +6678351,Spacious Private Bedroom+Bathroom !,7577024,Daphne,Manhattan,Harlem,40.82875,-73.94574,Private room,100,1,0,,,1,0 +13744807,Cooper Square Top-Floor Duplex with Terrace,438572,Adrian,Manhattan,East Village,40.7281,-73.99067,Entire home/apt,250,2,3,2016-08-15,0.08,1,0 +4783809,"Quiet, value & convenience in NYC's best hood!",177846,Alexandra,Brooklyn,Fort Greene,40.68916,-73.977,Entire home/apt,175,4,27,2019-06-22,0.49,2,11 +31823510,Park Slope apartment in the heart of it all.,34097291,Andrew,Brooklyn,South Slope,40.66626,-73.98127,Entire home/apt,275,1,0,,,1,0 +12447273,Sunny room in 3 bedroom apt.,67341852,Grace,Brooklyn,Gowanus,40.684740000000005,-73.98862,Private room,100,1,1,2016-05-15,0.03,1,0 +5849991,3 bedroom Apt at $249 per Night.,9898029,Anthony,Brooklyn,East Flatbush,40.65041,-73.92574,Entire home/apt,249,3,10,2019-06-03,0.65,5,156 +19812097,"Two B/Rm (2-3 guests) Near Beach, A/air train, JFK",139957134,Trudy,Queens,Arverne,40.5991,-73.79944,Private room,50,1,28,2019-06-22,1.23,3,251 +36107803,"Dreamy brownstone with cozy room, big closet, bike",57919043,Garrison,Brooklyn,Park Slope,40.67918,-73.97659,Private room,49,24,0,,,1,44 +18596772,Apartment w/ 2 bedrooms in the heart of E. Village,5212097,Chris,Manhattan,East Village,40.72237,-73.98148,Private room,275,2,8,2018-11-18,0.31,2,0 +28014073,Heights,9130040,Candace,Brooklyn,East Flatbush,40.661840000000005,-73.93436,Private room,89,1,2,2019-05-19,0.22,6,365 +16651348,1 bedroom apt with garden in Red Hook Brooklyn,6074181,Terumi,Brooklyn,Red Hook,40.67575,-74.01183,Entire home/apt,93,2,37,2019-06-21,1.32,1,222 +34791292,"NY Oasis With Patio. Near Park, Dining & More!",4924477,Adelaida,Manhattan,East Village,40.726,-73.97861,Private room,94,5,5,2019-06-30,5.0,1,47 +25996748,"Full Apartment, 1 Bedroom",18197276,Miguel,Bronx,Kingsbridge,40.88058,-73.90552,Entire home/apt,85,2,13,2019-01-01,1.05,1,0 +13444490,"Bright, spacious one bedroom in the East Village",1671824,Zoe,Manhattan,East Village,40.72471,-73.98891,Entire home/apt,106,3,0,,,1,0 +24143,"Williamsburg—Steps To Subway, Private Bath&Balcony",97219,Seth,Brooklyn,Williamsburg,40.71332,-73.94176999999999,Private room,101,3,335,2019-05-29,3.02,1,152 +17104272,Private delightful & calming Brownstone Room,23714657,Melani,Brooklyn,Bedford-Stuyvesant,40.69471,-73.93736,Private room,70,2,5,2018-12-31,0.27,1,272 +28641288,TOWN HOME ONE,63953718,Chai,Queens,Elmhurst,40.73137,-73.87193,Private room,69,2,3,2018-11-15,0.33,1,0 +3302463,Luxurious Brownstone Parlour,16678513,Robert,Manhattan,Gramercy,40.73548,-73.98895999999999,Entire home/apt,275,5,30,2019-06-22,0.5,1,20 +4000571,Private Suite/Bath in Manhattan NYC,3325418,Patricia,Manhattan,Morningside Heights,40.80452,-73.96393,Private room,200,1,30,2018-04-30,0.52,3,0 +45393,Greenwich Village Stylish Apartment,201297,Myrna,Manhattan,West Village,40.73423,-74.0046,Entire home/apt,150,26,38,2016-04-20,0.36,1,225 +32387391,Rent my unique 2BR Condo in Prime Williamsburg,4427256,Dani,Brooklyn,Williamsburg,40.71581,-73.95546,Entire home/apt,215,90,0,,,1,328 +32045160,Harlem Sweets Home,187419882,Terrence & Skye,Manhattan,Harlem,40.82711,-73.94143000000001,Private room,99,2,18,2019-07-01,3.8,3,72 +10134298,1 Bedroom in HUGE Full Floored Apt.,2017504,Fataah,Manhattan,Gramercy,40.73375,-73.98474,Private room,85,1,2,2016-10-23,0.06,2,0 +34622597,Sun-filled gem near the water and transportation,24482415,Karuna,Brooklyn,Bay Ridge,40.63275,-74.02946,Private room,35,7,2,2019-06-29,1.4,1,1 +27166904,PRIVATE APARTMENT IN DOORMAN BUILDING,94832914,John,Manhattan,Financial District,40.70571,-74.00675,Entire home/apt,139,3,1,2019-03-18,0.27,1,0 +2048796,Sunnyside Gardens Oasis!,763439,Joel,Queens,Sunnyside,40.74817,-73.91886,Private room,50,1,1,2017-08-12,0.04,1,0 +20506481,Cozy Chelsea Apartment,12552750,Kimberly,Manhattan,Chelsea,40.73982,-74.0011,Entire home/apt,195,1,71,2019-06-24,3.2,1,12 +15911434,Charming West Village Brownstone Apartment,10437339,Ro,Manhattan,West Village,40.73845,-74.00551,Entire home/apt,220,10,8,2019-02-28,0.27,2,0 +22345693,Cozy room in Bushwick Collective,14805627,Giuseppe,Brooklyn,Bushwick,40.7032,-73.92703,Private room,45,2,8,2018-09-03,0.43,1,0 +24618397,ENJOY NYC IN 1 BDRM CONDO HEART OF MIDTOWN,29100568,Deborah,Manhattan,Theater District,40.76205,-73.982,Entire home/apt,165,30,0,,,4,0 +21777252,Bohemian 2 Bedroom in the East Village,4333342,Megan,Manhattan,East Village,40.72833,-73.97926,Entire home/apt,159,6,6,2019-05-12,0.31,2,12 +6209799,"Spacious, new studio, in Gramercy",7894614,Daniel,Manhattan,Gramercy,40.73697,-73.98074,Entire home/apt,150,7,5,2015-08-24,0.1,1,0 +36148509,Classy East Village Enclave,60811527,Mariana,Manhattan,East Village,40.72595,-73.98971,Entire home/apt,220,15,0,,,1,61 +31355295,Private Sunny Room (D) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65144,-73.94659,Private room,80,2,0,,,2,27 +32238198,Sonder | Stock Exchange | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.01066,Entire home/apt,229,2,9,2019-05-13,2.11,327,346 +34856733,Large spacious room,20110967,Maria,Manhattan,Inwood,40.86025,-73.92647,Private room,24,10,0,,,1,145 +17108306,Large apartment in Upper East with doorman!,108795105,Danni,Manhattan,Upper East Side,40.78471,-73.95054,Private room,89,4,7,2018-01-01,0.26,1,188 +34199108,Beautiful apartment in Manhattan!,130155462,Fred,Manhattan,Financial District,40.70578,-74.00769,Entire home/apt,280,2,11,2019-06-26,5.89,1,182 +32816987,Enjoy Summer in the West Village.,50449750,Nick,Manhattan,West Village,40.73598,-74.0048,Entire home/apt,168,30,4,2019-06-16,1.85,1,47 +28101852,Hip Apartment in Brooklyn w/ lots of amenities,212274985,Sam,Brooklyn,Bedford-Stuyvesant,40.67765,-73.92345,Entire home/apt,150,2,17,2019-06-24,1.73,1,11 +34621157,Comfortable Private Room & Bathroom En-suite,261187437,Shasha,Brooklyn,Borough Park,40.6354,-74.00576,Private room,75,1,2,2019-05-23,1.07,6,151 +2301258,Entire Park Slope Brownstone,11753837,Alexandra,Brooklyn,Park Slope,40.67262,-73.97351,Entire home/apt,305,10,8,2018-08-11,0.12,1,30 +9415109,Quiet modern space,48816743,Wesley,Brooklyn,Bedford-Stuyvesant,40.69856,-73.94368,Entire home/apt,142,2,18,2017-01-02,0.44,1,0 +26522398,Private room in Williamsburg Brooklyn,198900829,David,Brooklyn,Williamsburg,40.71142,-73.96141,Private room,80,5,1,2018-08-14,0.09,1,0 +24965233,"Cute, renovated 2 bedroom Apt. in East Village",89608382,Meghan,Manhattan,East Village,40.72522,-73.98205,Entire home/apt,224,3,4,2019-01-01,0.29,1,7 +18615497,Comfortable space in Brooklyn,41467596,Donald,Brooklyn,Crown Heights,40.66482,-73.93619,Private room,140,1,1,2017-06-03,0.04,1,0 +17979764,Jen Apt,84497333,Jennifer,Manhattan,SoHo,40.72237,-73.99817,Private room,10,5,2,2017-04-15,0.07,1,0 +29180542,Newly renovated duplex home in Central Harlem,219879114,Tricia,Manhattan,Harlem,40.81182,-73.94331,Entire home/apt,159,2,26,2019-06-09,3.05,1,343 +28540618,Sweet studio in the heart of Nolita,215403497,Rebecca,Manhattan,Little Italy,40.71908,-73.99766,Entire home/apt,150,4,3,2018-11-28,0.32,1,179 +24366897,Modern & Stylish 1 Bed Manhattan w/ Private Garden,183886601,Lee,Manhattan,Inwood,40.87001,-73.92418,Entire home/apt,120,30,3,2019-03-03,0.22,2,27 +3967945,Great Apt steps from Central Park,18481481,Jeff And Jessica,Manhattan,East Harlem,40.79347,-73.95029,Private room,90,1,265,2019-01-06,4.5,1,36 +34343028,Cozy Bronx Apartment Near Yankee Stadium!!!,259282634,Dametria,Bronx,Morris Heights,40.84752,-73.92293000000001,Private room,130,1,0,,,1,180 +142069,"EAST VILLAGE STUDIO, sunny & quiet",277747,Josh,Manhattan,East Village,40.72485,-73.97813000000001,Entire home/apt,150,4,22,2014-11-10,0.23,1,0 +479867,Williamsburg 2b apartment with deck,2377104,Hannah,Brooklyn,Williamsburg,40.71739,-73.95472,Entire home/apt,225,2,338,2019-07-07,3.9,2,225 +5652946,Sunny Bedroom Near Prospect Park,19233353,Kallie,Brooklyn,Prospect-Lefferts Gardens,40.65758,-73.95866,Private room,45,14,6,2018-10-15,0.12,2,0 +15542745,"Cozy , Cute and Spacious one bedroom Brooklyn Apt",37082109,Camille,Brooklyn,Bay Ridge,40.62413,-74.03085,Entire home/apt,90,1,0,,,1,0 +23978220,JFK;minutes to JFK;$2.50to Manhattan,180347935,Sharon,Queens,Queens Village,40.72822,-73.74119,Shared room,37,1,0,,,1,0 +9778855,Room in Modern Bushwick Townhouse,10262649,Andrew,Brooklyn,Bushwick,40.69134,-73.90895,Private room,85,4,24,2016-10-13,0.57,2,0 +13881787,Williamsburg large and sunny private room,1002452,Florencia,Brooklyn,Williamsburg,40.71124,-73.94861,Private room,57,7,14,2019-05-04,0.39,2,0 +27018851,Bright and Spacious Apartment,32866463,Bassam,Brooklyn,Bay Ridge,40.63328,-74.01978000000001,Entire home/apt,145,1,41,2019-06-23,3.63,2,139 +15336596,Private bedroom in artsy NYC apartment.,77010815,Eean,Bronx,Norwood,40.8722,-73.87607,Private room,50,3,22,2019-06-02,0.76,1,342 +33500292,Close to JFK,146275359,Modupe,Queens,Springfield Gardens,40.68831,-73.75140999999999,Private room,42,3,10,2019-07-06,3.09,3,352 +53137,"Quiet, sunny Midtown Manhattan apt.",240360,Marlaine,Manhattan,Hell's Kitchen,40.762440000000005,-73.99271,Entire home/apt,195,5,10,2019-07-01,1.01,1,0 +18455830,Charming 2 bedroom apartment in Brooklyn,60160069,Tatiana,Brooklyn,Bushwick,40.69063,-73.91224,Entire home/apt,190,3,42,2019-05-20,1.62,1,303 +22152232,Beautiful room with comfy bed in Bushwick,10018530,Nicole,Brooklyn,Bushwick,40.70328,-73.91429000000001,Private room,50,2,2,2018-07-19,0.1,1,0 +35874901,JFKQueensComfort. Private Room -Welcome Long Stays,105444832,Angie,Queens,Woodhaven,40.68931,-73.85485,Private room,35,9,0,,,1,246 +30567047,WELCOME TRAVELERS AND NYC LOVERS! R/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.6871,-73.95735,Private room,40,15,4,2019-05-25,0.56,11,325 +21202563,Beautiful luxury condo heart of Brooklyn,32834879,Neel,Brooklyn,Greenpoint,40.7284,-73.94983,Entire home/apt,200,3,0,,,1,0 +35064014,Peaceful.,264128458,Nathaniel,Brooklyn,Fort Greene,40.69026,-73.97074,Private room,50,1,4,2019-06-24,3.08,1,336 +34327434,Bushwick Art Collective: Bedroom C (sub-level),3635302,Adam,Brooklyn,Bushwick,40.70434,-73.9177,Private room,90,3,1,2019-05-20,0.6,3,1 +19505956,Classy Upper East Side Private Bedroom,136982841,Daniele,Manhattan,East Harlem,40.78603,-73.95015,Private room,165,1,4,2018-09-16,0.18,1,179 +19313064,Bright and Comfortable Chic Chelsea 1-bedroom!,34006180,Zack,Manhattan,Chelsea,40.73996,-73.99987,Entire home/apt,200,3,3,2019-04-21,0.16,1,11 +18790512,Private Room in Beating Heart of NYC Art Scene,110349355,Justin,Brooklyn,Bushwick,40.70439,-73.92619,Private room,51,3,5,2017-09-19,0.19,1,0 +20054400,"Clean, Spacious Place on a Tree-Lined Street",142078178,Melody,Brooklyn,Crown Heights,40.66953,-73.9493,Entire home/apt,150,2,1,2017-07-30,0.04,1,0 +23451817,Spacious 1BR Apartment,17487184,Emmanouela,Brooklyn,Williamsburg,40.71356,-73.95276,Entire home/apt,150,6,0,,,1,0 +12210730,Zen room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.68979,-73.94299000000001,Private room,54,2,1,2016-04-17,0.03,3,319 +13525760,420 friendly Beautiful rm with plenty of sunlight,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91484,Private room,85,14,32,2019-01-02,0.92,4,115 +35830404,Beautiful Designed Studio Right of Grand Central!!,263205756,Matan,Manhattan,Midtown,40.75229,-73.96953,Entire home/apt,155,1,2,2019-06-30,2.0,1,300 +4574225,Bright and Cozy Bedroom NYC A1,20559017,Yohan,Manhattan,East Harlem,40.78617,-73.94421,Private room,60,30,2,2017-08-26,0.04,9,312 +3293842,Brooklyn Living with Balcony!,16641600,Theresa,Brooklyn,Sunset Park,40.66294,-73.99675,Entire home/apt,121,12,8,2019-04-27,0.13,2,7 +27507299,Sun-filled studio apt in Clinton Hill brownstone,1639484,Megan,Brooklyn,Prospect Heights,40.6814,-73.96584,Entire home/apt,91,5,2,2019-05-16,0.21,1,0 +31403932,"Go to NYC? Stay with us. Cozy, Clean &Close all",137501374,LKL Rental,Queens,Elmhurst,40.73998,-73.86802,Private room,28,1,12,2019-06-24,3.03,3,236 +35804219,Cozy room available in Brooklyn for July,35616021,Begum,Brooklyn,Bedford-Stuyvesant,40.68477,-73.9509,Private room,40,2,1,2019-06-29,1.0,1,1 +66026,Private Bedroom Brownstone Brooklyn,322716,Alex,Brooklyn,Crown Heights,40.6715,-73.94808,Private room,49,21,15,2019-06-30,0.15,5,331 +5300082,CLEAN AND STYLISH EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.72956,-73.98165999999999,Entire home/apt,160,1,210,2019-06-23,3.93,4,265 +24645434,Small Comfortable Midtown Room,9864136,Anthony,Manhattan,Kips Bay,40.74233,-73.98031,Private room,75,30,3,2018-12-02,0.29,26,345 +35131393,At Home in the Big City! *New York*,185396542,Edward,Manhattan,Midtown,40.7534,-73.97283,Private room,300,5,0,,,1,6 +34343208,Convenient room in Hell’s Kitchen,34689714,Maria,Manhattan,Hell's Kitchen,40.76595,-73.98643,Private room,120,1,10,2019-06-23,4.76,5,357 +16040229,Cute BR at Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76807,-73.98418000000001,Private room,100,2,2,2017-11-06,0.09,3,0 +6141561,Beautiful room & Amazing location,6984488,Jessica,Brooklyn,Prospect Heights,40.67483,-73.9646,Private room,125,4,16,2016-10-30,0.32,2,339 +30767905,Updated Private Bedroom in Co-Living Space 2L-3,230192510,Zach,Brooklyn,Fort Greene,40.69758,-73.97431999999999,Private room,48,30,1,2019-02-24,0.22,25,311 +21055153,Chez Jazzy Midtown East,151681101,Chez,Manhattan,Midtown,40.75614,-73.96706,Entire home/apt,225,5,30,2018-10-31,1.4,1,0 +29393808,Cozy 1 bed in amazing NYC location! (Chelsea),17218010,Katie,Manhattan,Chelsea,40.74011,-73.99745,Entire home/apt,175,2,17,2019-04-21,2.08,1,0 +727512,Duplex Loft Suite w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73867,-73.95448,Entire home/apt,199,3,50,2019-07-02,0.67,28,47 +7824018,"Hell's Kitchen, the ❤️ of the city!",41193978,Caroline,Manhattan,Hell's Kitchen,40.76222,-73.99088,Private room,100,3,4,2016-10-15,0.09,1,0 +28129668,Stunning Brand New Apartment 35m to NYC!!!,303926,Kay,Brooklyn,Cypress Hills,40.68287,-73.88578000000001,Entire home/apt,160,2,3,2019-04-21,0.29,2,167 +7871818,"Artist/Musician Apartment, Bushwick",4769886,Tom & Nic,Brooklyn,Bushwick,40.69533,-73.92053,Private room,109,2,105,2019-06-27,2.25,2,244 +4678568,Spacious private BR 2 Queen beds & 3 mins to train,24195428,Maireni,Brooklyn,Crown Heights,40.66811,-73.93393,Private room,65,1,222,2019-06-17,3.99,1,292 +10049766,1 Bedroom in a 3 bedrooms loft,35083661,Julien,Brooklyn,Williamsburg,40.71741,-73.95978000000001,Private room,65,1,0,,,1,0 +16884027,Historic Brownstone in Harlem,78930817,Santi,Manhattan,Harlem,40.80443,-73.94546,Entire home/apt,120,1,9,2017-04-17,0.31,1,0 +30109128,"Chic Apartment in Financial District, Manhattan",9156492,Matei,Manhattan,Financial District,40.70701,-74.0151,Entire home/apt,114,1,6,2019-07-02,0.79,1,11 +34934854,(A) Private Twin Single Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72577,-73.86509000000001,Private room,55,1,0,,,10,106 +44221,Financial District Luxury Loft,193722,Coral,Manhattan,Financial District,40.70666,-74.01374,Entire home/apt,196,3,114,2019-06-20,1.06,1,0 +4501164,Union Square Apartment + Private Backyard,17074459,Mattan,Manhattan,East Village,40.73325,-73.98789000000001,Private room,97,3,64,2017-07-24,1.15,3,0 +12755571,Studio in the heart of Manhattan,69384130,Nina,Manhattan,Midtown,40.75227,-73.97351,Entire home/apt,143,1,1,2016-05-13,0.03,1,0 +16721137,Spacious Duplex Apartment in South Williamsburg,10966450,Alex,Brooklyn,Williamsburg,40.71285,-73.96477,Entire home/apt,250,4,42,2019-06-17,1.41,1,126 +27428046,Upper West Side Apartment,200834302,Harold & Rose,Manhattan,Harlem,40.80329,-73.957,Entire home/apt,126,4,34,2019-07-02,3.12,1,90 +4756551,Bedroom w/Private Bath,4031913,Sheena,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.96055,Private room,89,2,139,2019-06-18,2.53,1,94 +24561311,Harlem Retreat Living Room NYC,17345576,Kimberly,Manhattan,Harlem,40.80322,-73.94488,Shared room,65,30,0,,,1,342 +7869876,"Entire floor of house Very Private 2BR suite,SUNNY",17382996,Eileen,Bronx,Port Morris,40.80247,-73.91435,Entire home/apt,90,2,152,2019-06-30,3.25,1,299 +28909110,Modern 1 Bedroom In Vibrant BK Neighborhood,10218689,Bere,Brooklyn,Crown Heights,40.67088,-73.95128000000001,Entire home/apt,90,4,26,2019-06-19,2.85,1,0 +14440066,Bedroom in SoHo/Nolita,5073448,Alessandra,Manhattan,Nolita,40.72127,-73.99526,Private room,100,4,2,2019-05-07,0.32,1,0 +20529760,Excellent Double Room,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68609,-73.9448,Private room,70,2,45,2019-06-21,1.96,3,350 +32531179,Wonderful 1 Bedroom Apartment (Washington Sq Park),45499169,Michael,Manhattan,Greenwich Village,40.72927,-74.00003000000001,Entire home/apt,146,30,1,2019-03-02,0.23,1,89 +29635253,New york Cozy studio,34075689,Zhen Zhen,Queens,Maspeth,40.7221,-73.90223,Entire home/apt,100,7,23,2019-06-25,2.86,3,88 +34835072,High End Renovated Apartment - Sutton place,61396454,Ash,Manhattan,Midtown,40.75669,-73.96199,Entire home/apt,300,30,0,,,14,329 +4325329,Charming Brownstone Apt Steps from Central Park!,1537663,Madeline,Manhattan,Upper West Side,40.78667,-73.96924,Entire home/apt,200,2,56,2019-06-28,0.98,1,226 +23304014,Charming and Cozy Two-Bedroom,33923279,Hollis,Manhattan,Harlem,40.82932,-73.94575,Entire home/apt,100,3,2,2018-04-21,0.12,2,0 +35860350,"Cute, Tidy Room in the Best Part of Crown Heights!",37678089,Katie,Brooklyn,Crown Heights,40.67459,-73.9576,Private room,65,1,0,,,1,342 +919491,Park Slope LARGEST (private) SHARE IN PARK SLOPE,4938247,Kevin,Brooklyn,Park Slope,40.67665,-73.97925,Private room,70,2,163,2019-06-18,2.13,1,163 +30857071,Luxurious Hell’s Kitchen! Vibrant Famous NYC!,7985095,Douglas,Manhattan,Hell's Kitchen,40.76547,-73.99032,Entire home/apt,285,2,5,2019-07-02,1.4,3,44 +16798165,Newly renovated and cozy 1-bedroom in Brooklyn,1653951,Mario,Brooklyn,Bay Ridge,40.63473,-74.02833000000001,Entire home/apt,100,2,109,2019-06-23,3.67,1,216 +17542798,Amazing 1 Bedroom Apt in the Heart of LES,40935862,Andrew,Manhattan,Lower East Side,40.72105,-73.98371,Entire home/apt,150,3,6,2017-07-20,0.22,1,90 +21397049,Tranquility & Privacy in the Concrete Jungle,11167829,Dana (& Justin),Manhattan,Harlem,40.827940000000005,-73.94163,Private room,50,4,3,2017-10-30,0.14,3,0 +31670625,Bright financial district apartment with views,237283862,Benjamin,Manhattan,Financial District,40.70504,-74.00787,Entire home/apt,250,2,6,2019-04-06,1.26,1,0 +25776030,Private Room in the heart of NYC. Room 3 of 3,22463377,Allison,Manhattan,Murray Hill,40.74907,-73.97818000000001,Private room,120,1,52,2019-07-04,4.26,3,40 +19545851,Brooklyn Living,137293453,Remi,Brooklyn,Crown Heights,40.67308,-73.94114,Private room,36,7,1,2017-08-10,0.04,1,0 +16811364,"Queen Sized Bed Townhouse Apartment, Near Subway",102482048,Susy,Brooklyn,Bushwick,40.6821,-73.90856,Private room,30,2,54,2019-06-14,1.87,4,179 +511436,"Wake up to the skyline of the city, prime location",2519356,Darya,Brooklyn,Williamsburg,40.7139,-73.96553,Entire home/apt,96,3,1,2018-05-26,0.07,1,0 +36309947,Spacious Upper East Side 1BR apt near attractions,30283594,Kara,Manhattan,Upper East Side,40.76302,-73.95769,Entire home/apt,269,30,0,,,121,318 +10069601,Cozy bedroom in beautiful apartment,13358864,Matthew,Brooklyn,Bedford-Stuyvesant,40.69453,-73.94725,Private room,60,3,0,,,2,0 +17714306,Private Room in Brooklyn,53972872,Autumn,Brooklyn,Crown Heights,40.67186,-73.94094,Private room,50,1,6,2018-08-28,0.21,1,0 +12433898,Cuarto muy confortable. 2 personas. Cerca de todo.,67261284,Dante,Queens,Jackson Heights,40.75302,-73.8797,Private room,47,1,15,2018-12-20,0.39,2,0 +9956834,Historic Striver's Row Apartment,18999923,Guirlaine,Manhattan,Harlem,40.82011,-73.94434,Entire home/apt,120,3,92,2019-06-20,2.39,1,32 +10836805,A Zen oasis Harlem apartment,56119624,Neta,Manhattan,Harlem,40.81195,-73.95274,Private room,150,1,17,2017-08-09,0.43,1,363 +6462078,Great room near CUMC!,16549175,Alana,Manhattan,Washington Heights,40.84441,-73.94218000000001,Private room,40,6,0,,,1,0 +23482476,Private Room in Comfortable Bushwick Apartment,15562068,Meg,Brooklyn,Bushwick,40.7046,-73.92198,Private room,55,1,18,2019-07-01,1.11,1,19 +35217588,•Bright and Cozy room in an elegant apartment•,258441018,Jaison,Bronx,Claremont Village,40.84268,-73.91006999999999,Private room,40,1,0,,,1,188 +23091460,Lovely Central Park duplex w/ large outdoor patio,104425922,Matthew,Manhattan,Upper East Side,40.7773,-73.95652,Entire home/apt,225,2,12,2019-06-17,0.71,1,363 +23184876,"Bright, Family-Friendly Brooklyn Townhouse",7807118,Garrett,Brooklyn,Gowanus,40.6844,-73.98669,Entire home/apt,350,3,0,,,1,0 +19380186,Beautiful BRIGHT and SUNNY - BEST location in NYC!,13669059,Nancy,Manhattan,East Village,40.72489,-73.98956,Entire home/apt,250,4,14,2019-05-24,0.58,1,16 +6850752,Large Bright Williamsburg Apartment - Lorimer St.,35897162,Monica,Brooklyn,Williamsburg,40.70954,-73.94808,Private room,52,20,6,2018-05-08,0.23,1,0 +35931169,Great Room Great Location Williamsburg,35082637,Ollya,Brooklyn,Williamsburg,40.71655,-73.96415999999999,Shared room,115,3,1,2019-07-02,1.0,2,66 +230321,Apt with EmpireState view-Subway around the corner,1203500,Civan,Brooklyn,Bedford-Stuyvesant,40.69046,-73.95167,Entire home/apt,80,2,35,2019-06-09,0.4,1,36 +23105764,"2 Br Apt Steps to LGA, Near Citified JFK,Manhattan",156948703,Asad,Queens,East Elmhurst,40.77074,-73.87342,Entire home/apt,257,1,95,2019-07-01,6.51,6,341 +1444924,New Law in New York | NO rentals under 30 days..,926743,Lancelot,Brooklyn,Carroll Gardens,40.67947,-73.99709,Entire home/apt,100,30,4,2019-01-28,0.06,1,321 +34624240,Sharing Bunk Beds with Backpacking and Couchsurfer,38483415,Florentino,Manhattan,East Harlem,40.79905,-73.94453,Shared room,75,1,1,2019-05-18,0.58,4,365 +3793874,Beautiful West Village 1 BR Apt--Best Location!,19106718,Leena,Manhattan,West Village,40.73223,-74.00355,Entire home/apt,200,4,17,2019-06-28,0.29,1,35 +14588156,Historic Brooklyn Brownstone,154866,Robert,Brooklyn,Crown Heights,40.67275,-73.94555,Entire home/apt,110,4,75,2019-06-29,2.26,1,48 +4787201,Sunny and Spacious Brooklyn Apartment,7365719,Annika,Brooklyn,Bedford-Stuyvesant,40.67958,-73.94581,Entire home/apt,150,5,12,2018-08-19,0.24,1,9 +21661292,Brownstone 1BR Apt in the heart of Park Slope,9678658,Emily,Brooklyn,Park Slope,40.67441,-73.97614,Entire home/apt,160,4,7,2018-11-25,0.36,1,0 +35931422,Bed Stuy Brooklyn Room AVail,230230732,Kashoya,Brooklyn,Bedford-Stuyvesant,40.69387,-73.93885,Private room,100,1,0,,,1,87 +24545438,Private Room with En-Suite in Brooklyn Brownstone,30384092,Ian,Brooklyn,Crown Heights,40.66725,-73.95017,Private room,70,3,45,2019-06-24,3.33,1,135 +8269681,Sunny Clean Bedroom,43601551,Anamaria & Ricardo,Manhattan,East Harlem,40.78987,-73.94883,Private room,75,2,13,2019-01-02,0.28,2,325 +20333200,"FEMALE only- Clean, Quiet, Lincoln Center Apt",683180,Jina,Manhattan,Upper West Side,40.77345,-73.98774,Private room,89,10,10,2018-12-12,0.44,1,248 +17692275,SUNNY BDRM IN VICTORIAN HOME,3249903,Kamilya,Brooklyn,Flatbush,40.63637,-73.95698,Private room,75,4,2,2019-06-10,0.32,3,188 +25476838,Private Apartment w/Sunny Balcony in Riverdale NYC,78289814,Tamara & Fran,Bronx,North Riverdale,40.903290000000005,-73.89990999999999,Entire home/apt,105,2,27,2019-06-30,2.13,1,328 +13142258,"Great 1 BR, 17 minutes to Times Square!",65652567,Wayne,Queens,Woodside,40.74377,-73.9024,Entire home/apt,125,2,156,2019-06-25,4.13,1,263 +15018397,Peaceful Room in Dumbo Art Loft Too,37723496,Anna,Brooklyn,DUMBO,40.70426,-73.98633000000001,Private room,125,2,98,2019-06-29,2.88,2,164 +20350538,WEST VILLAGE/CHELSEA-PRIME LOCATION,76104209,Rated,Manhattan,Chelsea,40.73993,-74.00147,Entire home/apt,164,30,0,,,33,307 +33406188,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70712,-74.00609,Private room,169,7,2,2019-05-19,0.81,13,344 +23035441,Upper West Side Exclusive 1 bedroom,170935045,Gal,Manhattan,Upper West Side,40.78904,-73.97171999999999,Entire home/apt,117,5,1,2018-02-23,0.06,1,0 +25421109,"BedStuy Spacious & Modern, 2nd floor Apt w/ Roof",16285179,Carolina,Brooklyn,Bedford-Stuyvesant,40.68695,-73.91937,Entire home/apt,120,3,2,2019-01-01,0.19,2,0 +12567993,Private bedroom near L & M trains,68139079,Gary,Brooklyn,Bushwick,40.70076,-73.92371,Private room,50,1,0,,,1,0 +10058942,"Columbia Univer, female/couple only",12245536,Rong,Manhattan,Harlem,40.82083,-73.95795,Private room,39,2,3,2016-07-21,0.07,2,0 +12375976,Tompkins Square Apartment,16617640,Martin,Manhattan,East Village,40.72376,-73.97975,Entire home/apt,99,20,2,2017-01-10,0.06,1,0 +31123611,JFK Airport Great place to stay 6 minutes away,232251881,Lakshmee,Queens,Jamaica,40.66823,-73.78374000000001,Shared room,40,1,65,2019-07-06,10.0,8,346 +21956264,Beautiful bed bed room,110346058,Shirley,Queens,Jamaica,40.6741,-73.79775,Private room,45,4,12,2019-06-10,2.03,1,291 +13355757,Private Room in Dumbo Loft,75739500,David,Brooklyn,DUMBO,40.704,-73.98464,Private room,100,3,23,2017-04-15,0.63,1,0 +12776694,Private Bedroom in the East Village,50533072,Kate,Manhattan,East Village,40.72591,-73.97946999999999,Private room,90,1,3,2016-07-27,0.08,1,0 +32244500,Bushwick APT with big bright room/private backyard,64318524,Stephanie,Brooklyn,Bushwick,40.69754,-73.91465,Private room,65,4,1,2019-04-21,0.38,1,0 +26252069,Beautiful cozy apartment in Midtown West,197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.9871,Shared room,80,1,60,2019-06-19,4.76,7,225 +12038773,Beautiful Sunny Fire Escape Room,64444742,Sushanti,Brooklyn,Bushwick,40.69305,-73.90825,Private room,60,2,21,2019-06-11,0.53,1,364 +27577076,Grand 2 bed Apartment in Heart of Harlem,8663057,Alli,Manhattan,East Harlem,40.80226,-73.93583000000001,Entire home/apt,175,3,27,2019-06-28,2.53,2,128 +9998154,Spacious Master Bedroom in EV,32993860,Zach,Manhattan,East Village,40.72658,-73.97827,Private room,129,1,0,,,1,0 +19910952,RELAX & UNWIND - Classy Unique HOUSE for 9 People,99202586,Thelma,Staten Island,Randall Manor,40.62967,-74.1285,Entire home/apt,135,2,21,2019-05-26,0.88,5,354 +12090887,Private bedroom 5 mins to ColumbiaU,18370504,Emily,Manhattan,Morningside Heights,40.8131,-73.96074,Private room,65,2,5,2016-08-29,0.13,1,0 +15241968,Wonderful Room in South Harlem near Central Park,79738498,Heroni,Manhattan,Harlem,40.8014,-73.95793,Private room,100,2,12,2017-05-28,0.36,1,0 +12231254,Flushing Master Room w/ Private bathroom,65809485,Shirley,Queens,Flushing,40.74979,-73.82911,Private room,60,5,66,2019-05-19,1.69,12,141 +21827276,Cozy Minimalist Small Room in a Great Apartment,93011199,Marion,Brooklyn,Bedford-Stuyvesant,40.68588,-73.95551,Private room,50,1,24,2018-05-24,1.21,1,0 +7330488,Charming Classic UWS Bedroom & Balcony,18008678,Clayton,Manhattan,Upper West Side,40.80243,-73.9706,Private room,100,2,33,2018-04-20,0.68,2,0 +11457413,Designed By Stark!Basket Ball Gym 5150,16098958,Jeremy & Laura,Manhattan,Financial District,40.70563,-74.00658,Entire home/apt,170,30,3,2017-04-22,0.1,96,312 +35716058,Lux 23rd Fl. Wall St. Apartment,7169907,Nikki,Manhattan,Financial District,40.704240000000006,-74.00789,Entire home/apt,135,2,2,2019-07-05,2.0,1,2 +13498392,"Spacious, Bright, Private NYC",2861768,Justin,Manhattan,Harlem,40.81325,-73.95323,Private room,79,6,31,2019-05-23,0.84,3,18 +22231557,•COZY APARTMENT 5 MINS TO MANHATTAN•,128793815,Atthaphon,Brooklyn,Williamsburg,40.72092,-73.96122,Private room,65,2,31,2019-07-01,1.68,4,282 +12567631,Bedstuy Flat Sublet 3 WEEK MIN,3910530,Mathew,Brooklyn,Bedford-Stuyvesant,40.68459,-73.94993000000001,Entire home/apt,60,1,0,,,1,0 +16160189,Private Double Room in Bushwick Loft,6007970,Irem,Brooklyn,Williamsburg,40.70666,-73.93666,Private room,45,3,31,2019-03-03,1.01,1,0 +18048473,#3 Private Quadruple Room 20mnts from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81217,-73.91776999999999,Private room,41,5,21,2019-06-20,0.78,4,334 +35547909,舒适单人房(Comfort single room),257683179,H Ai,Queens,Flushing,40.76135,-73.80724000000001,Private room,35,1,0,,,6,7 +25299137,Cozy Private Bedroom by Central Park in UWS,43809903,Eddie,Manhattan,Upper West Side,40.80321,-73.96463,Private room,35,1,64,2019-06-16,4.76,4,22 +16490732,Entire 3rd Fl in Brownstone steps to Prospect Park,107933494,Josie,Brooklyn,Park Slope,40.66763,-73.97485999999999,Entire home/apt,260,3,17,2019-05-29,0.6,2,309 +34754084,Cozy One Bedroom Apartment,135710202,Christina,Brooklyn,Bedford-Stuyvesant,40.69446,-73.94694,Entire home/apt,68,1,0,,,1,255 +9926599,Spacious Studio Size One bedroom,16616941,Dave,Manhattan,Murray Hill,40.74807,-73.98091,Private room,125,1,0,,,1,0 +16360727,"Cozy Apartment in Brooklyn, NY",106193743,Clifton,Brooklyn,Crown Heights,40.67816,-73.95111999999999,Entire home/apt,100,7,0,,,1,0 +24131817,Modern & Spacious 1br East Village Apartment,91332497,Nikki,Manhattan,SoHo,40.72256,-74.00018,Private room,130,2,3,2019-01-21,0.48,1,0 +8361443,"Cozy studio, with fantastic light",10618178,Greg,Manhattan,Upper East Side,40.78174,-73.94829,Entire home/apt,119,6,4,2015-10-30,0.09,1,0 +33431978,Overnight a brand new apartment in upper east side,251852817,Owen,Manhattan,East Harlem,40.79885,-73.94304,Shared room,45,1,14,2019-06-25,4.16,7,83 +5783899,"Live like a local! Queen size bed, private room.",23977712,Sarah,Manhattan,East Harlem,40.79088,-73.94596999999999,Private room,100,1,315,2019-06-27,6.1,2,76 +4457556,cozy queen for 2 in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79849,-73.93843000000001,Private room,92,3,48,2019-06-17,0.94,2,115 +36060344,"BEAUTIFUL ONE BEDROOM, PRIVATE BACKYARD. Manhattan",269609725,Cristina,Manhattan,Lower East Side,40.71276,-73.98488,Entire home/apt,200,2,0,,,1,361 +16204655,Awesome spot in Bushwick,78119367,Joel,Brooklyn,Bushwick,40.7015,-73.9266,Private room,82,2,0,,,1,0 +29722985,J-ROOM SHARE BY CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.67098,-73.79656999999999,Shared room,34,4,0,,,8,365 +15088024,Cozy Private Room for Eager Travelers! :D,49807429,Russell,Brooklyn,Prospect-Lefferts Gardens,40.65916,-73.95074,Private room,54,3,169,2019-07-02,4.98,1,136 +6450252,Large Sunny Room in Williamsburg,640117,Simon,Brooklyn,Williamsburg,40.71339,-73.95546,Private room,88,4,7,2015-11-14,0.14,5,0 +30393998,Roomy 1BR near Broadway w/ Indoor pool + Doorman by Blueground,107434423,Blueground,Manhattan,Theater District,40.76058,-73.9855,Entire home/apt,285,30,0,,,232,220 +20303322,"Quiet,Comfy&Spacious Room near F/G train",104836016,Qingming,Brooklyn,Kensington,40.6421,-73.98170999999999,Private room,66,2,14,2019-06-01,0.6,4,180 +32499495,Carroll Gardens Charm with Magical Manhattan Views,67274316,Linsey,Brooklyn,Columbia St,40.68418,-74.00313,Entire home/apt,175,2,30,2019-06-28,7.14,1,73 +32941264,Laundry + Free Cleaning & WiFi - 5min to Metro,102242694,Jess & Ben,Brooklyn,Bushwick,40.69987,-73.92638000000001,Private room,35,20,1,2019-07-01,1.0,1,24 +30215130,Large Newly Renovated 1 Bedroom Apartment,27245607,Sidney,Manhattan,West Village,40.73331,-74.00502,Entire home/apt,165,1,2,2019-03-11,0.32,1,0 +1682282,Private room in MANHATTAN NYC,8896180,Facundo Martin /Teresa,Manhattan,East Harlem,40.79053,-73.94398000000001,Private room,90,3,139,2019-07-06,2.38,1,293 +32915674,Stylish Industrial Theater District Apartment,4534893,Alex,Manhattan,Theater District,40.76219,-73.98564,Entire home/apt,325,2,16,2019-06-28,4.57,4,304 +34678944,"Cozy room at Downtown Manhattan, Chinatown, Soho",250825715,Cherry,Manhattan,Chinatown,40.7176,-73.99728,Private room,85,1,3,2019-06-09,2.73,3,55 +28978328,2254 and 2nd avenue,43531190,Kasun,Manhattan,East Harlem,40.79701,-73.93709,Private room,45,240,0,,,1,280 +1839818,"1B in NYC - East Village, Manhattan",9615574,Gwen,Manhattan,Stuyvesant Town,40.73196,-73.97932,Entire home/apt,139,5,27,2017-07-21,0.48,1,0 +19968221,"Artist's Townhouse w/ garden, grill -near subway",184913,John,Brooklyn,Gowanus,40.68192,-73.9908,Entire home/apt,298,3,3,2019-05-27,0.36,1,192 +8369401,Peaceful South Slope Living Quarters,31104953,Deborah,Brooklyn,Windsor Terrace,40.66012,-73.98343,Entire home/apt,123,3,141,2019-07-03,3.09,1,0 +11422056,Lovely & Cozy Apartment in Queens!,59996301,Joseph,Queens,Maspeth,40.7416,-73.90684,Entire home/apt,120,3,88,2019-06-19,2.25,1,303 +21056510,G1 Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.75599,-73.93415,Private room,55,1,76,2019-06-06,3.56,9,229 +6362227,"Cozy room with beautiful yard and huge, soft bed",28645487,Ilana,Brooklyn,Bushwick,40.6952,-73.92396,Private room,50,4,11,2018-09-23,0.48,1,0 +11320246,Room for rent in East Village,47625541,Jeff,Manhattan,East Village,40.72152,-73.97999,Private room,65,2,4,2016-07-21,0.1,2,1 +27389714,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77071,-73.98545,Entire home/apt,230,30,0,,,65,348 +26890649,Bedstuy Puppet Cave,125059640,Ben,Brooklyn,Bedford-Stuyvesant,40.69516,-73.93462,Entire home/apt,125,3,2,2018-07-29,0.17,1,0 +29212676,Large soho apartment,28823649,Rose,Manhattan,SoHo,40.72405,-74.00073,Entire home/apt,194,1,0,,,3,89 +26889078,Staten Island Garden Apartment Near Ferry,199535935,Tim,Staten Island,St. George,40.64641,-74.08502,Entire home/apt,130,2,52,2019-06-24,4.6,1,96 +14745847,Beautifu large studio in the heart of Manhattan,39939354,Roberto,Manhattan,Midtown,40.75797,-73.97004,Entire home/apt,150,7,29,2019-06-22,0.86,1,31 +12026418,Cozy room in a brand new building !,64355945,Catharina,Queens,Rego Park,40.72526,-73.85973,Private room,70,2,32,2019-07-01,0.81,1,89 +17211881,A Cozy 2-Bedroom Apartment in Astoria.,115854849,Cem,Queens,Astoria,40.77355,-73.92551999999999,Entire home/apt,100,7,4,2019-05-29,0.17,1,0 +25266226,"Minimalist Private Room in Queens, New York",104653500,Sonam,Queens,Woodside,40.7547,-73.90852,Private room,100,2,0,,,1,0 +21191462,Charming and very Sunny Apartment,46208887,Lu&Ben,Brooklyn,Crown Heights,40.67541,-73.96061,Entire home/apt,70,7,2,2018-05-13,0.11,1,0 +23919286,Comfortable and close to everything!,179789963,William,Manhattan,Midtown,40.74564,-73.98181,Entire home/apt,115,3,3,2018-04-20,0.2,1,0 +31734628,"Sublet in Williamsburg, 50 steps from L train",23670318,Sean,Brooklyn,Williamsburg,40.7135,-73.94644,Private room,48,28,0,,,1,0 +14069379,1br Apartment to relax in NYC,12614433,Kelly,Brooklyn,Bedford-Stuyvesant,40.695170000000005,-73.93808,Entire home/apt,85,1,1,2016-08-12,0.03,1,0 +20773084,Lovely room across the street from high bridge.,128692351,Nahuel,Bronx,Highbridge,40.841840000000005,-73.92535,Private room,42,2,92,2019-05-19,4.11,5,311 +2807939,Ditmas Park 1BR,14362628,Michael,Brooklyn,Flatbush,40.6435,-73.96065,Entire home/apt,100,8,0,,,1,0 +30223426,Clean Room near M & R train. Close to mall & LGA,137358866,Kazuya,Queens,Elmhurst,40.734770000000005,-73.87858,Private room,41,30,2,2019-05-28,0.76,103,268 +15005115,Sunny and quiet Chinatown gem,440145,Saralena,Manhattan,Civic Center,40.71342,-73.99929,Entire home/apt,150,2,8,2018-12-29,0.23,1,58 +3644017,"Lovely, quiet, private, close to everything",5909599,Danica,Queens,Ditmars Steinway,40.77591,-73.9145,Private room,85,1,31,2019-06-04,0.51,2,84 +18288371,Beautiful Apartment in the Heart of Chelsea,8008110,Erika,Manhattan,Chelsea,40.74672,-74.00187,Entire home/apt,195,6,33,2019-05-20,1.36,1,1 +12601900,Magical 1 BR in Crown Heights,16702803,Jacob,Brooklyn,Crown Heights,40.67426,-73.93968000000001,Entire home/apt,70,2,2,2016-06-04,0.05,1,0 +16914748,Beautiful Garden Apartment in Bed Stuy Brownstone,190239,Cat,Brooklyn,Bedford-Stuyvesant,40.68498,-73.92613,Entire home/apt,91,10,26,2019-06-14,0.97,1,12 +7798327,Private bedroom in Lower East Side,41046343,Brian,Manhattan,Lower East Side,40.72235,-73.98769,Private room,75,1,1,2015-09-04,0.02,1,0 +23614276,"Apto En la exclusiva zona Austin St, Forest Hills",176660539,Veronica,Queens,Forest Hills,40.71895,-73.84249,Private room,120,1,3,2018-10-07,0.29,1,322 +26784504,Spacious and Comfy private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.63985,-74.01094,Private room,65,2,10,2019-05-19,0.85,5,186 +2754179,Fabulous Apt w/ Gorgeous Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.772490000000005,-73.95756,Entire home/apt,117,30,3,2018-01-04,0.09,29,298 +11790749,"Big, bright apartment by the beach.",46798824,Matt,Brooklyn,Brighton Beach,40.57844,-73.95822,Entire home/apt,199,1,0,,,1,0 +21266334,"Quirky, cozy, and fun in Bushwick!",11571496,Carmela,Brooklyn,Bushwick,40.68701,-73.91436999999999,Entire home/apt,84,2,115,2019-06-23,5.92,2,6 +30737182,Central Park Charming Home,197082458,Luisa,Manhattan,Upper West Side,40.7773,-73.97736,Entire home/apt,350,2,9,2019-06-23,1.32,1,286 +9806634,Cozy room in sweet East Village Apt!,4765305,Haffro,Manhattan,East Village,40.72288,-73.98454,Private room,72,1,3,2019-06-24,0.08,4,201 +8055582,Private Autumn Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69003,-73.93085,Private room,79,1,284,2019-06-09,6.09,7,67 +30218133,The Exclusive Studio Manhattan NYC,13133052,Bruno,Manhattan,Midtown,40.74749,-73.9869,Entire home/apt,182,3,16,2019-07-01,2.31,1,301 +22209216,Private spacious bedroom 10min from Manhattan!!,79373189,Laureta,Queens,Long Island City,40.75901,-73.93404,Private room,40,1,32,2019-06-23,1.75,2,123 +10341003,"Clean and spacious,grnd floor apt",53218990,Samuel,Manhattan,Harlem,40.82377,-73.94565,Entire home/apt,110,1,0,,,1,0 +26013177,"Avenue L, your Home away from Home.",195520304,Wayne,Brooklyn,Canarsie,40.64175,-73.89228,Entire home/apt,100,2,56,2019-07-05,4.47,1,133 +18191892,Huge 2BR Apartment. Walk to beach/buses,28483768,Skender,Staten Island,Dongan Hills,40.57825,-74.08879,Entire home/apt,95,4,45,2019-06-19,1.66,1,134 +28881114,A+ Chelsea_global inspired location. Large room,3464645,Sybilla Michelle,Manhattan,Chelsea,40.74768,-73.99965,Private room,175,2,0,,,3,70 +32668910,A Peaceful Studio In The Heart of BK,8960858,Hui Chong,Brooklyn,Crown Heights,40.676390000000005,-73.94785,Entire home/apt,102,3,7,2019-06-10,1.72,1,4 +11659296,Apartment in Williamsburg - Long term lease,49572092,Laura,Brooklyn,Williamsburg,40.71976,-73.94234,Entire home/apt,105,180,10,2017-11-28,0.25,1,1 +10134546,Family Room/Kitchen/Shared Bathroom,51991283,Jennifer,Manhattan,Harlem,40.79933,-73.95296,Private room,189,1,7,2019-06-23,0.16,5,291 +32342541,Room Nearby train station to Times Square NYC,242831353,Blanca,Queens,Long Island City,40.75204,-73.9226,Private room,30,3,14,2019-06-29,3.41,1,77 +3895930,Beautiful 2br in Williamsburg,20166817,Amitai,Brooklyn,Greenpoint,40.71959,-73.94795,Entire home/apt,116,28,45,2019-05-31,0.76,1,35 +36471896,Private Bedroom & PRIVATE BATHROOM in Manhattan,23548340,Sarah,Manhattan,Upper East Side,40.77192,-73.95369000000001,Private room,95,1,0,,,1,2 +26947761,Sunny private room in the heart of NYC 53E2,190921808,John,Manhattan,Hell's Kitchen,40.75503,-73.99724,Private room,53,30,0,,,47,316 +18499074,Cozy spacious rooms with natural sunlight,127714840,Guy,Brooklyn,Bedford-Stuyvesant,40.68144,-73.93429,Private room,80,5,11,2019-06-30,0.9,1,340 +24307675,Luxury Apartment right on Union Square!,183375315,Brandon,Manhattan,East Village,40.73389,-73.99083,Entire home/apt,220,4,13,2019-06-30,0.93,1,2 +4758924,Luxury Apt in Artsy Bushwick ,24555785,Shanna,Brooklyn,Bushwick,40.69685,-73.92933000000001,Private room,73,1,1,2015-01-03,0.02,1,0 +13358660,Large private room in a very spacious 2 Bed/2 Bath,75773748,Halston,Manhattan,Upper West Side,40.79918,-73.9635,Private room,120,2,0,,,1,0 +6612744,Sunny&Stylish 1BR★Terrace★Doorman,24261066,Lisa,Manhattan,Lower East Side,40.71966,-73.99235999999999,Entire home/apt,300,2,5,2016-01-03,0.1,1,0 +32424818,Kay's Cozy Getaway,243526828,Kay,Brooklyn,Canarsie,40.639790000000005,-73.89647,Entire home/apt,200,3,3,2019-06-27,1.13,1,357 +16227708,"Large sunny private bedroom, private garden",106043391,Samuel,Brooklyn,Greenpoint,40.72743,-73.94491,Private room,60,3,0,,,1,0 +8764617,Bedroom avail in Bowery neighborhod,29896455,Josh,Manhattan,Chinatown,40.7182,-73.99562,Private room,63,1,52,2019-06-15,1.14,2,276 +31277426,Airy & Bright Three Bedroom Apt steps from Subway,29582232,Lee And Teri,Brooklyn,Flatbush,40.64061,-73.96486999999999,Entire home/apt,125,4,10,2019-07-02,2.78,5,84 +35593963,Great Apartment close to Time Square,264833923,Sharoom,Manhattan,Hell's Kitchen,40.75612,-73.99263,Entire home/apt,209,3,1,2019-06-27,1.0,1,68 +3710685,Vintage NYC apt 15min from Times Sq,15789646,Steven,Queens,Sunnyside,40.74502,-73.9169,Entire home/apt,100,3,70,2019-07-01,1.21,2,319 +2722983,GREAT FOR FAMILIES AND GROUPS!!!,8489537,Tony,Brooklyn,Williamsburg,40.70404,-73.93496,Entire home/apt,200,2,129,2019-07-04,2.03,1,64 +27201242,**Newly Listed 2-bedroom gem with private entrance,1837068,Mansura,Brooklyn,Bushwick,40.69279,-73.91423,Entire home/apt,110,2,21,2019-06-08,2.96,1,13 +7630422,Upper West Side Perfection,37138251,Matthew,Manhattan,Upper West Side,40.78733,-73.97364,Entire home/apt,230,1,161,2019-06-21,3.39,1,347 +19812,2 bedroom Williamsburg Apt - Bedford L stop,74857,Starlee,Brooklyn,Williamsburg,40.71833,-73.95748,Entire home/apt,105,3,61,2018-08-09,0.53,1,272 +5019183,Large 1 Bedroom in Brooklyn,25894037,Margaret,Brooklyn,Crown Heights,40.67477,-73.94960999999999,Entire home/apt,125,1,0,,,1,0 +20212707,"Quite, clean & relaxing double bed room",143979484,Blan,Manhattan,Washington Heights,40.84532,-73.93814,Private room,68,3,34,2019-06-09,1.69,2,253 +9496094,Modern Flat in the Heart of Chelsea,41066327,Netanya,Manhattan,Chelsea,40.74603,-74.00147,Entire home/apt,160,4,2,2016-09-14,0.05,1,0 +33584724,Comfy’s Bedroom Close Subway,120763629,Mei,Brooklyn,Bath Beach,40.60615,-74.00315,Private room,49,2,3,2019-04-26,1.05,2,347 +34859801,Enjoy NY under the lights of the Empire State.,45433836,Michelle,Manhattan,Chelsea,40.74473,-73.99213,Entire home/apt,310,7,0,,,1,81 +32722385,Large bright room in Brooklyn artist's apartment!,6753972,July,Brooklyn,Bedford-Stuyvesant,40.68362,-73.95692,Private room,60,1,1,2019-05-26,0.67,1,95 +3779262,BKLYN BROWNSTONE: The Stuyvesant,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.6825,-73.92519,Entire home/apt,130,3,135,2019-05-28,2.27,2,206 +12267734,Studio/Heart of the East Village,4899404,Jessica,Manhattan,East Village,40.72838,-73.98539,Entire home/apt,115,4,46,2019-06-15,1.19,1,0 +32912783,Loft bed,113295877,Jonathan,Staten Island,Tompkinsville,40.63476,-74.0894,Private room,55,3,3,2019-06-30,1.11,3,61 +35189086,Warm Cozy Decatur 2F bedroom #4,262033253,Jenny,Brooklyn,Bushwick,40.687470000000005,-73.90977,Private room,70,1,2,2019-06-24,2.0,2,172 +16480673,Charming 1 Bdr Apt in the Heart of West Village,19578509,Elodie,Manhattan,West Village,40.73409,-74.00621,Entire home/apt,190,2,24,2019-06-18,0.78,1,0 +21367482,Spacious Brooklyn Brownstone Apt.,46332983,Rosemarie,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95085999999999,Entire home/apt,120,2,26,2019-06-13,1.82,1,22 +26104760,Private En-Suite Bedroom in charming BK Retreat,56198002,Hannes & Will,Brooklyn,Flatbush,40.65239,-73.96417,Private room,75,2,14,2019-06-16,1.12,1,17 +35446198,COMFORTABLE PRIVATE ROOM in Williamsburg,8119817,Mila,Brooklyn,Williamsburg,40.71601,-73.9413,Private room,80,1,1,2019-06-30,1.0,2,23 +12699413,Williamsburg Large Bedroom,66556483,Graham,Brooklyn,Williamsburg,40.71332,-73.94071,Private room,80,1,0,,,1,0 +32334635,Stylish West Village Artists Studio Penthouse,22720650,Duane,Manhattan,West Village,40.736740000000005,-74.00556,Entire home/apt,130,30,0,,,2,309 +21007762,"Spacious, artistic 1-bedroom near The Cloisters!",16144086,Leyla,Manhattan,Inwood,40.86039,-73.92663,Entire home/apt,100,3,44,2019-06-23,2.3,1,168 +11526771,Superb Steps away from Union Square,15152746,Joseph,Manhattan,Gramercy,40.7339,-73.98523,Private room,139,1,0,,,1,0 +9166769,Zen State,44087298,Catherine,Manhattan,Washington Heights,40.846990000000005,-73.9362,Private room,55,7,24,2018-01-01,0.54,2,0 +14881794,Nice bedroom by Riverside & Columbia University,45748188,Ali,Manhattan,Morningside Heights,40.81231,-73.95858,Private room,60,2,20,2017-08-13,0.59,1,0 +294490,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73857,-73.95299,Entire home/apt,199,3,54,2019-06-10,0.61,28,60 +397034,New York City for All Seasons!,70234,Richelle,Manhattan,Upper West Side,40.7824,-73.98294,Private room,125,1,25,2013-06-22,0.28,1,311 +25194498,BEST LOCATION - COMFY ROOM for long term,20212516,My,Manhattan,Greenwich Village,40.73552,-73.99719,Private room,65,14,8,2019-06-16,0.58,2,35 +8217454,The Notorious B.N.B. {Custom},1177497,Jessica,Brooklyn,Clinton Hill,40.68971,-73.96695,Private room,199,1,20,2019-01-03,0.45,11,365 +13282840,Cozy Private room near Central Park,49328849,Dorothy,Manhattan,East Harlem,40.79532,-73.94454,Private room,85,4,46,2019-07-01,1.23,1,72 +5497874,Sunny spacious private unit close CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77045,-73.95564,Private room,80,30,57,2018-10-10,1.1,3,245 +31593740,Broadway - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75636,-73.99675,Private room,199,1,5,2019-06-19,0.99,30,362 +225297,Quiet sunny studio Midtown,1173599,Gaya,Manhattan,Midtown,40.74267,-73.98569,Entire home/apt,125,4,3,2018-12-26,0.03,1,0 +12542485,2 BDRM Apt. in the Middle of NYC apt. 3B,17770287,Nina,Manhattan,Murray Hill,40.7493,-73.98132,Entire home/apt,180,30,5,2019-03-09,0.14,14,210 +29940344,Spacious Park Avenue (Website hidden by Airbnb) -2-Month lease,1678050,Liam,Manhattan,Murray Hill,40.74938,-73.9802,Entire home/apt,200,60,2,2019-01-02,0.29,2,0 +13191433,Big Private Bedroom perfect for Professionals,49117269,Varos,Queens,Long Island City,40.75768,-73.92896999999999,Private room,75,15,14,2019-04-13,0.88,2,16 +4514042,Bushwick Duplex 1,3709510,Deacon,Brooklyn,Bushwick,40.69213,-73.92371,Private room,80,1,4,2019-05-28,0.34,3,342 +35408266,Harlem 1 bedroom in a 2bedrooms long stay only,266502082,Emmanuelle,Manhattan,Harlem,40.82521,-73.93811,Private room,40,30,0,,,1,6 +10096707,Bright & Spacious Apartment. A Williamsburg Gem.,51813565,Yoav,Brooklyn,Greenpoint,40.72034,-73.95478,Entire home/apt,135,2,18,2019-06-30,0.42,1,0 +21297804,Entire Long Island City Studio mins to Manhattan,3023513,Levi,Queens,Long Island City,40.75097,-73.94119,Entire home/apt,130,3,2,2017-11-29,0.1,1,0 +18646075,A Chic Harlem stay,63417081,Devon,Manhattan,Harlem,40.82336,-73.94511999999999,Private room,45,30,4,2018-09-10,0.17,8,67 +36402818,SMALL STUDIO IN EXCELLENT GREENPOINT LOCATION!,1568269,Skylar,Brooklyn,Greenpoint,40.73149,-73.95040999999999,Entire home/apt,85,8,0,,,1,10 +11885997,Beautiful loft in DUMBO Brooklyn,17782625,David,Brooklyn,Vinegar Hill,40.70211,-73.98418000000001,Entire home/apt,245,2,3,2017-12-13,0.08,2,0 +26001925,Beautiful one-bedroom get away with park view,67923313,Zhenni,Manhattan,Washington Heights,40.85811,-73.92921,Entire home/apt,90,5,5,2019-05-20,0.44,1,18 +11756047,Beautiful Room for Rent! L Train!,41616878,Melissa,Brooklyn,Bushwick,40.69164,-73.90968000000001,Private room,45,30,16,2019-03-31,0.43,4,334 +21616841,Spacious 1.5 Bed Duplex With Private Backyard,118130596,Stephen,Brooklyn,Crown Heights,40.67593,-73.95366,Entire home/apt,66,2,18,2019-07-03,0.9,1,44 +918049,Union Sq European Serene apt,4929807,Liz,Manhattan,Chelsea,40.73949,-73.99483000000001,Entire home/apt,250,3,48,2019-06-23,0.66,1,217 +25191316,Gorgeous Private room near NYC,12931469,Margarita,Staten Island,Great Kills,40.54889,-74.14199,Private room,50,2,4,2018-11-05,0.3,3,84 +13480134,cosy room with all confort,51329030,Zakaria,Bronx,Longwood,40.82716,-73.89911,Private room,30,1,11,2016-11-18,0.3,1,0 +14091525,Large room with AC a in house with a porch,5725732,Scott,Brooklyn,Kensington,40.64023,-73.9717,Private room,30,2,1,2016-08-05,0.03,1,0 +13174433,Modern West Village 1 Bedroom - PRIME LOCATION!,2926947,Amit,Manhattan,West Village,40.73908,-74.00186,Entire home/apt,150,2,11,2017-01-08,0.3,1,0 +4564292,HEART of NEW YORK // ニューヨークの中心,23659408,Marcello,Manhattan,Hell's Kitchen,40.75811,-73.99073,Entire home/apt,107,21,193,2017-10-27,3.42,1,310 +22009898,"Calm, quirky Harlem apartment Room 1",41940272,Nicole,Manhattan,Harlem,40.82237,-73.94617,Private room,54,2,6,2018-04-16,0.31,3,5 +36241283,Enjoy your friendly stay at my place,267943725,Lana,Brooklyn,Midwood,40.62555,-73.95724,Private room,50,1,1,2019-07-02,1.0,1,86 +29392902,"1 x Bedroom Apt with Amazing Rooftop, Greenpoint",91101209,Anna,Brooklyn,Greenpoint,40.7348,-73.95543,Entire home/apt,150,6,1,2018-11-26,0.13,1,154 +36390301,"3 Bedroom Apt in Ridgewood, 20 Min to Manhattan",273632292,Pete,Queens,Ridgewood,40.70268,-73.90353,Entire home/apt,110,24,0,,,1,183 +18544441,URBAN DWELLING,27266433,Anthony,Manhattan,Hell's Kitchen,40.75607,-73.99707,Private room,94,2,4,2017-05-24,0.15,1,0 +3685704,Private Apt. in Brooklyn Brownstone + Garden,2640773,Nick,Brooklyn,Bedford-Stuyvesant,40.68822,-73.94357,Entire home/apt,95,2,116,2019-05-29,2.18,1,226 +2845257,Stunning 2BR Penthouse w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72733,-73.9404,Entire home/apt,199,30,5,2019-06-01,0.08,52,311 +29945246,Lovely Furnished Studio Chelsea,224489730,Rachel,Manhattan,Chelsea,40.74419,-74.00067,Entire home/apt,125,30,2,2019-03-05,0.32,2,67 +7034787,Furnished Bedroom in 2 Bedroom apt.,36881439,Etkin,Queens,Long Island City,40.756,-73.9205,Private room,60,7,0,,,1,365 +34126672,ZEN LIVING RM CLOSE 2 COLUMBIA UNI & CENTRAL PRK!,161061302,Carol,Manhattan,Upper West Side,40.80244,-73.96592,Shared room,50,1,1,2019-05-08,0.48,2,363 +12914726,Charming West Village Apartment (Manhattan),21375734,Jay,Manhattan,West Village,40.73116,-74.00211999999999,Private room,149,1,6,2018-07-15,0.18,1,0 +18059656,Charming Cozy Room in Harlem,9030453,Irie,Manhattan,Harlem,40.81064,-73.94405,Private room,67,2,28,2019-07-03,1.04,2,132 +3479639,Designer's duplex loft with 16' ceilings,17527788,Taylor,Brooklyn,Bushwick,40.69642,-73.93361,Entire home/apt,144,1,51,2019-06-15,0.84,2,85 +22793957,Cosy bedroom,6237087,Rusty,Brooklyn,Williamsburg,40.712140000000005,-73.94423,Private room,50,2,15,2019-05-21,0.97,1,0 +36112665,1BR steps away from Time Square,250126499,Jeff,Manhattan,Hell's Kitchen,40.75871,-73.99659,Entire home/apt,250,1,0,,,1,8 +8237244,Charming Studio + Private Balcony,38363621,Michael,Manhattan,East Village,40.72765,-73.98634,Entire home/apt,215,3,72,2019-03-23,1.56,1,0 +385190,"Beautiful 1 bdrm, Inwood Manhattan",1928213,Brace,Manhattan,Inwood,40.87039,-73.91611,Private room,100,1,20,2019-06-06,0.28,1,0 +24042606,Modern sunlit apartment in the heart of Bushwick,91427536,Yoav,Brooklyn,Bushwick,40.69642,-73.9243,Private room,45,5,5,2019-04-20,0.58,2,3 +13669942,Private Room and bathroom in the best of Brooklyn,3136445,Julie,Brooklyn,Carroll Gardens,40.6748,-74.00024,Private room,100,2,25,2017-01-15,0.68,1,0 +7258306,Studio in the Heart of Greenwich!!!,23387933,John,Manhattan,Greenwich Village,40.73088,-74.00035,Entire home/apt,140,1,1,2015-07-13,0.02,1,0 +26987854,Bunk bed,24000784,Robert,Brooklyn,Sunset Park,40.64456,-74.01135,Private room,45,1,6,2019-06-24,0.61,4,32 +21978281,Welcome to Brooklyn! Stay in Bed-Stuy!,151777787,Kristina,Brooklyn,Brownsville,40.67528,-73.906,Private room,40,2,3,2018-01-07,0.16,2,0 +3684302,Crown Hts Beauty: Quiet and Cozy!,18030682,Amanda,Brooklyn,Crown Heights,40.67472,-73.94736999999999,Entire home/apt,100,7,46,2019-06-29,0.87,1,0 +4887638,"Sunnyside, New York - Stay and get connected",25145883,Sp,Queens,Sunnyside,40.74461,-73.91514000000001,Private room,40,2,2,2019-06-29,2.0,1,5 +30376690,Charming Harlem Studio!,81970141,Emily,Manhattan,Harlem,40.82932,-73.94696,Entire home/apt,119,2,15,2019-07-01,2.38,1,12 +34365445,"2 BR Apt close to LGA, JFK & Midtown (3B)",259229690,Rina,Queens,Woodside,40.74632,-73.89381999999999,Entire home/apt,179,1,4,2019-07-05,2.22,4,75 +16995743,Cozy private on Bedford Avenue,53127489,Will,Brooklyn,Williamsburg,40.71404,-73.96119,Private room,35,1,2,2017-02-13,0.07,2,0 +14935001,Quaint Studio. 20 mins to City,59839625,Odi,Queens,Sunnyside,40.74211,-73.91646,Entire home/apt,105,2,48,2019-06-16,1.42,1,13 +6901856,Spacious Modern Contemp Living 2,36164182,Glender,Brooklyn,Bushwick,40.69768,-73.93359,Private room,80,2,51,2019-05-11,1.04,3,249 +13657030,Convenient room in Manhattan close to Central Park,31252117,Weipeng,Manhattan,Harlem,40.80131,-73.9579,Private room,45,7,2,2016-07-30,0.06,1,0 +31172569,Bebop & Swing Space,224126362,Nikki Jo,Brooklyn,Bedford-Stuyvesant,40.68066,-73.93281,Entire home/apt,200,2,0,,,1,22 +24942175,Big 2-bdrm / Morgan Ave L Train / Roberta's,36849759,Peter,Brooklyn,Bushwick,40.7022,-73.93165,Entire home/apt,200,2,39,2019-06-17,3.09,2,209 +32050983,"Hudson River/GW Bridge +view. Spacious room",240311383,Ana,Manhattan,Washington Heights,40.84725,-73.94274,Private room,85,2,11,2019-07-03,2.21,1,227 +12874869,Greenwich Village| Private Queen room,70429659,Kelly,Manhattan,Greenwich Village,40.73694,-73.99587,Private room,140,1,78,2019-06-16,2.23,1,321 +8942367,Large Room in Trendy Bushwick,9864136,Anthony,Brooklyn,Bushwick,40.68591,-73.91344000000001,Private room,45,1,18,2018-02-26,0.41,26,250 +29242305,Charming Studio in the Heart of Greenwich Village,16955151,Savanna,Manhattan,West Village,40.73079,-74.00268,Entire home/apt,195,2,10,2019-06-11,1.16,1,3 +9609800,"*Huge, Clean & Spacious Stay in NYC*",12651062,Adam,Manhattan,Washington Heights,40.83625,-73.93753000000001,Private room,50,3,2,2018-09-17,0.05,1,5 +35712642,PRIVATE BR 5min to TIMES SQ,268276813,Andy,Manhattan,Hell's Kitchen,40.7639,-73.99542,Private room,150,1,0,,,3,362 +18782064,STUDIO ON WEST 56TH COLUMBUS CIRCLE~DOORMAN,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76617,-73.98445,Entire home/apt,184,30,0,,,49,364 +30289305,New York Getaway Beautiful Room,212263525,SamariSankofa,Manhattan,Harlem,40.81051,-73.94014,Private room,100,1,8,2019-06-03,1.26,3,253 +21203987,Beautiful & Spacious Private Brooklyn Loft,9206072,Liron,Brooklyn,Bedford-Stuyvesant,40.69195,-73.96045,Entire home/apt,133,2,101,2019-06-30,4.93,1,87 +794281,Open loft in the heart of Union Sq.,2275401,Amir,Manhattan,Greenwich Village,40.73545,-73.9931,Entire home/apt,220,6,23,2017-01-02,0.29,1,0 +36097970,Astonishing Nomad Apt in the Center Of Manhattan,270292053,Teufik,Manhattan,Chelsea,40.7469,-73.99038,Entire home/apt,350,3,3,2019-07-03,3.0,1,345 +3970345,Luxury large Penthouse /Fireplace / City views..,363472,Barry,Manhattan,East Village,40.72088,-73.98149000000001,Entire home/apt,233,30,17,2018-07-15,0.33,1,364 +34493353,"5★ clean, 150ft² bedroom, 10min to Union Square",28371926,John,Brooklyn,Williamsburg,40.70973,-73.94521,Private room,60,2,9,2019-06-25,4.82,1,87 +21142363,Sunny Room in a Brownstone Penthouse,119464278,Gary,Manhattan,Upper West Side,40.787290000000006,-73.97033,Private room,110,30,0,,,1,0 +2098817,Historic Townhouse 3bed 2bath * 1 block to subway,2462590,Jenny And Mark,Brooklyn,Bushwick,40.69067,-73.92206999999999,Entire home/apt,350,2,6,2019-05-01,0.95,2,99 +13248968,Luxurious 1 bdr apt with balcony!,15985137,Ferenc,Brooklyn,Bushwick,40.69476,-73.92943000000001,Entire home/apt,125,5,42,2019-06-21,1.12,1,1 +20860184,Fabulous Sun-kissed Room in Heart of Chelsea!,29867167,Jamal,Manhattan,Chelsea,40.74821,-74.0018,Private room,95,1,17,2018-08-31,0.78,1,0 +9910133,1 bed cozy studio @ Gramercy on Lex,17131739,Xenia,Manhattan,Midtown,40.7415,-73.98354,Entire home/apt,139,7,1,2016-01-02,0.02,1,0 +25606022,Sophisticated and Cozy Pre-War 2 bedroom,142178595,Adelaide,Manhattan,Upper West Side,40.7982,-73.97063,Entire home/apt,150,30,0,,,1,310 +33987847,Gorgeous Rooftop Views / Seconds From Train,22388757,Jordan,Manhattan,Washington Heights,40.85075,-73.93982,Entire home/apt,120,3,3,2019-07-07,1.7,2,0 +16725924,Light up room close to Central Park,68762417,Simon,Manhattan,East Harlem,40.79453,-73.94543,Private room,75,1,110,2019-06-16,3.65,4,34 +15147943,303 1,96080998,Hector,Brooklyn,Downtown Brooklyn,40.69569,-73.98249,Private room,139,1,0,,,1,0 +25816999,Mamas 2 twins purple #4 boro pk 2nd flr D train,12834599,Ms. Edith,Brooklyn,Borough Park,40.632940000000005,-73.99316999999999,Private room,50,3,3,2019-06-10,0.29,4,179 +18758370,Genie's Lamp Garden Apartment,130524170,Tracy,Brooklyn,South Slope,40.66615,-73.98554,Entire home/apt,150,2,88,2019-02-23,3.53,1,0 +31336375,Brooklyn Room - 20 min from Manhattan,234596452,Laura,Brooklyn,Bushwick,40.70195,-73.92257,Private room,85,1,0,,,1,0 +15895829,Entire JR. One bedroom PRIME West Village,4012934,Risa,Manhattan,West Village,40.73278,-74.00053,Entire home/apt,125,7,12,2019-04-28,0.38,1,0 +6613106,Private Room/Single Bed,10014644,Myrta,Brooklyn,Park Slope,40.66775,-73.98151,Private room,60,3,18,2019-05-24,0.36,2,0 +31954104,"Best Location, Best Roof!",17062221,Vanessa,Manhattan,Kips Bay,40.73935,-73.98025,Entire home/apt,260,3,6,2019-06-03,1.31,2,173 +13145377,West Village Studio,22363037,Jessica,Manhattan,West Village,40.73733,-74.00392,Entire home/apt,119,3,1,2016-08-03,0.03,1,0 +36146761,Gorgeous 1 family home in Astoria; 2 floors,44032493,Veronica,Queens,Ditmars Steinway,40.77333,-73.9071,Entire home/apt,200,4,0,,,1,117 +30999134,Private Room in a Neo Hippie Art Apartment!,231192888,Kevin,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94498,Private room,35,2,21,2019-07-06,3.33,1,100 +15551245,可愛いレンガの壁のお部屋/ Manhattan,20915650,Ayami,Manhattan,East Harlem,40.79324,-73.94037,Private room,65,7,1,2016-12-31,0.03,1,0 +31073162,Luxury high floor 1bdrm in prime midtown location!,150723893,David,Manhattan,Midtown,40.75318,-73.98649,Entire home/apt,300,3,0,,,1,0 +292637,Beautiful Spacious One Bedroom,1021834,Svetlana,Brooklyn,Crown Heights,40.67335,-73.96,Entire home/apt,100,5,0,,,1,0 +7657879,Beautiful GRDN Apt Chelsea Meatpacking Min 30 days,1163318,Vanessa,Manhattan,Chelsea,40.74376,-74.00386999999999,Entire home/apt,270,30,195,2019-03-17,4.26,1,270 +31861939,Cozy Heart of Gold Near Times Square Central Park!,155691688,Bonnie,Manhattan,Hell's Kitchen,40.76655,-73.9891,Entire home/apt,225,1,19,2019-07-06,5.64,1,50 +35991399,Half rental fee the first month in Brooklyn!,89264510,Xueming,Brooklyn,Bushwick,40.69399,-73.92609,Private room,50,1,1,2019-06-30,1.0,1,365 +7724136,Large Lower East Side 1 BDR,40585961,Miguel,Manhattan,Lower East Side,40.72092,-73.98849,Private room,85,1,0,,,1,0 +310338,Harlem/Hamilton Heights Sunny Room,745069,Kimberly,Manhattan,Harlem,40.82451,-73.94457,Private room,75,3,30,2019-01-01,0.35,3,322 +18091187,The Heights,124593127,Miguel,Manhattan,Washington Heights,40.85564,-73.93066,Private room,40,1,93,2019-06-21,3.5,2,297 +19073760,Private Bedroom in Ditmas,91718195,Kourosh,Brooklyn,Kensington,40.634170000000005,-73.97541,Private room,31,25,3,2018-08-25,0.12,1,0 +799924,"Big Loft in Bushwick: Unfurnished, longterm sublet",2291000,Tommy,Brooklyn,Williamsburg,40.70538,-73.92945999999999,Entire home/apt,163,1,3,2016-06-27,0.04,1,0 +24718788,Studio with a view,11966882,Svetlana,Manhattan,Kips Bay,40.73807,-73.98091,Entire home/apt,119,4,2,2018-09-30,0.15,1,0 +35700700,Private clean studio for adults *,96659533,Angelica,Brooklyn,Bushwick,40.69429,-73.91385,Private room,70,2,2,2019-07-07,2.0,2,331 +33129394,Northern Manhattan Bicycle & Guitar Oasis,249404981,Susan,Manhattan,Inwood,40.86948,-73.92121999999999,Entire home/apt,129,2,0,,,1,65 +5861303,"Pet friendly, homey 1 BR in Lower East Side, NYC",30432695,LisaMarie,Manhattan,Lower East Side,40.71832,-73.98325,Entire home/apt,125,7,11,2019-06-28,0.22,1,20 +36340028,Cozy Private Budget room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68111,-73.91294,Private room,40,5,0,,,10,356 +13082600,Cozy 1 bedroom apartment in the heart of Manhattan,4980733,Simona,Manhattan,Midtown,40.75584,-73.96979,Entire home/apt,300,1,38,2019-06-27,1.01,1,361 +17556208,Private Room Available in Hamilton Heights,5524401,Nicole,Manhattan,Harlem,40.82288,-73.95254,Private room,63,7,21,2019-04-28,0.75,1,0 +9110135,Affordable stay in NYC,7486909,Allie,Manhattan,East Harlem,40.79311,-73.93928000000001,Entire home/apt,110,1,85,2019-05-06,1.9,1,304 +4707159,NEAR TIMES SQUARE & CENTRAL PARK!,529546,Aditi,Manhattan,Hell's Kitchen,40.76689,-73.98612,Private room,125,1,1,2014-12-27,0.02,2,0 +16450351,Stunning views room for two!,14416504,StandOut,Manhattan,Financial District,40.70639,-74.00794,Private room,120,5,0,,,1,0 +34208508,Sonder | 11th Ave | Stunning 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76241,-73.99606,Entire home/apt,182,29,0,,,327,319 +7915596,"Large, Bright NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.69919,-73.93818,Private room,75,2,226,2019-06-10,4.78,2,128 +12549290,One Bedroom Wall St Luxury Apt,68013836,Mency,Manhattan,Financial District,40.70592,-74.00928,Private room,35,3,3,2016-08-26,0.09,1,0 +282863,Cozy & Charming Boerum Hill Flat,322934,Kate,Brooklyn,Gowanus,40.68131,-73.98879000000001,Entire home/apt,91,6,69,2019-06-21,0.76,1,265 +19017366,King size room in foodie heaven!,41387722,Michael,Queens,Astoria,40.77084,-73.92600999999999,Private room,65,21,0,,,1,0 +31470251,Stunning Centra Park View - Huge Sunny Corner 1br,13773574,Cecile,Manhattan,Midtown,40.76539,-73.98336,Entire home/apt,225,30,0,,,12,343 +15720448,Private Room in Luxury Building,101550977,Myko,Manhattan,Financial District,40.70488,-74.00744,Private room,95,5,45,2019-05-24,1.4,2,272 +8068363,Big Bedroom with Private Bathroom,1433657,Evy,Brooklyn,Williamsburg,40.7079,-73.95598000000001,Private room,89,2,86,2019-06-27,1.9,2,307 +22411635,"Your insanely quiet, achingly cute, chillspot",11200970,Eve,Brooklyn,Williamsburg,40.71233,-73.94118,Private room,80,1,31,2019-06-25,1.67,1,13 +18155063,Spacious Studio ( W 48 street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7647,-73.99414,Entire home/apt,120,30,0,,,31,353 +62427,Great East Village Apartment Rental,303882,Brie,Manhattan,East Village,40.7268,-73.99079,Entire home/apt,130,50,56,2019-05-26,0.58,1,56 +22063652,Charming Central Park Studio Awaits!,161160095,Walter,Manhattan,Upper West Side,40.78726,-73.96866999999999,Entire home/apt,170,3,42,2019-07-01,2.19,1,4 +6717053,Lovely Studio in Flushing/kew Garde,34992043,Frances,Queens,Flushing,40.74024,-73.83105,Private room,68,1,222,2019-07-04,4.48,2,330 +32237768,Sonder | Stock Exchange | Bright 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01092,Entire home/apt,227,2,8,2019-06-05,1.88,327,356 +17125159,Clean and Stylish Newly Renovated Apartment,115092398,J,Manhattan,Harlem,40.81843,-73.94400999999999,Entire home/apt,125,1,78,2019-06-22,2.7,1,40 +18615903,Private Bathroom & Communal Cat in Large Sunny Apt,1038989,Kung,Brooklyn,Williamsburg,40.70904,-73.9398,Private room,95,3,69,2019-07-05,2.63,2,56 +25372531,Budget 2 beds private room,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92975,Private room,90,1,5,2019-06-23,1.61,6,256 +9821408,Cozy East Village apartment w Steinway piano,1010435,Carol,Manhattan,East Village,40.727920000000005,-73.98718000000001,Entire home/apt,125,7,4,2019-04-22,0.17,1,1 +3617498,"Comfy, convenient bedroom in Bklyn!",6643482,Andy,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.96046,Private room,80,2,122,2019-06-06,2.07,1,227 +25428161,Serene Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70587,-74.00685,Entire home/apt,167,29,0,,,96,332 +3613839,Cozy and sunny room in Manhattan,17450462,Esther,Manhattan,Harlem,40.82544,-73.9402,Private room,65,7,45,2019-06-09,0.92,1,290 +10731618,Gramercy Apartment,29880001,Saket,Manhattan,Flatiron District,40.74095,-73.98554,Private room,85,1,0,,,1,0 +20574057,"Spacious BK Heights room, walk to Brooklyn Bridge",3376018,William,Brooklyn,Brooklyn Heights,40.69093,-73.9929,Private room,64,7,6,2019-06-11,0.7,1,0 +3207986,"Modern loft in Cobble Hill, BK",1874429,Lisa,Brooklyn,Boerum Hill,40.68558,-73.9903,Private room,99,1,75,2019-05-31,1.28,1,125 +14787776,1 Beautiful Private Bedroom In Prime Williamsburg,46220101,Nicolette,Brooklyn,Williamsburg,40.7121,-73.9623,Private room,120,3,2,2019-05-12,0.23,1,149 +11136854,Modern Studio in Brooklyn,21986616,Valentina,Brooklyn,Gravesend,40.58571,-73.96710999999999,Entire home/apt,90,7,32,2019-06-14,0.83,1,71 +34331925,Entire Flat in Perfect Location (Nolita),2463994,Kiarash,Manhattan,Nolita,40.72223,-73.99544,Entire home/apt,200,1,1,2019-05-14,0.54,1,0 +34626927,1976 Chris Craft “Hudson”,14564591,Gina,Queens,Arverne,40.59495,-73.78869,Entire home/apt,130,1,5,2019-07-07,5.0,1,350 +24199249,Beautiful East Village Room Open For You!,182411776,David,Manhattan,East Village,40.73045,-73.98066999999999,Private room,115,1,37,2019-06-05,2.55,1,128 +11042240,Lovely 1.5BR Near Park and Subway,57305837,Yair,Brooklyn,South Slope,40.66355,-73.98056,Entire home/apt,145,3,147,2019-07-03,3.62,1,235 +8950064,Brooklyn Apt with AMAZING NYC view,30116009,Veronica,Brooklyn,Sunset Park,40.6503,-74.00231,Entire home/apt,115,5,1,2016-01-03,0.02,1,0 +24209867,Spacious Room in Clinton Hill/Bed-Stuy,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95947,Private room,58,2,0,,,2,0 +32221325,Corner Loft in Williamsburg,107504230,Rhaynelina,Brooklyn,Williamsburg,40.71189,-73.9649,Entire home/apt,100,3,2,2019-04-15,0.43,1,0 +1180157,PRIVATE ROOM (BRIGHT & CLEAN) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.80393,-73.94046,Private room,44,30,2,2017-08-12,0.03,5,325 +7125699,East Williamsburg Artist Retreat,19187413,Melissa,Brooklyn,Williamsburg,40.70485,-73.93863,Private room,60,20,0,,,2,88 +30150406,Ditmas Park Affordable Luxury Living-Private Rm,204541838,Diana,Brooklyn,Flatbush,40.64308,-73.96508,Private room,150,3,2,2019-06-19,0.27,2,364 +5567401,Bright 1BR w balconies + roof deck!,134936,April,Brooklyn,Williamsburg,40.70893,-73.94832,Entire home/apt,99,25,24,2017-03-25,0.46,1,0 +19696746,A Garden Grows in Greenpoint / Craft Chateau,5107938,Misha,Brooklyn,Greenpoint,40.72351,-73.94059,Private room,54,2,2,2017-08-31,0.08,1,0 +32069686,"Amazing views, sun, luxe style, live like a local!",27107891,Kossivi,Brooklyn,Williamsburg,40.71396,-73.93986,Entire home/apt,179,4,8,2019-06-21,2.11,1,104 +8162214,"Large Room, Full Bed, Trendy LES",41087164,Jordan,Manhattan,Lower East Side,40.71349,-73.98473,Private room,90,10,8,2016-03-04,0.17,1,0 +32798710,TW #8 Private Rm- 2nd Fl. Queen Bed 1 to 2 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.83757,-73.8353,Private room,62,1,14,2019-06-07,6.36,5,229 +31733307,5min fr Belmont Park 15min fr JFK 20min fr LaGuard,234191916,Dwayne,Queens,Queens Village,40.71131,-73.74623000000001,Entire home/apt,69,1,34,2019-06-10,6.46,1,170 +30394324,"Chic Midtown East 1BR w/ Doorman, Gym + Sundecks by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7396,-73.97938,Entire home/apt,240,30,0,,,232,249 +35904939,Queen Room near Flushing and Arthur Ashe Stadium- Breakfast Included,261007573,Adria Hotel & Conference Center,Queens,Bayside,40.761790000000005,-73.76013,Private room,100,1,0,,,2,358 +4925517,L♥vely 1BR! Times Square BROADWAY Theatre District,22210080,Kyle,Manhattan,Hell's Kitchen,40.76175,-73.9892,Private room,99,1,318,2019-06-24,5.78,1,0 +23258639,Large Alcove Studio in the Heart of Chelsea,22412963,Anne,Manhattan,Chelsea,40.74482,-73.99882,Entire home/apt,180,1,72,2019-06-25,4.67,3,223 +6400255,Studio in Lux Building on UWS!,5707879,Laura,Manhattan,Upper West Side,40.78017,-73.98317,Entire home/apt,150,16,0,,,1,0 +16312490,Spacious room steps from Central Park and Subway,3240340,Yulia,Manhattan,Harlem,40.80392,-73.95642,Private room,55,2,7,2018-03-20,0.23,1,0 +21139175,Yinka's Guest house,152493041,Clover,Brooklyn,East Flatbush,40.66197,-73.92586999999999,Entire home/apt,180,3,14,2019-06-01,0.69,1,175 +18008937,Adorable Apt - Heart of West Village!,82933489,Karly,Manhattan,West Village,40.73272,-74.00356,Entire home/apt,230,2,9,2018-10-07,0.33,1,0 +1494527,Huge Loft In South Williamsburg,7988149,Moses,Brooklyn,Williamsburg,40.71202,-73.96602,Entire home/apt,275,2,195,2019-06-30,2.74,1,331 +29966192,The Cozy Place,221442773,Carlos & Vielca,Bronx,Pelham Bay,40.84391,-73.83171,Entire home/apt,99,2,8,2019-01-01,1.05,1,360 +289958,2 Rooms in Cottage NYC,1454655,Ronaldo,Queens,Long Island City,40.75295,-73.93228,Private room,65,2,5,2014-09-09,0.06,1,362 +470709,Spacious sunny LOFT - best location,2335775,Diana,Brooklyn,Williamsburg,40.71856,-73.95166,Entire home/apt,165,30,154,2018-12-12,1.87,1,157 +3678064,Per/night Room Brklyn New York,2120259,Sue,Brooklyn,Crown Heights,40.66709,-73.9514,Private room,55,4,27,2019-07-05,0.46,4,261 +13808262,Nicely furnished room in a spacious apartment,177922,Dilini,Brooklyn,Prospect-Lefferts Gardens,40.65702,-73.96066,Private room,33,14,6,2017-11-25,0.17,1,0 +34372376,Sunny and spacious room in South Williamsburg,259505436,Yaz,Brooklyn,Williamsburg,40.70153,-73.94709,Private room,85,2,3,2019-06-16,1.53,1,83 +13971160,Cosy and Bright Bedroom *CENTRAL HARLEM*,50145118,Sonia,Manhattan,Harlem,40.80914,-73.94363,Private room,89,1,79,2019-06-19,2.24,3,0 +23608594,Private Room in the Heart of Financial District,176578851,Stephanie,Manhattan,Financial District,40.71012,-74.00828,Private room,110,5,6,2018-12-31,0.37,1,0 +17667188,Private Bedroom in Rego Park / Forest Hills,120261070,Luci,Queens,Rego Park,40.7246,-73.85688,Private room,75,1,0,,,1,0 +20356797,New York Apartment in Queens,127077398,Ming,Queens,Ozone Park,40.67801,-73.8459,Entire home/apt,110,2,51,2019-07-06,2.22,1,295 +26627762,Comfy Quiet Private Room in 3 bd/rm Apt.,200166257,Bryan,Manhattan,Washington Heights,40.85466,-73.92771,Private room,30,2,1,2018-07-30,0.09,1,0 +850712,Cute Studio Greenwich Village NYC,4442608,Mario,Manhattan,Greenwich Village,40.73132,-73.99979,Entire home/apt,120,30,17,2019-06-30,0.27,1,231 +33867882,Charming private bedroom in Hell’s Kitchen,9718310,Allan,Manhattan,Hell's Kitchen,40.76335,-73.99051,Private room,65,2,3,2019-05-27,1.25,1,0 +4607923,LOVELY LARGE SUNNY ROOM Sunset Park,1113080,Audrey,Brooklyn,Sunset Park,40.64722,-74.00475,Private room,55,7,98,2019-05-22,1.75,3,312 +33993547,Small Private Room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.7267,-73.98316,Private room,99,1,5,2019-06-13,1.9,5,0 +34209348,Verrazano bridge garden house,98297464,Max,Brooklyn,Fort Hamilton,40.62065,-74.02929,Private room,68,5,2,2019-06-20,1.71,2,55 +35522357,Bright Bohemian Gem in the Lower East Side,13483820,Marc,Manhattan,Chinatown,40.71496,-73.99063000000001,Entire home/apt,120,1,0,,,1,160 +6132230,"Quiet 1 Bed, Heart of SoHo",6976808,Tim,Manhattan,SoHo,40.72708,-74.00055,Entire home/apt,150,5,36,2017-09-08,0.71,1,0 +4705670,"Private, quiet spacious room with tons of sun!",24117644,Joshua,Queens,Astoria,40.75572,-73.92631999999999,Private room,70,3,74,2019-06-26,1.38,2,285 +15790640,Large 1 Bedroom Three Blocks from Central Park,66823224,Nathan,Manhattan,Upper West Side,40.79386,-73.97223000000001,Private room,80,1,111,2019-07-01,3.51,1,42 +21305125,Cozy Basement lounge Apt inCambria Heights,154184894,Mike,Queens,Cambria Heights,40.69358,-73.73,Private room,120,2,0,,,2,0 +21457703,MODERN STYLISH PENTHOUSE SUITE @ CENTRAL PARK,6945444,Gregory,Manhattan,Harlem,40.80111,-73.95221,Entire home/apt,173,2,62,2019-06-23,3.44,1,92 +35934018,Home In Briarwood Queens NYC | Near Subway & JFK,270280544,Meital,Queens,Briarwood,40.70577,-73.81539000000001,Entire home/apt,105,1,4,2019-07-04,4.0,1,208 +31476060,Cozy Williamsburg Apartment,9014833,Hillary,Brooklyn,Williamsburg,40.71159,-73.96581,Entire home/apt,61,2,15,2019-06-20,2.76,1,0 +35184104,Bedroom in Penthouse Apartment,49132405,Abshan,Manhattan,East Harlem,40.79908,-73.93290999999999,Private room,140,2,1,2019-06-10,1.0,1,21 +10575777,One Bedroom w/Huge Window & Ceiling,25475028,Mark,Manhattan,Chinatown,40.71448,-73.99157,Private room,110,1,1,2016-03-28,0.03,1,0 +36113226,Room in Charming Williamsburg Townhouse,28752285,Mirro,Brooklyn,Williamsburg,40.71268,-73.95855,Private room,90,2,0,,,1,347 +24757985,Cozy apartment perfect for families with kids,5832321,Kalani,Queens,Glendale,40.69709,-73.89556,Entire home/apt,150,2,4,2019-01-13,0.41,2,0 +7482821,Bushwick Artist Haven w Private Yard by JMZ subway,4157435,Blair,Brooklyn,Bushwick,40.69696,-73.93433,Entire home/apt,100,5,71,2019-05-24,1.54,1,238 +32238106,Sonder | Stock Exchange | Modern Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7072,-74.01214,Entire home/apt,194,2,8,2019-06-13,2.26,327,318 +15545469,Modern Bedroom with Best View in Brooklyn,14482375,Lara & David,Brooklyn,Greenpoint,40.72214,-73.94345,Private room,199,3,20,2019-06-27,0.66,3,0 +27650553,Cosy bedroom in Bushwick close to L&M train,7780845,Liset,Brooklyn,Bushwick,40.70133,-73.91726,Private room,65,2,3,2019-06-23,0.28,3,28 +34278936,Greenpoint - Sun Filled Room in Unique Loft Space,19344148,Alex,Brooklyn,Greenpoint,40.72563,-73.95656,Private room,65,2,15,2019-07-01,6.92,1,65 +319724,Cozy Nook in Heart of Williamsburg,1639120,Jason,Brooklyn,Williamsburg,40.71394,-73.96266999999999,Private room,59,3,207,2019-06-16,2.29,2,284 +4392351,MURRAY HILL! your home.. BEAUTIFUL,1475015,Mike,Manhattan,Kips Bay,40.74111,-73.97951,Entire home/apt,87,30,4,2018-08-12,0.09,52,325 +19744503,Private and Comfortable bedroom,138003310,Marta,Queens,Richmond Hill,40.70008,-73.83344,Private room,60,7,53,2019-06-28,2.24,1,335 +6769535,"1 brm, fully equip bth/rm & kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68511,-73.76012,Entire home/apt,105,3,7,2017-09-17,0.14,3,0 +10499025,Light-filled Greenpoint 2 bedroom apartment,5829904,Erin,Brooklyn,Greenpoint,40.72709,-73.95326,Entire home/apt,70,3,2,2018-04-12,0.11,1,0 +5313584,"Large Sunny Room, Crown Heights, BK",1747467,Kristina,Brooklyn,Crown Heights,40.67464,-73.95735,Private room,52,1,0,,,1,0 +2821782,"Sunny, ample, quiet w/balcony!",14435551,Denise,Manhattan,Harlem,40.8068,-73.94258,Entire home/apt,67,5,6,2017-08-17,0.12,1,0 +16178531,2 Floor Epic Loft in Prime Bushwick,3473672,Andrew,Brooklyn,Williamsburg,40.70484,-73.9377,Entire home/apt,175,2,21,2019-06-28,0.81,1,313 +4125515,Cute room in Large Crown heights Apartment,21400616,LeKethia,Brooklyn,Crown Heights,40.67673,-73.9362,Private room,38,2,12,2018-01-01,0.21,2,351 +31118586,Private Room with exposed bricks at East Village,75509095,Gia,Manhattan,East Village,40.7297,-73.97995,Private room,169,3,0,,,2,14 +1442495,Spacious Duplex in Fun & Hip Area,5908577,Eric,Brooklyn,Crown Heights,40.67427,-73.95042,Entire home/apt,300,2,16,2019-06-09,0.24,2,41 +21975315,"Bright, 1.5 bedroom apartment in E. Williamsburg",2099205,Alexandra,Brooklyn,Williamsburg,40.71212,-73.94011,Entire home/apt,180,3,9,2019-03-25,0.53,1,0 +17463419,Private sunny room with private bathroom&entrance,33116792,Sophie,Queens,Ridgewood,40.69406,-73.90068000000001,Private room,31,5,75,2019-07-01,2.7,1,13 +18193397,Washington Heights Cozy,125558761,Stefan,Manhattan,Washington Heights,40.85354,-73.93095,Private room,50,2,26,2019-07-02,0.96,1,24 +24398061,Cute and Cozy Bushwick BR,53163551,Amanda,Brooklyn,Bushwick,40.70037,-73.91751,Private room,35,14,4,2018-06-16,0.28,1,0 +21140860,Amazing room in spacious 2BR apt in Greenpoint!,24523422,Guanchen,Brooklyn,Greenpoint,40.72109,-73.94679000000001,Private room,70,3,1,2017-10-16,0.05,1,0 +31756631,Private room in modern duplex,238111285,Leticia,Brooklyn,Bushwick,40.68542,-73.90952,Private room,45,2,1,2019-02-05,0.19,1,0 +7385651,Sunny apartment in the heart of LIC,25705189,Greta,Queens,Long Island City,40.74364,-73.95392,Entire home/apt,100,5,0,,,1,0 +30325250,Charming South Harlem Hideaway with Garden,8630543,Olga,Manhattan,Harlem,40.80453,-73.95015,Entire home/apt,115,3,18,2019-07-05,2.6,2,255 +6672812,Cozy room in light-filled apartment,1549512,Ilene,Brooklyn,Clinton Hill,40.68385,-73.96748000000001,Private room,68,7,0,,,2,0 +15523281,1 bedroom to yourself in Midtown Manhattan!,96595601,Tristan,Manhattan,Midtown,40.75966,-73.96313,Entire home/apt,135,3,21,2019-05-12,0.67,1,0 +23150033,Spacious zen apartment. Close to King's hwy stop.,172067924,Ekaterina,Brooklyn,Midwood,40.61182,-73.95436,Entire home/apt,100,3,0,,,1,0 +25110602,Oak St. Gem.,3938536,Jessica,Brooklyn,Greenpoint,40.72717,-73.95688,Private room,100,4,1,2018-06-05,0.08,1,0 +31591448,"Apt in Little Italy/Chinatown, Lower Manhattan",217836856,Moying,Manhattan,Chinatown,40.71865,-73.99587,Entire home/apt,190,1,46,2019-07-05,8.47,2,232 +26690488,"Large, Eco-Friendly, Vintage Apt near Bushwick",3329478,Emily,Queens,Ridgewood,40.70527,-73.90083,Private room,69,2,22,2019-02-01,1.92,1,16 +7023033,♡Private Rm/Women's Safe Art Home♡,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93208,Private room,99,1,4,2015-10-07,0.08,3,189 +27322746,"Lovely bright eclectic 2BR, perfect for couple!",23773099,Elias,Brooklyn,Fort Greene,40.68462,-73.96908,Entire home/apt,110,225,0,,,1,365 +21212488,Modern Astoria 1BR w/Private Patio,11951550,Nayef,Queens,Astoria,40.77061,-73.92109,Entire home/apt,86,4,3,2018-01-01,0.15,1,0 +7669319,"Sunny Studio, Amazing Neighborhood",2048347,Andrea,Brooklyn,Prospect Heights,40.67293,-73.96678,Entire home/apt,99,7,11,2019-06-15,0.23,1,216 +17178617,2 Blocks from Subway | Artsy BK Space,106940781,Corey,Brooklyn,Bushwick,40.69838,-73.93526999999999,Private room,50,21,0,,,1,0 +15271865,Clean Private Bedroom - Bushwick Brooklyn New York,68746033,Leslie,Brooklyn,Bedford-Stuyvesant,40.68303,-73.91238,Private room,80,1,2,2016-10-09,0.06,1,0 +30496651,Sunny Bedroom in Magical Ditmas Park,10358835,Nathalie,Brooklyn,Flatbush,40.63895,-73.96619,Private room,49,7,0,,,1,362 +29705207,Luxurious Ensuite in Historic Brownstone,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68405,-73.93401,Private room,70,2,11,2019-05-24,1.45,2,71 +23754556,Studio on East 44th street and 2nd Ave,76104209,Rated,Manhattan,Midtown,40.75132,-73.96925999999999,Entire home/apt,159,30,0,,,33,364 +33881136,Cozy Brooklyn Getaway,255856907,Chanel,Brooklyn,Crown Heights,40.6756,-73.9251,Private room,100,3,2,2019-06-19,1.33,1,163 +35600829,"Charming 1 Bedroom On Broadway, next to subway!",243660343,Dan,Manhattan,Harlem,40.82549,-73.95133,Entire home/apt,115,30,0,,,2,211 +9991319,1 Bedroom Apt near the Empire State,7367006,Juanjo,Manhattan,Midtown,40.74604,-73.98555,Entire home/apt,120,1,0,,,1,0 +29125444,Cozy 1 bedroom in Murray Hill.,52083976,Kevin,Manhattan,Murray Hill,40.74466,-73.9737,Entire home/apt,140,1,0,,,1,0 +16755920,HUGE Master Bedroom in Remodeled Brownstone.,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94525,Private room,55,3,2,2018-09-06,0.17,4,0 +21385556,Rosedale,95057247,Marie,Queens,Rosedale,40.65111,-73.73441,Private room,125,3,0,,,1,0 +29565377,"Sunny, 2 Bed Apartment on Wburg-Greenpoint Border",9229108,Etan,Brooklyn,Greenpoint,40.7218,-73.94085,Entire home/apt,250,7,1,2018-12-28,0.16,2,35 +25355845,Super Charming 1 Bedroom in the Heart of Chelsea,21705284,Dani,Manhattan,Chelsea,40.74388,-73.99631,Entire home/apt,200,2,71,2019-06-18,5.23,1,230 +7122067,Finally! A room with amazing vibes!,37275619,David,Manhattan,Washington Heights,40.85471,-73.93021,Private room,90,1,0,,,1,0 +13398340,Historic Townhouse Apartment with Garden Oasis,5917464,Greg & Adriane,Brooklyn,Bedford-Stuyvesant,40.68697,-73.94506,Entire home/apt,99,2,148,2019-07-05,3.98,1,29 +24715766,Studio Loft for Rent in Cool Building,83768519,Mutaurwa,Brooklyn,Bushwick,40.69796,-73.93563,Entire home/apt,80,5,1,2018-08-06,0.09,1,5 +15378469,"Private room with yard, in the heart of Bushwick",98279802,Philip,Brooklyn,Bushwick,40.70035,-73.92366,Private room,45,90,0,,,1,0 +33666119,Alexander Hamilton( For Guys ONLY),51596474,Antony,Brooklyn,Bay Ridge,40.62329,-74.02136,Shared room,24,10,1,2019-06-20,1.0,12,0 +18297633,"Charming, small and cozy",13540183,Ashley,Brooklyn,East Flatbush,40.63676,-73.95033000000001,Private room,150,2,0,,,1,0 +20166644,"Cozy, Quiet Convenient in Prime Soho",84143174,Lindsey,Manhattan,Nolita,40.72427,-73.99387,Entire home/apt,200,1,13,2019-05-26,0.56,1,0 +9716437,Chill Gramercy Flat,956269,Justin,Manhattan,Gramercy,40.73725,-73.98439,Entire home/apt,195,3,19,2019-06-21,0.43,1,34 +15647143,Lovely 2 Bedroom with Balcony on UWS,531006,Kaya,Manhattan,Upper West Side,40.79039,-73.96789,Entire home/apt,180,4,9,2018-07-22,0.37,1,0 +29152795,Hostel- Twin-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70442,-73.91707,Shared room,25,4,27,2019-06-18,3.01,5,49 +22516899,"A Quiet, Sunny Gem in Crown Heights",76426686,Bunge,Brooklyn,Crown Heights,40.6687,-73.93628000000001,Private room,50,5,0,,,1,0 +9437085,BIG bedroom in Uptown Manhattan,48913242,Alec,Manhattan,Washington Heights,40.83907,-73.94256,Private room,49,2,0,,,1,0 +31101852,Sunny room in iconic Brooklyn brownstone,38609581,Lira,Brooklyn,Prospect Heights,40.67782,-73.97076,Private room,120,2,0,,,2,0 +26768387,Prime Bushwick Artist’s Pad,50601648,Creighton,Brooklyn,Bushwick,40.689040000000006,-73.92036999999999,Private room,68,3,16,2019-06-03,1.4,1,139 +24659877,Nice home in awesome Location,186376053,Andrea,Manhattan,Upper West Side,40.79694,-73.96268,Private room,80,2,17,2019-06-15,1.44,1,126 +1380326,Positive Cozy Room!,7475363,Lola,Manhattan,Upper East Side,40.76723,-73.9551,Private room,111,2,77,2019-06-17,1.1,2,259 +13466302,Very central loft-like apartment on UWS,26297742,Valeria,Manhattan,Upper West Side,40.77981,-73.98499,Entire home/apt,325,5,7,2019-06-23,0.2,1,118 +20801754,Our Astoria Apartment - (Long Term Rental),6383939,Michael,Queens,Astoria,40.76304,-73.90785,Private room,45,21,9,2019-06-30,0.56,1,58 +13489132,"Amazing flat, stunning views!!, perfect location",48201284,Antoine,Brooklyn,Williamsburg,40.71026,-73.96840999999999,Entire home/apt,175,1,1,2016-07-08,0.03,1,0 +21739781,Vic's Cafe Deluxe,45044964,Victor,Queens,Queens Village,40.72417,-73.76053,Private room,65,1,15,2019-05-12,1.14,2,349 +13039351,Whole Apartment in Fort Greene,751120,Nat,Brooklyn,Fort Greene,40.68715,-73.97388000000001,Entire home/apt,120,2,21,2017-04-06,0.56,1,0 +15885355,Charming 2 Bedroom Space in Downtown Brooklyn,16221357,Theo,Brooklyn,Park Slope,40.68241,-73.97957,Private room,225,15,4,2018-05-24,0.13,1,0 +23038073,Renovated 2 Bed 2Bath high floor Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77915,-73.95040999999999,Entire home/apt,225,31,0,,,33,326 +32961700,Cute Apartment with a terrace near Central Park,12748942,Veronica Gallardo,Manhattan,Upper West Side,40.77912,-73.98029,Entire home/apt,220,30,1,2019-05-31,0.75,1,189 +9063266,Sunny 1BR in Heart of Williamsburg,47275801,Eric,Brooklyn,Williamsburg,40.71256,-73.95224,Entire home/apt,250,2,1,2015-12-06,0.02,1,0 +26775087,SUNNY ROOM B - GREAT LOCATION RIGHT NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69526,-73.95119,Private room,65,30,15,2019-05-19,1.42,3,328 +15681476,Luxury meets comfort in the heart of Williamsburg!,1314045,Tim,Brooklyn,Williamsburg,40.71361,-73.94804,Private room,109,1,228,2019-06-28,6.97,3,326 +19155616,Affordable master room near of LGA in Queens,46712160,Lucilu,Queens,Jackson Heights,40.75243,-73.89553000000001,Private room,59,1,184,2019-06-20,7.84,2,30 +31164968,Room in Perfect Bushwick Location,146169974,Daniela,Brooklyn,Bushwick,40.70258,-73.92614,Private room,90,3,2,2019-04-06,0.46,1,0 +27904745,Stuytown apartment,1142553,Brittany,Manhattan,Stuyvesant Town,40.72957,-73.97715,Entire home/apt,189,2,5,2018-11-05,0.48,1,0 +83847,East Village Designer's 1-BR APT,410094,Yvette,Manhattan,East Village,40.72451,-73.98094,Entire home/apt,225,2,33,2019-01-02,0.33,1,0 +23201228,Greenwich Village Gem at Washington Sq Park!,23859317,Jeffery,Manhattan,Greenwich Village,40.73091,-74.00001999999999,Entire home/apt,159,1,77,2019-06-22,5.3,1,50 +35497792,Chelsea room near Highline,267068278,Sara,Manhattan,Chelsea,40.747040000000005,-74.00239,Private room,105,1,1,2019-06-30,1.0,1,21 +21827433,"Huge, Cozy Brooklyn Duplex with Backyard",142662928,Nell,Brooklyn,Bedford-Stuyvesant,40.69292,-73.93463,Entire home/apt,160,5,0,,,1,0 +30388944,Mod + Lux Theater District 1BR w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.75971,-73.98550999999999,Entire home/apt,347,30,0,,,232,266 +21591672,HUGE bedroom available in artsy Bushwick,54966810,Garland,Brooklyn,Bushwick,40.70361,-73.9255,Private room,52,1,2,2017-11-15,0.1,1,0 +21815842,Spacious 2 bedroom in beautiful Clinton Hill,1931990,Yarden,Brooklyn,Clinton Hill,40.688590000000005,-73.96035,Entire home/apt,93,3,2,2018-05-11,0.13,1,0 +14682338,Harlem Oasis,20872245,Ryan,Manhattan,Harlem,40.82626,-73.93831,Private room,175,3,37,2019-06-19,1.06,1,19 +20705094,Whitewashed West Village Dream,32689791,Jana,Manhattan,West Village,40.73632,-74.00601,Entire home/apt,158,14,4,2018-03-31,0.18,1,0 +13902088,Peaceful and Spacious Master Bedroom,82412007,Janet,Manhattan,Gramercy,40.73517,-73.98176,Private room,120,2,3,2017-11-25,0.14,1,0 +36139701,Cozy place by Times Square,271393608,Michael,Manhattan,Hell's Kitchen,40.76658,-73.98566,Shared room,69,1,0,,,6,23 +32991664,Private room with a balcony on the water,161135042,Valerie,Queens,Long Island City,40.74529,-73.95753,Private room,200,1,1,2019-03-22,0.28,1,0 +726465,"❤️ of Williamsburg, Private Entrance",1869332,Elli,Brooklyn,Williamsburg,40.71927,-73.95591,Private room,129,2,129,2019-04-25,1.67,3,36 +35617075,Fantastic 2BRM - 2 Minute Walk to Times Square,266925045,Ivana,Manhattan,Hell's Kitchen,40.7607,-73.99033,Entire home/apt,320,3,3,2019-07-01,3.0,1,160 +26052294,"Lovely, spacious room in the best neighborhood",17672941,Daniel,Manhattan,Greenwich Village,40.72844,-74.00025,Private room,100,3,6,2019-06-02,0.48,1,9 +22958680,Cosy one-bedroom nest in the heart of Williamsburg,170092307,Raphael & Sydonie,Brooklyn,Williamsburg,40.7141,-73.96194,Entire home/apt,128,5,56,2019-06-12,3.32,1,18 +18210358,True NYC Living! Flatiron:1 bdrm w/ outdoor space!,76114242,Mark,Manhattan,Kips Bay,40.73916,-73.9822,Entire home/apt,235,1,0,,,1,0 +25686640,Charming 2 Bedroom in Fashionable East Village,193335348,Julia,Manhattan,East Village,40.727,-73.98406,Entire home/apt,350,2,69,2019-07-06,5.27,1,291 +14672524,Awesome Private Room in Historic Village of Harlem,91194780,Rocky,Manhattan,Harlem,40.80048,-73.94864,Private room,56,2,79,2019-06-13,2.38,1,56 +13536155,"1 bedroom w/ Queen bed, 5 minutes from Manhattan.",36815239,Henry,Queens,Long Island City,40.75293,-73.93757,Private room,74,1,210,2019-06-27,5.66,1,33 +30292232,"1 BR Apartment in Greenpoint, Brooklyn w/ backyard",8120005,Megan,Brooklyn,Greenpoint,40.72447,-73.94458,Entire home/apt,70,30,2,2019-01-21,0.33,1,0 +29286653,"Cozy, Private Room on Upper East Side",151229011,Gerta,Manhattan,Upper East Side,40.77557,-73.94381,Private room,93,3,32,2019-06-30,3.87,1,28 +8733472,20 mins to Manhattan Entire Studio,475986,Mary Beth,Queens,Kew Gardens,40.71065,-73.83015,Entire home/apt,100,1,14,2019-01-01,0.31,1,90 +18872495,Spacious room near the Midtown-close to everything,19339271,Marcia,Queens,Long Island City,40.74752,-73.92264,Private room,60,1,7,2017-11-12,0.32,1,0 +3903284,Most amazing spot in Williamsburg,9990930,Alexander,Brooklyn,Williamsburg,40.71751,-73.95895,Private room,95,1,0,,,1,0 +35880602,Large Sunlit Private Queen Bed Room Crown Heights,78113383,Sara,Brooklyn,Crown Heights,40.67244,-73.92267,Private room,30,7,0,,,3,44 +272706,"SUNNY, SPACIOUS APT. in FT. GREENE",1402817,Valerie,Brooklyn,Fort Greene,40.69135,-73.97321,Entire home/apt,88,5,7,2017-06-18,0.08,1,0 +15767882,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74565,-73.99183000000001,Entire home/apt,205,30,1,2017-12-08,0.05,87,365 +32822356,Manhattan Lifestyle by Melanie (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74434,-73.97758,Shared room,53,2,2,2019-06-26,0.59,3,297 +9371045,Large terrace 1 bed room (br) apt,32975805,Khalil,Manhattan,Murray Hill,40.74961,-73.97846,Entire home/apt,200,2,0,,,1,0 +15509545,2Bedroom apt.+WF(1-5 guests) Private Bath/Kitchen,99643776,Claire,Manhattan,Lower East Side,40.71806,-73.99351,Entire home/apt,250,3,41,2019-06-22,1.42,2,147 +7899605,COZY ROOM CLOSE TO TOUR SITES,39472987,Eileen,Manhattan,Harlem,40.82861,-73.94126999999999,Private room,58,1,5,2016-09-19,0.11,1,0 +10165181,Beautiful Unique Greenpoint Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72919,-73.94511999999999,Private room,149,3,32,2019-06-29,0.75,13,74 +32403772,"Nolita (SoHo) - Lovely, brand new apartment",243333842,Matthias,Manhattan,Nolita,40.72186,-73.99696,Entire home/apt,172,2,8,2019-06-28,1.98,1,42 +21503589,Newly Renovated/Historic-Landmarked Brownstone!,50332029,Mario,Manhattan,Harlem,40.82621,-73.94549,Entire home/apt,95,1,139,2019-06-29,6.9,1,41 +23714854,Gorgeous Room in Downtown Designer Apartment,48911266,Tess,Manhattan,Two Bridges,40.71262,-73.99592,Private room,119,3,17,2019-05-15,1.31,2,86 +33271110,Cozy Room in BK Brownstone w/ Breakfast,2517810,Amber,Brooklyn,Bedford-Stuyvesant,40.686890000000005,-73.93344,Private room,45,2,7,2019-06-28,2.41,1,82 +3768977,"2 bedroom Duplex condo ++ yard 7 min to Manhattan",18953786,Ehsan,Queens,Astoria,40.76403,-73.92161999999999,Entire home/apt,170,3,116,2019-06-13,1.96,2,355 +8125640,Amazing Water View from Midtown Apt,8301365,Jacob,Manhattan,Murray Hill,40.74553,-73.97301999999999,Private room,100,6,5,2019-05-21,0.14,1,25 +10564616,Beautiful 2bed apt near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76467,-73.99422,Entire home/apt,185,30,8,2019-03-09,0.21,31,332 +11272222,LA MAISON JOYEUSE - 12 min walk to Yankee Stadium,58857198,Melanie,Bronx,Concourse Village,40.82731,-73.91632,Private room,100,2,54,2017-01-02,1.32,1,0 +20167736,"Renovated Luxury Apt $199/Sleeps 4, Labor Day Wknd",21060836,Laura,Manhattan,Midtown,40.7534,-73.97185999999999,Entire home/apt,199,3,0,,,2,0 +26430901,Hustler's Paradise 003 Private Room Lower Level,104927746,Amardeep,Staten Island,Concord,40.59691,-74.087,Private room,30,4,26,2019-06-25,2.14,7,359 +29233046,PRIVATE room w/PARKING included-15Min to LGA&JFK!!,146449899,Fabian,Queens,Flushing,40.74538,-73.83489,Private room,49,1,57,2019-06-30,6.71,2,143 +18957522,Entire One Bedroom Apt-Great Location In Manhattan,37100193,Michelle,Manhattan,Midtown,40.75452,-73.96634,Entire home/apt,122,1,120,2019-06-21,5.03,1,220 +8623922,Red Hook Brooklyn Apartment,11796122,Candace,Brooklyn,Red Hook,40.67916,-74.00466999999999,Entire home/apt,100,1,2,2015-10-05,0.04,1,0 +24377683,Sunny Bedroom at Union Square,21410546,Hong Ngoc,Manhattan,Chelsea,40.737,-73.99407,Private room,85,2,4,2018-06-10,0.27,1,0 +8664965,shared space with Great location!!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59852,-73.95481,Shared room,35,1,116,2019-06-25,2.55,5,351 +16208920,Home away from home in heart of BK,5237407,Jenima,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94674,Entire home/apt,131,2,20,2019-06-23,0.73,2,0 +4135674,Warm & lovely garden duplex in BK,2011110,Rebecca,Brooklyn,Fort Greene,40.68786,-73.97339000000001,Entire home/apt,300,1,5,2015-07-10,0.09,1,0 +13912267,⚜ Sun-Filled 1BR in Upper East Side ⚜,79675471,Joanna,Manhattan,Upper East Side,40.76858,-73.95345999999999,Entire home/apt,99,2,0,,,1,0 +28240916,Perfect Bedroom W/En Suite Bath & Terrace Access,20568490,Steve,Manhattan,Tribeca,40.72343,-74.00791,Private room,149,1,16,2019-06-24,1.62,1,337 +13935360,Bright & Sunny 2-Bedroom in Hamilton Heights,80560845,Shelley,Manhattan,Harlem,40.83136,-73.94843,Entire home/apt,100,4,4,2017-08-05,0.11,1,0 +30710264,Pleasant Upper West Side Studio,79563670,Nicole,Manhattan,Upper West Side,40.77888,-73.97967,Entire home/apt,100,3,7,2019-07-06,1.04,1,52 +28699887,Brooklyn Home,44338944,Ethan,Brooklyn,Sunset Park,40.64349,-74.02346999999999,Entire home/apt,80,14,2,2019-05-31,0.24,1,184 +9515733,Modern Boho Apt. in Prime Brooklyn Location,888939,Amber,Brooklyn,Boerum Hill,40.686440000000005,-73.9857,Entire home/apt,200,2,8,2018-04-01,0.35,1,0 +195578,Loft Style Apt in Williamsburg,304493,Erika,Brooklyn,Williamsburg,40.70275,-73.94501,Private room,85,1,46,2018-12-30,0.97,1,59 +10682316,Spacious Sanctuary in Bushwick,8655790,Romany,Brooklyn,Bushwick,40.69887,-73.9227,Private room,75,20,1,2018-10-19,0.11,1,93 +465277,Sunny plant-filled apartment with 2 balconies,2065453,Ora & Scout,Brooklyn,Crown Heights,40.67615,-73.95441,Entire home/apt,68,2,35,2018-01-01,0.54,3,0 +26249544,Comfy Room with Private Insuite Bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9343,Private room,63,3,27,2019-07-06,2.26,7,225 +28010779,Luxury apartment close to Empire State Building,46842591,Panos,Manhattan,Midtown,40.744040000000005,-73.98263,Entire home/apt,250,5,5,2018-12-09,0.51,2,179 +525388,Greenpoint gypset retreat,787204,Jenna,Brooklyn,Greenpoint,40.73067,-73.955,Entire home/apt,200,7,20,2019-06-23,0.24,1,365 +32891722,Ladies Only NYC,247453895,Kamila,Manhattan,Kips Bay,40.74367,-73.97551,Shared room,44,2,3,2019-06-03,0.79,3,324 +33468884,Duplex Townhouse in Heart of Williamsburg,252163238,Kelly,Brooklyn,Williamsburg,40.71912,-73.94296,Entire home/apt,327,2,7,2019-06-16,3.0,1,49 +10085478,Deluxe Brooklyn Loft,47554473,Henry Norman,Brooklyn,Greenpoint,40.72845,-73.94476999999999,Entire home/apt,129,3,16,2019-06-27,0.37,13,71 +22381052,private room in upper ditmars astoria wifi,97127885,Concetta,Queens,Ditmars Steinway,40.76826,-73.89390999999999,Private room,36,1,5,2018-12-30,0.27,2,250 +9756729,Bright new apt in a luxury building,33349807,Dorit,Brooklyn,Bedford-Stuyvesant,40.6801,-73.92873,Entire home/apt,60,13,0,,,1,0 +13316545,"Great Place in Brooklyn, Close to Everything",75281770,Janea,Brooklyn,East Flatbush,40.65112,-73.95165,Entire home/apt,77,2,1,2016-06-15,0.03,1,0 +1330753,"Garden, Private Deck, Williamsburg apartment",2014720,Amy,Brooklyn,Williamsburg,40.71276,-73.95022,Entire home/apt,95,25,11,2017-07-31,0.15,1,168 +21491135,Diamond Peach,19708200,Larry,Brooklyn,Canarsie,40.63895,-73.91606,Entire home/apt,65,3,65,2019-06-20,3.19,3,305 +17711806,Private Room & Private bathroom 2mins to subway!,28573,Sara,Brooklyn,Bedford-Stuyvesant,40.6778,-73.9135,Private room,65,1,140,2019-06-30,5.0,1,144 +491942,Renovated Spacious 1BR Upper West,1995093,Carly,Manhattan,Upper West Side,40.79183,-73.97171999999999,Entire home/apt,199,3,24,2016-10-09,0.3,1,0 +19744093,Beautiful modern Brooklyn apartment with balcony!,2239235,Jess,Brooklyn,Crown Heights,40.67637,-73.95755,Entire home/apt,125,3,1,2017-07-16,0.04,1,0 +15543169,Charming and Private Clinton Hill Hide-Away,11845677,Kim,Brooklyn,Clinton Hill,40.68229,-73.96154,Entire home/apt,160,2,97,2019-07-05,3.0,1,68 +4530154,Park Slope Sky Parlor,3201774,Ashley,Brooklyn,South Slope,40.66388,-73.9905,Private room,53,1,105,2019-06-21,2.11,2,137 +11817955,Artist's Loft - South Park Slope,4629474,Jonathan,Brooklyn,Sunset Park,40.66162,-73.99122,Entire home/apt,179,3,0,,,1,0 +20636416,"Sunny Williamsburg Loft, minutes to Manhattan",57641560,Christopher,Brooklyn,Williamsburg,40.71453,-73.9551,Entire home/apt,182,5,62,2019-06-24,2.83,2,28 +16119492,Monthly Trendy Studio w/Patio amazing location,44802851,Andrea,Brooklyn,Williamsburg,40.71603,-73.96426,Entire home/apt,180,4,63,2019-06-23,2.02,1,1 +11667910,Great location-Newly updated-great new features,60500199,Valery,Manhattan,Harlem,40.807970000000005,-73.94243,Entire home/apt,205,3,71,2019-06-03,1.76,1,331 +26688045,Cozy & Gorgeous Girls room Near Train / Manhattan,137358866,Kazuya,Queens,Woodside,40.74465,-73.90795,Private room,39,30,0,,,103,0 +6805817,Bedroom on Riverside Park,7323687,Russell,Manhattan,Upper West Side,40.793040000000005,-73.97725,Private room,125,1,0,,,1,0 +13306254,A beautiful Park slope apartment,9603086,Leza,Brooklyn,Gowanus,40.6664,-73.99305,Entire home/apt,300,1,0,,,1,311 +29002824,Cozy Private Room in East Village,20328673,Matt,Manhattan,East Village,40.73199,-73.98857,Private room,90,3,1,2019-01-07,0.16,1,5 +9014126,Cozy Bedroom in East Village,24622525,Hannah,Manhattan,East Village,40.7268,-73.98026999999999,Private room,89,1,0,,,1,0 +7556153,Fort Greene Sanctuary,16437254,Benjamin,Brooklyn,Fort Greene,40.68896,-73.97737,Entire home/apt,123,30,7,2019-03-09,0.19,21,342 +892704,Enjoy Brownstone Brooklyn!,4746193,Richelle & Neil,Brooklyn,Bedford-Stuyvesant,40.68485,-73.93684,Entire home/apt,120,2,163,2019-07-05,2.12,1,161 +28055277,"Home away from home +& (QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94391,Private room,35,1,27,2019-06-22,2.58,2,338 +30697207,"Great room and friendly environment in Astoria, NY",229774456,Chris,Queens,Ditmars Steinway,40.77383,-73.90558,Private room,70,2,4,2019-05-25,0.64,1,89 +16353458,Cozy and sunny 2 BR apartment in trendy Greenpoint,4229387,Suzanne,Brooklyn,Greenpoint,40.73475,-73.95543,Entire home/apt,150,4,4,2019-01-01,0.13,1,0 +6625406,1 Bedroom in Williamsburg!,23527094,Ginevra,Brooklyn,Williamsburg,40.711870000000005,-73.96342,Private room,85,1,11,2019-01-23,0.33,1,154 +32223854,Sonder | Stock Exchange | Classic 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.01047,Entire home/apt,234,2,2,2019-06-04,1.46,327,332 +30594607,Cozy Apartment in Hell’s Kitchen,75998293,Nicolas,Manhattan,Hell's Kitchen,40.76475,-73.98662,Private room,160,8,1,2019-05-07,0.48,1,64 +19054163,Cozy Brooklyn Oasis,133004690,Linda,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93972,Entire home/apt,80,1,107,2019-06-18,4.28,2,240 +21121441,Bright 1 bd apartment next to west villiage,152339773,Amanda Haowei,Manhattan,Chelsea,40.74083,-74.00349,Entire home/apt,195,5,0,,,1,0 +21014919,Spacious Private Bedroom in Northern Manhattan!,29248621,Chelsea,Manhattan,Washington Heights,40.844440000000006,-73.93554,Private room,50,5,5,2018-04-01,0.29,1,0 +20883446,Private room near train into midtown Manhattan,16323240,Oliver,Queens,Sunnyside,40.7448,-73.92364,Private room,47,2,2,2017-10-16,0.09,2,0 +24230591,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74512,-73.97921,Private room,81,4,6,2018-12-17,0.39,2,0 +1164101,Oasis in the West Village,6376776,Kurt,Manhattan,West Village,40.738040000000005,-74.00416,Private room,89,30,13,2018-04-30,0.18,1,282 +30106990,NY MANHATTAN DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75438,-73.99759,Private room,209,2,11,2019-05-16,1.63,8,73 +30476363,"COZY APARTMENT, CLOSE TO MIDTOWN-MANHATTAN.",3229770,Luis,Queens,Sunnyside,40.73662,-73.92371999999999,Entire home/apt,129,3,7,2019-07-01,1.11,4,280 +30502203,"Clean, Cozy Private Bedroom/Apartment",11332183,Tj,Manhattan,Harlem,40.81281,-73.94475,Private room,65,3,3,2019-05-27,0.45,1,0 +36315759,"Quaint Tribeca Studio w/ Gym, W/D, Doorman, Garage, Valet, by Blueground",107434423,Blueground,Manhattan,Tribeca,40.713,-74.00990999999999,Entire home/apt,269,30,0,,,232,193 +9611121,Penthouse in Crown Heights,1192413,Yoav,Brooklyn,Crown Heights,40.66909,-73.95144,Entire home/apt,99,1,0,,,1,0 +28835678,Charming and cozy one-bedroom on Upper West Side,94395484,Rosemarie,Manhattan,Morningside Heights,40.81511,-73.95998,Entire home/apt,140,2,6,2019-02-24,0.66,1,0 +32888484,Brand new charming modern apartment,82190014,Kristin,Brooklyn,East Flatbush,40.66346,-73.93571999999999,Entire home/apt,149,3,1,2019-06-09,1.0,1,170 +12234835,UNBEATABLE LOCATION - SUPREME APARTMENT,65832104,Sam,Manhattan,Lower East Side,40.71877,-73.98913,Entire home/apt,85,5,4,2019-06-15,0.11,1,282 +19220496,Parkside luxury - studio with balcony,23257199,Rachel,Brooklyn,Crown Heights,40.67375,-73.96255,Entire home/apt,84,4,8,2017-11-24,0.33,1,0 +10243895,Beautiful restored full floor apt,5162192,Amy,Manhattan,Upper West Side,40.78273,-73.97553,Entire home/apt,285,5,79,2019-07-02,2.09,12,153 +6364117,Lovely Lofted Room in UWS,7532832,Wing-Yee,Manhattan,Upper West Side,40.80066,-73.96941,Private room,125,1,1,2015-06-09,0.02,1,0 +2794725,LOOK! Attached single family,14295613,Skylar,Staten Island,Clifton,40.62578,-74.07356,Entire home/apt,75,1,1,2014-04-19,0.02,1,0 +4708609,Skyline View Piano Room,19972390,Melissa,Brooklyn,Greenpoint,40.73262,-73.95795,Private room,55,1,24,2016-06-17,0.44,1,157 +35346820,Private Room in Luxury Penthouse Apartment,3241323,Victor,Brooklyn,East Flatbush,40.65539,-73.94960999999999,Private room,175,1,3,2019-06-30,3.0,1,87 +4717296,"Luxury Astoria 1BD apt, 20min from Manhattan",24009463,Vadim,Queens,Long Island City,40.76586,-73.93342,Entire home/apt,150,3,63,2019-06-20,1.34,2,187 +28071460,Beautiful apartment in Greenpoint,9609022,Emilie,Brooklyn,Greenpoint,40.72113,-73.95279000000001,Entire home/apt,98,8,1,2018-08-29,0.1,1,0 +571564,large spacious room,1141935,Ana,Brooklyn,Crown Heights,40.67436,-73.94807,Private room,95,1,123,2019-06-02,1.47,3,359 +2068054,One Room in Lovely Zen House,10577541,Kat,Queens,Forest Hills,40.71215,-73.85356,Private room,55,15,6,2018-04-21,0.1,1,255 +12846048,"PRIME LOCATION, PARK SLOPE -BKLYN: 4BR FAMILY TYPE",23144316,Anna,Brooklyn,Park Slope,40.66896,-73.97641,Entire home/apt,170,13,4,2018-08-20,0.11,1,46 +21839021,Bushwick private 10 foot ceiling dwelling,131476075,Lakisha,Brooklyn,Bushwick,40.68637,-73.91159,Private room,53,2,19,2019-01-02,1.03,8,177 +6364404,Luxury High-Rise in Center of NYC/Manhattan,6415669,Nisha,Manhattan,Midtown,40.74832,-73.98814,Entire home/apt,190,6,0,,,1,0 +17370778,Gem In Park Slope,1339545,Nina & Keith,Brooklyn,Park Slope,40.67005,-73.97981,Entire home/apt,120,3,125,2019-06-25,4.51,2,61 +715102,WILLIAMSBURG 1 private room in loft,1002452,Florencia,Brooklyn,Williamsburg,40.71055,-73.94915,Private room,65,14,30,2018-09-02,0.76,2,38 +30578954,Beautiful Master Bedroom & Private Bath,15929157,Christina,Brooklyn,East New York,40.67199,-73.88253,Private room,36,15,1,2019-02-28,0.23,3,213 +8823897,Massive Room in Brownstone - 25% OFF,1418015,Reuben,Brooklyn,Crown Heights,40.67722,-73.95305,Private room,57,2,91,2019-06-23,2.06,4,228 +22357832,Charming Bedroom in Washington Heights!,13575029,Julian,Manhattan,Washington Heights,40.848490000000005,-73.93106999999999,Private room,47,2,3,2018-01-12,0.17,1,0 +7436186,Beautiful bedroom in Ditmas Park!!!,6367907,J And Lana,Brooklyn,Flatbush,40.63198,-73.95988,Private room,108,2,59,2019-06-23,1.24,1,344 +21925970,Manhattan cocoon @ spacious NEW renovated apt,17250625,Lucas,Manhattan,East Harlem,40.79757,-73.93851,Private room,50,13,51,2019-06-14,2.63,1,26 +31722467,ENTIRE PLACE! near Columbia-sleeps up to 8 guests!,16480700,Eddie&Vlad,Manhattan,Harlem,40.81953,-73.95476,Entire home/apt,250,1,0,,,7,249 +22165461,Be a Brooklynite & be 3 stops away from Manhattan!,161900946,Kenne,Brooklyn,Sunset Park,40.63801,-74.01665,Entire home/apt,105,2,0,,,1,0 +18600659,One big sunny cozy room with a king and a twin bed,6423838,Sara,Brooklyn,East Flatbush,40.65229,-73.94539,Private room,150,2,1,2018-09-03,0.1,1,83 +18068913,"Sunny & cozy Studio at the park, 25m to Manhattan",23944472,Stelios,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.96194,Entire home/apt,69,3,16,2019-02-18,0.59,1,6 +22304663,Charming House with Manhattan Views!,163047898,Erika,Queens,Long Island City,40.74801,-73.95031999999999,Entire home/apt,160,2,2,2018-01-01,0.11,1,0 +29034190,The NYC Getaway Space,9808458,Zain,Bronx,Kingsbridge,40.87072,-73.89974000000001,Private room,65,2,0,,,4,364 +21273425,Brand New Cozy Woodside Studio- Close to NYC,153886003,Andy,Queens,Maspeth,40.73698,-73.90256,Entire home/apt,100,1,94,2019-07-05,4.73,1,154 +18381623,Luminous Zen Garden Retreat,23036053,Terrence,Manhattan,East Village,40.72908,-73.9797,Private room,145,4,64,2019-06-29,2.46,1,136 +2000611,Cute brick wall apt. 2BR,10304755,Michael,Brooklyn,Williamsburg,40.71002,-73.95801999999999,Entire home/apt,150,4,42,2019-06-11,0.62,2,0 +19080983,Convenient Home near train Subway & Airports,59089796,Sara,Queens,Richmond Hill,40.70288,-73.81955,Entire home/apt,104,2,78,2019-06-26,3.26,2,65 +19236716,a beautiful home,134672751,Louis,Staten Island,West Brighton,40.62398,-74.10801,Private room,200,3,0,,,1,365 +21172924,Midtown East,152852607,Jerry,Manhattan,Midtown,40.7557,-73.96871,Entire home/apt,185,3,35,2019-06-10,1.66,1,0 +23106518,A COZY NYC STUDIO APARTMENT 20 minutes to Union Sq,171668854,Marko,Queens,Ridgewood,40.71191,-73.90630999999999,Entire home/apt,60,4,2,2019-03-10,0.19,1,0 +4891701,NYC GORGEOUS LIGHT SPACE RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82191,-73.95736,Entire home/apt,109,14,3,2015-01-03,0.05,3,0 +24036655,Charming 1 Bedroom apt at Bayridge,49219601,Alex,Brooklyn,Fort Hamilton,40.62225,-74.03444,Entire home/apt,70,1,2,2018-09-16,0.19,1,0 +15827516,Luxury NYC 1 Bed w/Gorgeous Views + Pool,102478101,Robert,Manhattan,Hell's Kitchen,40.75968,-73.99797,Entire home/apt,289,2,4,2017-01-02,0.13,1,0 +26254872,Sunny and cozy 1BR in Astoria,7132948,Cindy,Queens,Astoria,40.76433,-73.92192,Entire home/apt,110,2,2,2018-07-30,0.16,1,6 +19857613,"Cozy, Bright, Bohemian Space in the East Village",1132004,Michael,Manhattan,East Village,40.73022,-73.98623,Entire home/apt,125,5,2,2017-08-27,0.08,1,0 +10070663,Bedroom in Upper Westside Apartment,51674579,Brittany,Manhattan,Upper West Side,40.79616,-73.97506,Private room,45,1,0,,,1,0 +21949305,Artsy Little Bedstuy Nook,315606,Cynthia,Brooklyn,Bedford-Stuyvesant,40.68679,-73.9495,Private room,45,30,0,,,2,95 +24538208,Comfortable Studio Apt in Heart of East Village,20584520,Ben,Manhattan,East Village,40.72926,-73.98456,Entire home/apt,101,1,25,2019-05-22,1.74,1,363 +18811240,Sunny duplex w/outdoor space & easy train access,2978784,Karen,Brooklyn,Sunset Park,40.65379,-74.00272,Entire home/apt,150,7,6,2018-08-16,0.25,1,1 +32398138,"Modern and spacious apt in Kips Bay, NYC!",30283594,Kara,Manhattan,Kips Bay,40.74378,-73.97355999999999,Entire home/apt,239,29,0,,,121,364 +23859490,"Comfy , Cozy, New York Getaway for Travelers",9808458,Zain,Bronx,Kingsbridge,40.87287,-73.90156999999999,Private room,65,2,0,,,4,365 +6445173,Luxury Williamsburg Duplex w/ Yard!,5622480,Gigi,Brooklyn,Williamsburg,40.71106,-73.94918,Entire home/apt,250,2,176,2019-06-23,3.51,1,275 +14107667,"West 89th Street, Luxury Svcd 1bd UWS Apartment",22541573,Ken,Manhattan,Upper West Side,40.78989,-73.97264,Entire home/apt,267,30,0,,,87,354 +36233195,Welcome home buddies in NYC,121399223,Weifeng,Staten Island,Tompkinsville,40.6283,-74.08645,Private room,60,1,0,,,1,88 +28916439,Family and Friendly Room,35927005,Kathy,Brooklyn,Borough Park,40.63535,-74.00589000000001,Private room,60,1,0,,,10,0 +34673353,30day min High flr apt in the center of Manhattan,261560877,Edit,Manhattan,Theater District,40.76103,-73.97995999999999,Entire home/apt,250,25,0,,,1,261 +13186655,2 bedroom apartment on Central Park,6721441,Kelsey,Manhattan,Harlem,40.8013,-73.95676999999999,Entire home/apt,165,4,2,2016-12-29,0.06,1,0 +19998416,Brooklyn Base Camp,1780076,Ashleigh,Brooklyn,Crown Heights,40.67513,-73.95714,Private room,55,2,13,2017-10-21,0.56,2,0 +367810,1400sf Manhattan View Artistic Loft,1728785,Veronika And John,Brooklyn,Greenpoint,40.7376,-73.95678000000001,Private room,120,5,3,2019-04-24,0.09,1,242 +14685276,Gorgeous Loft,1459260,Jorge,Brooklyn,Bedford-Stuyvesant,40.6907,-73.96019,Entire home/apt,132,4,92,2019-06-16,2.69,1,260 +21178032,"#2,单间双人房,(共用卫生间)",148852095,Kelly,Queens,Flushing,40.75547,-73.83547,Private room,60,2,24,2019-07-02,1.14,3,76 +10099859,"1 Bed 1 Bath in Jackson Heights, NY",51829088,Joshua,Queens,Jackson Heights,40.74856,-73.88906,Entire home/apt,139,1,0,,,1,0 +35287395,Room # 5 Near from JFK & LGA Diner 7/24 open,258589420,Diego,Queens,Richmond Hill,40.68936,-73.83357,Shared room,60,1,4,2019-07-07,4.0,7,365 +30526105,A cozy place,384595,Adam,Manhattan,Lower East Side,40.714220000000005,-73.98808000000001,Entire home/apt,150,3,8,2019-06-24,1.18,1,163 +18689588,Sunny Brooklyn Studio: 25 min to central Manhattan,127767,Cara,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95374,Entire home/apt,97,4,6,2018-08-18,0.24,1,0 +24057583,Beautiful Studio Apt,181108819,Friday,Staten Island,Clifton,40.61804,-74.0861,Entire home/apt,60,1,54,2019-05-22,3.48,1,361 +13711038,Beautiful room in Williamsburg (Roebling and N7),62149112,Sam,Brooklyn,Williamsburg,40.71576,-73.95576,Private room,65,1,3,2017-08-19,0.11,1,0 +12403252,Suite One at Bryant Manor,67069129,Kevin,Manhattan,Harlem,40.80967,-73.95295,Entire home/apt,175,2,136,2019-06-23,3.51,2,280 +13844921,Top location 1BR 5mins to Manhattan,8785272,Dimitar,Queens,Long Island City,40.74466,-73.95274,Entire home/apt,90,7,0,,,1,0 +14354698,Huge 1 Bedroom Central Harlem Express Subway Stop,4597403,Naseef,Manhattan,Harlem,40.81315,-73.95389,Private room,49,1,13,2019-07-07,0.37,1,0 +4278389,M1 Twin couch bed sleeps 1 guest,295128,Carol Gloria,Bronx,Clason Point,40.81231,-73.85535,Shared room,45,1,7,2019-07-01,0.14,7,365 +7204443,Peaceful Room in Dumbo Art Loft,37723496,Anna,Brooklyn,DUMBO,40.70429,-73.98773,Private room,125,2,152,2019-06-23,3.16,2,166 +25855773,Sunny Beautiful Loft,13307646,Annette,Brooklyn,Bedford-Stuyvesant,40.69537,-73.95642,Entire home/apt,125,18,4,2019-01-03,0.32,1,24 +32886217,Dash Production loft,247411073,Antwoine,Brooklyn,Crown Heights,40.67041,-73.9463,Private room,239,1,1,2019-05-19,0.58,1,364 +26874727,"Large, spacious bedroom in the heart of Bushwick!",129596284,Sonya,Brooklyn,Bushwick,40.70105,-73.92183,Private room,40,4,5,2018-12-29,0.42,1,0 +35023304,The best home away from home!,263843788,Diana,Queens,Sunnyside,40.74143,-73.9229,Entire home/apt,145,2,7,2019-07-01,5.68,1,14 +11947067,Artist's Budget Apartment,63790712,Layla,Manhattan,Harlem,40.80477,-73.95454000000001,Private room,40,2,16,2019-01-04,0.4,2,0 +31314273,"Private bedroom in the Upper West Side, Manhattan",6391001,Maria,Manhattan,Upper West Side,40.8024,-73.96495999999999,Private room,59,1,39,2019-06-30,6.5,1,106 +29452918,Great New York - Private or shared room 2,179336958,Ruby,Manhattan,Midtown,40.74684,-73.98698,Private room,75,4,7,2019-05-11,0.82,6,357 +35576552,Private Room For The Night,155529225,Alejandro,Queens,Corona,40.74415,-73.86545,Private room,80,1,0,,,1,365 +32250920,The Berry - Hip in the heart of Williamsburg.,1859754,Adam,Brooklyn,Williamsburg,40.71989,-73.9581,Entire home/apt,100,4,2,2019-06-30,0.48,1,7 +2132248,Huge Master Bedroom w/ Private Bath,3695778,Zach,Brooklyn,Williamsburg,40.7147,-73.96554,Private room,95,5,0,,,1,0 +517626,Above Graham stop - L train,2438262,Walker,Brooklyn,Williamsburg,40.71577,-73.94084000000001,Private room,95,1,10,2014-12-03,0.14,1,0 +437352,Fantastic 2BR in Brooklyn's Best Area,290662,Seth,Brooklyn,Park Slope,40.67078,-73.98815,Entire home/apt,105,115,15,2018-12-31,0.17,1,219 +4000133,Ditmas Park townhouse front bedroom,20738908,James,Brooklyn,Flatbush,40.64119,-73.96295,Private room,50,2,4,2015-10-29,0.07,1,0 +33038028,Aiden’s Red Door @ Crown Heights,32418402,Roxanne,Brooklyn,Crown Heights,40.67165,-73.93143,Private room,82,2,2,2019-06-20,1.02,2,156 +22252628,"Cozy, convenient Manhattan Apartment in the LES",26022466,Calvin,Manhattan,Lower East Side,40.71495,-73.98589,Private room,70,1,8,2018-01-09,0.42,1,0 +29358057,Murray Hill Apt (next to 6 train & near Penn/Bus),52161562,Marlena,Manhattan,Kips Bay,40.7444,-73.97946,Entire home/apt,125,2,14,2019-05-27,1.65,1,0 +9786398,LOCATION! Private room with yard.,1698487,Chelsea,Brooklyn,Prospect Heights,40.67835,-73.96846,Private room,85,1,90,2019-06-16,2.08,1,345 +18079072,"Huge, Sunny Loft in Williamsburg, Near Waterfront",124491152,Philip,Brooklyn,Williamsburg,40.72171,-73.95872,Entire home/apt,175,2,134,2019-06-22,5.12,1,208 +23075778,Gem in the East Village,2786998,Akshay,Manhattan,East Village,40.726290000000006,-73.98416999999999,Entire home/apt,150,2,20,2019-06-16,1.19,1,2 +10336440,"Sunny, spacious Clinton Hill 1.5 BR",283636,Nathan & Ximena,Brooklyn,Clinton Hill,40.68545,-73.96048,Entire home/apt,200,3,22,2019-06-03,0.54,1,363 +3061093,Penthouse in Williamsburg w/ Patio!,15579200,Marc,Brooklyn,Williamsburg,40.7172,-73.9616,Entire home/apt,240,2,18,2015-11-12,0.29,1,0 +35676573,Beautiful 3 bedroom apartment in East Williamsburg,268377412,Nancis,Brooklyn,Williamsburg,40.70522,-73.94243,Entire home/apt,226,2,0,,,1,328 +31881804,Beautiful Spacious Room w/ Queen Bed - Near Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68502,-73.93893,Private room,44,2,26,2019-06-25,4.94,3,118 +12266323,"The Heart Of NYC, 3min Walk To Grand Central",5004109,Michelle,Manhattan,Murray Hill,40.75001,-73.97739,Entire home/apt,225,1,45,2019-06-30,1.16,1,255 +16201959,Beautifull Bed Stuy 1bdrm apt with outdoor space!,67523,Kv,Brooklyn,Bedford-Stuyvesant,40.69097,-73.93611999999999,Entire home/apt,77,2,51,2019-07-07,3.1,1,5 +27896962,Private Studio with Backyard in Brooklyn,4324281,Jasmine,Brooklyn,Bedford-Stuyvesant,40.68231,-73.95201999999999,Entire home/apt,75,2,17,2019-06-30,2.17,1,77 +31549470,Cozy UES Studio w/ Gym + Doorman near subway by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77478,-73.95486,Entire home/apt,236,30,0,,,232,127 +4640515,"Small, Cozy, Clean and Modern private room!",23355801,Andrey,Manhattan,Harlem,40.8257,-73.93786,Private room,65,1,40,2019-06-25,2.88,1,45 +18569279,"ENTIRE HOME- UPPER EAST SIDE, NYC",4677247,Elizabeth,Manhattan,Upper East Side,40.77973,-73.95039,Entire home/apt,150,2,17,2019-05-15,0.71,1,338 +24185045,Midtown Manhattan Apartment with Rooftop & Doorman,13204586,María José,Manhattan,Murray Hill,40.74803,-73.97282,Entire home/apt,175,3,0,,,1,0 +20130471,Peaceful home in Bedstuy,10010083,Amanda,Brooklyn,Bedford-Stuyvesant,40.68317,-73.93553,Private room,60,3,26,2019-06-07,1.28,1,47 +263502,Prime Williamsburg 1/BD New Condo,1382749,Shaun,Brooklyn,Williamsburg,40.72059,-73.9567,Entire home/apt,185,180,24,2015-08-19,0.26,1,0 +35507981,Experience the Passion of Hospitality,267033835,Eva,Brooklyn,East New York,40.66302,-73.86081999999999,Entire home/apt,60,3,1,2019-06-17,1.0,1,94 +31759409,conveniet access to NYC,63966717,Carol,Bronx,Belmont,40.85929,-73.89165,Private room,99,2,1,2019-03-11,0.25,2,0 +695465,The heart of the metropolis,3561489,John,Manhattan,East Village,40.72482,-73.98097,Entire home/apt,73,30,100,2019-07-01,1.25,1,3 +298073,"Bright, Airy Williamsburg Apt",1536533,Irina,Brooklyn,Williamsburg,40.71629,-73.95786,Entire home/apt,130,14,23,2016-11-08,0.25,1,25 +7869449,Cozy room in Bushwick!,30541205,Mya,Brooklyn,Bushwick,40.699940000000005,-73.92175999999999,Private room,50,3,0,,,1,0 +21738540,Bay Ridge Brooklyn House,158048189,Silvia,Brooklyn,Fort Hamilton,40.61818,-74.03464,Entire home/apt,150,4,1,2018-01-03,0.05,1,0 +21136851,Massive Luxury 1BR Condo in Astoria / LIC,5760970,Chris,Queens,Ditmars Steinway,40.76982,-73.90254,Entire home/apt,150,2,18,2019-05-19,0.86,2,364 +2303436,SOHO - Large Studio Apt,11762397,Nathan,Manhattan,Lower East Side,40.72153,-73.99331,Entire home/apt,220,2,146,2019-06-30,3.45,1,112 +20271220,Sunny private room on Central Park,634346,Chava,Manhattan,East Harlem,40.79629,-73.94913000000001,Private room,55,7,0,,,1,0 +3400645,Charming 1BR Private GARDEN Apt!,178784,Michael,Brooklyn,Boerum Hill,40.68572,-73.98602,Entire home/apt,115,3,6,2017-09-15,0.1,1,0 +16331645,big room in Hell's Kitchen close to Times Square,9236677,Jose Diego,Manhattan,Hell's Kitchen,40.75997,-73.98781,Private room,155,1,0,,,1,0 +2686412,Clinton Hill BdRm in Artists' Home,13384586,Julie,Brooklyn,Clinton Hill,40.68274,-73.96486999999999,Private room,49,3,74,2019-06-17,1.16,1,284 +1742654,High Floor apt.near Columbus Circle,9173924,Jon,Manhattan,Hell's Kitchen,40.76708,-73.986,Entire home/apt,200,2,119,2019-07-07,1.89,1,216 +34684980,Sonder | 116 John | Cozy Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.00559,Entire home/apt,100,29,0,,,327,332 +34453828,Perfect Spot Between Bryant Park and Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75679,-73.98725999999999,Private room,100,1,2,2019-06-15,2.0,7,300 +23074722,15 minutes Barclay Center 25 Manhattan,94214493,Dadrine,Brooklyn,East Flatbush,40.65501,-73.91886,Private room,80,5,2,2018-12-21,0.14,9,89 +34489717,Broadway Facing Room on High Floor,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76248,-73.98584,Private room,100,1,0,,,15,358 +27903031,Prewar Gem in Middle of Everything!,7580102,(Email hidden by Airbnb),Manhattan,Midtown,40.76399,-73.98076999999999,Private room,139,3,3,2018-11-17,0.31,2,0 +33444493,★Single Room in Backpackers Accommodation★,56060787,International,Brooklyn,Williamsburg,40.70908,-73.95663,Private room,55,1,14,2019-06-23,4.47,1,295 +30557292,TRAVELERS + STUDENTS + NYC LOVERS WELCOME! L/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9573,Private room,48,15,2,2019-01-03,0.31,11,189 +35290565,Private bedroom with private bathroom!,265703830,Noah,Brooklyn,Bedford-Stuyvesant,40.69423,-73.94627,Private room,150,1,0,,,1,365 +29367125,Woodruffe Place,221252894,Deslyn,Brooklyn,Crown Heights,40.67253,-73.9223,Entire home/apt,225,1,27,2019-07-05,3.36,1,339 +33529491,Private bedroom in the heart of east village,95892016,Leonora,Manhattan,East Village,40.72705,-73.9846,Private room,80,1,1,2019-04-04,0.31,5,15 +8189121,Sunny & Spacious in Carroll Gardens,333195,Anne,Brooklyn,Carroll Gardens,40.68326,-73.99327,Entire home/apt,115,3,27,2018-09-03,0.58,1,166 +7221239,Lovely 1 Bdrm Boerum Hill Apt,6466155,Katherine,Brooklyn,Boerum Hill,40.68618,-73.98836999999999,Entire home/apt,124,2,1,2018-09-02,0.1,1,0 +26228457,Brooklyn Brownstone (blue bedroom - single bed),80292073,Julie,Brooklyn,South Slope,40.66323,-73.98138,Private room,60,5,7,2019-06-02,0.59,2,56 +22431770,Freehand New York- Queen Room,164291123,Freehand,Manhattan,Flatiron District,40.74077,-73.98718000000001,Private room,129,1,47,2019-06-05,2.8,3,364 +22241696,Private Room C In Prime Location,162427870,Anna,Manhattan,Midtown,40.74535,-73.99023000000001,Private room,105,1,140,2019-06-23,7.39,3,321 +3144135,Cozy Garden View Apartment! Perfect for Families!,10835806,Rick,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92994,Entire home/apt,185,5,60,2019-03-29,1.3,1,0 +19122452,Simple 2bd located in heart of West Village,50915075,Brian,Manhattan,West Village,40.7316,-74.00262,Entire home/apt,278,2,18,2019-01-01,0.73,1,35 +12781270,Nice and cozy little apt available,69548489,Alba,Bronx,Pelham Gardens,40.86412,-73.84664000000001,Entire home/apt,75,2,92,2019-07-06,2.45,1,265 +30370778,Large room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.72994,-73.86986999999999,Private room,45,2,11,2019-06-19,1.73,4,6 +16205154,"Cozy Ground Floor in Park Slope, BK",17167740,Andrea,Brooklyn,South Slope,40.66593,-73.9879,Private room,93,2,34,2018-01-04,1.11,1,34 +2863696,Live in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.7196,-73.96335,Private room,95,3,0,,,3,0 +21289615,Amazing room in Prime East Village!,33036193,Clara,Manhattan,East Village,40.72615,-73.98303,Private room,120,10,31,2019-05-05,1.68,2,17 +21844040,Comfy Couch in Cool Modern Brooklyn (BUSHWICK) Apt,140433148,Lauren,Brooklyn,Bushwick,40.69634,-73.91323,Shared room,43,3,32,2019-06-16,1.86,3,104 +15009618,Huge private bedroom in the heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76408,-73.98996,Private room,129,1,98,2019-05-12,2.87,3,27 +29828155,Bergen Beach Beauty,224365956,Marshall,Brooklyn,Bergen Beach,40.62221,-73.90975,Entire home/apt,49,3,20,2019-06-30,2.64,1,164 +24919725,Shared Open Studio - Floor Space,159154462,Ken,Manhattan,Midtown,40.75722,-73.98161999999999,Shared room,85,1,5,2018-10-18,0.36,2,83 +54158,The Institute—Heart of Williamsburg,10889,Bob,Brooklyn,Williamsburg,40.7195,-73.95976,Entire home/apt,249,2,358,2019-06-20,3.44,2,164 +6261890,Williamsburg Penthouse with Stunning Views,32537024,Steve,Brooklyn,Williamsburg,40.712340000000005,-73.94085,Entire home/apt,100,30,63,2018-09-12,1.25,1,321 +29883798,⏩ It's Always Sunny At The Bleu Hauz ⏪,106335321,Dev,Brooklyn,Crown Heights,40.67117,-73.95653,Entire home/apt,110,2,29,2019-07-02,7.7,1,19 +14886600,"Midtown East Studio Apt ~ Private, Cozy & Bright",93373413,Meg,Manhattan,Midtown,40.75735,-73.96438,Entire home/apt,198,2,22,2019-06-30,0.64,1,8 +6571890,1 bedroom-Manhattans East Village,34372907,Meagan,Manhattan,East Village,40.72872,-73.98639,Entire home/apt,155,2,36,2019-01-02,0.8,1,164 +253828,Duplex w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.736740000000005,-73.95246999999999,Private room,349,3,8,2018-07-26,0.09,28,58 +16284730,Comfy Room in Williamsburg Duplex *big backyard*,13490820,Douglas,Brooklyn,Williamsburg,40.70719,-73.94749,Private room,50,3,3,2018-11-23,0.35,1,0 +30416267,House of Stylez,15377463,Kazem,Brooklyn,Bedford-Stuyvesant,40.68525,-73.93159,Private room,65,2,0,,,1,0 +35653330,Heart of Bushwick home,20514946,Jennifer,Brooklyn,Bushwick,40.70056,-73.92161999999999,Entire home/apt,230,2,2,2019-06-24,2.0,1,274 +13613450,"East Village Studio, New York like in the Movies",78807434,Jennifer,Manhattan,East Village,40.72737,-73.97789,Entire home/apt,110,3,6,2019-07-01,0.17,1,34 +283272,Stylish Garden House - Trendy area,524730,Oz,Brooklyn,Williamsburg,40.714220000000005,-73.9484,Entire home/apt,100,19,5,2016-08-03,0.06,2,6 +5205123,"Spacious, Bright, & Modern Apt",81928,Evan,Brooklyn,Bedford-Stuyvesant,40.6856,-73.95331999999999,Entire home/apt,150,3,45,2018-12-24,0.96,1,0 +34784469,"Premier room in Downtown NYC, Spacious and Private",250825715,Cherry,Manhattan,Chinatown,40.71716,-73.99716,Private room,90,1,1,2019-06-21,1.0,3,39 +35459644,Fort Greene Duplex- Live and Work Space,1355112,Jean,Brooklyn,Clinton Hill,40.68875,-73.96725,Entire home/apt,300,5,0,,,2,209 +15831005,SleepEasyNY: PRIVATE SUITE | 5 STOPS TO MANHATTAN,102500495,Giedre & Andre,Brooklyn,East Flatbush,40.66048,-73.93335,Entire home/apt,80,1,127,2019-07-06,6.54,1,7 +1063020,Private Brownstone,5851210,Amy,Manhattan,East Harlem,40.79417,-73.94376,Entire home/apt,110,31,235,2019-05-31,3.14,2,84 +18411446,NEW! Luxury studio WITH SPA shower in Flushing!!!,10366837,Jia,Queens,Flushing,40.75763,-73.83157,Entire home/apt,99,2,88,2019-06-23,3.38,3,120 +7308118,Cozy Artful Zen East Village Nook,38284667,Ruth,Manhattan,East Village,40.728190000000005,-73.98589,Private room,115,1,1,2015-08-07,0.02,2,0 +27316669,Bronx Apart,205820814,Luz,Bronx,Highbridge,40.83454,-73.92751,Private room,10,1,0,,,1,180 +7239575,"2 Bedroom, UES",37904263,Talal,Manhattan,Upper East Side,40.76364,-73.9588,Entire home/apt,120,5,5,2016-07-20,0.13,1,0 +8047711,"Clean, Modern, Minimal Bedroom",23027887,John,Brooklyn,Greenpoint,40.72569,-73.95179,Private room,55,4,2,2015-12-30,0.04,1,0 +31885987,Wonderful Charming Bedroom with Amazing NYC Views,1340740,Brian,Brooklyn,South Slope,40.66881,-73.98737,Private room,65,7,0,,,1,19 +27585912,Room4You by 4Js,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65181,-73.91672,Private room,65,1,4,2019-02-06,0.39,3,125 +6716154,Luxury alcove studio on high floor,35108277,Yury,Manhattan,Upper East Side,40.76685,-73.95265,Entire home/apt,250,5,0,,,1,0 +19243465,Room in Full Floor East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72715,-73.98623,Private room,120,1,39,2019-06-02,1.65,7,350 +17095846,Amazing brownstone with private room!,96829433,Matthew,Brooklyn,Bedford-Stuyvesant,40.6924,-73.93485,Private room,55,5,14,2018-01-05,0.54,1,0 +34013027,Lower East/Little Italy 5BR Loft! Prime Downtown!,256521664,Roxanne,Manhattan,Chinatown,40.71692,-73.9947,Entire home/apt,239,31,3,2019-06-15,1.76,1,176 +17670245,Cozy bright room near Prospect Park,2263722,Mariam,Brooklyn,Flatbush,40.64945,-73.96108000000001,Private room,56,7,12,2019-03-27,0.44,1,0 +13675413,Inspired by you - Astoria Enclave w/ Large Rooms,79579355,Jay And Katt,Queens,Astoria,40.76985,-73.92481,Entire home/apt,205,3,50,2019-07-03,1.41,1,324 +886808,"Free Metrocard*, Safe & Affordable",4701443,Christina,Queens,Flushing,40.75088,-73.81029000000001,Private room,55,1,116,2019-06-14,1.51,2,298 +30786156,Brownstone Garden Apartment,105154396,Goenuel,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95138,Entire home/apt,160,3,22,2019-06-29,3.28,1,110 +3821676,Lower East Side Artist's Sanctuary,14908547,Elyse,Manhattan,Lower East Side,40.71962,-73.98434,Entire home/apt,169,4,7,2016-01-03,0.14,1,0 +28692213,"One bedroom, with huge backyard for personal space",195262476,Eleonora,Queens,Ditmars Steinway,40.77671,-73.90543000000001,Entire home/apt,100,1,9,2019-03-17,1.03,1,2 +20218990,"Cozy Two-Bedroom near Manhattan, airports & more!",23267477,Fanny & Hong,Queens,East Elmhurst,40.75482,-73.89369,Entire home/apt,118,2,119,2019-07-02,5.2,1,87 +12206029,"Private BR, Bed-Stuy w/backyard",5897784,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92673,Private room,49,1,1,2016-05-13,0.03,1,0 +582372,Comfy New York City Launching Pad!!,733370,Tim,Queens,Astoria,40.77115,-73.92275,Private room,69,40,23,2016-07-01,0.27,1,207 +31707011,West Village Gem,237804845,Veronica,Manhattan,West Village,40.73409,-74.00464000000001,Entire home/apt,299,1,13,2019-07-01,3.22,1,61 +12810131,1 Bedroom June Through July,25971488,Kevin,Brooklyn,Brooklyn Heights,40.69299,-73.99283,Private room,135,1,0,,,1,0 +5783307,Large Bedroom in Bushwick,30002976,Lora,Brooklyn,Bushwick,40.70212,-73.93032,Private room,48,7,0,,,1,0 +35968049,Single Room on the Upper West Side,16486125,Hj,Manhattan,Upper West Side,40.79906,-73.96517,Private room,60,1,0,,,1,7 +30511114,Astoria Luxury RM w/ Priv Bath 3 mins from subway!,137358866,Kazuya,Queens,Astoria,40.76677,-73.92408,Private room,57,30,0,,,103,238 +13992742,Cozy Studio in the Heart of Soho,83549989,Ezgi,Manhattan,NoHo,40.72618,-73.99523,Entire home/apt,215,3,2,2016-09-17,0.06,1,0 +18077042,CLEAN! Executive Studio Suite. Entire apt w/pvt BR,121093001,Geoffrey,Queens,Ozone Park,40.675740000000005,-73.85601,Entire home/apt,81,3,96,2019-06-22,3.59,1,233 +33808465,"Access to public transportation +Near shopping area",255258800,Abie,Brooklyn,Midwood,40.61326,-73.94742,Private room,100,1,8,2019-07-05,3.0,1,179 +3683241,Spacious 2 bedroom 1 bathroom BRKLY,18726889,Suzanne,Brooklyn,Bushwick,40.68781,-73.91377,Entire home/apt,150,4,2,2014-08-21,0.03,1,0 +15130158,Spacious 1 Bdrm in Queens w Manhattan views,95913669,Ali,Queens,Maspeth,40.73834,-73.90774,Private room,46,1,1,2016-09-26,0.03,1,0 +18572271,Private bedroom in 2 bed 2 bath UWS,6726364,Alejandra,Manhattan,Upper West Side,40.80062,-73.96169,Private room,150,6,5,2018-05-28,0.21,2,0 +6763899,"Bright, spacious room in Manhattan",5360450,Sarah,Manhattan,Harlem,40.81791,-73.95357,Private room,60,1,5,2015-09-15,0.1,1,0 +3836180,Beautiful West Village 1 BR Gem!,19758346,Adriana,Manhattan,West Village,40.73648,-74.00173000000001,Entire home/apt,225,3,5,2016-06-19,0.08,1,0 +15887617,Modern Contemporary Home near JFK,102742122,Shannon,Queens,South Ozone Park,40.66996,-73.8223,Private room,120,1,31,2019-06-16,1.03,1,352 +21816522,Cozy Private Room in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79741,-73.93493000000001,Private room,120,1,3,2018-09-19,0.22,2,179 +658932,Cozy room on a tree lined street ,3323929,Erika,Queens,Ridgewood,40.69922,-73.90026999999999,Private room,69,1,30,2019-06-22,0.4,1,0 +219066,"Wonderful Studio In Brooklyn, NY!!!",447754,Yana,Brooklyn,Bensonhurst,40.61922,-73.99399,Entire home/apt,110,1,24,2019-01-19,0.26,1,183 +592831,Beautiful Bedroom in Brooklyn,2926404,Chris,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95809,Private room,54,2,19,2016-07-15,0.23,1,220 +14913358,Brooklyn Gem: Stylish & Family Friendly,15670189,Evan,Brooklyn,Bedford-Stuyvesant,40.678540000000005,-73.92321,Entire home/apt,98,2,6,2019-06-30,0.66,1,9 +10686406,Master Bedroom w/ en suite,55207670,David,Queens,Astoria,40.76446,-73.92988000000001,Private room,65,2,0,,,1,0 +16590264,Pretty modern 3-B APT near Everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80007,-73.96524000000001,Entire home/apt,190,1,4,2018-10-24,0.26,6,337 +30404034,Bright 1BR Duplex - Welcome to Bed-Stuy!,6899080,Betsy,Brooklyn,Bedford-Stuyvesant,40.68181,-73.91811,Entire home/apt,115,3,22,2019-07-01,3.49,1,44 +36259636,2 Bedroom Family Apartment in a Quiet Neighborhood,85261578,Ted,Brooklyn,Flatbush,40.64105,-73.9595,Entire home/apt,195,5,0,,,1,6 +645922,Gorgeous Modern Manhattan Apt,1740784,Gal,Manhattan,Midtown,40.74648,-73.98459,Private room,100,3,41,2015-09-25,0.52,1,0 +8135144,Time Square! 2 Fully Furnished apt!,42959506,Vapee,Manhattan,Hell's Kitchen,40.76127,-73.99181,Entire home/apt,245,4,55,2019-06-21,1.29,1,261 +35604423,Battery Park Studio with a View,241551759,Artemis,Manhattan,Financial District,40.70417,-74.01510999999999,Entire home/apt,200,9,0,,,1,15 +1591811,Sunlit apartment in Williamsburg,8265050,Jae,Brooklyn,Williamsburg,40.71188,-73.95155,Entire home/apt,99,2,198,2019-06-17,2.78,2,89 +16202095,Williamsburg Studio w/ Balcony & Stunning View,6277934,Alex,Brooklyn,Williamsburg,40.71868,-73.94918,Entire home/apt,210,4,0,,,1,0 +29684187,Natural Habitat | ♥ SUPER HOST ♥,223401516,Jessica,Brooklyn,Bedford-Stuyvesant,40.68424,-73.92828,Private room,65,2,34,2019-07-02,4.2,1,175 +35372810,Luxury apartment with private roof access,75017049,Dylan,Brooklyn,South Slope,40.66509,-73.98325,Private room,100,31,0,,,2,119 +13899934,Light-filled apt offering private bedroom & bath,7262145,Colin,Manhattan,Upper East Side,40.78245,-73.94686,Private room,99,1,1,2016-07-31,0.03,1,0 +17981447,Nicest Room in Manhattan - Chelsea Beauty,95286194,Xavier,Manhattan,Chelsea,40.7503,-74.00473000000001,Private room,57,1,53,2019-06-23,1.92,1,33 +33431709,Shared apartment by the Central Park,251852817,Owen,Manhattan,East Harlem,40.80073,-73.94328,Shared room,45,1,17,2019-06-30,5.1,7,72 +7661218,Brooklyn Garden House,345252,Thomas,Brooklyn,Prospect Heights,40.6799,-73.96415999999999,Entire home/apt,150,7,9,2018-09-12,0.19,3,0 +21289758,"Large, Open, Airy Room, Close to Subway Harlem NYC",5791944,Paige,Manhattan,Harlem,40.82096,-73.9531,Private room,55,2,1,2017-10-17,0.05,1,0 +30133397,BEAUTIFUL PRIVATE ROOM IN THE HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.590990000000005,-73.94856,Private room,60,1,56,2019-07-03,7.24,3,48 +21174364,Casa de Fierce,109074907,Dasha,Manhattan,Upper East Side,40.77421,-73.95544,Entire home/apt,150,1,1,2017-10-26,0.05,1,0 +187566,Historic Brooklyn Studio Apartment,279078,Andrew & Markus,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95097,Entire home/apt,99,2,187,2019-06-10,1.97,2,287 +15344255,"Trendy, Fully-Renovated Studio in West Chelsea",97842006,Michael,Manhattan,Chelsea,40.74624,-74.00371,Entire home/apt,225,1,51,2019-06-29,1.63,1,9 +9393314,Bright Room near Times Sq/Central Pk.,14847501,Zachary,Manhattan,Hell's Kitchen,40.76747,-73.99422,Private room,105,5,0,,,2,0 +19841463,East Williamsburg Hideaway House,19612095,Ellie,Brooklyn,Williamsburg,40.706990000000005,-73.93221,Private room,45,2,0,,,2,274 +16835493,!!!Outpost Coliving . Flatbush. Cozy shared room,2092314,Valentin,Brooklyn,Flatbush,40.64476,-73.96473,Shared room,28,30,0,,,7,365 +16731782,"Private, Windsor Terrace Studio",1384388,Georgia And Kevin,Brooklyn,Windsor Terrace,40.65552,-73.97493,Entire home/apt,98,1,122,2019-06-24,4.13,1,127 +29298335,"Artful Williamsburg penthouse with rooftop, big TV",120431726,Noah,Brooklyn,Greenpoint,40.72097,-73.94051999999999,Private room,99,1,14,2019-06-29,1.6,2,0 +18895063,Lovely Upper East Side Studio! Close to stuff,34649502,Pat,Manhattan,Upper East Side,40.77948,-73.95152,Entire home/apt,200,2,1,2017-06-20,0.04,1,0 +11411839,"sunny, cozy room near subway",18873268,Sandy,Brooklyn,Bedford-Stuyvesant,40.69586,-73.95026,Private room,75,5,3,2016-09-11,0.08,1,0 +22668695,Entire Private Floor of West Village Duplex- NY,26754841,Deo,Manhattan,West Village,40.73612,-74.0041,Private room,125,2,3,2019-05-05,0.85,2,0 +26119005,"Alisha’s Place-JFK 10 MINS, walk to subway & buses",102410496,Alisha,Queens,Richmond Hill,40.69608,-73.8286,Entire home/apt,249,2,15,2019-06-16,1.28,2,360 +31148404,"Luxury Doorman Apartment - POOL, GYM, LOUNGE +++",34271675,Chris,Manhattan,Financial District,40.70763,-74.00671,Entire home/apt,110,15,2,2019-05-15,0.8,1,0 +35874420,HUGE Brick studio apartment SECONDS from subway!,55190776,Josh,Manhattan,Upper East Side,40.78539,-73.95062,Entire home/apt,156,1,0,,,1,7 +5927152,Room in heart of East Village,30775529,Adam,Manhattan,East Village,40.73101,-73.99087,Private room,300,2,0,,,1,0 +32611643,TRENDi Artistic Duplex with Backyard Sleeps 10ppl,15034908,Trendi,Manhattan,Harlem,40.80782,-73.94131999999999,Entire home/apt,278,3,4,2019-06-23,0.99,2,133 +21364872,"Williamsburg sunny bedroom, 15 mins to Manhattan",32527579,Alex,Brooklyn,Williamsburg,40.71239,-73.95857,Private room,70,4,8,2019-06-23,0.44,1,0 +22376903,Lily Brooklyn Private Home,163625251,Lily-Thuy,Brooklyn,Sunset Park,40.64339,-74.02190999999999,Entire home/apt,109,3,34,2019-06-22,1.85,1,156 +31211375,Treehouse Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69463,-73.92942,Private room,45,1,33,2019-07-01,5.35,2,25 +9635223,Beautiful Red Brick Room,49827772,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91944000000001,Private room,45,2,1,2016-01-02,0.02,1,0 +4539520,Spacious 1 Bedroom in Bohemian Comfort,23538896,DeeDee,Brooklyn,Crown Heights,40.67771,-73.96285999999999,Entire home/apt,167,4,6,2019-01-02,0.12,1,0 +20033157,"Large, bright bdr in a luxury bdg in Mid East",57328653,Esther,Manhattan,Midtown,40.75734,-73.96429,Private room,82,15,3,2019-04-29,1.02,2,0 +33938000,Super Spacious Room! Private bathroom! LES/Soho,71400423,Maria,Manhattan,Lower East Side,40.71983,-73.98980999999999,Private room,135,1,10,2019-06-20,4.05,3,93 +26331103,room b,32060911,Elvis,Staten Island,West Brighton,40.63402,-74.11375,Private room,40,33,1,2019-07-04,1.0,2,337 +8488615,Spacious 1 BD w/washer dryer in UES,3969780,Zaka,Manhattan,Upper East Side,40.77843,-73.95191,Entire home/apt,175,2,1,2015-10-27,0.02,1,0 +18542490,Brownstone Parlor in Crown Heights,386263,Vineet,Brooklyn,Crown Heights,40.6764,-73.95496999999999,Entire home/apt,171,3,61,2019-07-01,2.59,2,267 +7204721,Charming Cozy Brooklyn 1BR,37188272,Rachel,Brooklyn,Crown Heights,40.67357,-73.95268,Entire home/apt,95,2,4,2016-07-25,0.11,1,0 +33694628,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76449,-73.99107,Shared room,60,1,14,2019-06-20,4.62,9,349 +29295665,NYC Central Park Lux Hotel w/ Brfast & Dinner incl,3053587,Allison,Manhattan,Midtown,40.76531,-73.9789,Private room,350,3,1,2019-04-17,0.36,1,169 +35848679,Private Room in Ridgewood 25 mins from Manhattan!!,269664482,Jacqueline,Queens,Ridgewood,40.70774,-73.90929,Private room,60,3,0,,,1,365 +9146595,Super cozy private 1 bedroom garden apartment,835110,Charlotte,Brooklyn,Bedford-Stuyvesant,40.68984,-73.92703,Entire home/apt,115,1,131,2019-06-23,2.92,1,241 +11441498,Lincoln Center Apartment,26104727,Ambika,Manhattan,Upper West Side,40.771370000000005,-73.98321,Entire home/apt,180,1,0,,,1,0 +25153614,The Crown Master,188391102,Alliot,Brooklyn,Crown Heights,40.67431,-73.94065,Entire home/apt,150,5,2,2018-08-29,0.15,2,364 +220946,Newly Reno’d Chic Quiet Exec 1BR,1144415,Lisa,Manhattan,East Village,40.72229,-73.97901,Entire home/apt,146,3,142,2019-06-16,1.5,1,166 +26362,"Times Square, Safe, Clean and Cozy!",59734,Luiz,Manhattan,Hell's Kitchen,40.75527,-73.99291,Private room,59,2,334,2019-06-16,3.0,2,279 +35536266,Private quiet studio,107716952,Michael,Queens,Jamaica,40.69128,-73.80864,Entire home/apt,50,1,4,2019-07-04,4.0,2,119 +793590,Sunny in the Heart of Williamsburg,2450605,Jennifer,Brooklyn,Williamsburg,40.72034,-73.95669000000001,Entire home/apt,225,1,0,,,1,0 +35843422,"private room & bathroom, 500 ft away from beach.",5334994,Urmat,Queens,Arverne,40.58921,-73.79966999999999,Private room,75,2,3,2019-06-30,3.0,1,79 +29329429,2-story Apt in the heart of The Upper West Side!,80242144,Emily,Manhattan,Upper West Side,40.78461,-73.97801,Entire home/apt,199,1,6,2019-05-20,0.68,1,62 +21621154,Private Room In Bushwick Late December - January,4669488,James,Brooklyn,Bushwick,40.70113,-73.92205,Private room,60,3,1,2018-01-06,0.05,2,0 +23901975,BrightClean Studio near Grand Central (MurrayHill),43275413,Ashumi,Manhattan,Midtown,40.7464,-73.97986999999999,Entire home/apt,180,2,18,2019-06-02,1.22,1,4 +4296956,Sharbell’s vacation,22307859,Sharon,Brooklyn,Canarsie,40.63621,-73.89407,Entire home/apt,210,3,11,2019-07-07,2.75,5,83 +26717696,"Prime Location 67 St & 3 Ave, walk to Central Park",477865,Irina,Manhattan,Upper East Side,40.76663,-73.96171,Entire home/apt,99,4,4,2019-04-02,0.35,1,2 +35005563,Charming 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.756,-73.98195,Entire home/apt,230,29,0,,,327,354 +24653285,"Location, Location, Location! & A/C! :)",18416898,Donna,Brooklyn,Crown Heights,40.67014,-73.95342,Private room,65,1,13,2019-06-10,0.91,1,83 +23483266,NEW Bright-2 bath/4min to train and 10minto LGA(1),175311339,Eduardo,Queens,Jackson Heights,40.75312,-73.86479,Private room,39,2,59,2019-06-18,3.7,5,157 +30347708,Sonder | 180 Water | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70743,-74.00443,Entire home/apt,232,29,1,2019-05-21,0.6,327,159 +27284611,Beautiful Bedroom in Brand New Apartment! 3R-4,205530337,Nina,Queens,Ridgewood,40.70378,-73.90581999999999,Private room,45,30,1,2018-11-30,0.14,8,163 +16440383,"Cozy & Comfy Room in quiet Briarwood, Queens, NY",570442,Maria,Queens,Briarwood,40.71357,-73.81985999999999,Private room,85,2,0,,,1,0 +6400055,Private bedroom in two bedroom APT,1535739,Ron,Brooklyn,Williamsburg,40.70956,-73.95328,Private room,45,31,3,2018-08-05,0.06,1,0 +10609249,Magnificent New 2 BR near park Ave,1515120,Dino,Manhattan,Midtown,40.755,-73.96562,Private room,325,3,9,2016-12-28,0.23,1,88 +8620134,CHARM & LOCATION! Private Ensuite Bathroom in UES!,17428203,Christine,Manhattan,Upper East Side,40.77127,-73.95175,Private room,115,7,90,2019-06-28,1.97,2,23 +9129113,Private Room in Bushwick - Brooklyn,17497762,Marco,Brooklyn,Bushwick,40.69836,-73.9212,Private room,60,3,1,2015-12-14,0.02,1,0 +19013673,Comfy Queen Size Bed Near Prospect Park!,5944076,Lisanne,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.95263,Private room,49,2,15,2019-06-12,0.59,1,251 +17233932,Private Bedroom in Williamsburg,17928071,Mabel,Brooklyn,Williamsburg,40.71162,-73.95631,Private room,85,3,12,2019-05-14,0.58,2,289 +2080709,Awesome Bedroom close to Manhattan!,4030621,Rob,Brooklyn,Greenpoint,40.73303,-73.95153,Private room,73,2,19,2016-01-05,0.28,1,0 +30672646,5min walk to L train - Great Roommates! Fast WiFi!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70127,-73.91235,Private room,35,30,0,,,9,43 +3775978,Private Room in Flatiron,19359650,Julian,Manhattan,Midtown,40.74596,-73.98678000000001,Private room,130,3,10,2017-09-19,0.38,1,0 +33047674,A great place to relax after being in the city,231103652,Christine,Manhattan,Harlem,40.824,-73.95229,Private room,50,4,15,2019-07-05,4.55,1,4 +1519994,McSimon's | Queen Room | 10 mins from JFK,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63591,-73.90941,Private room,85,3,1,2019-01-04,0.16,2,132 +21383903,Shared Room in Astoria 1 stop from Manhattan,55724558,Taylor,Queens,Long Island City,40.76048,-73.94068,Shared room,45,5,16,2019-06-04,0.77,5,88 +26748374,"Cabin Feels +Sunset Views +By Greenwood cemetery +<3",183563796,Michal,Brooklyn,Borough Park,40.64282,-73.98779,Entire home/apt,70,2,2,2019-01-02,0.19,1,0 +32409454,cozy bedroom 01 in the heart of Astoria- Queens,243367528,Lucca & Paula,Queens,Astoria,40.76472,-73.91358000000001,Private room,70,1,14,2019-07-07,3.26,7,313 +27202749,Entire 2nd floor w/2 Rooms in Authentic Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69176,-73.9383,Private room,135,2,10,2019-06-27,1.21,6,249 +21281339,Spacious Private Room in two bedroom apartment,128372045,Syed,Brooklyn,Flatbush,40.63258,-73.95924000000001,Private room,40,2,9,2018-10-26,0.43,1,71 +13237828,Amazing Open Floor Studio Extension,74351458,Harvey,Brooklyn,Bushwick,40.69893,-73.92624,Entire home/apt,115,5,54,2019-06-07,1.47,1,105 +18847331,Zen Private Rm with roof access in Upper Manhattan,7635592,Adrienne,Manhattan,Washington Heights,40.85031,-73.93901,Private room,49,7,10,2019-06-01,0.46,1,76 +31715879,Beautiful Cozy room in NYC nearby Time square,222424429,Marta,Manhattan,Washington Heights,40.84562,-73.94031,Private room,54,3,17,2019-06-27,3.31,2,38 +12106132,Bed-Stuy Brownstone Studio,38967549,John,Brooklyn,Bedford-Stuyvesant,40.68592,-73.9398,Entire home/apt,75,3,3,2016-11-27,0.08,1,0 +26410121,Welcoming Brooklyn Artist's Room in Williamsburg,16118005,Floriana,Brooklyn,Williamsburg,40.70831,-73.96191999999999,Private room,70,1,11,2019-03-11,0.89,1,0 +35675069,Newly Renovated Apartment (47 Buffalo 1F Room #2),268358454,Devin,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92345999999999,Private room,60,1,0,,,1,171 +33975581,Alphabet City Room,39077228,Kevin,Manhattan,East Village,40.72827,-73.98040999999999,Private room,83,2,2,2019-04-18,0.73,1,15 +36170293,Convenient and Spacious Sugar Hill Apartment,272034378,Cristian,Manhattan,Harlem,40.82808,-73.94126,Private room,45,3,0,,,1,10 +9045876,BEAUTIFUL BROWNSTONE PARLOR FLOOR,7380428,Mel,Manhattan,Harlem,40.81345,-73.94659,Entire home/apt,175,7,44,2019-06-29,0.99,3,193 +22698756,☆Cozy Brooklyn Condo 18 minutes from Manhattan☆,13203970,Queen Sheba,Brooklyn,Bedford-Stuyvesant,40.67974,-73.91705,Entire home/apt,97,2,44,2019-06-26,2.92,1,174 +33524941,The New Harlemites,252607014,Eric,Manhattan,Harlem,40.81325,-73.9398,Entire home/apt,150,3,6,2019-05-21,2.31,1,25 +18500556,Fully renovated beautifully furnished two bedroom,128385204,Ronen,Brooklyn,Sheepshead Bay,40.59339,-73.94296,Private room,199,1,0,,,1,0 +33270782,Spacious & Bright Brooklyn Getaway near trains,96240355,Sherika,Brooklyn,Bedford-Stuyvesant,40.67969,-73.90923000000001,Private room,75,2,9,2019-06-24,2.62,1,0 +31365313,Large 1 bedroom in SOHO,101890546,Sam,Manhattan,Little Italy,40.71916,-73.99754,Entire home/apt,229,1,3,2019-02-16,0.53,1,362 +21845154,Warm and cosy apartment in the heart of New York,4495261,Julien,Manhattan,East Village,40.72631,-73.98507,Entire home/apt,180,7,2,2018-09-09,0.11,1,0 +5205171,Comfy 1BD + Private Bath in Williamsburg,1242374,Erin & Brad,Brooklyn,Williamsburg,40.71495,-73.93997,Private room,96,3,82,2019-06-16,1.58,1,289 +16205941,Cozy 1 bedroom in brooklyn 30max to manhattan,63834432,Camille,Brooklyn,Williamsburg,40.70781,-73.93926,Private room,58,1,1,2016-12-08,0.03,1,0 +32676185,Huge Two Bedroom Suite in the Heart of New York,244559229,Stewart Hotel,Manhattan,Chelsea,40.74819,-73.99224,Private room,100,1,0,,,9,245 +15342457,Beautiful 3 BR-2 BA duplex with deck in Park Slope,3998751,Gisele,Brooklyn,Windsor Terrace,40.65927,-73.97832,Entire home/apt,300,2,6,2018-12-26,0.18,1,16 +9856995,Calm and Comfy room in Brooklyn,50729557,Miho,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95470999999999,Private room,70,2,63,2019-07-05,1.46,1,322 +6912211,Retreat Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68402,-73.95573,Entire home/apt,122,3,101,2019-05-09,2.08,2,293 +13604794,Quiet room in Central Harlem,27123110,Angel,Manhattan,Harlem,40.80372,-73.95036,Private room,65,3,2,2018-08-23,0.18,1,0 +4137900,Beautiful apartment on the UES,6087686,Tal,Manhattan,Upper East Side,40.76968,-73.9593,Entire home/apt,160,2,7,2016-05-03,0.12,1,0 +24725794,"Cozy Basement Studio in the Heart of Harlem, NYC",186905487,Brayan,Manhattan,Harlem,40.80863,-73.95503000000001,Entire home/apt,92,2,68,2019-06-23,4.76,1,32 +20253237,Spacious 1 bedroom on Hamilton Grange - Entire Apt,140299690,A.J.,Manhattan,Harlem,40.8204,-73.94651999999999,Entire home/apt,150,3,18,2019-07-05,0.79,1,4 +13234352,Amazing private Upper East loft!,72218656,Yuanyuan,Manhattan,Upper East Side,40.7626,-73.96030999999999,Entire home/apt,199,3,57,2019-06-20,1.51,1,93 +31000518,Sunny Clean Modern 2BR w/ Private Roofdeck!,16145840,Nick,Manhattan,East Harlem,40.79745,-73.93834,Entire home/apt,100,2,1,2019-01-22,0.18,2,0 +22281921,Room close to mall,34954588,Andres,Queens,Elmhurst,40.740590000000005,-73.86865999999999,Private room,50,2,2,2017-12-30,0.11,1,365 +27357537,Stylish South Williamsburg + Waterfront Terrace,28380119,Johnny,Brooklyn,Williamsburg,40.71133,-73.96806,Entire home/apt,250,4,4,2018-12-10,0.38,1,0 +29981213,Broadway Triangle,83787104,John,Brooklyn,Williamsburg,40.70136,-73.94423,Private room,65,2,3,2019-02-28,0.59,1,89 +32242139,Sun-Drenched 1 BR/1BA near Grand Army Plaza #10313,20375986,Marissa,Brooklyn,Park Slope,40.67655,-73.97697,Entire home/apt,200,3,17,2019-06-29,3.98,1,142 +258690,CHELSEA 1 Bdrm Plus Sleeping Loft!!,1359611,Andrea,Manhattan,Chelsea,40.74618,-74.00392,Entire home/apt,195,365,10,2014-10-26,0.12,1,0 +24733560,Spacious Private Room in Brooklyn,34672584,Andre,Brooklyn,Crown Heights,40.66916,-73.96186999999999,Private room,75,2,1,2018-05-20,0.07,1,157 +3010664,"Giant 3 story family house, 15 min to Manhattan",5663597,Amir,Brooklyn,Prospect Heights,40.67553,-73.96376,Entire home/apt,350,3,11,2019-04-28,0.19,1,21 +20886228,COZY BEAUTIFUL 1 BEDROOM APT FOR 3PPL,142286413,Ramon,Manhattan,Hell's Kitchen,40.76536,-73.98878,Entire home/apt,225,3,104,2019-06-30,4.79,1,34 +35793455,Massive Sun Filled East Village Bedroom with Roof,28103718,Patrick,Manhattan,East Village,40.7319,-73.98980999999999,Private room,150,3,1,2019-06-30,1.0,1,209 +5037654,East River view,26005018,Pia,Manhattan,Roosevelt Island,40.76193,-73.94941999999999,Private room,65,3,43,2019-05-28,0.81,1,35 +26341916,A Gem In Downtown Flushing - Elegance and Class #1,89766221,Alan,Queens,Flushing,40.75548,-73.83041999999999,Private room,190,2,0,,,2,362 +12810210,Sun Drenched Studio,140226,An,Brooklyn,Williamsburg,40.71764,-73.95291,Entire home/apt,195,3,23,2019-06-23,0.67,1,225 +20322611,Huge private bedroom. Heart of Bed-Stuy.,65875353,Severino,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95017,Private room,40,2,0,,,1,0 +4016791,Sunny Private Bedroom,20827756,Jillian,Manhattan,Washington Heights,40.84787,-73.93306,Private room,36,2,10,2017-10-01,0.2,1,0 +10172621,Gorgeous and Sunlit 1 BR 31/1-3/1,52228249,Shy,Bronx,Bronxdale,40.855920000000005,-73.86743,Entire home/apt,80,7,0,,,1,0 +15223434,new sunshine room in chinatown train F is around,89386217,Na,Manhattan,Chinatown,40.7135,-73.99121,Private room,75,1,318,2019-06-19,9.39,1,51 +1782079,LOFT Private Room - MOVIE THEATER/GYM/LAUNDRY/ROOF,226697,Adriana,Brooklyn,Bedford-Stuyvesant,40.690090000000005,-73.95314,Private room,55,10,20,2019-05-20,0.29,1,184 +16254609,"Sunny, Spacious House by the Beach",36234811,Anna,Queens,Arverne,40.59153,-73.79166,Entire home/apt,200,1,46,2019-06-16,1.65,4,152 +5525206,Gorgeous Studio UWS Lincoln Center!,1854977,Amanda,Manhattan,Upper West Side,40.77361,-73.97908000000001,Entire home/apt,180,3,7,2016-01-02,0.15,1,0 +7620763,Lovely Bsmt Apt. Nr trn to NYC - No Cleaning Fee,15163256,Faigie,Brooklyn,Sheepshead Bay,40.60633,-73.95704,Private room,92,3,60,2019-06-17,1.29,3,334 +32729130,cozy and charming experience in China Town!,50333451,Jennifer,Manhattan,Chinatown,40.71432,-73.99866,Entire home/apt,151,12,0,,,1,0 +8272749,Prime Room with View in Brooklyn Heights,25728891,Melissa,Brooklyn,Brooklyn Heights,40.69449,-73.99727,Private room,99,2,72,2019-06-14,1.62,1,231 +21828988,Beautiful Apartment @ Heart of the Upper West Side,6897051,Corey,Manhattan,Upper West Side,40.78558,-73.97703,Private room,340,2,0,,,2,362 +29946644,Bedroom for 2 Guests,48196322,Jose,Manhattan,Washington Heights,40.85359,-73.92981999999999,Private room,35,1,34,2019-06-23,4.25,1,4 +33038567,"Spacious Midtown 1BR, w/ Balcony, Fitness center + Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76057,-73.98455,Entire home/apt,343,30,0,,,232,311 +35766933,Great place,94214493,Dadrine,Brooklyn,East Flatbush,40.65643,-73.91875,Private room,80,7,0,,,9,365 +16407461,Prospect Park Brownstone full floor w/garden,28779108,Darryl Diego,Brooklyn,Prospect-Lefferts Gardens,40.66024,-73.95518,Entire home/apt,190,4,26,2019-06-23,1.18,1,145 +655230,Be in NYC's best: Lower East Side!,3298062,Connie,Manhattan,Chinatown,40.71695,-73.99031,Entire home/apt,149,4,12,2019-06-03,0.14,1,203 +3924092,Lincoln Center Area Apartment,13135873,Jan,Manhattan,Upper West Side,40.77595,-73.97966,Entire home/apt,225,7,26,2019-05-23,0.68,1,85 +35874052,Cozy room with Queen Bed close to Columbia Uni,41434577,Nino,Manhattan,Morningside Heights,40.80413,-73.96556,Private room,49,30,0,,,1,32 +5013556,"Sunny, modern 1BR in Crown Heights",1387175,David,Brooklyn,Crown Heights,40.67279,-73.96033,Entire home/apt,148,7,56,2019-06-14,1.05,1,44 +342965,Super Clean Apt by Columbus Circle,1740233,Gladys,Manhattan,Hell's Kitchen,40.76774,-73.9892,Entire home/apt,350,4,24,2017-09-21,0.27,1,362 +35702658,Bedroom in a Loft 12 minutes from Soho,22382915,Alessandro,Brooklyn,Bedford-Stuyvesant,40.69207,-73.93833000000001,Private room,69,2,0,,,1,0 +21325518,A&M Spacious Home Away For Vacationers—NYC,154363317,Allison,Queens,St. Albans,40.6969,-73.76114,Entire home/apt,250,2,25,2019-07-01,1.39,1,204 +565814,Bright friendly room in Brooklyn,532819,Heather,Brooklyn,Bedford-Stuyvesant,40.68328,-73.9379,Private room,50,2,1,2016-12-28,0.03,1,0 +6220699,Amazing Airy Hs w Old World Details,770004,Milyoung,Brooklyn,Clinton Hill,40.68346,-73.96264000000001,Entire home/apt,350,1,2,2015-08-17,0.04,1,0 +11040458,Huge 3 bedroom apt in West Harlem,20607397,Jonathan,Manhattan,Harlem,40.80735,-73.95684,Entire home/apt,300,2,26,2019-06-26,0.64,1,176 +29236294,Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72858,-73.99141,Entire home/apt,179,1,4,2019-05-20,0.47,33,179 +27504290,Bright & modern one bed in heart of Williamsburg!,33467956,Risa,Brooklyn,Williamsburg,40.71786,-73.95434,Entire home/apt,175,1,15,2019-07-07,1.33,1,8 +14856742,Penthouse Private Room w/Amazing Views,26434803,Zach,Brooklyn,Bushwick,40.69924,-73.91261,Private room,45,10,1,2016-09-05,0.03,2,0 +30539100,Clean Airy 1-Bedroom Apartment in Gowanus,227915163,Stephen,Brooklyn,Gowanus,40.66871,-73.99038,Entire home/apt,70,6,1,2018-12-10,0.14,1,0 +17548575,Great room in the heart of NYC,118870308,Laura,Manhattan,Murray Hill,40.7464,-73.97669,Private room,75,1,2,2017-04-08,0.07,1,0 +8381953,Tranquil Apt with Garden Access,44171084,Sheena,Manhattan,Harlem,40.82244,-73.94773,Entire home/apt,124,3,102,2019-06-15,2.66,1,247 +34390686,Large sunny bedroom 5 mins from SI ferry,185401573,Akil,Staten Island,Stapleton,40.63443,-74.07573000000001,Private room,50,1,10,2019-07-05,5.0,1,179 +1628156,A Tree Grows in Brooklyn,8653725,Marlyn,Brooklyn,Canarsie,40.64308,-73.9077,Entire home/apt,175,3,158,2019-07-07,2.27,1,317 +35773859,Spacious Room Steps to Prospect Park (built 2017),269121359,Azure,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95832,Private room,100,10,0,,,1,59 +19531805,Brand new One bedroom APT in brooklyn,57435629,Lin,Brooklyn,Kensington,40.63955,-73.9807,Entire home/apt,80,2,1,2017-07-03,0.04,1,0 +8114144,Sunny Duplex in Heart of Bushwick,9659956,Alexandra,Brooklyn,Bushwick,40.7027,-73.92811,Entire home/apt,120,1,2,2015-10-26,0.04,1,0 +16893993,Sunny room in a shared appartement in Bushwick,3855091,Do,Brooklyn,Bushwick,40.70657,-73.92181,Private room,53,5,1,2017-08-27,0.04,1,0 +15484901,The Artist Retreat Duplex and Garden 1,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68271,-73.92990999999999,Entire home/apt,125,2,118,2019-06-24,3.69,4,68 +2560559,Sunny Private Room Near Prospect Pk,2766490,Daisy,Brooklyn,Crown Heights,40.68027,-73.96379,Private room,50,7,1,2016-01-03,0.02,1,0 +18206686,"East 12th street, Lux Studio in Greenwich Village",22541573,Ken,Manhattan,East Village,40.73373,-73.98962,Entire home/apt,225,30,0,,,87,347 +24849193,Cozy Tropical NYC Room with Stunning View,36364146,Tomas,Manhattan,Morningside Heights,40.80672,-73.96713000000001,Private room,125,6,3,2018-12-28,0.22,1,34 +9296598,i would like to sublet for 3 months,48264527,Roberta,Manhattan,Upper West Side,40.77944,-73.98518,Entire home/apt,40,1,1,2016-03-31,0.03,1,0 +11552389,Great Studio nearby Times Square!,18002193,Jay,Manhattan,Hell's Kitchen,40.76035,-73.99051999999999,Entire home/apt,138,1,20,2019-07-04,0.5,1,265 +34743365,Modern and new Duplex next to A train,26319385,Ariadna,Brooklyn,Bedford-Stuyvesant,40.67982,-73.94978,Entire home/apt,175,4,0,,,1,17 +3738529,True Industrial Loft in Brooklyn,19111611,Chaim,Brooklyn,Navy Yard,40.698170000000005,-73.9654,Entire home/apt,150,1,7,2016-07-11,0.12,1,0 +8845289,Yve's Getaway,46322064,Yve,Manhattan,Harlem,40.81147,-73.9471,Entire home/apt,290,3,58,2018-01-02,1.33,1,188 +36455917,Sunny&quiet paradise in the WV with open views,274103383,Jennifer,Manhattan,West Village,40.73444,-74.00335,Private room,202,2,0,,,1,84 +32567344,"Bright and lovely flat in Williamsburg, Brooklyn",39329872,Maxime,Brooklyn,Williamsburg,40.70857,-73.95258000000001,Entire home/apt,110,6,3,2019-06-21,0.98,1,25 +194154,Large Room Overlooking Central Park,936830,Elina,Manhattan,Upper West Side,40.7969,-73.96128,Private room,89,6,35,2017-06-18,0.37,1,180 +20045641,Modern Private Room in Prime Williamsburg!,48851196,Ilya,Brooklyn,Williamsburg,40.71042,-73.94744,Private room,80,25,0,,,1,0 +18390907,"Sun-soaked, charming Brooklyn home",3695964,Elie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95581999999999,Entire home/apt,200,1,37,2019-06-14,1.53,1,5 +20621540,Spacious Room in Fort Greene,3490097,Victoria,Brooklyn,Fort Greene,40.68703,-73.97575,Private room,67,3,1,2017-09-12,0.05,1,0 +31543550,Lower manhattan 1 bedroom short or long term,7285648,Josh,Manhattan,Chelsea,40.74562,-74.00538,Private room,86,1,0,,,3,0 +30891437,Global Sanctuary ~Brooklyn Private Room,88036082,DaNeilia,Brooklyn,East Flatbush,40.64115,-73.92837,Private room,70,1,0,,,2,0 +7561432,CHARMING ROOM W/ ROOF DECK ACCESS 2 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69342,-73.9611,Private room,90,30,20,2018-08-19,0.42,11,249 +14262420,Quiet 1 BR in the Heart Crown Heights,49635984,Huw,Brooklyn,Crown Heights,40.67652,-73.94859,Entire home/apt,80,7,0,,,1,0 +25310497,Jade Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69275,-73.95574,Private room,60,2,30,2019-06-10,2.22,34,310 +28584877,Cozy bedroom available in best area of Brooklyn!,92733485,Vitaly,Brooklyn,Downtown Brooklyn,40.69164,-73.99055,Private room,50,1,5,2018-10-16,0.54,1,0 +10043942,Near to Manhattan and large 2BD Apt,51556615,Edmund,Queens,Sunnyside,40.74444,-73.91467,Entire home/apt,155,4,66,2019-06-28,1.54,1,307 +21392504,Cozy Room With HULU Live TV/Netflix and 2 Baths,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68562,-73.93836,Private room,44,2,96,2019-06-28,4.66,3,7 +11020841,Sage - Charming 2 Room Studio #7,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68366,-73.94606999999999,Private room,75,2,129,2019-06-21,3.36,3,227 +22485716,2 bedroom apt in queens,164887236,Reut,Queens,Fresh Meadows,40.72887,-73.79205999999999,Private room,75,2,0,,,1,0 +1741745,Private room in East Harlem,1845333,Annabel,Manhattan,East Harlem,40.79858,-73.93585,Private room,95,1,0,,,1,0 +30887065,"Entire 1st floor, Easy commute to Manhattan",67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93685,Entire home/apt,139,1,8,2019-06-14,1.36,9,134 +15131279,Gorgeous Bedroom in Brooklyn,92237522,Amaru,Brooklyn,Flatbush,40.63714,-73.95316,Private room,40,3,28,2019-06-15,2.64,2,54 +33557100,Great Room with WC,76849762,German,Brooklyn,Williamsburg,40.71492,-73.94397,Private room,60,3,1,2019-06-02,0.81,1,0 +34575989,The Clifton Place,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95331999999999,Private room,120,2,2,2019-06-25,1.58,2,88 +36137613,Modern and Hip Brooklyn Brownstone!,206115,Christian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.92436,Entire home/apt,110,2,0,,,1,182 +34562155,"Shakti House!FLATIRON, UNION SQ PARK,WEST VILLAGE.",50442154,Alena Devi,Manhattan,Greenwich Village,40.73512,-73.99445,Entire home/apt,170,3,2,2019-06-22,1.62,1,9 +925240,Artist Loft - Union Square,4976428,Jonathan,Manhattan,East Village,40.73194,-73.98939,Entire home/apt,295,7,92,2019-06-24,1.23,1,316 +14491976,Long term sublet in Clinton Hill,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95966999999999,Shared room,30,25,15,2019-04-10,0.43,4,78 +26532680,"Private Bedroom, Easy travel in brooklyn",28727058,Waen,Brooklyn,Fort Greene,40.693090000000005,-73.97238,Private room,70,2,47,2019-07-01,4.15,1,0 +10135104,Nice And Clean Apartment.,14439022,Cristina,Manhattan,Harlem,40.827740000000006,-73.94983,Private room,75,3,86,2019-07-01,2.01,1,224 +8454886,"Super Cozy, Warm Eclectic Oasis",16954469,Michele,Brooklyn,Crown Heights,40.669990000000006,-73.94735,Private room,160,2,2,2015-10-02,0.04,1,364 +3638841,Cozy 1 BD apartment in Sunset park,17917168,Karina,Brooklyn,Sunset Park,40.65046,-74.00402,Entire home/apt,100,1,26,2019-03-24,2.52,1,0 +4753571,Your own West Village/ Soho home,24529969,Ellie,Manhattan,SoHo,40.72704,-74.00558000000001,Entire home/apt,200,3,10,2017-03-31,0.21,1,0 +19433834,Charming one-bedroom with original tin ceilings,6094395,Alysse,Brooklyn,Gowanus,40.67002,-73.99158,Entire home/apt,140,4,14,2018-11-14,0.58,1,8 +12826965,Cozy Bright Private Room in NY (Only for female),69989416,Sammie,Queens,Flushing,40.7555,-73.82712,Private room,30,4,54,2019-04-21,1.39,1,64 +22318346,Comfy 23rd Floor Washington Heights Home,985926,Erin,Manhattan,Washington Heights,40.84385,-73.94324,Entire home/apt,75,20,0,,,1,0 +1851767,Luxurious Brownstone Duplex w Outdoor Space,173980,Will And Jo,Brooklyn,Bedford-Stuyvesant,40.69322,-73.94581,Entire home/apt,345,3,181,2019-06-28,2.69,2,213 +23858353,A lovely taste of Brooklyn with this small bedroom,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68907,-73.92806,Private room,60,2,42,2019-07-02,2.8,5,324 +35743508,"20 Min to Manhattan, Big 3 bed RM Apt in Ridgewood",267405973,Peter,Queens,Ridgewood,40.70141,-73.90415,Entire home/apt,195,18,0,,,2,347 +9485566,Spacious Artist's Loft,46142110,Charlotte,Brooklyn,Williamsburg,40.72182,-73.95576,Entire home/apt,300,3,0,,,1,0 +11906169,Sunny Apartment in Crown Heights,2103550,Anna,Brooklyn,Crown Heights,40.67765,-73.95432,Entire home/apt,200,1,0,,,1,0 +17735760,5-STAR REVIEW 1 BEDROOM LINCOLN CENTER- BEST PRICE,9215977,Kevin,Manhattan,Upper West Side,40.77617,-73.98188,Entire home/apt,249,3,20,2019-06-29,0.84,1,63 +17728208,Bright and Clean One Bedroom - Females Only!,95306427,Alexi,Manhattan,East Village,40.72766,-73.98249,Private room,100,3,26,2018-10-21,0.94,1,0 +26061532,"Cool, comfortable: RIGHT by 3 Subways",28811203,Brandon,Manhattan,Flatiron District,40.73986,-73.9863,Entire home/apt,349,7,3,2018-09-10,0.26,1,188 +6934249,"Location, light, and charm",24465231,Gael,Brooklyn,Greenpoint,40.72464,-73.9533,Entire home/apt,149,7,7,2018-07-01,0.15,1,0 +32820306,The Grand Clinton Hill AirBnB,29411897,Keith,Brooklyn,Bedford-Stuyvesant,40.68873,-73.95472,Private room,70,1,18,2019-06-23,4.7,1,142 +24857291,新一处客居(New place 1),187908645,Jimmy,Queens,Flushing,40.75582,-73.83215,Private room,60,1,9,2019-01-29,0.69,4,57 +289995,Zen Minimalist w/Garden- Bedford L Stop,1505217,Pia,Brooklyn,Greenpoint,40.71947,-73.95251999999999,Entire home/apt,250,4,46,2019-06-23,0.52,1,121 +19157481,Renovated Private Room in Ridgewood Coliving Space,133802988,Sergii,Queens,Ridgewood,40.70507,-73.90195,Shared room,55,30,2,2018-10-28,0.1,6,365 +34859794,Beautiful Luxury Brownstone Apt in Brooklyn,36082598,Genevieve,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95222,Entire home/apt,225,2,6,2019-06-30,3.83,2,273 +26659521,"LongTerm-25DaysMin +Chinatown,Soho,LittleItaly,LES",197400421,Ben,Manhattan,Chinatown,40.71509,-73.99986,Private room,100,25,0,,,2,333 +6999056,Manhattan at its best! Trendy area,415502,Enrica,Manhattan,Harlem,40.80418,-73.95513000000001,Private room,70,1,3,2015-08-21,0.06,1,0 +13708345,"furnished basement level apartment , 1000 sq ft",80023687,Lb,Brooklyn,Greenpoint,40.73233,-73.95443,Entire home/apt,300,1,1,2016-07-02,0.03,1,83 +9475136,Williamsburg Room & Private Bath,13034246,Clinton,Brooklyn,Williamsburg,40.71642,-73.95298000000001,Private room,90,1,0,,,1,0 +31409612,Tremendous Views - Greenpoint,56061729,Dennis,Brooklyn,Greenpoint,40.73421,-73.95318,Entire home/apt,125,2,8,2019-06-10,1.37,1,188 +12039579,NY Queens Penthouse = 1MASTER aka Manhattan Room,34861728,Iris,Queens,Kew Gardens,40.70911,-73.8296,Private room,73,9,2,2018-09-10,0.17,4,276 +11496210,Sunny family-friendly 1 bed. apt near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68084,-73.84765,Entire home/apt,87,4,86,2019-06-10,2.13,4,58 +19179961,Orange in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.68106,-73.88916,Private room,65,3,23,2019-05-01,0.95,3,321 +23436140,Tony's Room 2 near La Guardia Airport,172189639,Camilo & Yesenia,Queens,East Elmhurst,40.76525,-73.86715,Private room,80,1,4,2019-06-01,0.28,2,78 +30715085,"Private Studio apartment In prime Astoria, no fees",57046582,JayJay,Queens,Astoria,40.76908,-73.90873,Entire home/apt,95,3,0,,,1,0 +16852728,!!! Outpost Coliving . Shared twin room,2092314,Valentin,Brooklyn,East Flatbush,40.65024,-73.95051,Shared room,26,30,2,2018-04-30,0.09,7,365 +12536976,Sunny & Luxurious West Village Apartment!,55457305,Mila & Jon,Manhattan,West Village,40.72981,-74.00348000000001,Entire home/apt,274,6,37,2019-06-23,0.94,1,339 +22353249,Chambre spacieuse,44410626,Cindy,Manhattan,Inwood,40.86318,-73.9221,Private room,50,4,0,,,1,0 +30476876,"Cozy studio is all you need, 20 mins to Manhattan",227647873,Samanta,Queens,Astoria,40.76184,-73.91443000000001,Private room,109,2,50,2019-07-01,6.88,3,0 +21477816,Sleek and Modern Brooklyn Apartment,155990761,Kevin,Brooklyn,Bushwick,40.69059,-73.91805,Private room,42,2,35,2018-07-22,1.69,1,0 +30351256,"HUGE ONE-BED, PROSPECT PARK, CAT LOVERS ONLY!!",1675112,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66106,-73.96189,Entire home/apt,79,5,2,2019-06-23,1.28,1,8 +10193392,great private room,16869971,Han,Manhattan,Roosevelt Island,40.76882,-73.94315,Private room,70,1,7,2016-08-23,0.19,2,0 +27986129,Times Square Apartment,6116657,Will,Manhattan,Hell's Kitchen,40.76228,-73.99027,Entire home/apt,199,3,25,2019-07-01,2.48,1,30 +30071972,Beautiful room Williamsburg Brooklyn NY,192181166,Elisa,Brooklyn,Williamsburg,40.70685,-73.94230999999999,Private room,60,150,2,2019-01-13,0.32,2,0 +30470365,Cozy Brooklyn Apartment,37860219,Rebecca,Brooklyn,Bushwick,40.70073,-73.94037,Entire home/apt,250,1,7,2019-06-29,1.06,2,5 +32314460,lower east side home,27923277,Xu,Manhattan,Lower East Side,40.7127,-73.98854,Private room,75,4,9,2019-06-23,1.96,1,34 +8234295,"Sunny, spacious, bedroom for rent",481603,Lindsey,Brooklyn,Bushwick,40.69017,-73.91291,Private room,45,15,0,,,1,0 +1442450,Saratoga Park Suite,7388128,Aqila,Brooklyn,Bedford-Stuyvesant,40.686690000000006,-73.91897,Private room,72,3,0,,,1,365 +30314819,Brooklyn Finest Air Bnb,224699779,Michael,Brooklyn,Bushwick,40.69097,-73.92166,Private room,120,7,0,,,1,365 +2451438,Quiet & private room in luxury doorman bldg,10193030,Kaori,Manhattan,Harlem,40.82349,-73.94193,Private room,80,3,3,2017-10-03,0.05,2,178 +1907058,PRIVATE ROOM #2 STARTING AT $67 PER NIGHT,9898029,Anthony,Brooklyn,East Flatbush,40.64913,-73.92525,Private room,67,5,17,2018-09-23,0.25,5,308 +5521107,Bright and Cozy in Crown Heights,9862957,Miklos,Brooklyn,Crown Heights,40.67049,-73.94176999999999,Private room,69,15,21,2018-09-26,0.43,1,360 +29930787,Clean Well-Lit NY Room. WiFi & Utilities Included,137358866,Kazuya,Queens,Woodside,40.74484,-73.90959000000001,Private room,40,30,0,,,103,93 +29365401,4min subway. Prime locations. single sofa bed 单人间,196058543,美德,Queens,Forest Hills,40.72192,-73.83931,Shared room,40,2,20,2019-05-29,2.4,5,230 +32544013,Luxury Living in Bumpin Bushwick,489448,Tina,Brooklyn,Bushwick,40.6994,-73.92607,Private room,70,5,6,2019-05-28,1.57,2,99 +34490362,Junior Suite 2 Queen Beds Mobility Accessible Tub,260618374,The Knickerbocker,Manhattan,Theater District,40.75513,-73.98784,Private room,100,1,0,,,13,344 +5232121,".Safe, cozy & minutes to NYC",3339701,Angelo,Queens,Ditmars Steinway,40.77776,-73.91611999999999,Private room,55,1,90,2019-06-21,1.72,4,310 +6716444,Large and Quiet Private Bedroom,24466159,Tim,Manhattan,East Village,40.72879,-73.98575,Private room,100,7,2,2015-06-26,0.04,1,0 +15943497,(3)Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68875,-73.95401,Private room,40,1,41,2019-05-24,1.34,4,352 +30161645,Midtown West - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7552,-73.99672,Private room,179,1,10,2019-05-05,1.36,30,175 +19225880,Bright & lovely 1BD Apartment,24709724,Maria,Queens,Ridgewood,40.70684,-73.89474,Entire home/apt,80,7,2,2019-01-03,0.11,1,190 +28536037,EXCELLENT location 2min 7 line 61st Express train,19303369,Hiroki,Queens,Woodside,40.74474,-73.90314000000001,Private room,47,30,0,,,37,1 +2508374,Cozy 1br mins from CASINO JFK & NYC,8552126,Claudius,Queens,Jamaica,40.67349,-73.76951,Entire home/apt,63,3,146,2019-06-20,2.28,2,23 +845417,LOVELY LOFT | 24H DOORMAN | PERFECT,3891436,Felix,Manhattan,Lower East Side,40.71312,-73.99033,Entire home/apt,260,6,23,2019-05-20,0.3,1,0 +23045850,Private room in Brooklyn with laundry,157977326,Ilyas,Queens,Maspeth,40.71415,-73.91426,Private room,45,1,55,2019-06-24,3.26,2,27 +19763298,Large-sunny-private room & bathroom in UES hi rise,12825778,Laura,Manhattan,Upper East Side,40.78273,-73.95048,Private room,46,3,23,2019-07-06,0.96,1,12 +21938049,Big Bedroom w/ Bathroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.700390000000006,-73.93009,Private room,60,7,74,2019-06-15,3.98,3,31 +65562,CHARMING EAST VILLAGE 2 (or 1) BR,320450,Mary D,Manhattan,East Village,40.72956,-73.98158000000001,Entire home/apt,129,7,5,2019-01-03,0.15,1,231 +2453730,"Sunny, charming duplex in best Brooklyn 'hood",10232293,Georgia,Brooklyn,Gowanus,40.67906,-73.99093,Entire home/apt,180,6,1,2019-07-05,1.0,1,26 +403056,Large Private Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79314,-73.94853,Private room,125,3,74,2019-05-28,0.84,3,212 +4636643,"Sunny, Spacious 1 Bdrm in E. Vil.",24007762,Kate,Manhattan,East Village,40.72639,-73.98827,Entire home/apt,125,1,8,2018-03-02,0.15,1,0 +7760406,Modern Chelsea Studio,39060578,Scott,Manhattan,Chelsea,40.74336,-74.00278,Entire home/apt,200,6,45,2018-01-02,0.99,1,0 +30745822,New Build APT in Brooklyn - Prospect Park South!,97681343,Shola,Brooklyn,Flatbush,40.64499,-73.97043000000001,Entire home/apt,62,2,0,,,1,54 +6329973,Times Square room with private bath,31626212,Troy,Manhattan,Theater District,40.75731,-73.98479,Private room,120,60,140,2019-06-24,2.81,5,283 +3208747,Cute UWS Studio Near Central Park Clean & Quiet,8658146,Michelle,Manhattan,Upper West Side,40.77802,-73.98255999999999,Entire home/apt,120,3,214,2019-06-21,3.47,1,197 +14519882,Midtown in NYC for International Business Interns,70060476,Nathalia,Manhattan,Hell's Kitchen,40.76328,-73.9928,Entire home/apt,98,60,28,2019-04-26,0.82,1,343 +34202304,曼哈顿 林肯中心 Manhattan Lincoln Center 5分钟到西59/66地铁站,97044757,柏润,Manhattan,Upper West Side,40.77435,-73.98761,Entire home/apt,139,20,0,,,2,18 +4158078,Private room in Loft,19139700,Tanya,Queens,Ridgewood,40.69518,-73.9038,Private room,47,30,4,2017-08-05,0.07,1,157 +12400242,Spacious Brownstone with 5 beds on Second floor!,67045498,Jocelyne,Queens,Ridgewood,40.70918,-73.90089,Entire home/apt,215,1,38,2019-06-28,1.75,1,77 +27635012,East Village duplex with private roof access!,26825592,Jeff,Manhattan,East Village,40.73028,-73.98165,Entire home/apt,140,2,19,2019-06-02,1.76,1,18 +24607535,Heart of long island City,183623716,Amira,Queens,Long Island City,40.74664,-73.95039,Private room,85,1,10,2019-07-06,0.71,1,365 +21551817,Cozy bedroom in Crown Heights Duplex,83585937,J.,Brooklyn,Crown Heights,40.6717,-73.91745,Private room,50,2,35,2019-06-28,1.8,2,174 +26041689,The home is where the heart is.,156585195,Gerard,Brooklyn,East Flatbush,40.65287,-73.94861,Entire home/apt,200,2,27,2019-06-25,2.3,2,217 +700530,Charming South Village w/ Private Terrace,2495668,Christos,Manhattan,SoHo,40.72756,-74.00239,Entire home/apt,230,2,27,2019-07-06,1.4,1,101 +34180216,Comfy Jfk Room to crash,232251881,Lakshmee,Queens,Jamaica,40.66794,-73.78483,Private room,39,1,15,2019-07-04,6.25,8,0 +9966717,"Spacious, Sunny, Holiday in Brklyn!",51216049,Natalie,Brooklyn,Crown Heights,40.67758,-73.93547,Private room,49,1,2,2016-01-02,0.05,1,0 +11558167,LUXURY MURRAY HILL STUDIOS/GYM/DECK,2856748,Ruchi,Manhattan,Murray Hill,40.7471,-73.97263000000001,Entire home/apt,190,30,0,,,49,364 +35066800,Highly nice area beautiful place too visit,264156969,Neal,Queens,Arverne,40.59279,-73.79993,Private room,80,1,1,2019-07-06,1.0,1,90 +7970450,Adorable Upper East Side Apartment,39651842,Samantha,Manhattan,Upper East Side,40.77285,-73.94715,Private room,110,1,0,,,1,0 +28083637,Brooklyn Prospect Park South Master Suite,202837291,Sarahya,Brooklyn,Flatbush,40.64543,-73.96457,Private room,80,1,18,2019-06-22,1.83,2,78 +17691601,Charming Blue Bdrm in Victorian Home,3249903,Kamilya,Brooklyn,Flatbush,40.63501,-73.95522,Private room,98,4,0,,,3,0 +15266302,Borough Park/Kensington 3 room Apartment,38965064,Chaim,Brooklyn,Borough Park,40.63561,-73.97961,Entire home/apt,83,7,1,2017-04-18,0.04,1,0 +36026259,1 bdr in heart of Harlem,6150742,Anna,Manhattan,Harlem,40.81761,-73.94434,Private room,80,1,1,2019-07-07,1.0,1,86 +34894797,Upper Eastside Brownstone on E89th,263007016,Ed,Manhattan,Upper East Side,40.77838,-73.94792,Private room,125,1,0,,,1,0 +4284158,Homey East Village Private Bedroom ,22240717,Steven,Manhattan,East Village,40.72833,-73.98917,Private room,199,1,0,,,1,0 +26603881,SPACIOUS 3 BR APT 5 MNS TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.802690000000005,-73.94686999999999,Entire home/apt,300,2,0,,,3,353 +4937135,Big & bright apt in Harlem!,25439443,Joel,Manhattan,Harlem,40.81831,-73.93833000000001,Entire home/apt,85,30,5,2017-07-31,0.11,1,7 +31328535,FORT GREENE THE NEW HEART BEAT OF BROOKLYN!,12865261,Lisa,Brooklyn,Fort Greene,40.68994,-73.96951999999999,Entire home/apt,170,3,5,2019-07-02,2.54,1,304 +33974082,LARGE LUXURIOUS BEDROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75736,-73.92815,Private room,65,1,11,2019-06-16,4.58,5,300 +23363336,Manhattan clean. warm. safe room / 6 train,174124006,Chanhee,Manhattan,East Harlem,40.7975,-73.93556,Private room,60,1,61,2019-06-27,3.67,1,45 +6901401,Spacious Contemporary Living,36164182,Glender,Brooklyn,Bushwick,40.69712,-73.93325,Entire home/apt,155,2,114,2019-06-30,2.86,3,250 +12737660,Large and sunny BR Bushwick,69269694,Mickael,Brooklyn,Williamsburg,40.70474,-73.93812,Private room,70,3,3,2016-08-23,0.08,1,0 +8737991,Master Bedroom in Roofdeck Lux Apt,5270447,Sean,Brooklyn,Bushwick,40.70076,-73.92828,Private room,150,4,0,,,1,0 +2958912,STUNNING! 1BD Jr in Midtown East NY,15100977,Nataliya,Manhattan,Midtown,40.75969,-73.96644,Entire home/apt,140,300,0,,,1,365 +22077540,"Cozy home in charming, central Fort Greene",6123811,Sherry,Brooklyn,Fort Greene,40.68892,-73.97749,Entire home/apt,150,2,11,2019-06-13,1.46,1,0 +27466393,Sunny bdr w stunning view in prime Williamsburg!!!,8879096,Cristina,Brooklyn,Williamsburg,40.71688,-73.95107,Private room,65,3,6,2019-04-11,0.54,1,0 +14967994,Seaview Studio in Brooklyn New york.,94265445,Natasha,Brooklyn,Canarsie,40.63241,-73.89367,Entire home/apt,100,2,161,2019-06-26,4.78,1,327 +13430210,Prime Gramercy Apartment w Balcony,4027856,Omar,Manhattan,Flatiron District,40.74148,-73.98493,Entire home/apt,200,1,0,,,1,0 +23629119,"Room in the heart of Williamsburg, Brooklyn",32130349,Michael,Brooklyn,Williamsburg,40.71876,-73.94341,Private room,50,1,0,,,1,0 +25155248,Clean and spacious 2 bedroom w/ separate entrance,35108251,Belinda,Brooklyn,East New York,40.67018,-73.88866999999999,Entire home/apt,79,3,37,2019-06-29,2.73,2,124 +152071,Park Slope Apartment,731855,Wendy,Brooklyn,Park Slope,40.67359,-73.97904,Entire home/apt,150,2,0,,,1,8 +4824849,2 Bedrooom- near Columbus Circle,24844621,Paul,Manhattan,Midtown,40.766090000000005,-73.98038000000001,Entire home/apt,200,1,0,,,1,0 +18715285,Beautiful Brooklyn Vacation Rental,63749946,Rachel,Brooklyn,Crown Heights,40.67324,-73.92501999999999,Entire home/apt,147,20,49,2019-05-29,1.94,3,204 +35314647,"Near JFK and LIRR, Room",264043510,Ken,Queens,Springfield Gardens,40.66199,-73.76345,Private room,95,1,2,2019-06-12,2.0,6,365 +32959315,Luxury 3 BR loft for the ideal NYC experience!,150273801,Angie,Queens,Glendale,40.70504,-73.86933,Entire home/apt,131,3,11,2019-06-18,2.87,1,319 +35187772,"Sunny private bedroom in Brooklyn, 20min to Mnhttn",128300825,Anton,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92915,Private room,70,3,0,,,2,43 +16334327,"Bright, airy, calm Brooklyn space",1636770,Clare,Brooklyn,Bedford-Stuyvesant,40.68314,-73.9566,Private room,68,2,4,2017-01-24,0.13,1,0 +21730366,Coastal Bedroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.70034,-73.9284,Private room,75,7,100,2019-06-25,4.97,3,25 +34285156,Master Bed Decatur 3F Room#1,258248138,Fanny,Brooklyn,Bushwick,40.687540000000006,-73.90975,Private room,70,1,5,2019-06-27,2.54,2,179 +19605856,Upper west side - One Bedroom + Bike,18632318,Jeffrey,Manhattan,Upper West Side,40.8023,-73.96688,Private room,101,5,2,2017-07-22,0.08,1,0 +36273046,Elegant Spacious UES private room,267839371,Celine,Manhattan,Upper East Side,40.77551,-73.95404,Private room,120,1,1,2019-07-06,1.0,2,358 +12387961,BEAUTIFUL 1bd/1bath available in Williamsburg,59742433,Franco,Brooklyn,Williamsburg,40.70851,-73.95443,Private room,80,4,2,2019-05-06,0.77,1,66 +21524671,Cozy townhouse with an amazing back yard,1196023,Cat,Queens,Ridgewood,40.7088,-73.91386999999999,Entire home/apt,140,3,54,2019-06-25,2.82,1,230 +30734277,Large Full Bedroom in an Awesome Huge Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73448,-73.95716,Private room,70,3,0,,,4,4 +21826282,Lovely room in West Harlem,80512824,Yoleni,Manhattan,Harlem,40.81855,-73.94447,Private room,46,1,5,2018-04-11,0.25,1,0 +16454164,Beautiful and Quiet Morningside Heights 1BR,19659393,Cathy,Manhattan,Morningside Heights,40.80826,-73.96499,Entire home/apt,105,2,1,2017-01-02,0.03,1,0 +17510130,High Tower Luxurious 1 Bedroom in Times Square,3191545,Kyle,Manhattan,Hell's Kitchen,40.75919,-73.99229,Entire home/apt,169,30,1,2017-08-03,0.04,23,115 +33664484,3BR Family Home in Prime Queens Neighborhood,157301360,Dalia & Marina,Queens,Kew Gardens Hills,40.72947,-73.82075999999999,Entire home/apt,250,3,5,2019-07-06,2.88,1,152 +25028952,Charming studio in Brooklyn,178038608,Tal,Brooklyn,Clinton Hill,40.69365,-73.96511,Entire home/apt,110,7,2,2018-07-20,0.14,1,125 +698298,GREAT private apt on MULBERRY st - Nolita / Soho,1746432,Joseph,Manhattan,Nolita,40.72177,-73.9961,Private room,95,10,13,2019-04-15,0.33,1,51 +13627991,Private Room in a Huge Apartment (East Village),2080047,Lawrence,Manhattan,East Village,40.72392,-73.98719,Private room,70,3,2,2017-09-30,0.09,1,0 +9505990,whole apartment & 2 cats!,49260425,Fernanda,Brooklyn,Bushwick,40.695440000000005,-73.93221,Entire home/apt,68,3,1,2016-07-25,0.03,1,0 +21947959,Charming Clinton Hill Apartment,7709326,Tiff,Brooklyn,Clinton Hill,40.69513,-73.96245,Entire home/apt,90,3,0,,,1,0 +6249050,300 Square Foot Private Room - in MANHATTAN!!,18418581,Pooja,Manhattan,Washington Heights,40.85228,-73.93498000000001,Private room,67,1,297,2019-07-03,5.92,3,271 +21505275,Private Room in Industrial Apartment w/ rooftop!,42999896,Sander,Brooklyn,Bedford-Stuyvesant,40.68903,-73.93191999999999,Private room,62,1,8,2018-04-15,0.39,1,0 +18745767,Large bright artistic apartment,2469662,Ruthie,Brooklyn,Bushwick,40.70249,-73.93025,Entire home/apt,80,2,5,2018-07-16,0.19,1,0 +7612100,Sunny Spotless Manhattan apartment,39921605,Rachel,Manhattan,Upper West Side,40.80417,-73.96874,Private room,167,30,44,2018-03-06,0.92,5,188 +29183047,Amber Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6929,-73.95513000000001,Private room,49,2,15,2019-06-24,1.7,34,306 +26447954,Beautiful Designer DUMBO Loft,244444,Michael,Brooklyn,Vinegar Hill,40.7023,-73.98394,Entire home/apt,159,14,0,,,1,0 +13113422,"Clean, Open 1 bdrm Upper West- Steps from train",72918560,Lauren,Manhattan,Upper West Side,40.77995,-73.9822,Entire home/apt,294,14,0,,,1,0 +22244254,Full floor of a beautiful Bedstuy duplex,7306239,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68885,-73.94349,Private room,80,1,4,2018-05-16,0.21,1,0 +22157675,Gorgeous Duplex 2 Bdrm in Prime Greenpoint,1927555,Rob,Brooklyn,Greenpoint,40.72612,-73.9532,Entire home/apt,250,4,1,2017-12-13,0.05,1,0 +27949417,"Private room in TRIBECA Loft, elevator into apt!",50288091,Daniel,Manhattan,Tribeca,40.71392,-74.00754,Private room,200,2,3,2019-04-07,0.84,1,0 +17046103,Down town east village.,114410100,Lamark,Manhattan,East Village,40.7284,-73.98295,Private room,70,59,0,,,1,333 +21311003,Vickie's Home Away from Home,154232402,Vickie,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94021,Entire home/apt,185,3,19,2019-07-02,1.03,1,363 +26064779,Cool Private Room in Dreamy Bedstuy Apartment,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68354,-73.94003000000001,Private room,55,3,43,2019-07-06,3.57,2,0 +19898570,Cosy Studio in Rego Park,140889033,Vasiliki,Queens,Rego Park,40.72318,-73.85621,Entire home/apt,40,14,1,2019-02-24,0.22,1,7 +1981590,Loft 15 - 20 minutes to Manhattan,10225447,Giovani,Brooklyn,Bushwick,40.69937,-73.91463,Entire home/apt,135,3,164,2019-01-05,2.45,1,325 +34056679,Spanish Harlem magical place. Mezzanine bed,254112876,David,Manhattan,East Harlem,40.79787,-73.93568,Private room,90,2,3,2019-06-30,2.43,2,175 +4235961,Central 2 Bedroom in Chelsea,16276317,Lee,Manhattan,Chelsea,40.74366,-73.99721,Entire home/apt,275,3,1,2016-07-07,0.03,1,0 +6044268,Family summer on the Hudson - 1 wk. min. 8/16-9/4,6657363,Amy,Manhattan,Battery Park City,40.71111,-74.01567,Entire home/apt,195,7,0,,,1,0 +20957575,Private Room in East Village *FEMALE Guests only*,52768036,Laura,Manhattan,East Village,40.72793,-73.98876,Private room,85,1,44,2019-06-13,2.01,1,19 +84659,Large Studio--Heart of East Village,462776,Kyle,Manhattan,East Village,40.72843,-73.98895,Entire home/apt,139,1,388,2019-06-26,3.88,1,142 +27217390,1 BEDROOM ON UES-DOORMAN/WASHER/DRYER,200380610,Pranjal,Manhattan,Upper East Side,40.77834,-73.95193,Entire home/apt,210,30,0,,,65,364 +28108959,Sunny Prospect Park Studio,2153064,Justin,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.95982,Entire home/apt,100,3,18,2019-06-20,1.74,1,0 +13550629,Large 1BR in the Heart of Hell's Kitchen!!,11736641,Will,Manhattan,Hell's Kitchen,40.76054,-73.98971,Entire home/apt,199,4,0,,,1,0 +31370452,ROOM TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68487,-73.87254,Private room,125,3,0,,,3,364 +20207132,Clean spacious 1 bedroom apt,445894,Alexa,Brooklyn,Bath Beach,40.60106,-74.00933,Entire home/apt,95,2,2,2017-08-22,0.09,2,0 +6674342,NYC Hell's Kitchen/Midtown West 1BR,5143511,Danyel,Manhattan,Hell's Kitchen,40.76127,-73.99161,Entire home/apt,125,3,0,,,1,0 +21982096,"Friendly, bustling & safe first floor BK gem!",33738190,Jen,Brooklyn,Sunset Park,40.66222,-73.99566999999999,Private room,85,1,0,,,3,0 +20711342,Great Location - Bedford Bedroom,6520264,Mark,Brooklyn,Williamsburg,40.71702,-73.95732,Private room,75,2,1,2017-09-21,0.05,1,0 +14482700,A bedroom far from Home,1017772,Lane,Queens,Briarwood,40.71515,-73.8158,Private room,55,2,1,2016-09-18,0.03,1,56 +15606875,Private Studio Apartment in Bushwick,96101938,Mary,Brooklyn,Bushwick,40.69636,-73.92482,Entire home/apt,88,2,19,2018-12-29,0.62,1,0 +18737053,"Private, cute, and cozy studio close to the subway",182461,Jose,Queens,Ozone Park,40.67555,-73.85653,Private room,39,2,21,2019-06-01,0.81,2,0 +20014879,Spacious Furnished Room steps away from Cloisters!,99380211,Rachel,Manhattan,Inwood,40.86372,-73.92789,Private room,70,1,1,2019-07-02,1.0,1,132 +9712796,Charming Upper West Side 1BR Apt,50143518,Penda And Sebastien,Manhattan,Upper West Side,40.80172,-73.9656,Entire home/apt,135,4,0,,,1,0 +13282553,Comfortable Midtown Appartment 2BR,22656176,Gabrielle,Manhattan,Midtown,40.756040000000006,-73.9681,Entire home/apt,185,1,2,2016-08-28,0.05,1,0 +35231663,Room in a Luxury Apartment + Gym + AC + Laundry,14332697,Guillard,Brooklyn,Bushwick,40.70078,-73.92803,Private room,89,6,1,2019-06-14,1.0,1,27 +8664611,Affordable Luxury Minutes to Manhattan,45519775,Ayman,Staten Island,Randall Manor,40.62859,-74.12272,Entire home/apt,75,2,131,2019-07-02,2.85,1,310 +15787037,Huge room near Manhattan w/ balcony & free pickup!,83627325,Jared,Queens,Sunnyside,40.74481,-73.91671,Private room,139,1,3,2018-07-20,0.12,4,365 +11442506,Apt in Upper West near Central Park,24405972,Paula,Manhattan,Upper West Side,40.77661,-73.98228,Entire home/apt,250,4,3,2019-01-02,0.08,1,0 +21067165,Gorgeous Brownstone - 3 blocks from subway!,9356744,Hadas,Brooklyn,Bedford-Stuyvesant,40.68779,-73.95347,Entire home/apt,185,2,50,2019-06-30,2.34,1,14 +34715931,Mott Haven Dorm AA,30509656,Orit,Bronx,Port Morris,40.80852,-73.9306,Shared room,28,1,5,2019-06-17,2.94,8,60 +16423876,newly renovated apt in Brooklyn!,107417836,Rito,Brooklyn,Bedford-Stuyvesant,40.68205,-73.92833,Entire home/apt,200,3,73,2019-06-24,2.5,1,329 +14506036,Heart of Harlem Living - NYC to it's fullest!,1215853,Pascal,Manhattan,East Harlem,40.80758,-73.93701999999999,Entire home/apt,140,1,34,2019-07-01,0.98,1,170 +3662827,Nolita Duplex w/ private terrace,8200795,Brooke,Manhattan,Nolita,40.72168,-73.99544,Entire home/apt,191,3,51,2019-06-30,0.88,1,55 +22175928,"The CaptainsQuarters, Clean Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68502,-73.87546999999999,Private room,45,2,31,2019-07-06,1.63,3,0 +7699542,Master bedroom in a 3BR apt in UES,22703843,Haïssam,Manhattan,Upper East Side,40.76102,-73.96124,Private room,95,1,1,2015-08-07,0.02,1,0 +35754614,Chelsea Sunroof,180237401,Jarrod,Manhattan,Chelsea,40.74443,-73.9967,Entire home/apt,200,4,0,,,1,31 +34843532,✰ RARE FIND ✰ PRIVATE PATIO ✰,229506961,Alex,Manhattan,Midtown,40.75935,-73.96471,Entire home/apt,289,2,3,2019-07-04,3.0,1,309 +26446103,"Estudio 1 Brooklyn, NY.",198853982,Brigit,Brooklyn,Cypress Hills,40.68816,-73.87193,Entire home/apt,90,2,34,2019-06-24,2.8,2,120 +14163104,Cozy Studio in Astoria NYC,85667130,Anna,Queens,Ditmars Steinway,40.77943,-73.9117,Private room,90,2,80,2019-07-02,2.35,1,350 +18329982,Gorgeous Studio in Greenpoint with City Views,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.9406,Entire home/apt,129,30,0,,,52,5 +24756445,Spacious One Bedroom in the Heart of Brooklyn,4426154,Haley,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.962,Entire home/apt,75,2,2,2018-08-05,0.15,1,0 +10043064,"Full Apartment NYE! 2BR, fits 6!",51552511,Shelby,Manhattan,Harlem,40.823640000000005,-73.94556,Entire home/apt,150,2,2,2016-01-03,0.05,1,0 +23753775,Soho Studio In heart of Manhattan,2250865,Jacqueline,Manhattan,SoHo,40.72639,-74.00686999999999,Entire home/apt,165,2,0,,,1,0 +31624832,"Bright, sunny bedroom with backyard",154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68803,-73.92600999999999,Private room,50,2,6,2019-05-25,1.15,5,125 +20017161,Amazing location across from Park and Subway,602131,Molly,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.96169,Entire home/apt,69,3,11,2019-06-27,0.46,1,7 +9332926,Room in 3br apt,48437907,Filip,Manhattan,Washington Heights,40.83819,-73.94373,Private room,110,1,1,2015-11-10,0.02,1,0 +11728836,roomy sunny apt in <3 of Astoria,10620222,Rebecca,Queens,Astoria,40.76711,-73.92045999999999,Entire home/apt,95,3,1,2016-03-26,0.03,1,0 +33781074,Comfortable apartment in the heart of Brooklyn.,26071530,Olman,Brooklyn,Crown Heights,40.67533,-73.94889,Entire home/apt,100,2,6,2019-07-07,2.54,2,0 +30739597,"Basement suite in Bushwick, 4 minutes from the M!",14841940,David,Brooklyn,Bushwick,40.69752,-73.92069000000001,Private room,48,3,13,2019-06-18,2.05,1,34 +15631921,"East Village Flat-Clean,Comfy,Close",43227390,Rose,Manhattan,East Village,40.72216,-73.97806,Private room,110,3,7,2017-07-31,0.22,1,0 +26988903,Sunny+ Modern Brooklyn apartment,1459377,Stefania,Brooklyn,Williamsburg,40.71998,-73.94216,Entire home/apt,145,3,3,2018-09-21,0.26,1,0 +26534723,"Stylish, art-filled apartment near Hudson River",1495694,Eileen,Manhattan,Washington Heights,40.8436,-73.9412,Entire home/apt,125,11,1,2018-07-30,0.09,1,342 +10949554,Bright Spacious Luxury 1 BR,20903132,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69187,-73.95408,Entire home/apt,80,90,0,,,1,89 +1360781,LUXMaster Suite 24hrDrm WestVillage,176903,Tana,Manhattan,West Village,40.73432,-74.00305999999999,Private room,220,1,2,2013-10-09,0.03,2,364 +8174635,Modern Brooklyn Apartment,20538121,Michelle,Brooklyn,Bedford-Stuyvesant,40.68372,-73.95551,Entire home/apt,45,2,7,2019-06-22,0.15,1,14 +2022728,Room in Manhattan! 15min=TimeSquare,7580038,Jack Andrew,Manhattan,Harlem,40.82475,-73.94842,Private room,39,12,26,2019-04-26,0.42,3,155 +3782925,Cute apartment with Backyard,3363799,Andrew,Brooklyn,Williamsburg,40.70967,-73.94945,Entire home/apt,124,5,85,2019-06-23,1.45,1,238 +13065655,Charming 1BR in Astoria with HUGE Outdoor Space!,72398084,David,Queens,Astoria,40.76803,-73.93033,Entire home/apt,110,21,0,,,1,0 +32304108,Carroll Gardens Cozy Nest,152114575,Barbara,Brooklyn,Carroll Gardens,40.68082,-73.99481999999999,Private room,89,4,5,2019-06-16,1.4,1,0 +9883768,Best location in Williamsburg!,21966105,Ryan,Brooklyn,Williamsburg,40.720490000000005,-73.95894,Private room,90,6,2,2018-07-31,0.16,1,331 +68305,Cozy Private Room in Apartment,338454,Share,Manhattan,Harlem,40.82976,-73.94866999999999,Private room,85,30,64,2018-07-06,0.68,1,318 +9024747,Tranquil Room :),47113234,Bryan,Brooklyn,Bushwick,40.69989,-73.92352,Private room,100,1,0,,,1,0 +33379269,1 BR Luxury Apt on Metro Ave in E Williamsburg,251468079,Ken,Brooklyn,Williamsburg,40.71573,-73.93887,Entire home/apt,110,4,5,2019-06-19,2.63,1,1 +14839995,3 BR & Bath Sunny Quiet Entire Floor Brown,39543399,Michael,Brooklyn,Park Slope,40.67171,-73.97606999999999,Entire home/apt,175,3,29,2019-05-06,0.85,1,282 +28722897,Charming Shared Place in East Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79912,-73.94202,Shared room,65,2,33,2019-05-24,3.44,9,10 +33787433,3 Bedroom Spacious Apartment,251704655,Hamza,Bronx,Port Morris,40.80143,-73.91353000000001,Entire home/apt,115,2,11,2019-06-24,4.46,3,6 +21458972,Large Bed-Stuy Apartment,45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95515999999999,Entire home/apt,142,6,4,2018-06-01,0.2,2,0 +14403485,Cozy private bdrm in Manhattan near Subway Station,88550022,Sheila & Tony,Manhattan,East Harlem,40.79105,-73.94376,Private room,85,2,123,2019-06-29,4.09,1,64 +32161987,Charming 2BR Near Columbia | Perfect for Families,4619315,Tiffany,Manhattan,Harlem,40.8199,-73.95248000000001,Entire home/apt,165,3,9,2019-06-10,2.01,1,2 +13427044,Ideal Bushwick Rental,25549474,Ruby,Brooklyn,Bushwick,40.70298,-73.92203,Private room,45,5,1,2016-07-08,0.03,1,0 +26606845,NYC Guest Suite with Loft-Free Ferry to Manhattan,50756378,Nina,Staten Island,Clifton,40.61543,-74.08513,Entire home/apt,100,2,5,2019-05-19,0.43,7,312 +28256958,Downtown BK luxury apartment,78817833,David,Brooklyn,Downtown Brooklyn,40.68978,-73.98598,Private room,110,21,0,,,1,0 +11591118,"Bay RIdge, Brooklyn NY",49413208,Sotira,Brooklyn,Fort Hamilton,40.61731,-74.0344,Entire home/apt,100,15,3,2018-08-27,0.14,2,365 +33987747,Cozy/Beautiful studio in Times Square. Sleep 2,102287310,Vera,Manhattan,Hell's Kitchen,40.76704,-73.98646,Entire home/apt,199,3,0,,,3,358 +12106348,Best Place in the Center of NYC!,64916208,Tim,Manhattan,Chelsea,40.739740000000005,-74.00069,Entire home/apt,206,1,55,2019-01-01,1.41,1,0 +1166339,Spring in Central Park-UWS,3496628,Ali,Manhattan,Upper West Side,40.78571,-73.97149,Entire home/apt,239,4,3,2017-05-20,0.04,1,184 +35841291,Large bedroom in super large elevator building,153313824,Jeffrey,Manhattan,Inwood,40.86471,-73.92474,Private room,100,1,0,,,1,365 +21788688,Historic Turret Retreat (Smart TV/Cable/Wifi),54921733,Louise,Brooklyn,Flatbush,40.6437,-73.96769,Private room,85,7,3,2018-06-26,0.18,3,0 +35935675,Spacious Room w/Kitchen in Prime Manhattan,436365,Jessica M.,Manhattan,Upper East Side,40.76924,-73.95323,Private room,100,3,0,,,3,37 +31760403,1 JFK Layover - Express train to Manhattan,67746251,Gasminee,Queens,Ozone Park,40.680690000000006,-73.8494,Private room,44,1,42,2019-06-28,8.03,4,32 +18734427,"Nice space in Norwood, NYC",112239929,Cherly,Bronx,Norwood,40.87315,-73.87925,Private room,65,1,0,,,1,0 +24117055,Enjoy a beautiful room in this bohemian duplex,181651082,Fran,Queens,Rosedale,40.66021,-73.73709000000001,Private room,60,1,10,2019-07-01,0.92,3,164 +32365738,Rare Gem - Modern Lux Studio,113856483,Niky,Manhattan,Financial District,40.703990000000005,-74.00662,Entire home/apt,249,2,13,2019-07-01,3.12,1,227 +3004348,Modern Stay in Brownstone Brooklyn,15310896,Christy,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95054,Entire home/apt,100,3,284,2019-06-24,4.57,1,237 +9926058,"Spacious, Private Bushwick Room",46887682,Anusheh,Brooklyn,Bushwick,40.7049,-73.92,Private room,35,1,1,2015-12-26,0.02,1,0 +27680233,"Cute Room in Boho NYC Apt: Quiet, Close to Trains!",183330366,Max & Katie,Manhattan,Little Italy,40.71714,-73.99815,Private room,80,2,65,2019-07-05,6.35,1,12 +27890781,Hidden gem that's only 15 minutes from Manhattan.,210687004,Didier,Queens,Woodside,40.75537,-73.90741,Private room,83,2,0,,,1,126 +33560707,Amazing Cortelyou road,110448579,Moncef,Brooklyn,Flatbush,40.63866,-73.96735,Entire home/apt,78,30,1,2019-06-22,1.0,1,279 +7305718,"Cozy, clean studio with a view!",38269863,Andrea,Manhattan,Harlem,40.81882,-73.956,Entire home/apt,150,3,0,,,1,0 +33034799,The Brooklyn Experience,27512264,Daniel,Brooklyn,Carroll Gardens,40.68252,-73.99089000000001,Entire home/apt,143,30,0,,,1,181 +2804989,"Sunny, colorful, 1BD close to city ",2918667,Neisha,Queens,Sunnyside,40.74405,-73.91502,Entire home/apt,100,1,1,2014-05-27,0.02,1,0 +21241079,West Village Apartment,57169534,Nals,Manhattan,West Village,40.73261,-74.00713,Entire home/apt,295,2,7,2018-09-28,0.33,1,365 +16827163,quintessential modern Brooklyn loft** ONLY TONIGHT,44201583,Jeremy,Brooklyn,DUMBO,40.70287,-73.98518,Private room,200,7,0,,,1,0 +33505047,Cozy Private Bedroom in Manhattan,163619844,James Cem,Manhattan,Harlem,40.820040000000006,-73.94622,Private room,70,2,5,2019-06-15,1.65,1,1 +34020040,"Homey, Friendly Apt Share Next To Subway",253836845,Ollie,Brooklyn,Crown Heights,40.67058,-73.9573,Private room,68,30,1,2019-05-21,0.6,7,226 +15931762,Vacation Music Studio + 1Bedroom in Bedstuy!,51035062,Matt,Brooklyn,Bedford-Stuyvesant,40.69543,-73.94448,Private room,200,2,0,,,1,89 +33223405,Royal Court,250149612,Claudia,Queens,Jamaica,40.66971,-73.78583,Entire home/apt,300,1,11,2019-07-07,3.27,1,319 +23903960,Spacious Stylish 2 br duplex in HK ft from Time SQ,179255065,Luis,Manhattan,Hell's Kitchen,40.7612,-73.98886,Entire home/apt,300,1,118,2019-06-21,7.5,1,28 +8090529,"Modern studio in Queens, NY",17377835,Alex,Queens,Sunnyside,40.74674,-73.91881,Entire home/apt,250,3,0,,,1,364 +27407457,Cozy & quiet living experience in a trending area,11409024,Aysu,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94487,Private room,61,2,1,2019-07-01,1.0,1,349 +15561163,"Large Cozy Bedroom Apartment, brownstone",100202479,Michelle,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92864,Entire home/apt,100,3,86,2019-06-28,3.02,1,25 +70128,"Large, Sunny Room East Village NYC",354330,Eyal,Manhattan,East Village,40.73198,-73.98881,Private room,65,3,52,2019-01-10,0.63,1,5 +9393885,three bedroom in east village,48723057,Carlo,Manhattan,East Village,40.72339,-73.9833,Entire home/apt,300,3,0,,,1,0 +29544456,Long Island City Gem!,11598586,Kate,Queens,Long Island City,40.74705,-73.94594000000001,Private room,159,1,0,,,1,0 +29058512,Modern East Village Apt - Available Last Minute,447895,Adam,Manhattan,East Village,40.723,-73.97753,Entire home/apt,112,2,4,2019-04-21,0.5,1,0 +28223260,Private 1 BR/1 Bath apt with full kitchen,15717497,Nick,Manhattan,Upper West Side,40.77078,-73.98344,Entire home/apt,179,1,0,,,1,0 +32012464,Half a block from the train! my private cozy room,239978864,Patricia,Queens,Jackson Heights,40.7489,-73.87549,Private room,50,2,20,2019-07-01,4.69,1,167 +819956,"Home away from home,clean and cozy.",9269794,Jerbean,Brooklyn,Bedford-Stuyvesant,40.68615,-73.93095,Private room,75,2,38,2019-01-02,0.51,1,365 +325429,Lovely Upper East Yorkville 1 BDRM,92788,Sara,Manhattan,Upper East Side,40.7761,-73.95265,Entire home/apt,219,4,102,2019-06-28,1.15,2,280 +6975129,"Large room, cozy, 15min Manhattan",36575095,Hana,Brooklyn,Clinton Hill,40.684090000000005,-73.96531,Private room,50,1,1,2015-07-03,0.02,1,0 +17558336,"""Borough Border Liner"" Diverse/Convenient/Private",119173203,Maya,Brooklyn,Bushwick,40.70537,-73.91587,Private room,47,1,17,2018-05-13,0.97,1,0 +19385783,"Bright, clean room in great location",5399668,Annesofie,Queens,Long Island City,40.74538,-73.94747,Private room,75,2,17,2018-06-03,0.68,1,0 +26667693,"Prime Location Cozy, Posh, Upper East Side Room1",200465032,Jack,Manhattan,Upper East Side,40.78369,-73.95154000000001,Private room,120,2,58,2019-06-30,4.96,3,354 +29629048,Charming East Village 1B Apt with Rooftop & View,160050819,Caitlyn,Manhattan,East Village,40.72683,-73.97993000000001,Entire home/apt,250,4,1,2019-03-30,0.3,1,0 +31038390,Modern apt near mall and trains. 25 min from city,231831493,Javier,Queens,Elmhurst,40.73162,-73.87584,Entire home/apt,200,1,1,2018-12-22,0.15,1,0 +21868427,Sleep on a Casper in the heart of Greenpoint,24559343,Taeho,Brooklyn,Greenpoint,40.72133,-73.94903000000001,Entire home/apt,135,2,7,2019-05-26,0.36,1,2 +7498074,Modern & Renovated | Great Location,13347167,AFI Apartments,Manhattan,Upper East Side,40.77085,-73.95725,Entire home/apt,118,30,4,2019-04-13,0.11,29,315 +14109521,Sunny Bedroom in trendy Bushwick Apt. w/Rooftop,83176398,Cynthia,Brooklyn,Bushwick,40.7038,-73.92712,Private room,50,14,0,,,1,0 +28154487,Bed-Stuy one bedroom with Balcony,212660460,Nazanin,Brooklyn,Bedford-Stuyvesant,40.67999,-73.94618,Entire home/apt,100,21,2,2019-03-15,0.24,1,33 +13893861,Light-filled full Apt near Cloisters and Parks,82302838,Jacob,Manhattan,Inwood,40.86118,-73.92758,Entire home/apt,89,3,6,2017-03-07,0.18,1,0 +18456975,Fully furnished Studio Apt near Columbus Circle,30283594,Kara,Manhattan,Midtown,40.76547,-73.98216,Entire home/apt,199,30,0,,,121,189 +30147304,"Cozy private room near, Upper Westside CentralPark",126653377,Sergii,Manhattan,Harlem,40.80447,-73.95589,Private room,63,30,0,,,6,364 +28669168,Cozy Room in the Center of Manhattan!,214037223,Monze,Manhattan,Kips Bay,40.74256,-73.97912,Private room,135,2,35,2019-06-14,3.79,3,267 +7358801,Luxury Hip Brand New LES ROOM w/ Terrace!,2127057,Nick And Julia,Manhattan,Lower East Side,40.72065,-73.98273,Private room,145,2,148,2019-07-03,3.16,1,134 +16014578,Christmas Shopping in Manhattan,19080025,Elsa,Manhattan,Midtown,40.76365,-73.98149000000001,Private room,350,4,0,,,1,0 +33532173,"Only for airline crew, pilots and flight attendant",104814095,Hanine,Queens,East Elmhurst,40.76078,-73.88221999999999,Private room,70,1,1,2019-07-07,1.0,3,76 +36350007,Spacious brand new 2 bedrooms apartment ##2,273354185,Lee & Luffy,Bronx,Castle Hill,40.81576,-73.84653,Entire home/apt,98,3,0,,,7,169 +6090186,Location Angel Marlie ( only female),3250450,Petya,Queens,Jackson Heights,40.75181,-73.89064,Private room,40,25,1,2018-09-04,0.1,18,364 +30457958,East village renovated studio,15397994,Samantha,Manhattan,East Village,40.72715,-73.9848,Entire home/apt,175,2,7,2019-06-30,1.1,1,38 +29531069,greenpoint williamsburg huge studio room /,150316502,Francisca,Brooklyn,Greenpoint,40.72674,-73.95495,Private room,250,5,0,,,1,154 +10117636,❤︎ly room in duplex & garden,48535457,Eric,Brooklyn,Williamsburg,40.71975,-73.95964000000001,Private room,149,2,15,2016-05-31,0.35,1,0 +1817905,Amazing views in Williamsburg Condo,9520082,Mark,Brooklyn,Williamsburg,40.71454,-73.94965,Entire home/apt,300,2,10,2019-06-08,0.15,1,214 +17774810,Bedroom in fully renovated apartment,29546670,Norberto & Lana,Queens,Ridgewood,40.70336,-73.90991,Private room,55,1,41,2019-07-03,2.18,1,5 +19249099,Cozy Chelsea Apartment/ Highline/ Whitney Museum,41902579,Maria,Manhattan,Chelsea,40.74195,-74.00052,Entire home/apt,140,7,41,2019-06-15,1.66,1,13 +25157541,Great home for Families and Couples,137146680,Leticia,Queens,Glendale,40.69988,-73.89504000000001,Entire home/apt,190,3,15,2019-07-01,1.76,1,36 +205735,"A Cozy Oasis in Bushwick, NY",1011426,Danielle,Brooklyn,Bushwick,40.68364,-73.91076,Private room,41,2,55,2019-04-30,0.59,1,286 +43957,Sunny cozy room in Brklyn townhouse,177536,Tessa,Brooklyn,Bushwick,40.70641,-73.91765,Private room,50,2,47,2019-06-19,0.94,1,37 +10071232,Riverside Drive Harlem Apartment,6050369,Dave,Manhattan,Harlem,40.82697,-73.95236,Entire home/apt,200,1,0,,,1,0 +22266286,Gema's Place,44213272,Miss. G.,Queens,Ditmars Steinway,40.77216,-73.91252,Private room,138,30,0,,,5,234 +10279086,The Mahogany Suite(Private Studio Apartment),52862385,The Mahogany Suite(Studio Apartment,Brooklyn,Crown Heights,40.66404,-73.93334,Entire home/apt,99,2,110,2019-06-30,2.81,3,271 +726692,House 10 min from Midtown Manhattan,3641304,Remo,Queens,Astoria,40.76216,-73.92541999999999,Entire home/apt,245,6,1,2015-08-29,0.02,1,164 +7024079,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.80395,-73.96531,Private room,50,3,3,2015-08-17,0.06,2,0 +30745402,Room in central Manhattan,163905917,Matilda,Manhattan,Hell's Kitchen,40.75584,-73.99574,Private room,115,4,1,2019-05-12,0.52,3,0 +9880495,NYC Midtown West Luxury 1 bedroom apartment!,30283594,Kara,Manhattan,Midtown,40.76555,-73.98224,Entire home/apt,239,30,0,,,121,351 +31115685,Cozy Studio Apartment in the Heart of Williamsburg,17968226,Olivia,Brooklyn,Williamsburg,40.71881,-73.95369000000001,Entire home/apt,175,2,0,,,1,24 +890839,"Spacious, duplex townhouse w large garden oasis",831185,Andrew,Brooklyn,Crown Heights,40.68015,-73.96299,Entire home/apt,295,2,8,2019-05-28,0.11,3,365 +2659448,Bedstuy Apartment for Rent,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68852,-73.93588000000001,Entire home/apt,90,30,62,2019-06-01,1.2,3,280 +26010424,Private Apartment 30mins from Times Square,195497710,Christopher,Manhattan,Inwood,40.86903,-73.91825,Entire home/apt,95,3,22,2019-06-27,2.06,1,251 +23990128,"Long Island City, Shared 2 bedroom apartment",82834850,Ben,Queens,Long Island City,40.7546,-73.93643,Private room,48,6,2,2018-05-02,0.13,1,0 +35661889,Wonderful private room with entire ameneties,268110281,Sergii,Brooklyn,Bushwick,40.69208,-73.91296,Private room,58,30,0,,,3,340 +20552425,Sun-filled room in the heart of Bushwick,79896285,Amelia,Brooklyn,Bushwick,40.69961,-73.92132,Private room,50,4,0,,,1,0 +36140542,Wonderful Summer Vacation Getaways For Weekenders,229739739,John,Brooklyn,Flatbush,40.646,-73.95455,Private room,85,7,0,,,2,176 +35533850,Your Own Private Hideaway Junior Suite in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72109,-73.99972,Private room,100,1,0,,,4,350 +12387018,Modern 1BR in Downtown Manhattan,31280252,Josef,Manhattan,Lower East Side,40.71894,-73.98738,Entire home/apt,120,1,0,,,1,0 +34170097,Cozy 1 Bedroom Close To Manhattan,86196529,Jordan,Brooklyn,Williamsburg,40.70313,-73.93836999999999,Entire home/apt,101,2,4,2019-06-18,1.88,1,75 +4977744,Lower East Side Gem,10350245,Brian,Manhattan,Lower East Side,40.72076,-73.98925,Entire home/apt,200,1,1,2015-01-18,0.02,1,0 +17781440,Elegant bedroom 8 mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68615,-73.78747,Private room,80,1,177,2019-06-23,7.0,3,180 +8472812,2 bedroom apt 1 min walk to train,9295237,Noelle,Queens,Astoria,40.75763,-73.91389000000001,Entire home/apt,130,5,2,2019-05-31,0.04,2,0 +3039888,Very unique - half block from Industry City,15478980,William,Brooklyn,Sunset Park,40.65513,-74.00621,Shared room,80,1,7,2019-05-21,0.15,1,90 +32638774,Friendly relaxing place for you to stay,72166833,Shalini,Manhattan,Washington Heights,40.84389,-73.93688,Private room,51,3,0,,,1,13 +8863296,Incredible 750sqft East Village 1BR,27657527,Sean,Manhattan,East Village,40.72417,-73.98391,Entire home/apt,300,2,1,2016-01-03,0.02,1,0 +3551778,"Faboules 1 br, in trendy Park Slope",1439449,Ilona,Brooklyn,South Slope,40.66308,-73.98309,Entire home/apt,110,30,4,2016-05-19,0.07,1,220 +31148486,One bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70632,-73.91181999999999,Entire home/apt,75,1,9,2019-02-01,1.4,3,132 +13520598,"Beautiful 2 BR, 2 bath duplex w/ private patio",12267269,Ashley,Brooklyn,Prospect Heights,40.67671,-73.96466,Entire home/apt,300,3,17,2018-01-02,0.47,1,11 +14148550,La Guardia Airport Cozy Attic studio with Spiral,35660592,Luis,Queens,Corona,40.75134,-73.85219000000001,Entire home/apt,79,2,83,2019-07-02,2.32,6,320 +2257064,Sunny Room in Heart of Williamsburg,11526701,Victor,Brooklyn,Williamsburg,40.71357,-73.96279,Private room,75,4,3,2016-01-05,0.05,1,0 +23128247,Charming Kensington Apt.,140293912,Awilda,Brooklyn,Kensington,40.64593,-73.97745,Entire home/apt,84,3,38,2019-03-18,2.36,3,0 +25626152,Comfortable Flatbush Bedroom & Living Room (Rm# 3),147972663,Hyacinth,Brooklyn,East Flatbush,40.64987,-73.93855,Private room,45,3,33,2019-06-22,2.61,3,320 +4958223,Beautiful Central Park View,25517905,Andreias,Manhattan,Upper West Side,40.7962,-73.96155999999999,Private room,99,1,277,2019-06-23,5.44,3,294 +30661098,Bed-Stuy Gem with Cozy entire floor of Brownstone,45534171,Mariana,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92214,Entire home/apt,200,7,2,2019-04-23,0.32,1,31 +13489234,Cozy 1BR in Midtown Manhattan,1455109,Nina,Manhattan,Midtown,40.75823,-73.96453000000001,Entire home/apt,175,1,2,2016-06-23,0.05,1,0 +10267693,"Cute beach bungalow by the beach, 80min Manhattan",52793525,J.C.,Queens,Far Rockaway,40.596070000000005,-73.75910999999999,Entire home/apt,100,6,9,2019-05-10,0.22,1,0 +4891616,"Very spacious, clean Manhattan Apt",25168328,Daniel,Manhattan,Harlem,40.823890000000006,-73.94033,Entire home/apt,70,1,1,2016-02-01,0.02,1,0 +5706280,New! 2-Bed Apt Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95557,Entire home/apt,142,30,3,2018-08-10,0.1,29,315 +19360685,NEWLY RENOVATED flat in doorman building,6670822,Yana,Manhattan,Lower East Side,40.71992,-73.99251,Entire home/apt,300,5,6,2019-07-01,0.24,1,45 +16965705,Bright sunny manhattan getaway,3483600,Joshua,Manhattan,Washington Heights,40.83498,-73.94214000000001,Private room,63,2,0,,,1,0 +26627587,RH COZY HOME,199954647,Danny,Queens,Richmond Hill,40.69666,-73.83415,Entire home/apt,100,3,15,2019-01-01,1.33,1,0 +25446811,"Quiet Williamsburg Studio, Private Bath & Entrance",1844352,Christine,Brooklyn,Williamsburg,40.7117,-73.94388000000001,Private room,100,3,25,2019-07-05,1.9,2,76 +5106041,I LOVE BROOKLYN PRIVATE 1-BR APT,4265630,Nowme And Ra,Brooklyn,Flatbush,40.64801,-73.95623,Entire home/apt,80,4,51,2019-06-22,0.97,2,306 +18996283,Midtown NY,48590699,Isabelle,Manhattan,Midtown,40.75169,-73.97116,Private room,100,1,8,2017-07-24,0.32,1,0 +3760592,Large Room in Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74213,-73.9801,Private room,95,30,54,2018-12-16,0.91,26,335 +9064238,Large 1-bedroom in midtown sleeps 1-4 people,4166175,Rob,Manhattan,Midtown,40.754540000000006,-73.97083,Entire home/apt,103,6,0,,,1,0 +30527061,Sunny 2-bedroom Brooklyn Apt with Rooftop Views,229072295,Fareez,Brooklyn,Carroll Gardens,40.68486,-73.99358000000001,Entire home/apt,200,3,1,2018-12-30,0.16,1,0 +21379957,Union Square Shared Studio - Female Only,11822196,Melanie,Manhattan,Gramercy,40.73666,-73.98544,Shared room,49,1,76,2019-06-06,3.64,2,0 +21325259,Small Private Studio in Astoria close to Manhattan,150565606,Mayra,Queens,Ditmars Steinway,40.77824,-73.91493,Entire home/apt,70,1,64,2019-06-26,3.18,2,113 +22328089,*BEAUTIFUL BEDROOM**SUBWAY CLOSE!!,156259857,Joao,Brooklyn,Bushwick,40.68116,-73.90502,Private room,49,1,26,2019-05-31,1.41,3,115 +26874714,Private Room: Rockaway Beach House-Near JFK&Subway,202131439,Paul,Queens,Rockaway Beach,40.58937,-73.81326999999999,Private room,49,1,15,2019-06-02,1.33,1,345 +27596342,Rainbow Guesthouse 1-1 Female room,124399442,Igor,Brooklyn,Midwood,40.61241,-73.95939,Shared room,32,7,0,,,4,21 +33405850,Private 1st Floor with all amenities. Not shared,220125576,Yogi,Queens,Ozone Park,40.68042,-73.85515,Entire home/apt,70,3,1,2019-04-01,0.3,3,53 +27364236,Modern Apartment in Williamsburg w/ backyard!,9880191,Patty,Brooklyn,Williamsburg,40.714490000000005,-73.94195,Entire home/apt,250,2,3,2019-01-01,0.32,2,0 +5651523,Modern + Spacious 1 bd w/ the works,9680175,Becca,Manhattan,East Harlem,40.79331,-73.9408,Entire home/apt,160,2,57,2019-07-07,1.11,1,129 +30903214,Home Away From Home,229306781,Terrioma,Brooklyn,Crown Heights,40.67428,-73.91986,Private room,70,1,2,2018-12-28,0.3,1,73 +7401048,Big Cozy Room 2 Blocks From Trains,10832128,Josh,Brooklyn,Sunset Park,40.644,-74.01092,Private room,47,3,2,2015-11-02,0.04,1,0 +21961462,Luxury 1B1B Apt with City View @ Columbia U,56067189,Yuanwen,Manhattan,Morningside Heights,40.80485,-73.96345,Entire home/apt,150,3,1,2017-12-14,0.05,1,0 +13493430,"Fully Furnished, sunny 2BR 1BA Summer sublet!",3341869,Erez,Brooklyn,Kensington,40.64328,-73.97506,Entire home/apt,85,7,1,2016-08-14,0.03,1,0 +11901938,1st Floor Apt in Heart of Brooklyn,3752523,Ari,Brooklyn,Crown Heights,40.66952,-73.94287,Entire home/apt,168,2,63,2019-06-07,1.66,2,344 +14714894,Perfect master bedroom in Brooklyn garden duplex,3103656,Laurel,Brooklyn,Bushwick,40.69174,-73.91141,Private room,99,3,3,2018-07-25,0.16,2,332 +24392320,Christmas Week ONLY! Spacious Sunnyside 2 Bdrm Apt,19847523,Mayra,Queens,Sunnyside,40.74686,-73.91283,Entire home/apt,100,2,0,,,1,0 +34752945,Comfortable Bushwick bedroom,262091506,Christian,Brooklyn,Bushwick,40.68569,-73.90857,Private room,50,3,2,2019-07-04,2.0,1,97 +33495663,luxury apartment near wall street,121431667,Ellen,Manhattan,Financial District,40.704640000000005,-74.0164,Entire home/apt,134,15,1,2019-06-23,1.0,1,2 +22495520,❤️ Furnished One Bedroom with Terrace!! ★★★★★,15740291,Mark,Manhattan,Midtown,40.75388,-73.96727,Entire home/apt,125,2,109,2019-06-25,5.95,1,53 +4746171,Modern 2BR Apartment in Heart of East Village,24450948,Peter,Manhattan,East Village,40.726490000000005,-73.98284,Entire home/apt,250,2,11,2017-01-01,0.2,1,0 +18442569,"Artsy, bright and cozy 1 BR. 20 min to city.",6198836,Dima,Brooklyn,Bushwick,40.70159,-73.92115,Entire home/apt,93,30,1,2017-06-24,0.04,1,45 +28732998,Quintessential Tribeca Loft,3612407,Mag,Manhattan,Tribeca,40.7172,-74.00675,Entire home/apt,295,3,3,2018-12-08,0.33,1,17 +27436322,King Sized Room; Bay Ridge,84155085,Ridhima,Brooklyn,Bay Ridge,40.63145,-74.02375,Private room,50,2,1,2018-08-27,0.09,1,0 +35545082,"Subway 1 min , Manhattan 10 min. Modern & Cozy",253571094,Jesus,Queens,Astoria,40.75809,-73.91271,Private room,50,2,3,2019-07-01,3.0,2,330 +31895547,Private room and bath 10 minutes to Manhattan,15437944,Chelsea,Brooklyn,Williamsburg,40.70703,-73.95396,Private room,100,2,0,,,1,0 +27700747,Beach-side basement media room,145245549,Dawid,Staten Island,New Dorp Beach,40.56629,-74.10331,Private room,36,2,18,2019-06-07,1.67,1,178 +1492286,West Village/SoHo Prvt Rm,7977178,Abby,Manhattan,SoHo,40.72822,-74.00429,Private room,80,3,51,2019-04-26,0.79,3,276 +23876355,Clean an comfortable apartment,16597520,Eliana,Queens,Astoria,40.76641,-73.9193,Private room,60,3,6,2019-04-11,0.42,1,156 +36177135,Historic Rockaway Beach Bungalow-By Subway & Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.58818,-73.81302,Entire home/apt,139,1,1,2019-07-05,1.0,4,171 +23820164,The Spark Spot,3654624,Jasmaine,Brooklyn,Bedford-Stuyvesant,40.680890000000005,-73.91112,Entire home/apt,85,5,28,2019-06-25,2.28,1,32 +33971900,Bright&staylish room 15min from LaGuardia&20minJFK,253467179,Daniel,Queens,Forest Hills,40.73105,-73.85318000000001,Private room,70,2,6,2019-07-02,2.86,1,288 +8014087,Prime location Chelsea/Flatiron RM,38857566,Gabi,Manhattan,Chelsea,40.74042,-73.99714,Private room,100,1,2,2018-01-01,0.04,1,0 +29670957,Huge 450ft Master Bedroom in Spectacular Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72197,-74.00401,Private room,200,3,0,,,3,0 +13223445,UWS Room May 30 - June 8,51756175,Khalil,Manhattan,Upper West Side,40.77282,-73.9808,Private room,115,10,1,2016-06-09,0.03,1,0 +21666331,Little Gem in Brooklyn,157701601,Karen,Brooklyn,Williamsburg,40.70737,-73.93961,Entire home/apt,125,4,2,2018-08-09,0.11,1,0 +239766,Lower East Side/Chinatown 1 Bedroom,1257309,Austin,Manhattan,Lower East Side,40.71693,-73.98948,Entire home/apt,100,5,8,2018-05-18,0.11,1,0 +16405126,Artists Bright Eclectic Home & Studio,50097540,Ana Cristina,Brooklyn,Williamsburg,40.70735,-73.94032,Entire home/apt,114,4,41,2019-02-22,1.44,1,0 +36276943,Brand New & Cozy Private Bedroom w/ Full Bed !!,272838881,Isabella,Brooklyn,Bushwick,40.69027,-73.91376,Private room,60,2,0,,,1,74 +6807281,Bright spacious 1BR on the park,35634594,Eden,Brooklyn,Prospect-Lefferts Gardens,40.66233,-73.9615,Entire home/apt,130,7,1,2015-08-14,0.02,1,0 +30315829,"Cozy Studio Apartment in Greenpoint, Brooklyn",42661839,Justin,Brooklyn,Greenpoint,40.73468,-73.95418000000001,Entire home/apt,149,5,2,2019-06-15,0.32,1,0 +23541451,Spacious Private Apartment near JFK!!,5047156,Jay,Brooklyn,East New York,40.66072,-73.87638000000001,Entire home/apt,75,6,30,2019-06-28,1.84,1,0 +34063075,"Spacious Bedroom in Washington Heights, Manhattan",257221104,Clark,Manhattan,Washington Heights,40.83466,-73.94029,Private room,60,3,5,2019-06-21,2.42,1,93 +17479736,Cozy Room in Manhattan,52129673,Christina,Manhattan,Harlem,40.82827,-73.94785,Private room,50,1,17,2018-10-08,1.11,1,0 +32635385,Bright and Sunny Room in Brand New Apt,6790993,Andrea,Brooklyn,Bedford-Stuyvesant,40.68908,-73.9522,Private room,93,1,0,,,1,77 +9730784,Private Space in Lower East Side,1038645,Kim,Manhattan,Lower East Side,40.72133,-73.9877,Private room,140,1,5,2018-05-15,0.12,1,0 +35865788,Brand new 1Bedroom apartment with private terrace,81957246,Kasper,Queens,Long Island City,40.75041,-73.93760999999999,Entire home/apt,175,7,1,2019-06-23,1.0,1,17 +14180715,"Cozy, Brooklyn Beauty. Great for a nice holiday!",84339401,Mara,Brooklyn,Bedford-Stuyvesant,40.6866,-73.94583,Entire home/apt,131,2,27,2019-06-24,0.76,2,96 +20171179,"House of Rain +(Because I’m a pluviophile)",141141822,Tiffany,Manhattan,Harlem,40.81078,-73.94481999999999,Private room,63,3,50,2019-06-30,3.01,1,315 +33488188,Private Room in Light-Filled Loft,2093557,Sarah,Brooklyn,Bushwick,40.70149,-73.92752,Private room,80,1,4,2019-06-07,1.79,2,22 +32897839,THE STUDIO LODGE BROOKLYN,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68224,-73.92097,Private room,60,3,4,2019-07-06,2.22,2,316 +840103,"Charming, huge BR, nr Prospect Park",164534,Holly,Brooklyn,Prospect Heights,40.680620000000005,-73.97041999999999,Private room,80,2,24,2015-08-31,0.33,1,0 +3826908,"Home, Sweet Home!",19691070,Haim,Queens,Long Island City,40.74622,-73.94277,Private room,79,1,39,2019-07-06,0.83,1,297 +22265411,Prime Upper East 2BR~Best Value,162280872,Izi,Manhattan,Upper East Side,40.77383,-73.94903000000001,Entire home/apt,150,60,5,2018-09-30,0.31,13,155 +33804180,Cozy farmhouse in NYC. 2 bdrms; 2 full baths. WiFi,163169045,Janice,Staten Island,Prince's Bay,40.52293,-74.21238000000001,Entire home/apt,85,2,8,2019-06-24,3.33,1,66 +9844482,Garden apartment oasis.,9523962,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95352,Entire home/apt,125,9,10,2016-08-24,0.24,1,0 +28867880,Convenient stay,217648807,Tyeesha,Bronx,Morris Heights,40.85324,-73.92143,Private room,240,1,0,,,1,363 +21236661,Beautiful 1BR Home in Heart of South Harlem,1522036,Stephen,Manhattan,East Harlem,40.80101,-73.9439,Entire home/apt,125,4,1,2018-01-02,0.05,1,0 +9451784,Trendy Williamsburg Apartment!,22953164,Caroline,Brooklyn,Williamsburg,40.71028,-73.95445,Private room,80,2,4,2016-09-05,0.09,1,0 +26387184,Cozy apartment in the heart of South Harlem,24378438,Jen,Manhattan,Harlem,40.80718,-73.94906999999999,Entire home/apt,80,2,3,2019-01-07,0.38,1,1 +13432348,River Views! - Lux 1BR Apt near Midtown,30283594,Kara,Manhattan,Hell's Kitchen,40.76108,-73.99812,Entire home/apt,239,30,1,2018-01-13,0.06,121,357 +32466398,Sonder | The Nash | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74864,-73.97407,Entire home/apt,169,29,1,2019-05-08,0.48,327,220 +10450820,Beautiful bright huge pre-war in Williamsburg,1918272,Seva,Brooklyn,Williamsburg,40.71419,-73.94368,Entire home/apt,160,5,1,2019-01-01,0.16,1,305 +3172778,PRIME WILLIAMSBURG FAMILY ART LOFT,16109802,Daphna,Brooklyn,Williamsburg,40.71262,-73.95676,Entire home/apt,170,7,20,2019-06-30,0.33,1,44 +18616809,Sunny 2BR Prime Williamsburg with backyard,89331516,Louiza,Brooklyn,Williamsburg,40.71591,-73.96039,Entire home/apt,169,5,1,2017-06-07,0.04,3,0 +13018811,Private clean room in Manhattan,71865037,Elinor,Manhattan,Harlem,40.82032,-73.94457,Private room,49,3,0,,,1,0 +31692426,Charming 2 Bedroom Brownstone Apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68525,-73.99837,Entire home/apt,200,2,4,2019-07-07,1.38,2,22 +16161688,Big Room in Cool Williamsburg Loft - Long Stays,415660,Carmen,Brooklyn,Williamsburg,40.71332,-73.96585,Private room,85,6,7,2019-05-27,0.23,2,19 +30467785,Private Chic Midtown 1 BD Apt Theater District,40245658,Alexa,Manhattan,Hell's Kitchen,40.76326,-73.99018000000001,Entire home/apt,264,2,8,2019-07-01,1.28,3,2 +2061367,"Room on Upper West Side, Manhattan",10550207,Brooke,Manhattan,Upper West Side,40.77895,-73.97837,Private room,100,2,0,,,1,0 +1491991,Charming Brwnstn Duplex sleeps 5,7959444,Molly,Brooklyn,Park Slope,40.6747,-73.97946999999999,Entire home/apt,190,3,17,2018-10-22,0.28,1,167 +20758205,"Peaceful, Spacious and Comfy 3BR Oasis!",94404356,Jonathan,Brooklyn,Williamsburg,40.71972,-73.94337,Entire home/apt,250,3,3,2018-01-01,0.14,2,0 +35420482,"Chic, modern Studio with balcony access",17349726,Gillian,Brooklyn,Bushwick,40.69424,-73.92652,Entire home/apt,89,1,8,2019-07-03,7.5,1,88 +2165933,Furnished one bedroom in Midtown West.,11051885,Gregory,Manhattan,Theater District,40.76252,-73.98376,Entire home/apt,200,30,2,2017-12-06,0.05,1,339 +35186244,Relax in our Modern & Cozily renovated Urban Oasis,227818501,Jenna,Bronx,Williamsbridge,40.87846,-73.86310999999999,Entire home/apt,140,2,4,2019-07-02,4.0,2,358 +31038331,Splendid Midtown Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.75146,-73.99,Entire home/apt,215,30,0,,,232,2 +19996830,Large sunny room near park & trains,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.95894,Private room,33,10,3,2019-06-11,0.13,2,63 +34198108,Time Square South - Sunny Lux Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75029,-73.99492,Private room,129,1,3,2019-06-23,1.48,20,358 +9473889,"CHARMING, QUIET ONE BEDROOM APT W/ BACK YARD",49101398,Nicholas,Brooklyn,Gravesend,40.59592,-73.97523000000001,Entire home/apt,85,30,9,2019-06-02,0.21,3,216 +30648855,Midtown East 52&2 ! Big One Bedroom King bed! 5247,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.75916,-73.96023000000001,Entire home/apt,293,30,0,,,96,292 +6041875,Harlem 2bdr apt,30354475,Pepper,Manhattan,East Harlem,40.8124,-73.9347,Entire home/apt,150,2,0,,,1,0 +1620225,Charming studio in Williamsburg,8619862,Karlee,Brooklyn,Williamsburg,40.70863,-73.95543,Entire home/apt,150,3,1,2016-07-18,0.03,1,0 +29161516,Cozy Private Room in Brooklyn,51699123,Bo,Brooklyn,Bushwick,40.69854,-73.91086,Private room,70,2,29,2019-06-24,4.73,2,121 +30881484,Modern Room in Brooklyn,73618889,Alex,Brooklyn,Bushwick,40.70069,-73.9384,Private room,65,1,14,2019-06-16,6.67,1,44 +27613128,Shared room with bunk beds in Bensonhurst,208367810,Dan,Brooklyn,Gravesend,40.60059,-73.98818,Shared room,35,3,2,2019-04-03,0.32,4,50 +31441434,Huge family 2 bedroom in Ideal Upper Manhattan,136081476,Rebecca,Manhattan,Harlem,40.8087,-73.94157,Entire home/apt,150,2,17,2019-06-16,3.31,1,19 +23741795,"Cozy, Eclectic Brooklyn Getaway",75469247,Chiara,Brooklyn,Crown Heights,40.67774,-73.95742,Entire home/apt,105,1,39,2019-06-24,2.44,1,38 +29906282,Full apt for 6 in a conveniently located area,67480949,Dawa & Phurpa,Queens,Jackson Heights,40.75478,-73.88786,Entire home/apt,105,1,28,2019-06-28,3.85,1,113 +17750238,Great room in a spacious Inwood Apartment,13860679,Max,Manhattan,Inwood,40.86348,-73.92232,Private room,99,3,4,2018-10-03,0.15,3,179 +1847434,Beautiful warm duplex apartment,9632747,Mick,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95473,Entire home/apt,150,7,108,2019-06-17,1.72,2,359 +2135489,Charming Studio in Brooklyn,8624212,Leon,Brooklyn,Carroll Gardens,40.68362,-73.99714,Entire home/apt,170,2,131,2019-06-16,2.02,1,26 +281521,Amazing West Village 2br,70614,Vimal,Manhattan,West Village,40.73879,-74.00425,Entire home/apt,200,27,1,2012-10-02,0.01,1,0 +21268535,Bright Uptown 1 Bed Apt next to 168th Subway A/1,31120110,Maritza,Manhattan,Washington Heights,40.84195,-73.9359,Entire home/apt,95,5,3,2017-12-22,0.15,1,0 +26472079,Cozy studio at UWS near Columbia university,274910,Yooin,Manhattan,Morningside Heights,40.80998,-73.95756,Entire home/apt,90,1,25,2019-06-25,2.07,1,0 +21504381,"20 minutes from Manhattan,separated big bedroom.",155977656,Hongyan,Queens,Forest Hills,40.71711,-73.8347,Private room,70,1,34,2019-06-24,1.67,1,93 +22261208,Spacious and sunny 2BDR Apt in Queens w/ balcony,405986,Sylvain,Queens,Rego Park,40.732690000000005,-73.8584,Entire home/apt,81,4,6,2018-09-23,0.32,1,6 +26978310,Sunny Brooklyn House: Steps from the train!,12960612,Lilia,Brooklyn,Bushwick,40.6984,-73.92766999999999,Entire home/apt,275,2,0,,,1,0 +19569016,Upper East Side Studio,73848909,Yassir,Manhattan,Upper East Side,40.7662,-73.9574,Entire home/apt,100,3,2,2018-09-14,0.15,1,0 +18823971,Gorgeous 1 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77299,-73.95745,Entire home/apt,119,30,3,2018-11-19,0.14,29,327 +30158357,Room in Bushwick Apartment,50755816,Tali,Brooklyn,Bushwick,40.69631,-73.92944,Private room,37,1,2,2019-02-18,0.34,1,0 +33901005,"Sunny, Spacious, Cozy, Charming Brooklyn Abode",192752,Danielle,Brooklyn,Park Slope,40.675990000000006,-73.97664,Entire home/apt,145,5,0,,,1,38 +14824875,Beautiful two bedroom apartment with backyard,68082479,Sunshine,Brooklyn,East New York,40.6735,-73.89635,Entire home/apt,135,30,108,2019-06-20,3.12,2,206 +22225158,COLUMBUS CIRCLE LUXURY - STUNNING RIVER VIEW,13773574,Cecile,Manhattan,Midtown,40.76563,-73.98241999999999,Entire home/apt,225,30,0,,,12,340 +7114665,Large room,34866720,Louis,Queens,Ridgewood,40.70866,-73.90578000000001,Private room,69,1,0,,,1,0 +30268281,Sunny Lofted space with private bath,18576070,Lauren,Brooklyn,Bushwick,40.69576,-73.93254,Private room,150,30,2,2018-12-29,0.27,1,143 +2925397,Quaint room in artist's apartment.,8520430,Jess,Brooklyn,South Slope,40.66449,-73.99047,Private room,63,4,65,2019-01-02,1.34,1,290 +33823598,LOVELY 1 BED ROOM 10 MIN FR JFK WITH PRIVATE PORCH,29349060,Ode,Queens,St. Albans,40.68687,-73.76809,Private room,67,1,12,2019-07-06,4.74,3,365 +32358099,sweet room to relax,236659049,Yesenia,Brooklyn,Bushwick,40.69169,-73.90429,Private room,40,1,3,2019-04-20,0.69,4,0 +29432994,Brownstone w/Terrace-Close to Rockefeller Tree,1343352,Marisa,Manhattan,Upper West Side,40.7764,-73.98144,Entire home/apt,220,2,1,2018-11-18,0.13,1,0 +6812924,Charming 1BD- 10 min to Manhattan & Central Park,19109608,Elle,Queens,Astoria,40.76219,-73.91963,Entire home/apt,135,1,229,2019-06-16,4.65,3,89 +18286232,NEW PENTHOUSE W/ HUGE PRIVATE ROOFTOP EAST VILLAGE,18167404,Andy,Manhattan,East Village,40.7242,-73.97776999999999,Private room,150,1,0,,,1,0 +313890,2ND AVENUE OFF HOUSTON/LOFTLIKE STU,1613244,Ariel,Manhattan,Lower East Side,40.72209,-73.99274,Entire home/apt,99,30,13,2019-04-23,0.34,9,289 +7949344,Large Chill and Vibes 1 Bedroom,41919914,Austin,Brooklyn,Bushwick,40.69881,-73.93056999999999,Private room,80,1,2,2015-10-03,0.04,1,188 +19326306,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81227,-73.88871,Private room,37,30,5,2018-09-30,0.37,6,329 +4183801,"Colorful apt, 25 mins to Manhattan",21706654,Katerina,Brooklyn,Bedford-Stuyvesant,40.684540000000005,-73.93178,Entire home/apt,120,30,131,2019-01-07,2.29,1,336 +26520216,Beautiful 1 bedroom in South Midtown Manhattan,11541034,William,Manhattan,Midtown,40.7523,-73.99024,Entire home/apt,210,5,7,2019-01-03,0.63,1,0 +32541475,"Pied-a-Terre in NYC - Nomad, Midtown",97172649,Gigi,Manhattan,Murray Hill,40.74974,-73.98094,Private room,200,5,0,,,1,263 +44161,Light+Open+Airy+Rustic+Modern Loft,193360,Young,Brooklyn,Williamsburg,40.71045,-73.9677,Entire home/apt,150,2,193,2016-07-06,1.78,1,177 +21982630,One Bedroom w/ Backyard Oasis in Williamsburg,160503827,Christopher,Brooklyn,Williamsburg,40.71157,-73.94308000000001,Entire home/apt,90,3,7,2019-03-31,0.36,1,0 +29259463,SPACIOUS/FURNISHED One Bedroom Brooklyn Apartment,18917915,Sean,Brooklyn,Williamsburg,40.70296,-73.94086,Entire home/apt,90,3,7,2019-07-05,0.95,1,3 +13939924,Spectacular Views! Gorgeous 25th flr Columbus Cl,17551179,Marissa,Manhattan,Midtown,40.76618,-73.98279000000001,Entire home/apt,225,1,0,,,1,0 +13685787,Cozy room with Private porch,69977115,Jacob,Brooklyn,Bensonhurst,40.61649,-73.99043,Private room,79,2,1,2016-07-18,0.03,4,179 +34741742,Enjoy the view of Empire State Building!,260193759,Nyma,Manhattan,Midtown,40.74677,-73.9866,Private room,100,1,13,2019-07-04,11.14,5,268 +34143050,"Newly Renovated, Unbeatable Location Private Room",257773717,Lydia,Brooklyn,Williamsburg,40.710370000000005,-73.96316999999999,Private room,58,30,0,,,5,338 +1139851,The Perfect Large Chelsea Studio,5654454,Stuart,Manhattan,Chelsea,40.74057,-73.99771,Entire home/apt,90,45,11,2019-02-19,0.18,1,279 +24327950,Pleasant Residence,183548336,Aureo,Manhattan,East Harlem,40.7977,-73.93493000000001,Entire home/apt,250,3,13,2019-06-03,0.94,1,74 +23901526,Wyndham Midtown 45 (1 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75293,-73.97315,Entire home/apt,269,3,5,2019-01-01,0.38,12,0 +5831012,Spacious bedroom in Oversized Apt.,1409854,Didi,Manhattan,Upper East Side,40.77155,-73.94763,Private room,150,25,2,2018-04-24,0.04,1,110 +12711351,Cozy Private Room w/ 1 Queen Bed,65809485,Shirley,Queens,Flushing,40.74807,-73.82775,Private room,40,7,102,2019-04-29,2.73,12,105 +33827823,The Sweet Spot 2- Private Apt with a court yard,49523787,Joe,Manhattan,Harlem,40.8273,-73.94951999999999,Private room,55,2,4,2019-06-02,1.94,2,76 +36311694,A sunny and huge 1 bedroom in a big private house,272267421,Darkhan,Queens,Maspeth,40.73283,-73.8892,Private room,60,1,0,,,3,90 +2637014,Apt #2: Beautiful 2BR/1BA Crown Hgt,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67228,-73.93352,Entire home/apt,150,28,22,2019-01-05,0.38,2,207 +22745841,Large Sunny West Village Room,4690758,Rachel,Manhattan,West Village,40.73761,-73.99758,Private room,78,1,0,,,1,0 +35867138,New Cozy Studio on the UES with Gym and Pool #6127,130270076,Keren,Manhattan,East Harlem,40.78672,-73.9488,Entire home/apt,180,30,0,,,2,341 +3544273,3BR condo Brooklyn/Prospect Heights,17842194,Cathleen,Brooklyn,Crown Heights,40.67893,-73.96262,Entire home/apt,150,4,9,2017-12-31,0.15,2,0 +17731335,Private room in cozy Astoria apartment,120906593,Yoko,Queens,Astoria,40.76121,-73.92341,Private room,60,2,40,2019-06-23,1.46,1,67 +30231655,Cozy 2 bedroom apartment (15 min from Manhattan),215919088,Vincent,Brooklyn,Williamsburg,40.712,-73.95397,Entire home/apt,120,3,2,2019-05-29,0.32,1,0 +13466168,Like living in an art gallery.,12176919,Panya,Manhattan,Financial District,40.70711,-74.01437,Entire home/apt,234,2,4,2016-12-29,0.11,1,0 +7953690,L Train · 11' Windows · Rooftop,10556524,Ryan,Brooklyn,Williamsburg,40.70649,-73.92954,Private room,89,2,2,2016-06-19,0.05,2,0 +19034388,"Gorgeous, Family-Friendly, NYC Garden Apt!",706623,Emilia,Brooklyn,Bushwick,40.69441,-73.90881,Entire home/apt,119,3,12,2019-04-27,0.51,4,50 +9753443,Big Studio W/ Prive Patio +Amenity,2147475,Will,Brooklyn,Greenpoint,40.721070000000005,-73.95376,Entire home/apt,159,1,3,2017-01-02,0.1,1,0 +21754860,Sunny & Inviting 3br in the Heart of Clinton Hill,29243209,Sarah,Brooklyn,Clinton Hill,40.68712,-73.96297,Entire home/apt,200,2,0,,,2,0 +2451647,"Bright, Modern Room in East Village!",64442,Reka,Manhattan,East Village,40.72598,-73.97778000000001,Private room,84,1,184,2019-07-01,2.86,2,59 +1241905,Bedroom in big sunny loft (& roof!),2873394,Aurora,Brooklyn,Bushwick,40.69822,-73.93517,Private room,60,2,11,2019-06-04,0.15,2,296 +3302932,Whole beautiful house with Backyard,2082345,Rabah,Queens,Woodhaven,40.69165,-73.84841,Entire home/apt,250,5,0,,,1,32 +18699576,1BR in the Heart of Williamsburg,14885787,Monica,Brooklyn,Williamsburg,40.71869,-73.95358,Entire home/apt,150,2,2,2017-07-23,0.08,1,0 +34975935,Brooklyn Escape,3472623,Melissa,Brooklyn,Prospect Heights,40.678340000000006,-73.96598,Entire home/apt,175,2,8,2019-06-23,5.45,1,3 +8250280,Zee's Brooklyn nest,9775058,Nazifa,Brooklyn,Kensington,40.64125,-73.9763,Private room,70,2,7,2019-07-03,2.63,1,37 +29409370,Cozy 1BR with private bathroom near the subway,73222575,Tania,Queens,Ditmars Steinway,40.77888,-73.90827,Private room,95,2,6,2019-06-10,1.41,1,12 +16179862,Clean and Comfy Private Bedroom,95766078,Alex,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95101,Private room,75,1,0,,,2,0 +30402045,Large private room in 2nd floor apartment.,171673961,Eric,Brooklyn,Bedford-Stuyvesant,40.67896,-73.90892,Private room,25,2,2,2019-01-01,0.3,1,0 +22192407,Heart of Manhattan. Just renovated home!,85854200,Steph,Manhattan,Theater District,40.76109,-73.98261,Entire home/apt,200,4,75,2019-06-20,4.36,1,59 +9926917,Large Private Bedroom,51027744,Hamid,Brooklyn,Crown Heights,40.67621,-73.94913000000001,Private room,99,1,4,2017-04-15,0.12,1,342 +26080646,Entire West Village Apartment,196017028,Franklin,Manhattan,Greenwich Village,40.72848,-74.0012,Entire home/apt,200,4,18,2019-07-01,1.42,1,5 +24251311,Beautiful 1 BR Apt in the Heart of West Village!,41361010,Zack,Manhattan,West Village,40.73333,-74.0052,Entire home/apt,300,2,8,2019-05-20,0.81,1,199 +30295881,Cozy Chinatown Apartment,31358380,Keith,Manhattan,Chinatown,40.717,-73.99717,Private room,100,3,1,2018-11-26,0.13,1,88 +25287115,COMFORTABLE PRIVATE CLEAN ROOM FULLY FURNISHED,175368807,Lamesha,Bronx,Williamsbridge,40.87579,-73.86532,Private room,33,3,1,2018-07-28,0.09,1,365 +6249740,"Brooklyn Brownstone, 3-Bdr & Garden",6493905,Christine,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95402,Entire home/apt,199,3,10,2018-11-24,0.2,1,0 +33709466,Sonder | Stock Exchange | Restful Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01059000000001,Entire home/apt,214,2,1,2019-06-09,1.0,327,319 +6913431,Garden Level Nest in Brooklyn,36229779,Juliana,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95767,Entire home/apt,105,1,9,2015-08-09,0.18,1,0 +29117643,Cultured NYC 2.0,165607672,Mariela,Bronx,Fordham,40.85765,-73.90351,Private room,48,2,18,2019-04-13,2.0,2,34 +35266422,Lovely Room with Deck Window Near Pratt,43902262,Victoria,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93876999999999,Private room,65,3,0,,,1,68 +29338760,Williamsburg apartment with amazing views,9399583,Marco,Brooklyn,Williamsburg,40.71047,-73.96795999999999,Entire home/apt,160,10,0,,,1,34 +7473909,Beautiful Room in Central Brooklyn House,14291580,Ben,Brooklyn,Park Slope,40.68049,-73.97662,Private room,65,8,7,2018-09-02,0.15,1,11 +18738138,Huge room with private bathroom in East Harlem!,68762417,Simon,Manhattan,East Harlem,40.79376,-73.94679000000001,Private room,125,1,19,2019-06-21,0.73,4,115 +31153254,TOURISTS DREAM - Room steps from Grand Central,50241946,Ana,Manhattan,Midtown,40.75017,-73.97241,Private room,250,2,20,2019-06-23,3.17,1,1 +6528046,Immaculate Gramercy One-Bedroom,34142649,Joseph,Manhattan,Gramercy,40.73742,-73.98052,Entire home/apt,249,2,0,,,1,0 +1895457,Greenpoint Studio w/ 2 cats,9848620,Kevin,Brooklyn,Greenpoint,40.72587,-73.94122,Entire home/apt,70,5,2,2016-08-23,0.06,1,26 +3543227,Private Suite 15min to Times Square,3912009,Brendan,Manhattan,Harlem,40.82193,-73.94499,Private room,95,3,160,2019-07-01,2.78,2,0 +32166672,Cozy apartment close to Central Park,187849608,Florencio,Manhattan,Upper West Side,40.79097,-73.97412,Private room,180,1,3,2019-05-14,0.63,1,151 +9548422,Nice Room in Beautiful Clinton Hill,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.69002,-73.96002,Private room,45,12,2,2016-05-04,0.05,3,281 +22616692,Large Master Bedroom- Ridgewood,106394077,Patricia,Queens,Ridgewood,40.70865,-73.91088,Private room,65,3,0,,,1,0 +14445183,Family Friendly Stay in Brooklyn,88945872,Andria,Brooklyn,East Flatbush,40.6468,-73.9508,Entire home/apt,100,5,83,2019-06-30,2.5,1,31 +2863408,Newly Renovated Modern 1-Bed Studio,13347167,AFI Apartments,Manhattan,Upper East Side,40.77233,-73.95626999999999,Entire home/apt,103,30,3,2018-04-07,0.06,29,336 +22481840,"MODERN & SPACIOUS PAD! +5MINS TO L/J,M/A,C TRAINS",162572530,Carmen,Brooklyn,Bushwick,40.68328,-73.90783,Entire home/apt,28,2,13,2018-06-11,0.72,1,0 +20849101,NYC private room in Private house|Mt Vernon area,149618690,Tunzil,Bronx,Wakefield,40.90356,-73.84172,Private room,59,1,11,2019-06-10,0.5,1,35 +35337525,Charming One Bedroom in Central Williamsburg,18826598,Holly,Brooklyn,Williamsburg,40.71413,-73.96075,Entire home/apt,121,3,7,2019-07-06,6.0,1,6 +4809337,Cozy 1BD close to Prospect Park,24770709,Sakina,Brooklyn,Crown Heights,40.67033,-73.95262,Private room,50,1,0,,,1,0 +34578233,Peaceful Apartment in Lefferts Gardens,158123420,Jane,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.95679,Private room,250,5,0,,,1,23 +3953415,LL2,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85349000000001,Private room,75,2,0,,,7,349 +35656689,Jackson Heights stay near everything,133130957,Meya,Queens,Elmhurst,40.745090000000005,-73.88492,Entire home/apt,120,1,1,2019-06-25,1.0,1,331 +26255895,Furnished room w/ AC in Crown Heights/Clinton Hill,9478555,Alex,Brooklyn,Crown Heights,40.67911,-73.96011999999999,Private room,35,2,2,2018-07-05,0.16,1,0 +16242765,1 Bedroom w. private bath 15min to Central Park.,104177785,Carolina,Queens,Jackson Heights,40.75418,-73.88586,Private room,250,2,14,2017-09-10,0.51,1,1 +6784669,Charming one bedroom Upper East,29509026,Melissa,Manhattan,Upper East Side,40.76644,-73.95803000000001,Entire home/apt,130,1,6,2016-06-01,0.13,1,0 +8470281,Cozy room in the city,31469635,Ricky,Manhattan,Harlem,40.82497,-73.94595,Private room,60,1,1,2019-01-01,0.16,2,363 +21966880,SunBathed WestVillage/Greenwich 1 bed apt,160374143,Jane,Manhattan,West Village,40.7349,-74.00618,Entire home/apt,245,2,42,2019-06-16,2.27,1,141 +8160542,Private Balcony and views of WTC!,43075550,Leyla,Manhattan,Tribeca,40.72018,-74.00981,Private room,100,1,18,2019-06-22,0.38,1,31 +2255549,New Studio in Heart of Chelsea,735701,Charles,Manhattan,Chelsea,40.7444,-73.9994,Entire home/apt,221,2,252,2019-07-06,4.91,1,256 +33981416,One bedroom in Chelsea,12321281,Calypso,Manhattan,Chelsea,40.74483,-73.99649000000001,Private room,110,30,0,,,1,145 +24305977,"The Sailors Perch Room in Private Home, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.88068,-73.90012,Private room,79,3,55,2019-06-20,3.68,4,63 +14139170,Comfortable room in a Bushwick duplex with patio,1252743,Dory,Brooklyn,Bushwick,40.70175,-73.91525,Private room,45,1,9,2018-03-20,0.45,1,0 +21383712,NYC Forest,50760404,Jenifer,Brooklyn,Crown Heights,40.67318,-73.92321,Private room,80,1,98,2019-06-30,4.75,2,0 +20299,Oh glorious spring!,62407,Edward,Manhattan,East Village,40.72334,-73.9844,Private room,60,3,194,2019-06-30,1.73,1,26 +31413351,"Private entrance, own bathroom, comfy & sunshine",33614329,Walter,Brooklyn,Bushwick,40.69684,-73.9307,Entire home/apt,85,1,36,2019-07-03,6.1,4,210 +9026203,Subway-Ocean-Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.58892,-73.97379000000001,Private room,70,3,67,2018-10-07,1.53,2,40 +22076192,Bed-Stuy modern private room near Williamsburg,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69294,-73.9398,Private room,50,30,3,2018-06-02,0.17,10,364 +33112368,Ysa's room,249243301,Ysa,Bronx,Mount Hope,40.8477,-73.90988,Private room,24,2,2,2019-05-01,0.68,1,0 +30968359,Humble abode near Prospect Park,30770117,Chrystin,Brooklyn,Flatbush,40.651140000000005,-73.96333,Entire home/apt,160,3,0,,,1,0 +36100744,Penthouse with Skyline View & Terrace,52115380,Erika,Queens,Glendale,40.69784,-73.89426999999999,Entire home/apt,125,7,0,,,1,39 +4132116,Beautiful house top floor 1-3 large bedrooms,15908653,Gil,Brooklyn,Flatbush,40.63268,-73.96059,Private room,120,2,114,2019-04-07,1.96,2,312 +7902291,"Large room, rooftop, queen bed",41667978,Doreen,Manhattan,Lower East Side,40.714490000000005,-73.987,Private room,70,2,1,2015-09-05,0.02,1,0 +28907,Garden studio in the Upper East Sid,124352,Lisa,Manhattan,Upper East Side,40.778,-73.94821999999999,Entire home/apt,150,5,21,2017-08-15,0.19,1,189 +18472524,SUNNY PLACE in Sunnyside,78272395,Vadim,Queens,Sunnyside,40.736740000000005,-73.9136,Private room,70,3,8,2017-06-18,0.3,1,0 +165824,Lady only Curtain-divided room,733894,Lucy,Queens,Sunnyside,40.74,-73.91901,Private room,33,44,31,2019-05-01,0.32,3,161 +36351333,Stunning Luxury Loft in NYC's Best Neighborhood,12268556,Carlos,Manhattan,Tribeca,40.71877,-74.0026,Entire home/apt,349,3,0,,,1,11 +19853102,Fanta Sea Home,131777975,Jewell,Brooklyn,Brownsville,40.66293,-73.91729000000001,Private room,90,4,4,2019-01-01,0.2,3,89 +1856027,"Hip, Brick East Village Apartment",267955,Peter,Manhattan,East Village,40.72485,-73.98349,Private room,95,3,97,2019-06-24,1.45,1,11 +575061,Your own floor (private) in prime Williamsburg!!,2828813,Katherine,Brooklyn,Williamsburg,40.71603,-73.95665,Private room,120,2,143,2019-06-30,4.14,1,102 +21622153,2 BR/1 Ba Apartment Hamilton Heights,157296660,Jake,Manhattan,Harlem,40.82604,-73.94998000000001,Private room,60,15,18,2018-06-20,0.89,1,0 +31014013,Spacious & Sunny Bedroom in Bedstuy,53243644,Omri,Brooklyn,Bedford-Stuyvesant,40.69255,-73.93915,Private room,45,1,6,2019-01-20,0.97,2,3 +33559960,Center of the Universe Stay,193488,Jane,Manhattan,East Village,40.73361,-73.98995,Private room,135,1,0,,,2,177 +3674757,Cozy Vintage Artist Flat(Williamsburg/Bushwick),2702080,Drew & Kristen,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94714,Private room,77,2,145,2019-06-02,2.42,1,365 +17635051,BEST VALUE! SUPER COSY APARTMENT,16261195,Martine,Manhattan,Upper East Side,40.776990000000005,-73.95193,Private room,80,9,3,2017-09-20,0.11,1,0 +850198,"UES 1 br, 2 blocks from the Met ",4439578,Zs,Manhattan,Upper East Side,40.77815,-73.95902,Entire home/apt,195,31,8,2013-06-28,0.1,1,273 +18214015,Quiet Private Bedroom in the heart of Little Italy,41874064,Sheba,Manhattan,Little Italy,40.71836,-73.99776999999999,Private room,90,1,106,2019-07-02,4.29,2,9 +30551807,Bedford Ave Apartment,229229020,Alexandra,Brooklyn,Greenpoint,40.72109,-73.95403,Entire home/apt,115,7,3,2019-03-23,0.48,1,11 +20827801,The ocean view room size 12x14,145878384,Denise,Brooklyn,Crown Heights,40.67139,-73.93131,Private room,70,5,11,2019-01-01,0.6,7,278 +9113702,"Beautiful Apartment in Harlem, NY!",47493116,Elsa,Manhattan,Harlem,40.8243,-73.94258,Entire home/apt,150,1,0,,,1,0 +14183466,COMFORTABLE BEDROOM GREAT LOCATION,85938655,Carlos,Manhattan,Hell's Kitchen,40.76439,-73.98943,Private room,120,3,53,2019-06-30,1.53,2,197 +34156161,Chelsea Luxury & Cozy 2 Bedroom Apartment,257671905,Evelyn,Manhattan,Chelsea,40.74301,-73.9937,Entire home/apt,249,1,8,2019-06-22,4.8,1,131 +27773847,Perfect NYC Hell’s Kitchen Duplex Apartment!,129263359,Ashley,Manhattan,Hell's Kitchen,40.76398,-73.99087,Entire home/apt,250,2,1,2019-04-21,0.38,1,9 +35462273,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.97498,Private room,48,30,0,,,25,189 +5434197,Convenient Room Near Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.81663,-73.95315,Private room,55,2,71,2016-12-15,1.34,3,0 +32533738,Suite Donna Dina - free Street Parking+wifi,219738858,Joe,Manhattan,East Village,40.72956,-73.98113000000001,Entire home/apt,161,30,18,2019-06-21,4.22,5,204 +7340318,Private Greenpoint Studio Floor 1,6772512,Curtis,Brooklyn,Greenpoint,40.72138,-73.94709,Entire home/apt,100,3,7,2016-10-28,0.14,1,0 +30011527,Cozy Duplex Studio 1 Minute to Subway,222236294,Kieu&Jimmy,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95455,Entire home/apt,160,2,33,2019-07-03,4.65,1,246 +28046851,Bellrose Home - 15 minutes from both NYC airports,211860521,Tamara,Queens,Bellerose,40.72908,-73.72778000000001,Private room,105,3,7,2019-05-31,0.76,2,343 +2187847,Beautiful 1-Bedroom in West Village,11155956,Lauren,Manhattan,West Village,40.73818,-74.00433000000001,Entire home/apt,300,2,0,,,1,0 +34312239,Cozy Private Room - Only 25 mins to Manhattan ;),22070428,Fernando,Queens,Elmhurst,40.7442,-73.87698,Private room,55,1,1,2019-05-10,0.5,1,35 +33783249,Is a beautiful place for recharge good energy....,110907551,Maria,Manhattan,Midtown,40.74501,-73.98319000000001,Private room,150,10,0,,,2,89 +13956613,The Griffin B & B- 2 bedroom suite in Ditmas Park,24424456,Jeannine,Brooklyn,Flatbush,40.63273,-73.96385,Entire home/apt,200,2,10,2019-07-01,0.91,1,167 +21263179,"Full apartment in heart of Red Hook, Brooklyn",20408271,Francois,Brooklyn,Red Hook,40.67503,-74.01505,Entire home/apt,150,1,2,2018-01-22,0.11,2,0 +20983663,Brooklyn's Cozy Jewel II,117507630,Faith,Brooklyn,Crown Heights,40.67171,-73.93273,Entire home/apt,149,5,35,2019-06-17,1.81,2,12 +29850004,NOLITA apartment w doorman,224498087,Sibel,Manhattan,Nolita,40.72361,-73.99301,Entire home/apt,130,7,0,,,1,0 +36357112,"Sunny, adorable 1BR apartment in Greenpoint",251802585,Kay,Brooklyn,Greenpoint,40.73192,-73.95839000000001,Private room,115,5,0,,,1,10 +11593365,Historic Central Chinatown Apt,10703999,Evan,Manhattan,Chinatown,40.71469,-73.9995,Entire home/apt,220,4,0,,,1,0 +2203154,Prime East Village 1 bedroom,5392354,Aviad,Manhattan,East Village,40.73087,-73.98713000000001,Entire home/apt,180,2,2,2014-09-29,0.03,1,0 +25966512,The cozy room!,62557719,Leomaris,Manhattan,Harlem,40.82961,-73.94525,Private room,45,7,11,2019-06-09,0.85,3,88 +9874710,Lux 1BR in the heart of NYC Theater district!,30283594,Kara,Manhattan,Theater District,40.76118,-73.98535,Entire home/apt,139,30,1,2017-05-17,0.04,121,306 +3461872,Private BR in 3 BR Apt - E. Harlem,5220670,Jonathon,Manhattan,East Harlem,40.80278,-73.94001,Private room,75,1,3,2015-10-04,0.05,1,0 +28867268,Spacious Room in well Loved East Williamsburg Home,26880156,Patrick,Brooklyn,Bushwick,40.70452,-73.92917,Private room,50,2,3,2018-11-12,0.35,1,32 +3198018,Park slope 2BR duplex with garden,738918,Birgitta,Brooklyn,Park Slope,40.67561,-73.97823000000001,Entire home/apt,300,2,85,2019-06-16,1.81,2,268 +32891080,Centrally Located Beautiful Escape,242296495,Angela,Brooklyn,East Flatbush,40.64922,-73.93301,Private room,35,1,31,2019-07-05,8.02,3,66 +26159891,Dream home + Best Location. Brooklyn Heights.,10995888,Vasilisa,Brooklyn,Brooklyn Heights,40.6901,-73.99247,Entire home/apt,208,5,5,2019-05-20,0.51,1,9 +27260962,Quiet Manhattan Bedroom - sublet/roommate,49435345,Caitlin,Manhattan,Inwood,40.86813,-73.92393,Private room,50,30,9,2018-10-15,0.81,1,57 +32745294,Packaged for one plus group (QUEEN),242631139,Glen,Brooklyn,East Flatbush,40.6472,-73.92951,Private room,100,2,4,2019-06-23,1.85,4,360 +30046737,The Rich Home:minutes to JFK & 30min to the City,225813251,Latasha,Queens,St. Albans,40.6968,-73.76592,Entire home/apt,135,1,69,2019-07-02,10.67,1,158 +11295918,"CLEAN, QUIET, COMFORTABLE APARTMENT",4671389,Samuel,Brooklyn,Prospect-Lefferts Gardens,40.66143,-73.95999,Private room,70,1,0,,,1,0 +16530772,Lovely room 20 min to Times Square & Central Park,39072326,Stephanie,Manhattan,Harlem,40.80999,-73.9415,Private room,80,2,94,2019-06-23,3.25,1,167 +36038070,✨Superb Room- 2 Queen Beds ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75255,-73.93324,Private room,149,1,0,,,8,316 +27405333,Entire 2 BD apartment in heart of lower east side,52050220,Brooke,Manhattan,Lower East Side,40.71796,-73.98445,Entire home/apt,226,1,1,2018-08-05,0.09,2,0 +2471108,Prime Brooklyn 1BR-10min to City!,12637520,Laura,Brooklyn,Boerum Hill,40.68955,-73.98885,Entire home/apt,160,7,7,2016-09-12,0.15,1,0 +26391060,Privet room and bathroom in luxurious apartment.,68074387,Emma,Manhattan,Harlem,40.81186,-73.93921999999999,Private room,125,3,6,2019-06-23,0.52,1,0 +32214783,"Sunny Lofty Sanctuary in Artsy Bushwick, Guest BR",234270791,April G,Brooklyn,Bushwick,40.69615,-73.92995,Private room,58,3,6,2019-06-18,2.02,3,94 +32933643,Spacious Studio in the UES 94th st (30 days MIN),159598333,Sol,Manhattan,Upper East Side,40.78331,-73.94646,Entire home/apt,99,30,0,,,5,332 +24475318,Wall Street Luxuriuos apartment Financial District,173369078,Tina,Manhattan,Financial District,40.70587,-74.0118,Private room,139,3,15,2019-07-07,1.01,1,338 +21643210,Cozy Serenity Room in Gowanus (Park Slope),82874717,Paola,Brooklyn,Gowanus,40.66705,-73.9927,Private room,40,5,0,,,1,0 +2154567,Cozy Brownstone Suite,9430366,Sharon And Ronn,Brooklyn,Bedford-Stuyvesant,40.68232,-73.92746,Entire home/apt,185,2,159,2019-06-30,3.2,1,348 +13429535,Sunny Williamsburg Haven,3078690,Zack,Brooklyn,Williamsburg,40.71256,-73.94785,Private room,80,5,0,,,1,0 +13358067,bright 1 bedroom by the park,7097844,Anne,Brooklyn,Greenpoint,40.72552,-73.94489,Entire home/apt,114,2,3,2018-09-11,0.08,1,0 +9380474,Private master bedroom with TV - Williamsburg,48578050,Chris,Brooklyn,Williamsburg,40.71439,-73.96256,Private room,50,7,4,2017-07-18,0.11,1,0 +19119686,Deluxe Room at Yankee Stadium- 20 mins to Midtown!,133602911,Sanyika,Bronx,Highbridge,40.829640000000005,-73.92882,Private room,60,3,17,2019-05-20,0.67,2,66 +8684886,Private Entrance Bed & Bath with Garden and Deck,45604174,Jennifer,Brooklyn,South Slope,40.668,-73.98702,Private room,120,2,125,2019-07-05,2.75,1,177 +21924203,Private room in Brownstone house,22378099,Ricardo,Brooklyn,Fort Greene,40.6857,-73.96964,Private room,52,5,0,,,1,0 +26334886,Park Slope Secret Garden,65884218,Patty,Brooklyn,Sunset Park,40.66264,-73.99174000000001,Entire home/apt,275,4,5,2019-01-01,0.46,1,12 +2551532,Charm & Beauty close to Manhattan,13063145,Vinneth,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.95558,Entire home/apt,176,3,168,2019-06-15,2.64,2,302 +2838354,"Large 1-bedroom, 2 blocks from park",8867917,Steven,Brooklyn,Prospect Heights,40.67446,-73.96324,Entire home/apt,99,17,0,,,1,0 +34542878,J & G Comfort Cove Luxurious King Room,259776956,Gladwyn,Brooklyn,Canarsie,40.63043,-73.89553000000001,Private room,130,1,0,,,5,365 +8895019,1 Bd Ap. in Hell's Kitchen Times Sq,1020828,Philipp,Manhattan,Hell's Kitchen,40.76392,-73.99514,Entire home/apt,150,1,1,2016-05-08,0.03,1,0 +10069586,Cozy room in a dynamic Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.67154,-73.94981,Private room,35,14,1,2017-01-19,0.03,2,0 +5538410,Home 4 Medical Professionals-Dwnst8,26377263,Stat,Brooklyn,East Flatbush,40.65546,-73.94619,Private room,45,30,0,,,43,361 +21148292,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77057,-73.95759,Entire home/apt,159,30,1,2017-11-12,0.05,87,344 +6786181,R&S Modern Spacious Hideaway,32722063,,Brooklyn,East Flatbush,40.64345,-73.93643,Entire home/apt,100,2,157,2019-06-19,3.18,2,342 +713891,Amazing location! 10ft from L train,3675389,Giorgia & Benjamin,Brooklyn,Williamsburg,40.715340000000005,-73.94906,Private room,85,2,146,2019-06-23,1.78,1,46 +22937095,"The Studio, lush cabin living in Brooklyn",2416281,Noemie,Brooklyn,Bedford-Stuyvesant,40.68898,-73.95835,Entire home/apt,98,3,45,2019-06-29,2.56,1,179 +20284068,Crown Heights Apartment,32905351,Meredith,Brooklyn,Crown Heights,40.67423,-73.95737,Entire home/apt,110,2,31,2019-04-25,1.36,1,4 +4108799,Gorgeous Big & Bright Greenpoint Apt,622779,Kat,Brooklyn,Greenpoint,40.72452,-73.93916,Entire home/apt,300,1,12,2018-03-30,0.32,1,362 +21822619,THE HUGH SUITES 3mins to JFK,1280731,Hugh,Queens,Springfield Gardens,40.66578,-73.77301,Entire home/apt,80,1,214,2019-06-23,10.86,1,307 +31355285,Cozy room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.73176,-73.8702,Private room,35,4,10,2019-06-29,1.99,4,11 +24614703,Charming Cozy 1 bed-room in the heart of Bed-Stuy,127956858,Betty,Brooklyn,Bedford-Stuyvesant,40.69298,-73.94188,Entire home/apt,130,3,6,2019-06-08,0.44,1,14 +24751713,"The Manhattan Club, NYC",183736521,Martha,Manhattan,Midtown,40.76592,-73.98095,Private room,125,3,1,2018-04-30,0.07,1,5 +14026862,Very Large 1 Bedroom with Large Patio,55703198,Henry,Queens,Ridgewood,40.70382,-73.90059000000001,Entire home/apt,100,4,0,,,1,362 +13452799,Small and cozy room in Williamsburg 2-Bedroom apt.,76849055,Mikalena,Brooklyn,Williamsburg,40.70885,-73.95349,Private room,50,1,3,2016-07-20,0.08,1,0 +11847204,GREAT APT w BALCONY in BEST AREA,9532490,Alexandra,Manhattan,East Village,40.73065,-73.9886,Entire home/apt,140,2,4,2019-06-09,0.1,3,0 +32969639,Sunny first floor West Village getaway,2206966,Nik,Manhattan,West Village,40.73478,-74.00015,Entire home/apt,170,2,6,2019-06-26,1.94,1,3 +25140559,BEAUTIFUL PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.76798,-73.92323,Private room,49,1,41,2019-06-17,2.96,9,322 +30663246,"Greenpoint Summer Stunner, perfect for families",229577914,James,Brooklyn,Greenpoint,40.72681,-73.95359,Entire home/apt,150,5,1,2018-12-31,0.16,1,48 +24918572,The Crown,188391102,Alliot,Brooklyn,Crown Heights,40.67442,-73.94096,Entire home/apt,295,4,7,2019-05-10,0.56,2,343 +31853354,Room with private bath and shower in boho apt,12470243,Nicolina,Brooklyn,Bushwick,40.69713,-73.93035,Private room,50,15,0,,,1,0 +19196146,Lower east side artistic oasis,133269895,E,Manhattan,Lower East Side,40.7195,-73.98519,Private room,100,5,0,,,1,0 +19330742,Sunlit Private Room & Balcony in Trendy Bushwick,4922765,Le Roux,Brooklyn,Bushwick,40.70541,-73.91878,Private room,80,299,0,,,1,0 +5028264,Charming Studio Apartment,25881276,Jordana,Manhattan,Upper West Side,40.7921,-73.97918,Entire home/apt,125,21,45,2019-05-27,0.86,2,176 +30392834,"Charming West Village Studio Oasis w/ Doorman, Gym by Blueground",107434423,Blueground,Manhattan,West Village,40.73021,-74.00379000000001,Entire home/apt,305,30,0,,,232,1 +15164526,2MinToTrainsNiceRMaimonidesLutheranIndustryCity,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65607,-74.00305999999999,Private room,60,1,25,2019-06-07,0.74,4,52 +27510869,Staten Island Apartment,113295877,Jonathan,Staten Island,Tompkinsville,40.63461,-74.08937,Private room,55,3,6,2018-10-24,0.55,3,154 +3529503,Quiet room+bath w/ separate entry.,6491377,Zaineb,Brooklyn,Bedford-Stuyvesant,40.69334,-73.94608000000001,Private room,79,4,70,2019-06-24,1.19,1,308 +228979,1BDR - Hell's Kitchen Hideaway,1190088,Tim,Manhattan,Hell's Kitchen,40.76189,-73.99,Private room,130,2,52,2018-08-14,0.55,1,303 +22978388,Sunny room in Brooklyn (20 min from Manhattan),42949529,Suri,Brooklyn,Sunset Park,40.65907,-73.99849,Private room,150,1,0,,,1,90 +27408243,"SUNNY ROOM IN BUSHWICK +QUEEN SIZE J/M/Z/L",7638718,Gil,Brooklyn,Bushwick,40.70048,-73.9295,Private room,54,7,8,2019-05-25,0.75,1,0 +26866483,Oasis III,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95145,Private room,55,30,22,2019-06-05,2.03,3,365 +17771762,"Quiet, Large, & Cozy Bedroom in Cool Bushwick Apt",9864136,Anthony,Brooklyn,Bushwick,40.68643,-73.91465,Private room,50,1,3,2017-09-30,0.13,26,342 +24065326,Bright 1 Bed w/Lrg Private Balcony in Williamsburg,16835514,Carla Isabel,Brooklyn,Williamsburg,40.71607,-73.96365,Entire home/apt,250,3,16,2019-07-03,1.05,1,41 +12445714,Sun kissed 1br Harlem (WHOLE apt),67332509,Nkem,Manhattan,Harlem,40.825790000000005,-73.94324,Entire home/apt,99,1,3,2016-05-29,0.08,1,0 +35934299,Penthouse large 1 BR with huge terrace (7C),202757964,Mayan,Brooklyn,Williamsburg,40.71792,-73.96266,Entire home/apt,195,30,0,,,6,200 +27759146,Cozy corner near Empire State Building,209549523,Mariluz,Manhattan,Midtown,40.74858,-73.98340999999999,Shared room,62,1,112,2019-06-13,10.77,3,0 +29259580,"Spacious duplex, fits 5, perf midtown location!",3292437,Peter,Manhattan,Midtown,40.75228,-73.9695,Entire home/apt,250,2,20,2019-06-23,2.3,1,0 +8213015,Crown Heights Stunner,13563861,Mandi,Brooklyn,Crown Heights,40.67211,-73.94946999999999,Entire home/apt,200,2,0,,,1,0 +4191257,Spacious 2 story Apt in Midtown!!,17106992,Alejandro,Manhattan,Murray Hill,40.74643,-73.97536,Entire home/apt,200,1,1,2014-10-27,0.02,1,0 +14707648,Surfside Studio,10910171,Melissa,Queens,Rockaway Beach,40.58634,-73.81867,Entire home/apt,150,1,144,2019-07-07,4.13,2,134 +6700860,"Family Friendly, Brooklyn, NYC 2br",35075473,Amanda,Brooklyn,Carroll Gardens,40.67885,-74.00027,Entire home/apt,150,5,5,2016-08-28,0.1,1,0 +1340982,Steps from Central Park,7273689,Olya,Manhattan,Upper East Side,40.77207,-73.95923,Entire home/apt,169,7,11,2019-01-05,0.2,1,24 +27357619,Private Room; Safe Building; All The Amenities,41287915,Larry,Brooklyn,Bushwick,40.69743,-73.92929000000001,Private room,75,1,27,2019-06-30,2.45,1,29 +10786240,nice apartment in New york city,55808233,John,Manhattan,Hell's Kitchen,40.75979,-73.99216,Private room,75,2,0,,,1,0 +22084405,Sunny Charming Private 2BR Apartment in UES,149303542,Jasmine,Manhattan,Upper East Side,40.77752,-73.94646999999999,Private room,149,4,0,,,1,0 +15813342,PRIVATE ROOM CLOSE TO THE CITY AND JFK AIRPORT.,100970583,Maria,Queens,Woodhaven,40.688190000000006,-73.86079000000001,Private room,45,4,22,2019-07-01,0.68,2,266 +278876,"Large, furnished room in a 2 bedroom!",368528,Ally,Brooklyn,Crown Heights,40.66984,-73.95141,Private room,64,1,1,2017-03-18,0.04,1,0 +29981718,Beautiful Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72831,-73.99327,Entire home/apt,179,1,1,2019-05-17,0.57,33,348 +25374851,Vintage Custom Van,10407935,Meng,Manhattan,Nolita,40.72218,-73.99539,Entire home/apt,89,1,62,2019-06-30,4.64,8,3 +18476474,Bright XL room in Hamilton Heights/Sugar Hill,98861076,Peter & Gabe,Manhattan,Harlem,40.82444,-73.94525,Private room,90,2,136,2019-07-02,5.13,1,204 +8194497,Charming Fort Greene park studio!,7430851,Aaron,Brooklyn,Fort Greene,40.68791,-73.97438000000001,Entire home/apt,110,2,2,2015-09-18,0.04,1,0 +16617640,The Paris Room. Énorme! Private ROOF access!,47027510,Tucker,Brooklyn,Bushwick,40.69102,-73.90526,Private room,49,2,38,2019-06-22,2.0,1,9 +22934602,Great Studio at the Time Square/71C,48146336,Irina,Manhattan,Hell's Kitchen,40.76274,-73.99320999999999,Entire home/apt,120,30,3,2019-01-11,0.25,20,289 +26450185,Crash Pad,97378432,Rev. Simone,Queens,Jamaica,40.6837,-73.79343,Private room,75,2,1,2019-05-19,0.58,1,180 +28561904,Brand new uber-clean minimalist Bushwick 1BR,1119058,Ruben,Brooklyn,Bushwick,40.70473,-73.92662,Entire home/apt,100,4,17,2019-06-23,1.76,1,0 +35006426,Cozy private room by the 7 train,263732662,Kwenhi,Queens,Sunnyside,40.73935,-73.92096,Private room,50,2,4,2019-07-01,2.73,1,180 +9524033,Cozy UWS private room,37606128,Kristin,Manhattan,Harlem,40.80319,-73.95432,Private room,60,1,6,2016-07-04,0.14,1,0 +29965101,Large Private Space in Ideal Location,20287320,Konah,Brooklyn,Fort Greene,40.69306,-73.97084,Private room,80,2,14,2019-04-20,1.86,1,189 +29090040,Riverside doorman and concierge,21339635,Martin,Manhattan,Upper West Side,40.77708,-73.98791,Entire home/apt,138,3,24,2019-07-03,2.69,1,1 +29056566,Pretty Williamsburg Loft,169467786,Jovenne Naldrey,Brooklyn,Williamsburg,40.71001,-73.96101,Entire home/apt,215,1,5,2019-06-26,2.21,1,165 +24116631,Beautiful Manhattan Apt- 20 min to Times Square,5740704,Lauren,Manhattan,Washington Heights,40.84884,-73.93199,Entire home/apt,82,7,0,,,1,0 +502429,Park Slope duplex with backyard,2100968,Elodie,Brooklyn,South Slope,40.66153,-73.98554,Entire home/apt,325,3,116,2019-07-07,1.37,1,203 +27602987,Spacious Greenpoint room steps away from G train,24909331,Katherine,Brooklyn,Greenpoint,40.733540000000005,-73.95576,Private room,105,4,0,,,1,8 +2112344,Private Bushwick Loved Room with a Sacred Garden,10768668,Shervin,Brooklyn,Bushwick,40.70177,-73.91922,Private room,75,5,0,,,1,0 +31493796,Artists House with fire place & roof garden!,18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65621,-73.9562,Private room,40,3,5,2019-06-22,1.03,4,0 +33987446,X Light,184750740,Juice,Bronx,Morrisania,40.82565,-73.91095,Shared room,77,1,0,,,4,179 +24133244,Beautiful New York City Midtown Cozy Apartment,117510818,Lea,Manhattan,Hell's Kitchen,40.76657,-73.98514,Entire home/apt,225,3,28,2019-07-02,1.87,1,323 +33710554,"PRIDE Perfect! Bright, Clean & New W. Village Flat",254107226,Katherine,Manhattan,West Village,40.73593,-74.00438,Entire home/apt,260,3,2,2019-07-05,1.03,1,10 +19471352,"Dreamy Bushwick Art Apt, 15min from City, Roof &TV",136607675,Samantha,Brooklyn,Bedford-Stuyvesant,40.698440000000005,-73.93921,Private room,62,1,47,2019-06-29,1.92,1,21 +28306536,Large Room In 3Bed Home w/ Washer/Dryer,1561585,Peter,Brooklyn,East Flatbush,40.65059,-73.94506,Private room,90,3,1,2018-10-08,0.11,1,179 +32407324,"NEW Luxury 1BR, Floor to ceiling windows, balcony",122559140,Javicia,Brooklyn,Fort Greene,40.68912,-73.97903000000001,Entire home/apt,133,25,1,2019-07-01,1.0,1,0 +34929016,Private Living Room in the Heart of Chelsea,25408903,Jaclyn,Manhattan,Chelsea,40.74125,-73.99925999999999,Private room,89,1,5,2019-06-29,5.0,1,296 +28817246,"Sweet, Small Brooklyn Room!",205268444,Jordan,Brooklyn,Bedford-Stuyvesant,40.69334,-73.93849,Private room,36,2,1,2018-11-18,0.13,1,0 +19862719,1BR in Luxury Financial District Highrise,61689461,Michael,Manhattan,Financial District,40.70498,-74.01063,Private room,55,3,2,2017-07-27,0.08,1,0 +6884147,Bedroom with huge windows and space,36072139,Hyun Na,Brooklyn,Bushwick,40.69296,-73.9242,Private room,50,1,0,,,1,0 +28637635,Room 3 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80731,-73.94516,Private room,53,30,0,,,6,198 +9248049,NYC Fantastic Apartment (very quiet &private bath),48054322,Nina,Manhattan,Hell's Kitchen,40.76637,-73.98342,Private room,165,1,193,2019-07-05,4.37,1,213 +36206540,Beautiful Sun-Drenched Private Room South Slope,2981481,Bridge & Samanta,Brooklyn,Sunset Park,40.661,-73.99618000000001,Private room,80,2,0,,,1,61 +7563487,Great private room open for Aug!!,3353772,Jackie,Brooklyn,Williamsburg,40.70889,-73.94113,Private room,75,1,1,2015-08-04,0.02,1,0 +35646737,"Private Cabins @ Chelsea, Manhattan",117365574,Maria,Manhattan,Chelsea,40.74946,-73.99627,Private room,85,1,1,2019-06-22,1.0,5,261 +24943903,Parlor Suite Midtown Manhattan,29100568,Deborah,Manhattan,Theater District,40.76093,-73.98192,Entire home/apt,170,20,1,2018-05-29,0.07,4,0 +15725732,"2 Bedrooms apt,Modern New Renovated",101604346,Frank W,Brooklyn,Bay Ridge,40.63447,-74.02455,Entire home/apt,116,1,213,2019-07-01,6.55,1,314 +3970936,"Prime Gramercy, Luxury 1BD DOORMAN ",1475015,Mike,Manhattan,Gramercy,40.73771,-73.98058,Entire home/apt,150,30,1,2014-10-08,0.02,52,342 +34038559,Gorgeous Apt on the Upper East Side,1241543,Claire,Manhattan,Upper East Side,40.78145,-73.9496,Private room,130,5,3,2019-06-30,1.73,1,180 +1378165,Sunny Brooklyn Artists' Enclave! *huge room!*,7465509,Tyler,Brooklyn,Bedford-Stuyvesant,40.68732,-73.93004,Private room,67,7,2,2019-06-21,1.0,1,14 +7452987,Big sunny 1BR in Ditmas Park with kitten!,429925,Jordan,Brooklyn,Flatbush,40.63767,-73.95636999999999,Entire home/apt,50,21,0,,,1,0 +5661603,2 bedroom home in Brooklyn,27755788,Gian-Murray,Brooklyn,Park Slope,40.67812,-73.97353000000001,Entire home/apt,150,6,1,2018-08-26,0.09,1,209 +9749603,New York artistic house &Queens,19256647,Jiao,Queens,Flushing,40.73157,-73.83263000000001,Entire home/apt,65,7,0,,,1,0 +13156998,1 BR / studio right by Central Park,3671013,Neha,Manhattan,Midtown,40.76365,-73.97754,Entire home/apt,200,1,0,,,2,0 +33716426,Sonder | Stock Exchange | Central 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70723,-74.01086,Entire home/apt,229,2,3,2019-06-13,1.55,327,340 +29916697,INQUIRY ONLY FOR HOTEL ROOM TO 2 BEDROOMS NEAR UN,189734742,James,Manhattan,Midtown,40.75284,-73.9717,Private room,314,2,0,,,2,266 +10019312,Comfy Spacious room/Lower Manhattan - East Side,44216429,Maria,Manhattan,Gramercy,40.73628,-73.98549,Private room,100,4,115,2019-07-07,2.67,1,268 +24912129,Fabulous mid century modern apt in Williamsburg,4407432,Antoinette,Brooklyn,Williamsburg,40.72163,-73.95465,Entire home/apt,225,2,9,2019-06-10,0.66,1,120 +29633187,J-BRAND NEW LUXURY ROOM 25 MIN DRIVE TO MANHATTAN,8814258,Nikole,Queens,South Ozone Park,40.673,-73.79552,Private room,64,3,1,2019-06-13,1.0,7,195 +27281341,Sunny 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Kips Bay,40.74324,-73.97224,Entire home/apt,184,29,0,,,96,7 +15342164,JFK 15 AND LGA 18 MINUTES,97822063,Chima,Queens,St. Albans,40.70577,-73.75932,Private room,47,3,2,2018-12-16,0.06,1,56 +15507436,BEAUTIFUL RENOVATED APT. 208,99539943,Grand,Manhattan,Midtown,40.74828,-73.98401,Private room,189,1,4,2018-02-15,0.12,1,365 +28047666,LaGuardia Private 3 Bedrooms Appartment for 6 Pax,10229087,Kais,Queens,Ditmars Steinway,40.77224,-73.89295,Private room,220,1,5,2019-06-08,0.61,4,346 +36074873,"Cosy Private room, weekly cleaner",15057355,Benjamin,Manhattan,Two Bridges,40.71155,-73.99712,Private room,70,3,0,,,1,62 +11033476,Spacious Bedroom near Prospect Park,57257971,Jenna,Brooklyn,Sunset Park,40.66227,-73.99138,Private room,50,1,1,2016-02-12,0.02,1,0 +32414346,Luxury 1bd in best location (long-term rental),3048319,Carlos,Manhattan,Hell's Kitchen,40.76188,-73.99925,Entire home/apt,250,30,0,,,2,342 +6248093,BEAUTIFUL UES Apt w/ Door Man,32443084,Jordan,Manhattan,Upper East Side,40.76288,-73.96084,Entire home/apt,130,3,2,2015-12-28,0.04,1,0 +20641793,Modern Studio 1 block away from the beach,725286,Michael,Brooklyn,Brighton Beach,40.57688,-73.95308,Entire home/apt,130,3,22,2019-06-20,0.99,1,134 +665394,Winning Location in Hells Kitchen,1139222,Carl,Manhattan,Hell's Kitchen,40.7589,-73.99015,Entire home/apt,220,2,18,2018-12-01,0.24,1,0 +7071677,"Cozy room in Bushwick, Dekalb L train, Backyard!",37076121,Christopher,Brooklyn,Bushwick,40.69899,-73.92286,Private room,50,2,2,2017-08-31,0.06,1,0 +29942196,#1 Modern Gem 2br apt..(Street parking available),224715959,Ernesto,Queens,Jackson Heights,40.75355,-73.89220999999999,Entire home/apt,170,2,10,2019-06-28,1.55,1,346 +16228697,Beautiful brownstone in Harlem- $2.75 bus from LGA,86509759,Roanne,Manhattan,East Harlem,40.80802,-73.94013000000001,Private room,77,3,30,2019-06-28,0.98,1,90 +15166481,Beautiful and Sunny Apt in heart of Williamsburg,96241686,Gee,Brooklyn,Williamsburg,40.70976,-73.96686,Private room,125,3,0,,,1,0 +710015,"Large room, Outdoor Patio, Great Host, Safe Area!",3136147,Gym Hoodie,Brooklyn,Borough Park,40.63324,-73.99461,Private room,103,3,0,,,1,0 +1092760,Private Entrance - Backyard Summer Dining - Enjoy,5887081,Michelle,Brooklyn,Bedford-Stuyvesant,40.69034,-73.95321,Entire home/apt,110,7,195,2019-07-03,2.72,2,284 +4092826,Forest Hills Villa 皇后区“曼哈顿”-森林小丘别墅!,21228368,Jessica,Queens,Forest Hills,40.71291,-73.84678000000001,Entire home/apt,180,2,105,2019-06-25,1.8,5,190 +6674363,"New Building, Best Location in NYC",6725667,Megan,Manhattan,Chelsea,40.73969,-73.99446999999999,Private room,130,3,11,2019-05-11,0.23,1,106 +20085460,Beautiful large 2 bed apartment near Columbia U,21594748,Gabriel,Manhattan,Morningside Heights,40.807,-73.96452,Entire home/apt,220,2,6,2018-03-19,0.27,2,0 +23990013,Brookyln Brownstone Pied de Terre,39865251,Alexandra,Brooklyn,Clinton Hill,40.68235,-73.96384,Entire home/apt,225,2,1,2018-04-22,0.07,1,0 +35909488,"Sunny , spacious, luxury building off Bedford Ave.",28500137,Penelope,Brooklyn,Greenpoint,40.71895,-73.95331999999999,Entire home/apt,164,4,0,,,1,7 +25809641,Light & Spacious Artist Loft with Vintage Charm,28484697,Mariah,Brooklyn,Red Hook,40.67304,-74.01231,Entire home/apt,200,2,10,2019-05-23,0.87,1,345 +1752206,Elegant 1b Near Everything,5243858,Yvonne,Manhattan,Chelsea,40.74314,-73.9957,Entire home/apt,200,2,144,2019-07-05,2.07,1,263 +29799920,Ultra Modern Two Bedroom with Amazing Views,63875726,Jason,Manhattan,Murray Hill,40.74441,-73.97328,Entire home/apt,215,5,0,,,1,51 +5881858,Newly renovated 1 bedroom apartment,3311124,Georgie,Manhattan,East Village,40.73172,-73.98874,Entire home/apt,220,2,0,,,1,0 +17283064,法拉盛summer家(B)closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74624,-73.78327,Private room,69,1,62,2019-07-05,4.26,3,65 +811299,Radiant Cobble Hill - 1 bedroom,4231668,Darren,Brooklyn,Boerum Hill,40.68515,-73.99055,Entire home/apt,119,5,42,2017-01-02,0.53,1,0 +29982644,Don’t miss it! Cozy Space is Available in Queens!,129875945,Judit,Queens,Forest Hills,40.71694,-73.83442,Private room,100,2,3,2019-05-07,0.42,1,161 +16361717,Apartment in the heart of Williamsburg Brooklyn!,90829719,Mat,Brooklyn,Williamsburg,40.71381,-73.95040999999999,Entire home/apt,125,1,112,2019-06-23,3.65,1,221 +5512274,West Village Ground Floor Studio,7033514,Paul,Manhattan,West Village,40.73426,-74.00525,Entire home/apt,199,1,1,2015-10-30,0.02,1,0 +24727443,Charming Newly Renovated West Village Apartment,7339898,Leah,Manhattan,Greenwich Village,40.72975,-74.00157,Entire home/apt,200,3,18,2019-07-01,1.28,1,10 +26518779,Tranquil East Village apartment,6072790,Lotte,Manhattan,East Village,40.72607,-73.97851,Entire home/apt,220,3,3,2019-06-27,0.28,1,25 +15355844,"Big East Village bedroom, heart of Manhattan",32707981,Ben,Manhattan,East Village,40.72396,-73.98940999999999,Private room,120,2,5,2017-04-09,0.16,4,0 +23222310,Awesome cozy bedroom in hip area,30940393,Sarah,Brooklyn,Bushwick,40.68901,-73.90768,Private room,43,2,39,2018-12-27,2.31,2,0 +24872721,Light filled spacious 2 bed room apartment,17620937,Brittany,Manhattan,Washington Heights,40.83534,-73.94354,Entire home/apt,150,2,3,2019-03-10,0.25,1,35 +34940756,Hello! This is a very cozy space in Williamsburg!!,259630588,Alina,Brooklyn,Williamsburg,40.71867,-73.94884,Private room,149,2,1,2019-05-26,0.68,2,0 +17682955,Quiet private room near Columbia University,54677014,Andrea,Manhattan,Harlem,40.822790000000005,-73.9517,Private room,79,2,72,2019-06-25,2.59,1,160 +28218710,Brooklyn Apartment,213141901,Amparo,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94476999999999,Private room,75,6,1,2018-10-01,0.11,1,88 +36351709,Fidi 1 Bedroom,28983064,Joseph,Manhattan,Financial District,40.70664,-74.01258,Private room,57,30,0,,,1,66 +2175827,Room Bedford Heart of Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71354,-73.96183,Private room,75,2,183,2019-06-30,3.03,3,154 +31956547,Your Private Place in a Cozy Casa,135858587,Daniel,Brooklyn,Crown Heights,40.673,-73.95043000000001,Private room,70,1,8,2019-07-05,2.53,1,75 +24831635,Comfortable an Nice Bedroom to relax,187718165,Magui,Queens,Briarwood,40.71007,-73.81483,Private room,30,1,24,2019-06-12,1.67,1,6 +22970376,Sunny room in Sunnyside New York,24600315,Diana,Queens,Sunnyside,40.74355,-73.92557,Private room,89,1,0,,,1,0 +26607493,LES - Lower East Side,73269245,Borna,Manhattan,Chinatown,40.71443,-73.99348,Private room,55,7,1,2018-08-15,0.09,1,0 +1578721,"Huge, Sunny Greenpoint Flat",999689,Eric,Brooklyn,Greenpoint,40.72887,-73.95163000000001,Private room,35,30,5,2014-04-23,0.07,1,97 +10040717,Great walk-in studio Apartment in a private house,9059810,Vlad,Manhattan,Civic Center,40.71316,-74.00498,Private room,169,4,0,,,3,89 +9995077,Cozy Bedford Garden Bedroom,51348096,Stanley,Brooklyn,Flatbush,40.651340000000005,-73.958,Private room,65,1,0,,,1,0 +22613221,Astoria very close to Manhattan private bedroom,117195769,Simone,Queens,Astoria,40.76334,-73.90977,Private room,45,1,4,2018-02-25,0.23,3,0 +2151479,Newly renovated house,10981050,Rhonda,Brooklyn,Bedford-Stuyvesant,40.68922,-73.94626,Entire home/apt,111,3,104,2019-06-17,1.65,1,261 +32108317,Beautiful 2 Bedr in Landmarked Brooklyn Brownstone,16543733,Sylvester,Brooklyn,Crown Heights,40.6757,-73.95121,Entire home/apt,160,3,9,2019-06-23,2.35,1,109 +4745876,Urban sanctuary in the heart of NYC,21047204,Michael,Queens,Long Island City,40.74821,-73.94803,Entire home/apt,150,2,1,2014-12-31,0.02,1,0 +22310190,COZY&QUITE WITH PARK AROUND THE BLOCK BARS & SHOPS,163103487,Raquel,Manhattan,East Village,40.72515,-73.98422,Entire home/apt,199,7,13,2019-06-11,0.82,1,349 +398281,One Block From Central Park!,325790,Michael,Manhattan,Upper East Side,40.78521,-73.95489,Entire home/apt,200,7,30,2016-12-04,0.34,1,224 +9026485,Luxury Studio Apt in NYC Financial District!,30283594,Kara,Manhattan,Financial District,40.70776,-74.01514,Entire home/apt,169,30,2,2016-06-28,0.05,121,364 +17791938,Seperate Appartement in Appartement Bklyn Hights,16302498,Andreas,Brooklyn,Brooklyn Heights,40.69253,-73.99249,Private room,150,2,61,2019-06-16,2.36,1,117 +12083016,Entire huge 2BR Apt in East Village - Aug. 14-27!!,7226962,John,Manhattan,East Village,40.72716,-73.98264,Entire home/apt,200,4,3,2016-08-26,0.08,1,0 +12911110,"Sunny studio on UWS, steps to park",5317451,Kelly,Manhattan,Upper West Side,40.78397,-73.97063,Entire home/apt,90,8,1,2016-06-19,0.03,1,0 +12584072,Historic Gem Close to SI Ferry,68252461,Natalia,Staten Island,Clifton,40.62349,-74.07596,Entire home/apt,165,1,108,2019-06-20,2.78,1,298 +18311851,Avenue K,126663154,Henrietta,Brooklyn,Canarsie,40.64519,-73.89054,Private room,71,2,2,2019-06-20,0.11,1,364 +23462813,Gorgeous Luxury 3 Bedroom steps from Prospect Park,175082875,Scott And Jill,Brooklyn,Windsor Terrace,40.65814,-73.97718,Entire home/apt,250,2,81,2019-06-09,4.89,1,213 +13276320,Beautiful place sunny and quite,74823629,Roberto,Queens,Ditmars Steinway,40.77388,-73.91598,Private room,125,1,6,2016-12-29,0.17,1,0 +6477272,Astoria HUGE Balcony PRIME location,6696648,Chris,Queens,Astoria,40.7666,-73.92079,Entire home/apt,155,6,4,2017-01-01,0.11,1,173 +33169495,Clean and convenient in the heart of Brooklyn,389297,Jonathan,Brooklyn,Boerum Hill,40.68872,-73.98938000000001,Entire home/apt,126,5,0,,,1,0 +14648556,"14 min to Columbus Circle, 20 min to Times Square",597901,Johannes,Manhattan,Harlem,40.82663,-73.94624,Private room,60,1,55,2019-06-22,1.59,1,57 +32311383,The Projects Gallery,44262594,Sam,Brooklyn,Fort Greene,40.68495,-73.97438000000001,Private room,85,4,0,,,1,365 +2659732,Private room in Charming Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72561,-73.94745,Private room,52,5,7,2019-06-20,0.18,3,342 +29341038,Very comfortable and clean,28960938,Vinroy,Bronx,Unionport,40.82598,-73.85203,Private room,90,7,0,,,1,180 +8355713,Cozy Private Brooklyn Bed room,44042396,Gabriel,Brooklyn,Crown Heights,40.66754,-73.95265,Private room,40,4,3,2016-04-30,0.07,1,0 +17076329,"Discount at Manhattan Club NYC, June 16-19, 2019",2190447,Stacey,Manhattan,Midtown,40.7658,-73.98218,Entire home/apt,275,7,0,,,1,0 +5642982,Room One in cozy apartment_1,26080167,Douglas,Manhattan,Washington Heights,40.83481,-73.94317,Private room,82,2,11,2019-05-31,0.32,3,364 +26443376,Big 1BR in PRIME Bushwick! 2 blocks to L Train!,6293227,Nish,Brooklyn,Bushwick,40.70148,-73.91834,Entire home/apt,90,3,9,2019-06-01,0.74,1,0 +34844175,Room with a private bathroom in modern BK building,25701819,Gorkem,Brooklyn,Bedford-Stuyvesant,40.68961,-73.9232,Private room,55,16,0,,,1,0 +1678809,Sunny Spacious Retro 1 Bedroom,8619985,Mel,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93933,Entire home/apt,96,2,14,2019-06-25,4.62,1,50 +15495132,LARGE 2 BEDROOM APT NEAR CENTRAL PARK,9293730,Inna,Manhattan,East Harlem,40.78815,-73.9436,Entire home/apt,95,30,12,2019-05-14,0.38,16,338 +3393798,Greenwich Village cozy 1-2BD with outdoor space,8597778,Nadine,Manhattan,West Village,40.73817,-74.00274,Entire home/apt,249,3,6,2016-08-11,0.1,1,0 +19911921,Cozy 1 bedroom in the heart of E. Village,15932734,Komail,Manhattan,East Village,40.72688,-73.98546,Entire home/apt,160,3,20,2019-05-18,0.89,1,0 +4874735,Beautiful Apt in Prime NY Location,516877,Julie,Manhattan,Hell's Kitchen,40.76332,-73.9863,Entire home/apt,275,2,0,,,1,0 +19087695,"★2 mins to Subway B/Q, Great for budget travel★",51380878,Jean Paul,Brooklyn,Flatbush,40.65067,-73.96061999999999,Private room,33,2,71,2019-06-18,3.17,2,15 +27251398,EAST RIVER VIEW~HIRISE STUDIO,200380610,Pranjal,Manhattan,Midtown,40.75424,-73.96311999999999,Entire home/apt,200,30,0,,,65,364 +34935216,"Spacious, bright & charming 1-bedroom in East Vil.",2982441,Maher,Manhattan,East Village,40.7319,-73.98658,Entire home/apt,180,8,1,2019-06-17,1.0,1,188 +3694498,Welcome to Williamsburg!,18646528,Catherine,Brooklyn,Williamsburg,40.71385,-73.94156,Entire home/apt,165,3,6,2017-04-01,0.1,1,0 +10544239,Charming East Village apartment,16911296,Gurdane,Manhattan,East Village,40.72997,-73.98633000000001,Private room,129,1,11,2016-10-31,0.27,1,0 +11257497,"Sunny, Kid Friendly 2 Bedroom",56066134,Jocelyn,Manhattan,Washington Heights,40.85585,-73.93741,Entire home/apt,125,5,2,2017-01-01,0.05,1,0 +33047256,Cozy Boutique Studio | Heart of NYC,11391775,Aidin,Manhattan,Kips Bay,40.74284,-73.97967,Entire home/apt,150,1,22,2019-06-26,7.02,1,29 +29518861,Fantastic private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69816,-73.94703,Private room,55,2,20,2019-06-24,2.64,3,332 +31490659,"‘’AROUND THE CORNER’’ QUEENS, NY",12394498,Anna,Queens,Maspeth,40.7282,-73.89135,Entire home/apt,90,3,9,2019-07-05,6.75,1,121 +36168631,The coziest garden apartment in Harlem!!,4169722,Jophiel,Manhattan,Harlem,40.80637,-73.94282,Entire home/apt,100,2,0,,,1,11 +13937820,Huge Private Room in Williamsburg/Buschwick!!,33902900,Cristina,Brooklyn,Williamsburg,40.70875,-73.94270999999999,Private room,55,2,2,2016-08-01,0.06,1,0 +33444872,Huge shared space East Village Female guests only,173386569,J,Manhattan,Gramercy,40.73392,-73.98085,Shared room,70,3,3,2019-06-23,1.38,2,0 +4343312,Room For Rent,22548091,Cynthia,Manhattan,Harlem,40.80733,-73.95642,Private room,57,7,3,2019-07-06,0.22,2,222 +24714137,Heart of Lower East Side,186798498,Vito & Miriam,Manhattan,Lower East Side,40.7157,-73.98864,Entire home/apt,160,2,50,2019-07-05,4.05,1,325 +28014842,1BR Central park apartment with lots of sunshine!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94421,Entire home/apt,76,30,3,2019-03-31,0.36,103,219 +1890851,"Stylish,Sunny, spacious luxury loft",6321587,Bud,Brooklyn,Bedford-Stuyvesant,40.68166,-73.94325,Entire home/apt,149,2,20,2019-06-09,0.31,1,355 +7707191,1 room in 3 bdrm apt 78th and 3rd,38301594,Shana,Manhattan,Upper East Side,40.774840000000005,-73.95725999999999,Private room,80,1,2,2015-09-19,0.04,2,0 +4838540,"103rd st/lex/clean, Comfort and big room",10600973,Mj,Manhattan,East Harlem,40.79113,-73.94792,Private room,65,5,7,2018-05-14,0.22,1,80 +25673769,Comfortable and bright bedroom in a great location,28753907,Pablo & Anastasiya,Queens,Astoria,40.76,-73.90684,Private room,60,2,35,2019-06-30,2.67,1,204 +3464727,Fabulous 1 Bedroom Apt for 1 week,17456385,Kelsey,Manhattan,Hell's Kitchen,40.76753,-73.98397,Entire home/apt,150,1,0,,,1,0 +36036850,Spacious room in historic brownstone,60404912,Ira,Brooklyn,Flatbush,40.64235,-73.95227,Private room,50,2,1,2019-07-07,1.0,1,7 +26004226,Best location - spacious room,395627,Deepika,Manhattan,Upper East Side,40.76279,-73.96266,Private room,125,1,16,2019-06-23,1.26,1,80 +20120907,Hip flat in the heart of Astoria,46801421,Emily,Queens,Astoria,40.77133,-73.92119,Entire home/apt,120,3,11,2019-01-01,0.48,1,6 +6596747,Bedroom in FABULOUS W. Village Apt!,4654046,Kate,Manhattan,West Village,40.73086,-74.00506999999999,Private room,105,2,111,2019-07-04,2.31,1,92 +21630186,Charming Bedroom in Downtown Manhattan,12838834,Tania,Manhattan,Lower East Side,40.72112,-73.98493,Private room,80,5,5,2018-01-12,0.26,2,0 +29513311,Two beds in a spacious Studio!,222249602,Omar,Manhattan,East Harlem,40.78552,-73.94153,Entire home/apt,145,1,30,2019-06-21,3.61,1,144 +36144863,Amazing 2 bed 2 bath in Williamsburg,14098199,Lucas,Brooklyn,Williamsburg,40.71413,-73.95685,Entire home/apt,250,5,0,,,1,209 +26916746,Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.63886,-74.00391,Private room,40,1,26,2019-03-20,2.29,8,0 +9894602,Large Room in Sunny Astoria Apt,10456845,Taylor,Queens,Astoria,40.75764,-73.92283,Private room,65,1,2,2018-08-11,0.05,2,0 +13431961,Amazing Brownstone Studio @ Central Park West,76601346,Alexandrinho,Manhattan,Upper West Side,40.7847,-73.97155,Entire home/apt,179,2,98,2019-06-21,2.71,1,151 +2958412,A beautiful modern 3 bedroom apt,15099550,Bah.,Manhattan,Harlem,40.80879,-73.94126999999999,Entire home/apt,290,1,77,2019-07-01,1.25,1,252 +35425682,** Location~Location~Location in Time Square **,266477120,Mary,Manhattan,Hell's Kitchen,40.76125,-73.98848000000001,Entire home/apt,120,3,2,2019-07-05,2.0,1,203 +10460113,BELLA CASA-Private Room-queen bed-historical NYC!!,16480700,Eddie&Vlad,Manhattan,Harlem,40.82021,-73.95307,Private room,87,1,80,2018-12-28,2.29,7,55 +23060372,Beautiful Studio Apartment in Prime UWS Manhattan!,12554853,Isabel,Manhattan,Upper West Side,40.79653,-73.96887,Entire home/apt,75,1,32,2018-11-25,1.87,1,0 +8720070,Central & Cute Studio by Union Sq!,4319369,Sarena,Manhattan,Gramercy,40.73438,-73.9853,Entire home/apt,155,3,17,2016-08-10,0.37,1,0 +18877694,Cozy Guestroom ,131354448,Tammie,Queens,Flushing,40.75364,-73.8108,Private room,50,2,51,2019-06-24,1.98,4,156 +32302978,Bright 1b on quiet Williamsburg street,2943364,Alison,Brooklyn,Williamsburg,40.71177,-73.96464,Entire home/apt,120,3,4,2019-07-01,0.88,1,8 +16205491,BEAUTIFUL 1-BEDROOM @ דירה שווה בוויליאמסבורג,8682765,Nimrod,Brooklyn,Williamsburg,40.71497,-73.93905,Entire home/apt,150,7,0,,,1,0 +15770469,Large sunny room Williamsburg ten mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71512,-73.95655,Private room,80,2,29,2018-10-30,0.9,2,34 +9901706,Cute big one bedroom,1904415,Natalie,Manhattan,Upper West Side,40.77789,-73.97700999999999,Entire home/apt,180,1,0,,,1,0 +8054651,Private Sunlight Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68929,-73.93079,Private room,79,1,296,2019-06-27,6.37,7,59 +29364445,Lil A's Place- 60 Seconds to the Train-Location!!,220479551,Betty,Queens,Astoria,40.75684,-73.91705,Private room,65,1,4,2019-06-23,0.64,1,88 +28428327,Private Sunny Room — Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74721,-73.97398000000001,Private room,100,1,12,2019-05-13,1.7,3,58 +7664594,1 Bedroom Park Slope 1 Block Subway,40234779,Tristan,Brooklyn,Sunset Park,40.66016,-73.99813,Private room,60,1,0,,,1,0 +3738756,1 BR Beautiful Central Williamsburg,10675384,John,Brooklyn,Williamsburg,40.72037,-73.9596,Entire home/apt,140,30,21,2016-09-13,0.38,1,252 +28816767,THE CREATIVE CAVE BY CONEY ISLAND,217332035,Rose,Brooklyn,Sheepshead Bay,40.59063,-73.94588,Private room,37,1,1,2018-10-07,0.11,2,364 +114229,Lower East Side 2 Bedroom Apt,314941,Tony,Manhattan,Lower East Side,40.71895,-73.99434000000001,Entire home/apt,211,1,52,2019-06-08,0.6,3,361 +34088667,"One master bedroom near Q10,Q24 BUS STOP, A train",179951095,Balwinder,Queens,Richmond Hill,40.69035,-73.82238000000001,Private room,78,1,14,2019-07-05,5.83,1,356 +27227655,Intimate Private Room,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.94821,Private room,55,2,18,2019-06-04,1.6,4,359 +36276575,Prime West Village One Bedroom,6432439,Annie,Manhattan,West Village,40.734770000000005,-74.00246,Entire home/apt,299,3,0,,,1,107 +27162696,Sweet BR (A) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63956,-73.95033000000001,Private room,75,3,10,2019-06-30,0.91,3,123 +26037255,Private Room! AMAZING area in SoHo!,192951036,Jasmine,Manhattan,West Village,40.72918,-74.00482,Private room,209,1,40,2019-07-01,3.09,10,247 +8883269,Cute 1 bedroom apt close to all,46482708,Djamal,Queens,Maspeth,40.72582,-73.90549,Entire home/apt,100,3,74,2019-05-20,1.63,1,321 +2057553,PRIVATE ROOM in Peacuful 2-Bedroom,10535719,Mike,Manhattan,East Harlem,40.79981,-73.94048000000001,Private room,75,7,7,2018-10-15,0.12,3,328 +8173609,Cozy Apartment Next To Central Park,43137812,Lenny,Manhattan,Harlem,40.80089,-73.95674,Entire home/apt,200,2,113,2019-06-21,2.46,1,197 +19925397,"Modern, big and comfy space in the heart of NYC",46708895,Victor,Bronx,Mount Hope,40.84899,-73.90375,Entire home/apt,250,2,45,2019-06-25,2.18,1,289 +10038823,"Apartment for 5, Midtown Manhattan",48681257,Celia,Manhattan,Midtown,40.75828,-73.96285999999999,Entire home/apt,220,1,116,2019-06-23,2.89,1,264 +13879391,Spaceous Bushwick Two Floor Apartment,6013624,Charlie,Brooklyn,Bushwick,40.6988,-73.91239,Private room,55,2,0,,,1,0 +31815508,Private room with a great location in Manhattan,124028462,Sergii,Manhattan,Harlem,40.80492,-73.95817,Private room,59,30,2,2019-05-13,0.5,3,333 +15253883,Spacious & Bright Midtown 1 Bedroom -Elevator Bldg,96867847,Matthew,Manhattan,Midtown,40.75723,-73.96313,Entire home/apt,175,2,10,2018-08-29,0.31,1,0 +16984336,One bedroom apt in a luxury Building,23297219,Aurora,Brooklyn,Williamsburg,40.71819,-73.96531999999999,Entire home/apt,99,4,16,2018-03-23,0.54,2,86 +8024,CBG CtyBGd HelpsHaiti rm#1:1-4,22486,Lisel,Brooklyn,Park Slope,40.680690000000006,-73.97706,Private room,130,2,130,2019-07-01,1.09,6,347 +22058411,"Spacious, Modern Two Bedroom, Two Bath in Harlem",4012917,Laura,Manhattan,East Harlem,40.8014,-73.94386,Entire home/apt,200,5,7,2019-01-04,0.38,1,9 +34396674,Cozy sun-fillled Astoria RM near Broadway station.,137358866,Kazuya,Queens,Astoria,40.76571,-73.92758,Private room,48,30,0,,,103,242 +24476209,Inexpensive Private Room with NYC / SIUH Access #2,104812805,Amarjit S,Staten Island,Arrochar,40.59761,-74.08346999999999,Private room,33,4,6,2019-03-26,0.41,8,285 +26876289,2BR 3BD 1.5BA / Rooftop & Balcony / Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70676,-73.91107,Entire home/apt,280,2,40,2019-06-24,3.53,2,104 +22387975,Private room in Williamsburg close to subway,61394859,Katia,Brooklyn,Williamsburg,40.718790000000006,-73.9402,Private room,50,9,0,,,1,0 +20711362,"Subway-adjacent, spacious bedroom w private deck",7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67865,-73.94230999999999,Private room,75,1,4,2018-04-02,0.25,3,0 +21244514,Luxurious Apt3 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Gowanus,40.67543,-73.98455,Entire home/apt,250,4,70,2019-07-07,3.51,3,174 +19680275,Nice & new room in 2 bedroom apt. Washer/dryer 2R,122498535,Gf,Brooklyn,East Flatbush,40.65695,-73.92558000000001,Private room,40,30,0,,,3,326 +14147107,"Spacious, Quiet 1 Bedroom in Hamilton Heights",76838000,Catherine,Manhattan,Harlem,40.83117,-73.94846,Entire home/apt,75,1,5,2018-08-26,0.14,1,0 +35803559,*NEW* Bright Spacious Brooklyn 2 Bedroom Sleeps 9,133005440,Alex,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95823,Entire home/apt,125,2,1,2019-06-23,1.0,2,342 +36025215,Gorgeous sunny room in fabulous Brooklyn duplex,3103656,Laurel,Brooklyn,Bushwick,40.69184,-73.90924,Private room,99,3,0,,,2,150 +20729133,Cool Brownstone for September,31306976,Hunter,Brooklyn,Bedford-Stuyvesant,40.69155,-73.93661999999999,Private room,49,7,5,2019-04-28,0.23,1,56 +15785088,"Spacious 2 BR Clinton Hill Apartment-Brooklyn, NY",102103075,Edna + Isaiah,Brooklyn,Crown Heights,40.67923,-73.96285999999999,Entire home/apt,139,1,216,2019-06-30,6.64,1,257 +34397198,Tranquility on Times Square VIP Room King Bed,259087876,Dennis,Manhattan,Midtown,40.75845,-73.98026,Private room,325,1,6,2019-06-28,3.21,7,67 +2392296,"A Simple, Calm Space",10510181,Août,Bronx,Kingsbridge,40.88437,-73.89746,Shared room,32,2,6,2016-09-22,0.16,1,83 +9726143,"Huge 1-Bedroom, A+ Midtown Location",37803660,Adrienne,Manhattan,Midtown,40.75088,-73.96918000000001,Entire home/apt,199,4,1,2016-01-05,0.02,1,0 +14826817,Sid's Victorian Oasis,92720308,Sidney,Brooklyn,Flatbush,40.64088,-73.96306,Private room,120,1,87,2019-06-12,2.53,3,313 +24608893,Huge light filled bedroom in trendy Williamsburg,27032848,Samia,Brooklyn,Williamsburg,40.71747,-73.96045,Private room,89,4,4,2019-06-17,0.29,1,128 +16797910,Brooklyn less than 30 min from manhattan (subway),111666924,Carl,Brooklyn,Crown Heights,40.67219,-73.92168000000001,Entire home/apt,75,3,72,2019-06-09,2.48,1,19 +7125107,Room steps away from LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77005,-73.87691,Private room,45,1,448,2019-07-07,9.63,5,166 +25350452,1BR Breathtaking view w/Private Roof Top Bushwick,3388542,Damien,Brooklyn,Bushwick,40.69566,-73.90687,Entire home/apt,95,3,14,2019-03-24,1.12,1,5 +6316666,Sunny private room in Park Slope,1231888,Alejandra,Brooklyn,Park Slope,40.67173,-73.97724000000001,Private room,70,1,1,2015-07-01,0.02,1,0 +15100256,Central Park Vacation,22772389,Shane,Manhattan,Upper West Side,40.78492,-73.97991999999999,Private room,110,2,41,2019-05-20,1.21,1,89 +4140776,Basement 别墅的地下室,21228368,Jessica,Queens,Forest Hills,40.71146,-73.84676999999999,Private room,65,4,20,2019-05-25,0.35,5,133 +21486201,Private Bedroom in Heart of Williamsburg,16572580,Travis,Brooklyn,Williamsburg,40.70907,-73.9495,Private room,184,2,1,2017-10-25,0.05,2,0 +24627684,Quaint NYC studio- tree lined St.- great location!,47895481,Omar,Manhattan,Midtown,40.7446,-73.98399,Entire home/apt,175,1,2,2018-07-02,0.16,1,0 +21356602,Heart of Queens 3 ❤️❤️❤️Private Bath-Jackson Hgts,123483050,Andrea,Queens,Elmhurst,40.7478,-73.88005,Private room,100,1,73,2019-06-22,3.47,3,165 +16423080,Private Studio Apartment close to ferry and subway,15231187,Conor,Brooklyn,Greenpoint,40.73203,-73.95572,Entire home/apt,89,3,69,2019-06-13,2.25,1,0 +21993232,"LOCATION, LOCATION, LOCATION!",129577022,Amanda,Manhattan,Kips Bay,40.74421,-73.98007,Entire home/apt,205,3,2,2018-01-01,0.1,1,0 +46544,Park Slope haven 15 mins from Soho,8198,Monica,Brooklyn,Park Slope,40.67994,-73.97863000000001,Entire home/apt,150,5,52,2019-06-05,0.5,1,18 +14148905,Brand new beautiful one bedroom apartment,85470054,Yi,Queens,Flushing,40.73851,-73.80105999999999,Entire home/apt,72,1,256,2019-06-24,7.1,1,124 +10354038,Quaint place in seaside Red Hook,22423634,Peter,Brooklyn,Red Hook,40.67741,-74.0139,Entire home/apt,95,3,12,2017-09-20,0.3,1,0 +4274589,Modern XL Tribeca apt with terrace ,16666294,Lp,Manhattan,Tribeca,40.71743,-74.00623,Entire home/apt,215,2,23,2017-04-12,0.4,1,187 +21253972,UES apartment in a great location,41306788,Tim,Manhattan,Upper East Side,40.763000000000005,-73.96044,Entire home/apt,275,3,1,2017-10-13,0.05,1,0 +6575471,NYC 2 Bedroom,33247865,Anthony,Manhattan,Greenwich Village,40.72911,-73.99915,Entire home/apt,350,2,34,2017-01-01,0.74,1,0 +27827110,private room in a shared apartment,141400974,Öykü,Manhattan,Harlem,40.80913,-73.94614,Private room,45,14,5,2019-01-25,0.47,1,0 +19701037,1BR - Heart of West Village - 30 Day Min - Unit 6,4422523,Marie,Manhattan,West Village,40.73394,-74.0049,Entire home/apt,140,30,4,2019-03-03,0.27,6,153 +20186887,"Spacious, Sun-Filled 1BR - Columbia Waterfront",26823131,Allie,Brooklyn,Columbia St,40.68674,-74.00073,Entire home/apt,169,1,11,2017-11-25,0.47,1,0 +1260727,Luxury 3 Bd 2Bth w/600 sqft deck,6866620,Adam,Manhattan,Flatiron District,40.74119,-73.99168,Entire home/apt,350,14,4,2018-07-28,0.06,1,5 +15840089,Kid- (and Adult-) Friendly Uptown 2-Bedroom,99602138,Yolanda,Manhattan,Washington Heights,40.8349,-73.94829,Entire home/apt,150,3,36,2019-01-01,1.13,1,5 +33313341,Spectacular apartment in Astoria near everywhere,151780315,Jose,Queens,Ditmars Steinway,40.78096,-73.91282,Private room,70,2,0,,,1,0 +1251566,SPACE FOR 8,6774871,Karece,Brooklyn,Bedford-Stuyvesant,40.68065,-73.95154000000001,Entire home/apt,165,3,130,2017-12-14,1.84,1,0 +2183423,2 Convertible Bdrms Great for 1-6,5414067,Adrianne,Manhattan,Harlem,40.81333,-73.94194,Entire home/apt,165,3,142,2019-06-14,2.27,2,301 +13467270,Sunnyside Modern Apartment that sleeps 4 people.,76840954,Angelo,Queens,Sunnyside,40.73691,-73.92826,Entire home/apt,125,2,17,2019-04-28,0.47,1,56 +16627834,"☼ Sunny, Charming Brooklyn Apt - Next to Train ☼",2970413,Milan,Brooklyn,Crown Heights,40.6714,-73.95546999999999,Private room,75,2,75,2019-06-25,2.56,1,275 +14088971,Beautiful Sunny South Slope 1 BR,84737060,Remy,Brooklyn,Sunset Park,40.66142,-73.99078,Entire home/apt,119,3,63,2019-06-28,1.82,1,18 +2119216,"Affordable, Private, Simple & Clean NYC Flat!",10806025,Christina,Manhattan,Harlem,40.82029,-73.93861,Entire home/apt,80,1,353,2019-06-19,5.26,1,258 +30040019,Private Boutique One Bedroom,2021640,Lina,Manhattan,Upper East Side,40.77717,-73.95404,Entire home/apt,182,2,28,2019-07-02,3.85,1,64 +846854,Large Garden Duplex on Park block,4422368,Dirk,Manhattan,Upper West Side,40.78689,-73.97314,Entire home/apt,300,30,93,2019-06-08,1.24,1,284 +35583150,Beautiful Brownstone Entire Apartment In Manhattan,265424495,Benat,Manhattan,Harlem,40.80369,-73.94764,Entire home/apt,150,1,0,,,2,14 +2297029,large 2bdrm apt - midtown manhattan,10974421,Jj,Manhattan,Hell's Kitchen,40.76182,-73.99003,Entire home/apt,200,1,8,2016-09-25,0.16,1,0 +4449559,Very Bright Modern Apartment 2 Mins from Manhattan,23092836,Gary,Bronx,Concourse,40.82636,-73.92655,Entire home/apt,105,30,18,2019-06-02,0.48,1,52 +27244093,QUEEN BED 1 NEAR 3 METROS IN WILLIAMSBURG,189625025,Mary And Ryan,Brooklyn,Williamsburg,40.70756,-73.94269,Private room,76,2,29,2019-06-30,2.54,2,330 +20981968,Comfortable and Clean Private Room,25039950,David,Brooklyn,Williamsburg,40.711,-73.9387,Private room,54,6,1,2018-04-20,0.07,2,0 +28161643,New York Apartment,28408861,Kristianne,Manhattan,East Harlem,40.79009,-73.94740999999999,Private room,97,2,0,,,1,0 +33866860,"A+ Chelsea Location! MSG, Javits, Penn!",231755465,Mishael,Manhattan,Chelsea,40.74945,-73.99511,Entire home/apt,99,31,4,2019-06-14,1.45,1,165 +18958724,GIANT BUSHWICK ROOM - PRIVATE ACCESS - SHARED APT,40510005,Hugo,Brooklyn,Bushwick,40.68923,-73.9154,Private room,50,1,11,2017-07-28,0.44,1,0 +12064423,Beautiful private room in Bedstuy,13406868,Andrew,Brooklyn,Bedford-Stuyvesant,40.68464,-73.95002,Private room,45,4,1,2016-05-15,0.03,1,0 +25517197,HUGE Soho LOFT 2 Bedrooms 2 Bathrooms,50249843,Na,Manhattan,SoHo,40.7228,-74.00644,Entire home/apt,350,2,11,2018-10-08,0.87,1,0 +35886159,Ozone Park Tudor Village,269901856,Akm,Queens,Ozone Park,40.67405,-73.85401999999999,Private room,80,15,0,,,1,61 +3278436,UWS 2 BR 2 Ba. Gorgeous Apt!,7105630,Christine,Manhattan,Upper West Side,40.78206,-73.97797,Entire home/apt,330,4,11,2017-11-25,0.18,1,260 +22176026,Sofa bed/pull out couch in Living Room,126397762,Xavier,Manhattan,Harlem,40.83021,-73.94114,Shared room,39,1,7,2017-12-28,0.36,3,0 +19203963,Luxury apartment in heart of Nolita,6163686,Ben,Manhattan,Nolita,40.72249,-73.99507,Entire home/apt,250,3,0,,,1,0 +6091224,Sunny 1 Bedroom in Harlem!,2798394,Dana,Manhattan,Harlem,40.80386,-73.95369000000001,Entire home/apt,105,4,9,2019-01-02,0.18,1,0 +21862155,Kingsize bedroom in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81919,-73.94554000000001,Private room,89,1,105,2019-07-01,5.33,4,84 +15734793,The Perfect Pied-à-Terre for You!!!,101653570,The Wrights,Brooklyn,Bedford-Stuyvesant,40.68908,-73.95545,Private room,59,2,171,2019-06-20,5.26,3,57 +35965362,Stunning 2 Bed 15 min from Midtown w/ Backyard,269599664,Linda,Queens,Astoria,40.75741,-73.91665,Entire home/apt,250,2,0,,,1,354 +26666333,Williamsburg sunny bedroom,9034275,Arnaud,Brooklyn,Williamsburg,40.71674,-73.95825,Private room,75,3,2,2019-03-04,0.19,1,0 +18753645,Beautiful Brooklyn Apartment! Newly Renovated!,130473272,Carla,Brooklyn,Prospect Heights,40.6806,-73.97164000000001,Entire home/apt,150,2,140,2019-06-27,5.61,1,94 +22293021,Huge and Beautiful Room in a Very Nice Apartment.,137136024,Hector,Queens,Maspeth,40.72575,-73.89456,Private room,75,1,4,2018-02-15,0.22,1,0 +30443961,"Cozy Private Bedroom in NYC ""LES"" Manhattan!",226503876,Chi,Manhattan,Lower East Side,40.71383,-73.98867,Private room,60,5,13,2019-06-30,1.9,2,253 +19098733,Cozy Efficiency Studio on Best West Chelsea Block!,82920107,Zach,Manhattan,Chelsea,40.746190000000006,-74.00559,Entire home/apt,149,30,1,2018-07-16,0.08,1,364 +10527142,Beautiful and Cozy Garden Level Brooklyn Townhouse,54282449,Michael,Brooklyn,Bedford-Stuyvesant,40.68449,-73.92773000000001,Entire home/apt,75,1,38,2019-06-25,3.79,1,195 +3248671,Private Room in Artist's Loft,6032480,Anna,Brooklyn,Williamsburg,40.71207,-73.95076999999999,Private room,65,2,152,2019-06-18,2.5,2,80 +20016469,Quaint Nolita Apartment,45374780,Zal,Manhattan,Little Italy,40.72008,-73.99611999999999,Private room,95,3,0,,,1,0 +7205945,Beautiful West Village Apartment,37731966,Ella,Manhattan,West Village,40.73525,-74.00216999999999,Entire home/apt,165,10,10,2016-09-03,0.21,1,0 +3442152,Stunning Park Slope 2BR,17347275,Jean-Cosme,Brooklyn,Gowanus,40.68094,-73.98205,Entire home/apt,190,3,2,2015-08-16,0.03,1,0 +35803557,Sunny room in a 2 bedroom shared apartment,77196523,Ninett,Manhattan,Harlem,40.82936,-73.9493,Private room,80,2,0,,,1,15 +21813814,Cute and convenient WB apartment,158997467,Thomas,Brooklyn,Williamsburg,40.70966,-73.95666999999999,Private room,75,2,41,2018-10-29,2.11,2,0 +30147493,NoLIta / Soho 1 bedroom oasis,2743475,Jenny,Manhattan,Nolita,40.72224,-73.99675,Entire home/apt,165,3,5,2019-02-06,0.74,1,0 +21311240,Amazing Location! Apartment in South Williamsburg,154239561,Ismael,Brooklyn,Williamsburg,40.71198,-73.95787,Entire home/apt,200,2,45,2019-06-30,2.16,2,268 +6005231,The Hub for Two,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68459,-73.93985,Entire home/apt,105,2,127,2019-06-27,3.88,3,113 +24131843,"Snug, Sun Flooded Room in The Upper West Side",14742776,Daniyal,Manhattan,Morningside Heights,40.80466,-73.96529,Private room,55,4,3,2018-04-13,0.2,1,0 +21942984,3 Bedroom Prime Park Slope 6th Ave/Barclays Center,157788926,Josh,Brooklyn,Park Slope,40.67913,-73.97476999999999,Entire home/apt,199,2,45,2019-06-09,2.34,1,302 +19099600,"Large, Private 1 Bedroom in Historic Brownstone",1342918,Keri,Brooklyn,Crown Heights,40.67192,-73.93414,Entire home/apt,95,5,8,2018-03-19,0.32,1,0 +2102315,Spacious Modern Williamsburg Loft!,10720001,Phoebe,Brooklyn,Williamsburg,40.70981,-73.95189,Entire home/apt,275,3,3,2014-11-30,0.05,1,0 +33372038,Spacious designer’s flat.,1499286,Andrey,Manhattan,Hell's Kitchen,40.76303,-73.99225,Entire home/apt,245,5,8,2019-06-19,3.24,2,13 +35998467,Private room like studio in shared APT,269078124,铀 Yuli,Manhattan,Washington Heights,40.84365,-73.94069,Private room,60,20,0,,,3,180 +3395099,An Upper-Manhattan room of your own!,10657357,Ivan,Manhattan,Washington Heights,40.83328,-73.94511,Private room,51,6,20,2019-06-15,0.33,4,258 +9512372,Near Hudson River and Subway quiet apt,4110869,Golden&Mavy,Manhattan,Harlem,40.82243,-73.95447,Private room,50,30,10,2019-06-16,0.23,2,359 +19291110,Homely Private Room with Queen Sized Bed,34198671,Narmeen,Brooklyn,Crown Heights,40.67594,-73.9261,Private room,55,1,1,2017-06-24,0.04,1,0 +29782186,"Sunny , queen size bedroom near the metro",107161778,David,Brooklyn,Crown Heights,40.66531,-73.93267,Private room,100,4,0,,,1,0 +35483911,Lux 2BR apt City View:),191009021,Matt,Manhattan,Upper West Side,40.77119,-73.98769,Entire home/apt,250,3,1,2019-06-20,1.0,1,14 +1310672,BROWNSTONE BROOKLYN'S FINEST in NYC,2015914,Majar,Brooklyn,Bushwick,40.68799,-73.91677,Private room,75,3,73,2018-12-08,1.0,8,341 +21384410,Hip Brooklyn Duplex In Prospect Heights,32014256,Josh,Brooklyn,Crown Heights,40.67487,-73.95721,Entire home/apt,129,1,79,2019-06-23,3.88,1,144 +20833958,The Peach Room,145878384,Denise,Brooklyn,Crown Heights,40.67302,-73.93143,Private room,65,4,17,2019-06-09,0.76,7,303 +26022104,Cosy condo in Williamsburg with amazing rooftop,144345250,David,Brooklyn,Williamsburg,40.71552,-73.94263000000001,Private room,110,2,0,,,1,0 +2519879,Cozy private room in L.E.S -,10149453,Girish,Manhattan,Lower East Side,40.71934,-73.98196,Private room,110,3,0,,,1,0 +30110482,686 A home away from home,226250191,Shawn,Brooklyn,Brownsville,40.65239,-73.91029,Entire home/apt,130,2,20,2019-06-29,2.63,1,139 +31296410,Private bedroom in cozy apt near Central Park,535343,Chad,Manhattan,Harlem,40.8014,-73.9578,Private room,60,2,12,2019-06-24,2.35,1,1 +33376169,BedStuy Private Room (D6),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93038,Private room,49,2,6,2019-06-28,2.17,8,226 +14959195,Huge Bedroom with Private Shower and Bathroom,67126282,Brian,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94334,Private room,80,1,4,2016-11-24,0.12,1,0 +10611168,Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76295,-73.99432,Entire home/apt,130,30,6,2019-06-15,0.15,31,331 +5692492,Cozy room in unique artsy apartment,3148473,Maria,Manhattan,Washington Heights,40.83891,-73.93758000000001,Private room,45,1,10,2016-09-04,0.19,1,0 +18430686,Private bedroom in an amazingly located apartment.,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.7627,-73.98836999999999,Private room,80,3,42,2019-05-30,1.58,3,172 +12318,West Side Retreat,16800,Cyn,Manhattan,Upper West Side,40.79009,-73.97927,Private room,135,4,81,2019-06-16,0.69,1,273 +21499536,Sunny and cozy Upper West Side Apartment,8132596,Aniko,Manhattan,Upper West Side,40.78858,-73.97462,Entire home/apt,170,3,34,2018-04-01,1.66,1,0 +30393853,Spacious 1 Bedroom in Historic Brownstone,49282603,Zahid,Brooklyn,Bedford-Stuyvesant,40.690540000000006,-73.92801,Entire home/apt,75,7,4,2019-06-28,0.64,1,10 +32893569,"EAST 141 FACE HARLEM +NEAR TO YANKE STADIUM",144839232,Karla,Bronx,Mott Haven,40.80981,-73.92031,Private room,39,1,9,2019-07-01,3.38,1,176 +4927853,"All-Inclusive Room, Super Cute Apt",331579,Marlon,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92331,Private room,50,3,32,2019-06-23,0.72,2,329 +9879216,Stay in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.71811,-73.96222,Private room,69,3,0,,,3,0 +34345750,"Luxurious apartment, accessible 2 transportations",134762059,Renee,Brooklyn,Canarsie,40.63149,-73.90796999999999,Private room,50,1,2,2019-06-11,0.88,2,365 +9800247,East Village Bedroom in Duplex!,36585734,Pj,Manhattan,East Village,40.72955,-73.98058,Private room,77,1,0,,,1,0 +8712309,Large and cosy room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69473,-73.93437,Private room,110,2,86,2019-07-02,1.9,7,316 +29073462,Chill Room in soho,116381793,Jordan,Manhattan,SoHo,40.72182,-73.99963000000001,Private room,134,1,3,2018-12-05,0.36,1,70 +610596,Chateau Gowanus,2992042,"Christopher, Samantha And Mason",Brooklyn,Gowanus,40.67376,-73.99648,Entire home/apt,198,2,103,2019-06-08,1.62,1,299 +4549930,Charming apt close to everything!,19196381,Kimia,Manhattan,Upper East Side,40.77127,-73.95108,Entire home/apt,150,3,74,2019-05-27,1.33,1,263 +7770529,Charming Studio in the West Village,514455,Elana,Manhattan,West Village,40.73162,-74.00928,Entire home/apt,180,1,0,,,1,0 +36204503,Private studio in New York most artistic Bushwick,167024334,Mani,Brooklyn,Bushwick,40.70286,-73.92697,Entire home/apt,120,1,0,,,2,339 +32989719,Luxe Long Island City Space Minutes From Manhattan,60275401,Joel,Queens,Long Island City,40.75038,-73.93904,Private room,89,1,12,2019-06-23,7.2,1,288 +7293506,Charming Upper West Side Apartment,2993160,Lauren,Manhattan,Upper West Side,40.78629,-73.98056,Entire home/apt,200,7,0,,,1,0 +1954450,Spacious Sunny Designer 1 Bedroom in East Village,2266169,Erika,Manhattan,East Village,40.72187,-73.98083000000001,Entire home/apt,150,2,221,2019-06-18,3.3,1,215 +31502639,Comfortable room close to train 30 min to Times Sq,235073206,Julianna,Manhattan,Harlem,40.82049,-73.94505,Private room,75,1,21,2019-06-17,4.09,4,351 +34943918,Enjoy Brooklyn... visit Manhattan,41131304,Salomé,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93718,Entire home/apt,150,2,4,2019-06-23,3.16,1,66 +35989097,Large Cozy Newly Renovated 1 Bedroom Private Apt,200927536,Manu,Brooklyn,Bushwick,40.70517,-73.91703000000001,Entire home/apt,120,2,0,,,3,155 +22455153,2 Bedroom - Midtown off 5th Ave,26490904,Deo,Manhattan,Midtown,40.76151,-73.97635,Entire home/apt,220,30,2,2019-02-04,0.17,4,280 +36418759,"Spacious Room w/ AC, Laundry, WiFi + Free Cleaning",154980356,Joanne & Robert,Brooklyn,Bedford-Stuyvesant,40.686,-73.93,Private room,32,30,0,,,1,10 +6852731,Cozy apt in very hip Greenpoint!,2407990,Linsy,Brooklyn,Greenpoint,40.72982,-73.95503000000001,Entire home/apt,120,3,2,2015-12-14,0.05,1,0 +22938753,Luxury Studio near Central Park - Times Square,4920221,UBliss,Manhattan,Midtown,40.76551,-73.98315,Entire home/apt,189,29,3,2018-10-27,0.27,1,358 +15160791,Private Room Williamsburg 3 Blocks from L Bedford,96186778,Masahiro,Brooklyn,Williamsburg,40.71865,-73.95875,Private room,75,3,72,2019-06-22,2.14,1,56 +7632166,1 private bedroom in cozy Apartment in Brooklyn,4596309,Daphne,Brooklyn,Bedford-Stuyvesant,40.68317,-73.91431999999999,Private room,40,3,3,2016-09-12,0.07,1,0 +15818624,Sunny and spacious 1-bedroom in Brooklyn,18192430,Jamie,Brooklyn,Fort Greene,40.6967,-73.97476999999999,Private room,80,1,53,2018-06-01,2.15,1,0 +3958460,Central Park-Lincoln Center,10194688,Mariela,Manhattan,Upper West Side,40.77323,-73.98014,Private room,100,3,172,2019-07-01,2.93,1,214 +13801326,Beautiful book-filled room + garden in Bed Stuy,1916501,Josephine,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95443,Private room,50,1,0,,,1,0 +33582776,Cozy Guest Quarters in East Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.7234,-73.98267,Private room,62,2,15,2019-06-21,4.84,4,284 +23632853,Entire sunny 2-floor loft in East Williamsburg,6023250,Kate,Brooklyn,Williamsburg,40.70984,-73.9433,Entire home/apt,175,2,4,2019-05-13,0.45,1,27 +21578157,Quaint and Large midtown 1Bed next to Empire state,156921633,Jamie,Manhattan,Kips Bay,40.74128,-73.98069,Entire home/apt,275,2,93,2019-06-18,4.61,1,66 +32527273,Greenwich Village Studio Apartment,178793639,Alexandra,Manhattan,Greenwich Village,40.72835,-74.00159000000001,Entire home/apt,175,3,0,,,1,157 +18657209,Private Room and Bath in the Lower East Side!,90824676,Lauren,Manhattan,East Village,40.72288,-73.98342,Private room,60,1,3,2017-08-27,0.12,1,0 +10351593,Ed's Place,53274087,Edgar,Manhattan,Harlem,40.82284,-73.94199,Private room,90,1,151,2019-07-06,5.34,1,22 +33704586,Hudson Yards Penthouse Luxury Sublet,50484250,Jeremy,Manhattan,Hell's Kitchen,40.75813,-73.99818,Private room,100,90,0,,,1,160 +19751205,"Gorgeous Sun-fulled Studio, Perfect Location!!!",55148803,Bianca And Jordan,Brooklyn,Williamsburg,40.71581,-73.95423000000001,Entire home/apt,146,2,40,2019-06-23,1.66,1,200 +33038266,Spacious Room in Chill Ridgewood Avail. Sept - Oct,216310452,Jorge,Queens,Ridgewood,40.70078,-73.9072,Private room,60,35,1,2019-04-02,0.3,1,64 +30438271,Large Bedroom Next to Central Park,31610838,Chris,Manhattan,Upper West Side,40.79895,-73.96128,Private room,95,12,1,2019-01-10,0.17,1,0 +13905833,1 BDR PRIME HELLS KITCHEN LOCATION,82444858,Gilbert,Manhattan,Hell's Kitchen,40.7672,-73.98456999999999,Entire home/apt,150,3,0,,,1,0 +253846,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73731,-73.9545,Private room,179,3,4,2015-12-04,0.05,28,81 +24654607,The East Village Home: The Cabin Room,126034120,Roni,Manhattan,East Village,40.72607,-73.97631,Private room,95,1,67,2019-06-22,4.59,3,241 +33983585,Comfy private room with new interior!,256581747,Sergii,Brooklyn,Williamsburg,40.7062,-73.94237,Private room,72,30,0,,,3,318 +26201442,"Private, Comfy Room, 2 blocks from Central Park",63600861,Birim,Manhattan,Harlem,40.80036,-73.95433,Private room,90,3,50,2019-06-15,4.07,1,7 +1434010,Brooklyn College Manor,5654072,Mark,Brooklyn,Flatbush,40.63427,-73.95248000000001,Entire home/apt,171,2,34,2019-07-02,1.47,3,243 +17512277,Large two bedroom in the middle of NYC apt. 3C,17770287,Nina,Manhattan,Murray Hill,40.74916,-73.98115,Entire home/apt,150,30,5,2019-05-12,0.22,14,339 +94035,"Modern, Safe, Clean, Bright Room in Astoria for 2",35375,Savannah,Queens,Astoria,40.75961,-73.91117,Private room,80,1,42,2019-07-06,1.21,2,365 +36333565,Great room in ⚓NYC⚓,271627222,Alex,Manhattan,East Harlem,40.80995,-73.93800999999999,Private room,215,1,0,,,1,30 +4765123,Beautiful Apt in West Harlem,24584990,Travis,Manhattan,Harlem,40.8261,-73.95074,Private room,50,3,8,2016-09-02,0.15,1,0 +26160236,Beautiful Exposed Brick Williamsburg 2 bedroom,8871034,Sarah,Brooklyn,Williamsburg,40.71002,-73.96333,Entire home/apt,175,5,21,2019-04-14,1.72,1,0 +16363434,Midtown Loft,40965944,Lou,Manhattan,Midtown,40.75092,-73.98635999999999,Entire home/apt,290,2,5,2017-04-16,0.16,1,0 +13371473,Cozy Bedroom in Spacious Apt in East Williamsburg,185394,Gregory,Brooklyn,Williamsburg,40.70478,-73.9435,Private room,75,1,2,2016-06-27,0.05,2,0 +22602605,2-Bedroom Apartment at Fort Greene,15535189,Yi,Brooklyn,Bedford-Stuyvesant,40.68788,-73.95741,Entire home/apt,95,2,4,2018-05-02,0.26,1,0 +35611781,Peace and Comfort,264862581,Dianne,Queens,Rosedale,40.68036,-73.72716,Private room,75,1,3,2019-07-07,3.0,3,90 +34415643,Bright & Meditative room in Williamsburg!,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71143,-73.94189,Private room,69,1,9,2019-07-04,8.18,3,318 +20744284,Sunny Room in Kensington,47343420,Jennifer,Brooklyn,Kensington,40.64493,-73.97327,Private room,85,2,61,2019-06-30,2.71,2,61 +34776151,Bedroom + den + bath w/ sep. entry in Bed Stuy!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94844,Private room,68,1,8,2019-07-02,6.32,2,36 +9838585,Pre-war 1 br in heart of BK Heights,18982207,Kate,Brooklyn,Brooklyn Heights,40.69237,-73.99412,Entire home/apt,130,4,0,,,1,0 +33290240,Williamsburg Resort 15 Mins. to Manhattan!,90294445,Brendan,Brooklyn,Williamsburg,40.70865,-73.94507,Entire home/apt,200,4,0,,,2,4 +11735378,Inspired Space on Troutman,18466740,Ali,Brooklyn,Bushwick,40.69862,-73.93066,Private room,80,5,7,2019-01-04,0.18,1,300 +18370699,Spacious Greenpoint Apt near McGolrick Park!,36883838,Monika,Brooklyn,Greenpoint,40.72211,-73.94215,Entire home/apt,145,2,20,2019-06-26,0.76,1,98 +9925507,The Fig: Brooklyn's TinyHome Cabin in Williamsburg,2955215,Bee,Brooklyn,Williamsburg,40.71255,-73.94881,Entire home/apt,40,1,95,2019-06-22,2.24,1,7 +24332080,Huge Bright Bedroom in Brooklyn Townhouse,62803,Eugenia,Brooklyn,Crown Heights,40.67004,-73.92206999999999,Private room,54,6,6,2019-03-30,0.65,2,225 +13742783,Spacious Top Floor 2 BR Unit with Balcony,80463005,Anita,Brooklyn,Flatbush,40.63316,-73.96606,Entire home/apt,120,2,48,2018-04-08,1.36,1,53 +13463768,"Spacious, Affordable 1BR Apartment in Brooklyn",23121273,Samantha,Brooklyn,East Flatbush,40.64286,-73.94839,Entire home/apt,75,5,8,2019-04-10,0.22,1,0 +8239352,Private Room 12x12 close to manhattan,43449898,Ashley,Queens,Maspeth,40.72194,-73.91138000000001,Private room,59,1,85,2019-06-30,1.85,1,176 +19829900,Modern Front Apartment in Brooklyn!,123634626,Livia,Brooklyn,Bensonhurst,40.61889,-73.99895,Entire home/apt,99,3,28,2019-07-04,1.92,1,325 +13667835,Beautiful cozy apartment Upper East Side,79479983,Paula,Manhattan,Upper East Side,40.78137,-73.95176,Entire home/apt,150,2,1,2016-08-13,0.03,1,0 +24899087,"Private room in Ridgewood, near the L line, for 2",140057330,Joey,Queens,Ridgewood,40.69649,-73.90564,Private room,55,1,20,2019-05-19,1.44,7,107 +32048862,Twin Beds With Sauna & Relaxing Spa Amenities,89985620,Annette C,Brooklyn,Flatlands,40.62297,-73.92971,Private room,42,2,13,2019-06-26,3.33,3,280 +1914787,Your home away from home in Comfort,9509269,Carlos,Queens,Briarwood,40.71477,-73.82011999999999,Private room,66,5,95,2019-05-25,1.39,2,301 +18254317,Great place in Manhattan - Upper west side,101262003,John,Manhattan,Upper West Side,40.78571,-73.97649,Private room,150,1,0,,,2,0 +7257311,Cozy Walk-up Apt in the Historic Lower East Side.,14726038,Kimberly,Manhattan,Chinatown,40.71475,-73.9912,Entire home/apt,120,2,13,2018-04-04,0.37,1,0 +6887755,Spacious and nice 2BR near Subway,21426910,Allen,Brooklyn,Gravesend,40.59627,-73.97287,Entire home/apt,109,2,224,2019-07-05,4.7,2,73 +31883514,"♥Private-Keyed Room #2 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73697,-73.99563,Private room,99,12,3,2019-02-11,0.6,4,19 +35037586,Spacious home with views of Gramercy Park,72686340,Anne-Marie,Manhattan,Gramercy,40.73891,-73.98657,Entire home/apt,136,4,0,,,1,148 +24077570,Spacious Brooklyn Apartment w/ private backyard,22923979,Séamus,Brooklyn,Bedford-Stuyvesant,40.68149,-73.93449,Entire home/apt,155,2,13,2019-06-28,1.28,1,53 +31129115,Luxurious Boutique Studio Red Hook Brooklyn,1499484,Tom,Brooklyn,Red Hook,40.67746,-74.01392,Entire home/apt,99,1,29,2019-06-28,4.97,2,273 +6809332,"Cozy, Warm Home in the West Village",198010,Shenaz,Manhattan,West Village,40.73728,-74.00773000000001,Entire home/apt,95,5,4,2016-02-21,0.09,1,0 +17367289,"Cozy 1BD near JFK, Beach, Subway, Buses, & Kitchen",112910861,Francisca,Queens,Far Rockaway,40.59745,-73.76032,Private room,35,1,61,2019-06-06,2.12,2,124 +21566909,2 bedroom floor-thru in heart of Park Slope -,4058709,Elise And Dave,Brooklyn,Park Slope,40.67497,-73.97913,Entire home/apt,235,5,41,2019-06-27,2.22,2,219 +28081782,Private room w/attached bath in hot of Flushing,205745676,Liqin,Queens,Flushing,40.75806,-73.82005,Private room,85,1,24,2019-06-16,2.31,9,341 +29943909,Cozy and spacious room in the heart of NYC❤️,168184878,Daria,Manhattan,Hell's Kitchen,40.76423,-73.98891,Private room,145,2,12,2019-06-06,1.59,1,37 +13392143,Astoria: 2 Weeks July 1st - 14th,39175915,Wesley,Queens,Ditmars Steinway,40.77643,-73.91364,Private room,29,14,0,,,1,0 +4050795,Cozy Contempo Rustic Chic (stay w/a local artist!),21004091,Tony,Brooklyn,Bushwick,40.70102,-73.92864,Private room,90,2,52,2019-05-22,2.21,1,288 +10144140,Gorgeous Bushwick 3 BR Private Yard,9153601,David,Brooklyn,Bushwick,40.68594,-73.91448000000001,Entire home/apt,218,2,70,2019-05-09,1.67,1,335 +35681056,"Elegant Times Square Apartment, with City Views!!!",268392801,Marisa,Manhattan,Hell's Kitchen,40.75597,-73.99457,Entire home/apt,251,3,3,2019-07-04,3.0,1,258 +2636762,Beautiful Prime Williamsburg Apt,8481739,David,Brooklyn,Williamsburg,40.71498,-73.96104,Entire home/apt,152,1,334,2019-06-27,5.2,1,269 +1869432,West Village/SOHO Pretty Apartment,9744172,Melissa,Manhattan,SoHo,40.72838,-74.00461999999999,Entire home/apt,209,2,7,2018-01-01,0.1,1,265 +18191456,Amazing Studio in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75933,-73.82313,Entire home/apt,115,30,3,2019-05-24,0.12,15,7 +23188871,Spacious Apt in Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84643,-73.94187,Private room,120,1,0,,,3,0 +26003667,Pvt Room in Artsy Home w/pvt roof gym!,2739367,Heather,Brooklyn,Williamsburg,40.70931,-73.94253,Private room,62,1,71,2019-06-20,5.52,2,73 +16846462,Brooklyn Gem,28297517,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68841,-73.95082,Entire home/apt,140,2,54,2019-06-02,1.91,1,267 +21120547,Full Apartment / 1 Bedroom ( Lower Level),152331348,Juan,Queens,Richmond Hill,40.69474,-73.82284,Entire home/apt,85,2,33,2019-06-16,1.62,1,179 +16269256,Wash Hts 2BR apt extra sofa bed. Avail 12/20-1/4,101053359,John,Manhattan,Washington Heights,40.85447,-73.92804,Entire home/apt,99,4,2,2018-01-02,0.09,1,0 +6180762,BRAND NEW 1BD / STEPS CENTRAL PARK!,1475015,Mike,Manhattan,Upper West Side,40.76877,-73.9846,Entire home/apt,87,30,3,2017-11-30,0.1,52,275 +27139915,Living Room,199833548,Syeda,Queens,Sunnyside,40.74161,-73.92505,Shared room,40,1,20,2019-06-09,1.88,9,343 +200955,STYLISH EAST VILLAGE FLAT,568325,Simone,Manhattan,East Village,40.73089,-73.98195,Entire home/apt,160,30,25,2018-04-30,0.26,1,46 +7749069,Large 1BR apt only 20 minutes to Manhattan.,40735098,Joel,Brooklyn,Borough Park,40.64346,-73.99814,Entire home/apt,120,2,35,2019-06-15,0.78,1,346 +32676181,Accessible Two Bedded Suite With Kitchen near MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.7492,-73.99073,Private room,100,1,22,2019-07-02,9.85,9,319 +30418156,Cozy room in Doormen/Elev. bldg by Grand Central,24346280,Eric,Manhattan,Midtown,40.75294,-73.97105,Private room,70,5,1,2019-02-20,0.22,1,0 +16954154,Cozy with a private bathroom bklyn,14898658,Chadanut,Brooklyn,Kensington,40.64237,-73.98048,Private room,45,1,41,2019-05-27,1.41,11,22 +21428791,LES Duplex Penthouse with Private Rooftop Terrace,16794494,Ian,Manhattan,East Village,40.72251,-73.98129,Private room,200,2,9,2019-05-27,0.46,1,0 +36103759,East 60s NYC. Heart of midtown manhattan,134749416,Amir,Manhattan,Upper East Side,40.76059,-73.9616,Shared room,209,3,0,,,1,30 +2023357,Artistic n Funky 1BD by the Park!,10398270,Andrew And Katie,Manhattan,East Harlem,40.78605,-73.95087,Entire home/apt,120,6,4,2016-04-09,0.06,1,0 +19743941,Spacious Prospect Park Loft Apartment,6042053,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.96084,Entire home/apt,200,3,32,2019-06-28,1.37,1,317 +14557713,Simple Williamsburg room in prime location!,14684457,Christine,Brooklyn,Williamsburg,40.71521,-73.96164,Private room,35,3,2,2016-08-31,0.06,1,0 +23976700,HUGE ARTSY DESIGNER APRT IN CHINATOWN W/ ELEVATOR,7988008,Emily,Manhattan,Chinatown,40.71336,-73.99263,Entire home/apt,210,1,16,2019-05-04,1.04,1,318 +8668932,Bright and Artsy Crown Heights Apt!,10595966,Jennifer,Brooklyn,Crown Heights,40.66687,-73.95662,Entire home/apt,119,4,13,2018-06-05,0.29,1,0 +33134698,Furnished Upper West Side near Central Park,50741398,Jessica,Manhattan,Upper West Side,40.80071,-73.96616,Private room,80,1,14,2019-05-16,3.89,4,0 +30704165,Entire Apt for 9Guests near Subway-20mins Times Sq,172379806,Alaz,Queens,Ditmars Steinway,40.77108,-73.91378,Entire home/apt,100,2,25,2019-06-26,3.55,1,294 +35670919,Amazing private room with private bathroom,268122129,Sergii,Brooklyn,Bushwick,40.70105,-73.93954000000001,Private room,80,30,0,,,5,343 +27398972,"Room in beautiful, well-lit Brooklyn Brownstone",2685910,Alison,Brooklyn,Bedford-Stuyvesant,40.68707,-73.95482,Private room,100,2,0,,,1,0 +10390256,East Village Apartment,3078092,Amanda,Manhattan,East Village,40.73144,-73.98355,Private room,75,1,0,,,1,0 +30442211,Whole Bedroom in Co-Living Space Madison 3L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93289,Private room,35,30,1,2019-05-30,0.73,27,312 +698132,"LARGE PRIVATE FLOOR IN BROOKLYN, NY",3577509,Eric,Brooklyn,Bedford-Stuyvesant,40.69128,-73.93653,Entire home/apt,85,4,239,2019-06-26,2.89,2,1 +12941015,2BR Apt in East Village,406843,Trevor,Manhattan,East Village,40.72889,-73.98006,Entire home/apt,250,3,33,2019-06-23,0.9,2,80 +10365991,"Sunny and Spacious 2BR, Murray Hill",17790870,Zal,Manhattan,Murray Hill,40.74673,-73.97343000000001,Entire home/apt,83,1,2,2016-01-31,0.05,1,0 +4401013,3BR/2BA Duplex - 1min to subway!,2007928,Erin,Brooklyn,Bedford-Stuyvesant,40.67849,-73.91672,Entire home/apt,229,2,195,2019-06-24,3.41,1,254 +13261498,Garden Duplex in trendy South Park Slope,74653179,Kevin,Brooklyn,South Slope,40.66537,-73.98559,Entire home/apt,150,3,6,2018-08-19,0.17,1,1 +35468906,Gorgeous 1BR Upper West Side *NEW LISTING *,266860871,Georgia,Manhattan,Upper West Side,40.787,-73.97237,Entire home/apt,200,2,1,2019-07-03,1.0,1,265 +760303,UES Manhattan Quiet Nest 1 Bdrm,4007393,Jenni,Manhattan,Upper East Side,40.77638,-73.95246999999999,Entire home/apt,155,5,63,2019-07-05,0.78,1,235 +31984471,private room in artist's home. prime WILLIAMSBURG.,11914004,Kate,Brooklyn,Williamsburg,40.71275,-73.96049000000001,Private room,50,2,5,2019-07-07,1.06,1,0 +19057073,Bright central designer's apt - steps to train!,538008,Deren,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94946999999999,Entire home/apt,125,5,23,2019-06-17,0.95,1,1 +23077040,Private room in Upper West Side,171339086,Jeta,Manhattan,Upper West Side,40.80026,-73.96425,Private room,85,2,25,2018-10-22,1.48,1,0 +33373002,KEW GARDEN HILLS BEST.,251413755,Jc,Queens,Flushing,40.7384,-73.83051999999999,Entire home/apt,132,30,0,,,1,342 +34490351,Large King Studio steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75633,-73.98921999999999,Private room,100,1,0,,,13,335 +1787771,CHIC NEW YORK OASIS WITH ROOF DECK!,9381867,Gilleon,Brooklyn,Bedford-Stuyvesant,40.68273,-73.95437,Entire home/apt,185,1,0,,,1,0 +18354443,Spacious colorful East Village 2BR,12144814,Kosuke,Manhattan,East Village,40.729,-73.98195,Entire home/apt,150,30,3,2019-01-02,0.13,1,0 +3511934,Beautiful West Harlem brownstone,17682312,Arnold,Manhattan,Harlem,40.82947,-73.95104,Private room,84,1,0,,,1,0 +22908372,Spacious room in a renovated two-bedroom unit!,17334910,Siwoo,Manhattan,Washington Heights,40.83618,-73.94443000000001,Private room,60,7,0,,,1,0 +16439426,Spacious Room in Large 2 Bedroom Prewar Apartment,21136805,Kalim,Brooklyn,Crown Heights,40.66973,-73.95634,Private room,41,1,7,2019-02-15,0.23,1,45 +17430920,Standard New York girls room,117922187,Lei,Manhattan,Roosevelt Island,40.76437,-73.94844,Private room,150,1,0,,,1,88 +25815764,Sunny private room 10 mins from Times Sq 23B3,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99563,Private room,62,7,10,2019-05-04,0.87,47,358 +11910848,Beautiful TriBeCa Apartment,63544192,Annie,Manhattan,Tribeca,40.71893,-74.00485,Private room,60,25,2,2018-07-31,0.05,1,0 +795680,Upper East side cozy 1 bdr apt,4191209,Fran,Manhattan,Upper East Side,40.7666,-73.95903,Entire home/apt,105,14,7,2019-01-06,0.16,1,84 +29000338,Shared Room 4 FEMALE Guests 30mins to Manhattan-4,172369331,Abby,Brooklyn,Sheepshead Bay,40.59658,-73.95944,Shared room,50,7,6,2019-05-17,0.7,10,311 +20583325,Cool studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.7482,-73.97525,Entire home/apt,150,30,4,2019-01-25,0.28,50,333 +11259934,Light-Filled Loft (Morgan L),5440411,Dom,Brooklyn,Williamsburg,40.70647,-73.93265,Private room,64,3,10,2017-08-02,0.27,1,0 +32064173,"Safe, cozy, and clean in the heart of Brooklyn",51709634,Israel,Brooklyn,East Flatbush,40.65441,-73.95024000000001,Private room,31,1,25,2019-06-09,5.0,1,5 +4767549,Charming Apartment Up in the Trees,207356,Martin & Julia,Brooklyn,Carroll Gardens,40.68171,-73.99765,Entire home/apt,150,5,1,2016-09-06,0.03,1,0 +20946693,The Little Nook 1,143041708,Verna,Brooklyn,East Flatbush,40.63568,-73.94745999999999,Private room,70,4,0,,,1,88 +24908887,Home away from home in Harlem,5074874,Jessica,Manhattan,Harlem,40.80793,-73.95127,Entire home/apt,225,2,3,2018-07-24,0.24,1,6 +34745979,Sun-drenched Brooklyn town home large 3 bedroom,9450360,Rick,Brooklyn,Crown Heights,40.67772,-73.95564,Entire home/apt,278,2,7,2019-07-06,4.12,1,328 +6261696,Private Room in E. Williamsburg,1197823,Elliott,Brooklyn,Williamsburg,40.70839,-73.94538,Private room,119,3,126,2018-01-27,2.49,2,0 +2552606,Beautiful and cozy 1BR Apt,13068601,Martin,Manhattan,Morningside Heights,40.8075,-73.95844,Entire home/apt,99,30,9,2015-01-02,0.14,1,0 +18934728,A Place of Comfort,131848646,Modesta,Manhattan,Washington Heights,40.83827,-73.94393000000001,Private room,55,7,26,2019-06-29,1.06,1,57 +28101217,Cozy Bushwick apartment with backyard!,74305569,Nicole,Brooklyn,Bushwick,40.69552,-73.92341,Entire home/apt,143,2,3,2018-10-14,0.29,2,0 +35573040,Summer sublet in south slope,16354887,Sonya,Brooklyn,Sunset Park,40.66154,-73.99158,Entire home/apt,109,9,0,,,1,16 +7009152,Four stops to Manhattan!,22908412,Donna,Brooklyn,Crown Heights,40.67259,-73.95831,Private room,65,2,155,2019-06-22,3.17,1,117 +33656304,"Smart Midtown West Studio w/ sundeck, gym, near Times Sq. by Blueground",107434423,Blueground,Manhattan,Theater District,40.75938,-73.98749000000001,Entire home/apt,219,30,0,,,232,14 +15159758,Prospect Park family friendly apt,893136,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66198,-73.95798,Entire home/apt,98,2,4,2017-10-29,0.17,1,0 +20862285,women only great place in Forest Hills NY,84562428,Liliana,Queens,Forest Hills,40.73715,-73.84792,Private room,45,5,18,2019-06-03,0.83,2,80 +13059537,One Bedroom Luxury Furnished 5188,16098958,Jeremy & Laura,Manhattan,Financial District,40.7034,-74.00787,Entire home/apt,175,30,2,2018-03-01,0.1,96,365 +5771361,Newly renovated 2 bed 2 bath in EV,21191263,Jonny,Manhattan,East Village,40.72915,-73.98866,Entire home/apt,275,1,1,2015-03-30,0.02,1,0 +837430,Ground Floor Studio With Backyard,252365,Eileen,Manhattan,East Village,40.7225,-73.98267,Entire home/apt,130,5,4,2015-01-03,0.05,1,0 +25354569,1 1/2 bedroom totally private exclusive Apt. #4,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68333,-73.95232,Entire home/apt,200,7,4,2019-05-11,0.29,2,179 +35709849,Palace of Perhaps (Bushwick/Ridgewood),24294179,Alexander,Queens,Ridgewood,40.70084,-73.90843000000001,Private room,48,1,2,2019-07-07,2.0,1,17 +19528396,Spacious and romantic apartment near Prospect Park,1762828,Adrian,Brooklyn,Prospect-Lefferts Gardens,40.65612,-73.9605,Entire home/apt,167,3,4,2019-01-02,0.19,1,326 +9117976,Cozy Artistic Haven,41510712,Jac,Manhattan,Harlem,40.82827,-73.9493,Private room,36,1,1,2015-12-27,0.02,1,0 +14770256,Lovely bedroom in the heart of Brooklyn,42854068,Pau,Brooklyn,Midwood,40.61679,-73.96016,Private room,35,5,0,,,1,0 +22379701,Private room + full bathroom / lots of sun + dogs,92649019,Sophie,Brooklyn,Crown Heights,40.66921,-73.92624,Private room,68,6,48,2019-06-29,2.59,1,0 +15677846,Long Island City Apartment,101262037,Israel,Queens,Long Island City,40.75378,-73.93449,Private room,65,1,5,2019-04-27,0.15,1,66 +25965483,Light-filled Room with Private Bath & Entrance,4712374,Karen,Brooklyn,Greenpoint,40.73325,-73.95541999999999,Private room,85,1,12,2018-10-03,0.97,1,0 +34203618,"Well lit room in FiDi, Manhattan-June,July sublet",225651433,Sruthi,Manhattan,Financial District,40.708,-74.01485,Private room,52,25,0,,,1,99 +2674267,Comfy UWS Room near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77848,-73.98334,Private room,109,1,288,2019-07-02,4.58,4,103 +13998293,Sunny Designers Home w/Terrace - Heart of Downtown,2714018,Alexandria,Manhattan,East Village,40.72191,-73.9813,Entire home/apt,150,5,2,2016-10-03,0.06,1,0 +12851015,Midtown East XL 1 BR,61391963,Corporate Housing,Manhattan,Midtown,40.75755,-73.9666,Entire home/apt,133,30,3,2019-06-01,0.1,91,342 +21666641,LARGE LIGHT FILLED ROOM IN THE HEART OF BAYRIDGE,157705263,Kendria,Brooklyn,Bay Ridge,40.62602,-74.023,Private room,55,3,0,,,1,0 +4725852,Cozy home in south Williamsburg,405090,Sacha,Brooklyn,Williamsburg,40.7119,-73.96377,Entire home/apt,100,7,6,2019-01-09,0.15,1,0 +7728553,GR8 CARROLL GARDENS/ENTIRE STUDIO/!,40611169,Sol,Brooklyn,Carroll Gardens,40.67793,-73.99531,Entire home/apt,150,1,78,2019-05-09,2.22,5,365 +4172633,Cozy one bedroom apt at the center of Astoria,21652004,June,Queens,Astoria,40.75637,-73.92132,Entire home/apt,160,2,1,2017-07-03,0.04,1,0 +19141391,Unique Cozy Sunny converted Studio/One Bedroom,75065047,Simi,Manhattan,Lower East Side,40.71925,-73.98955,Entire home/apt,106,1,9,2018-11-04,0.39,1,364 +31476497,Modern stylized room in appartment Harlem 141st,566838,Max,Manhattan,Harlem,40.81944,-73.93974,Private room,70,1,23,2019-06-27,6.05,2,97 +1313711,Less than a minute from the Metro,7120328,Kiriko,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.94819,Entire home/apt,151,1,173,2019-07-05,2.36,1,213 +32109492,Amazing Studio at the Time square area/5-3A,48146336,Irina,Manhattan,Hell's Kitchen,40.76165,-73.99351,Entire home/apt,130,30,2,2019-06-01,0.53,20,332 +9698992,-CLEAN ROOM - New Apartment - Manhattan,43298076,Gordon M,Manhattan,Harlem,40.82195,-73.95373000000001,Private room,62,2,24,2019-06-14,0.55,4,97 +27929894,Beautiful 3 bed apt close to Central Park,3554039,Jimmy,Manhattan,Upper East Side,40.77041,-73.96109,Entire home/apt,300,2,11,2019-06-23,1.07,1,8 +24911170,Renovated Garden Townhouse Apartment,188337220,Fred,Brooklyn,Bedford-Stuyvesant,40.68452,-73.91614,Entire home/apt,99,3,49,2019-07-02,3.63,1,102 +20823125,PRISTINE STUDIO IN THE HEART OF THE E. VILLAGE,33913938,Luz,Manhattan,East Village,40.72945,-73.97986999999999,Entire home/apt,170,30,136,2019-05-24,6.18,1,291 +24153401,Sunny Family Apartment,2011899,Janelle,Brooklyn,Crown Heights,40.66749,-73.95555999999999,Entire home/apt,70,45,1,2018-08-04,0.09,1,2 +26654670,Cozy Room Great Price in Bushwick Bklyn! (Suite 2),44123062,Oscar,Brooklyn,Bushwick,40.68796,-73.90781,Private room,45,4,47,2019-07-02,4.37,4,20 +16271281,"Peaceful, cozy studio in Chinatown",46382018,Steven,Manhattan,Chinatown,40.7162,-73.99379,Entire home/apt,90,20,0,,,1,0 +30388972,"Ample 1BR w/ Indoor pool, Gym near Broadway by Blueground",107434423,Blueground,Manhattan,Theater District,40.75995,-73.98728,Entire home/apt,278,30,0,,,232,147 +35460949,Sweet Home,69683180,Shuhua,Manhattan,Hell's Kitchen,40.76198,-74.00033,Entire home/apt,200,1,0,,,1,3 +15620833,Only Steps Away from Central Park,95623010,Chad & Noel,Manhattan,Upper West Side,40.7762,-73.97944,Entire home/apt,185,2,145,2019-06-26,4.59,1,215 +9754751,Large 1 Bedroom Apartment,19067539,Rajesh,Queens,Kew Gardens,40.70344,-73.83435,Entire home/apt,100,1,2,2017-08-10,0.09,1,0 +32779148,HUGE Beautiful Brooklyn Loft,1135032,Kelsey,Brooklyn,Red Hook,40.680620000000005,-74.00721999999999,Private room,55,2,1,2019-05-01,0.43,1,5 +13082957,"COMFY & SECURE NEAR AIRPORT, SHOPPING MALLS & PARK",5261297,Jackie,Queens,Corona,40.74332,-73.85469,Private room,52,1,45,2018-08-07,1.27,1,57 +697923,Cute & Cozy NYC Room - Hell's Kitchen (dog in apt),3576466,Kevin,Manhattan,Hell's Kitchen,40.76422,-73.99382,Private room,75,2,176,2019-06-21,2.22,2,23 +31901835,The Tree of Life Community,49988341,Chris,Bronx,Wakefield,40.89682,-73.84318,Private room,41,1,0,,,1,163 +14281865,Serenity & Charm in Brooklyn's Best Area (Legal),43438475,Viviana,Brooklyn,South Slope,40.66847,-73.98893000000001,Entire home/apt,120,4,139,2019-06-20,3.98,3,136 +35935010,Penthouse duplex with 2 balconies! (7D),202757964,Mayan,Brooklyn,Williamsburg,40.71936,-73.96436,Entire home/apt,195,30,0,,,6,239 +29179918,Basemnt,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69342,-73.93884,Private room,58,2,0,,,3,317 +18120094,Clean Private Room in East Village,24594940,Manisha,Manhattan,East Village,40.72177,-73.98286,Private room,100,5,8,2019-01-03,0.3,1,128 +34812586,cozy manhattan hideaway,222201467,Alfie,Manhattan,Upper East Side,40.77176,-73.94903000000001,Entire home/apt,150,2,3,2019-05-31,1.96,1,66 +33694634,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76623,-73.99075,Shared room,85,1,18,2019-06-28,6.21,9,337 +23955297,Sunny Harlem room: Ideal sublet for summer intern,30021975,Lucy,Manhattan,Harlem,40.80731,-73.95155,Private room,49,2,2,2018-08-11,0.15,1,1 +9331413,Beautiful Apartment in Center of Williamsburg,17433287,Efrat,Brooklyn,Williamsburg,40.71786,-73.95588000000001,Entire home/apt,181,4,4,2017-05-02,0.09,2,188 +21490301,"Gorgeous, bright one-bed in amazing location",105340458,David,Manhattan,Lower East Side,40.72077,-73.98923,Entire home/apt,250,5,8,2019-03-15,0.43,1,0 +19780093,Convenient / Spacious 1BR in Union Square,6376364,Jing,Manhattan,East Village,40.73213,-73.98944,Entire home/apt,200,2,11,2017-10-10,0.47,1,0 +27424610,private room in east williamsburg spacious loft,2948064,Anthony,Brooklyn,Williamsburg,40.71031,-73.93623000000001,Private room,58,3,46,2019-07-03,4.19,2,126 +3040654,Sunny Bedroom In Astoria!,6041,Miranda,Queens,Ditmars Steinway,40.77748,-73.90971,Private room,47,2,14,2018-01-02,0.28,1,0 +5533000,Modern and spacious with backyard,28690907,Dwayne,Brooklyn,Bushwick,40.69525,-73.91385,Entire home/apt,250,3,16,2019-07-01,0.31,2,72 +31494679,Brighton Luxury,149221924,Viktor,Brooklyn,Brighton Beach,40.57504,-73.96673,Entire home/apt,80,1,1,2019-01-17,0.17,1,0 +27524608,Private Room in Stunning East Village Apartment,21858263,Lawrence,Manhattan,East Village,40.73047,-73.98048,Private room,83,2,0,,,1,0 +30563655,BEST LOCATION -TIME SQUARE-Javits- Spacious 2BEDS.,229288524,Yan,Manhattan,Hell's Kitchen,40.75569,-73.99110999999999,Entire home/apt,128,5,0,,,2,142 +16688892,East Williamsburg Cozy Studio,110478816,Robert,Brooklyn,Williamsburg,40.71237,-73.93899,Entire home/apt,95,2,13,2018-05-16,0.43,1,0 +33912291,Bright and Chill Room in Bushwick for two friends!,18765976,Mihail,Brooklyn,Bushwick,40.69903,-73.9149,Private room,70,1,14,2019-06-30,5.32,4,78 +7197915,The Heart of the Lower East Side!,37691482,Andrew,Manhattan,Lower East Side,40.72135,-73.98668,Entire home/apt,180,2,8,2018-05-28,0.19,1,0 +28616686,Newly Remodeled Room !!! downtown brooklyn,214694658,Damon,Brooklyn,Fort Greene,40.694390000000006,-73.97319,Private room,65,1,90,2019-06-24,9.41,1,254 +15604507,A Serene ambiance that will sooth your soul,100586983,Kessy-Ann,Brooklyn,East New York,40.66733,-73.88348,Entire home/apt,93,1,209,2019-06-15,6.35,1,86 +29149612,Cute Private Room in Astoria Duplex,21030441,Nathalie,Queens,Astoria,40.76836,-73.91506,Private room,87,2,20,2019-06-30,3.24,1,282 +3841033,"Bright, clean studio by subway",9708374,Anaïs,Brooklyn,Bay Ridge,40.63592,-74.02704,Entire home/apt,119,1,1,2016-01-09,0.02,1,0 +5823579,Amazing location!!!!!!! Upper East Side Manhattan,30224269,Todd,Manhattan,Upper East Side,40.77907,-73.95211,Entire home/apt,140,2,135,2019-06-16,2.68,1,228 +36178444,Your relaxing escape - studio apartment in NYC,1134155,Hadeel,Manhattan,Morningside Heights,40.807390000000005,-73.96068000000001,Entire home/apt,150,2,0,,,1,33 +24562495,summer(A套房私享一层closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74622,-73.78296999999999,Private room,79,1,35,2019-07-07,2.4,3,32 +4994058,MyModernCrib w/ Empire State Views ,25747773,Ellen!,Manhattan,Kips Bay,40.74045,-73.98175,Private room,140,5,2,2016-05-21,0.05,1,0 +3700364,Greenwich Village in the Sky,7644834,Dawnie,Manhattan,Greenwich Village,40.7284,-73.99812,Entire home/apt,199,8,48,2019-06-19,1.06,1,37 +10186876,"Lovely LES 1BR, W/D & Elevator: DEC. SUBLET PREFR.",20992861,Chloe,Manhattan,Lower East Side,40.71757,-73.99028,Private room,85,5,1,2016-01-05,0.02,1,0 +25589726,Comfy Brownstone 1BR with backyard,75569180,Joachim,Brooklyn,Bedford-Stuyvesant,40.68473,-73.92725,Entire home/apt,130,4,2,2018-06-17,0.15,1,0 +12727779,Bright single bedroom in duplex with backyard.,69205600,Daniel,Brooklyn,Bushwick,40.70324,-73.92943000000001,Private room,43,1,0,,,1,0 +29939528,Comfortable living space,109854433,Careen,Brooklyn,Bedford-Stuyvesant,40.68777,-73.95378000000001,Entire home/apt,99,30,2,2019-06-18,0.94,2,253 +12538440,20 Day Room Rental in Manhattan!!,67931669,Indigo,Manhattan,Harlem,40.81498,-73.95078000000001,Private room,45,20,0,,,1,0 +35039936,New 1 bedroom apartment in luxury building,263957584,Sara,Brooklyn,Bushwick,40.69971,-73.93068000000001,Entire home/apt,198,9,4,2019-07-01,3.33,2,159 +34977766,Bright One Bdr Apartment in Center of Manhattan,263527800,Cornelia,Manhattan,Upper East Side,40.761390000000006,-73.96048,Entire home/apt,130,1,0,,,1,28 +24780277,Beautiful Townhouse,9922513,James,Brooklyn,Prospect-Lefferts Gardens,40.66247,-73.95011,Entire home/apt,200,4,1,2018-06-03,0.07,1,21 +22190967,Spacious furnished room in midtown,51521183,Abhishek,Manhattan,Murray Hill,40.74763,-73.97316,Private room,85,9,5,2019-05-27,0.27,1,86 +29237852,Private room 3 min walking to J train(female only),219930693,Viktoriia,Queens,Woodhaven,40.69034,-73.86268000000001,Private room,90,2,9,2019-06-24,1.03,2,180 +13668573,Private Modern Room in Williamsburg,56044722,Simon,Brooklyn,Williamsburg,40.70922,-73.94722,Private room,75,2,1,2016-07-19,0.03,1,0 +33923209,"Queens SPACIOUS Bedroom, 1–3 people, 25 min to NYC",254542999,Cheryl,Queens,Sunnyside,40.73591,-73.92415,Private room,90,2,12,2019-06-30,5.14,1,57 +8630853,East Village Apartment,27504587,Megan,Manhattan,East Village,40.72979,-73.98905,Entire home/apt,160,1,0,,,1,0 +8012334,2 BR/2BA Near Lincoln Center/Central Park/Trains,21267483,Monica,Manhattan,Upper West Side,40.77569,-73.98028000000001,Entire home/apt,250,1,3,2016-11-26,0.07,1,0 +15423552,Manhattan Upper West Side 1 BR by Central Park,98853519,Joe,Manhattan,Upper West Side,40.80209,-73.96195999999999,Entire home/apt,174,4,12,2019-01-03,0.44,1,0 +8151782,Prospect Park Cozy Abode,43034440,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.96177,Entire home/apt,100,30,43,2019-06-12,0.94,1,43 +35413859,2 Bedroom Times Square/Central Park |LOCATION|,265487571,Sammie,Manhattan,Hell's Kitchen,40.75949,-73.99367,Entire home/apt,250,2,3,2019-07-06,3.0,1,190 +20901820,Hidden Gem in the Heart of Park Slope,41407057,Jason,Brooklyn,South Slope,40.66675,-73.988,Entire home/apt,95,2,4,2018-07-02,0.19,1,0 +27032162,"Private big one bedroom apt, Brooklyn,NY",203397896,Teola,Brooklyn,Brownsville,40.66648,-73.91375,Entire home/apt,98,2,40,2019-06-24,4.15,1,223 +667549,My Brooklyn Studio in Ditmas Park,3377231,Lina,Brooklyn,Flatbush,40.64895,-73.95758000000001,Entire home/apt,140,4,15,2017-08-03,0.18,1,365 +8281967,Stylish Studio in Midtown East,43669488,Shwetha,Manhattan,Midtown,40.7579,-73.96243,Entire home/apt,170,1,1,2015-10-01,0.02,1,0 +26087030,Charming bedroom with private bathroom,60908748,Maria,Brooklyn,Bushwick,40.7007,-73.921,Private room,100,1,5,2019-06-17,1.0,2,145 +13109268,One bedroom with great views of Manhattan,72874338,Augie,Brooklyn,Bushwick,40.69025,-73.90871,Private room,40,1,3,2017-01-03,0.08,1,0 +5581442,Home 4 Medical Professionals- St Johns Episcopal 4,26377263,Stat,Queens,Far Rockaway,40.59594,-73.75492,Private room,38,30,5,2017-05-13,0.1,43,312 +13672890,"1 Bedroom in 2 Bedroom Flex - Doormen, Free Gym",66114992,Kyle,Manhattan,Upper East Side,40.76247,-73.96238000000001,Private room,55,5,0,,,1,0 +32678725,Enjoy the Times Square experience with the family!,244361589,Row NYC,Manhattan,Theater District,40.75976,-73.98761,Private room,249,1,22,2019-06-23,7.59,9,283 +8686040,LARGE MANHATTAN ONE BEDROOM,45608786,Virginia,Manhattan,Washington Heights,40.85845,-73.92860999999999,Entire home/apt,125,1,6,2015-11-22,0.13,1,0 +12273048,"Central Location, Time Square, 24 hour doorman",49580011,Amy,Manhattan,Theater District,40.76237,-73.98285,Entire home/apt,150,28,4,2019-03-09,0.11,1,331 +3841113,Cozy private room in UES,2222500,Valerie,Manhattan,Upper East Side,40.77993,-73.94939000000001,Private room,80,5,18,2017-11-18,0.3,2,118 +32112767,Couples Retreat,137463409,Marsha,Queens,Maspeth,40.72595,-73.90299,Entire home/apt,150,1,24,2019-07-01,5.26,1,236 +27106745,New York City-Spacious Private Bedroom,203855380,Sheryl,Manhattan,East Village,40.72327,-73.98105,Private room,160,2,17,2019-06-30,1.48,1,0 +25918869,MODERN 2-3 Bedroom Apartment with Huge Roof Deck,26876408,Kelley,Brooklyn,Columbia St,40.68051,-74.00357,Entire home/apt,160,30,1,2018-08-22,0.09,1,95 +19951170,Charming Modern Apartment,35387196,Kizzie,Brooklyn,Crown Heights,40.67233,-73.93998,Entire home/apt,78,7,3,2019-05-27,0.17,4,237 +17665996,Cozy home away from home,18660750,Linelle,Queens,Edgemere,40.5938,-73.77373,Private room,50,1,76,2019-06-27,2.84,1,324 +20089962,"Cozy room weekly , 35 minutes far to Manhattan",142851497,Selçuk,Brooklyn,Sheepshead Bay,40.58632,-73.95335,Private room,45,7,34,2019-05-23,1.47,1,36 +24066510,Gorgeous Room available in a 2 bed/apt!,21563231,Nafsica,Manhattan,Harlem,40.82632,-73.94637,Private room,69,3,7,2018-10-25,0.46,1,172 +16964141,Staten island home not far from ferry to manhattan,113449748,Gloria,Staten Island,Randall Manor,40.63552,-74.12125,Private room,100,3,0,,,1,362 +17120582,The McCarren - A Two Bedroom Over the Park! #10262,9673465,Chris,Brooklyn,Greenpoint,40.72282,-73.94856,Entire home/apt,300,3,48,2019-06-23,1.69,1,3 +17532802,"Apartment in Sunset Park, Brooklyn",118913632,Ye,Brooklyn,Sunset Park,40.64028,-74.01262,Entire home/apt,100,7,0,,,1,0 +1133296,Entire home/apt in Chelsea New York,6216882,Raquel,Manhattan,Chelsea,40.74119,-74.00234,Entire home/apt,175,3,19,2019-06-24,0.25,1,194 +35680065,Room 1: Spacious Queen w/ Closet & Light breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.69134,-73.93288000000001,Private room,75,1,2,2019-07-06,2.0,3,139 +23979650,Charming Bedroom in Luxury Highrise w/ Gym & Sauna,50698186,Tsilala,Manhattan,Financial District,40.70851,-74.0137,Private room,80,2,4,2019-01-02,0.27,1,0 +15301499,~**GORGEOUS DOWNTOWN LOFTS**~ MULTIPLE SPACES,76192815,Sam,Manhattan,Chinatown,40.71745,-73.99409,Entire home/apt,300,1,23,2019-03-27,0.69,5,364 +32813862,"Artsy, quiet haven in the Bronx’s little Ireland",8589557,John,Bronx,Woodlawn,40.89981,-73.86684,Private room,80,2,7,2019-06-03,1.84,1,70 +14841838,Jackson Heights 2 bedrooms housing,92872782,Nicholas,Queens,Jackson Heights,40.75495,-73.87774,Entire home/apt,140,2,115,2019-06-24,3.34,1,298 +31565105,Massive Room in Bed-Stuy Clinton Hills,236596347,John,Brooklyn,Bedford-Stuyvesant,40.68226,-73.94493,Private room,69,2,1,2019-03-30,0.29,1,95 +18369887,Sunny & Spacious 1 Bedroom in Central Harlem!,2946771,Kara,Manhattan,East Harlem,40.8136,-73.93606,Entire home/apt,150,2,39,2019-05-27,1.48,1,0 +27695485,The Woodside Story- Private bathroom (1),158407820,Omar,Queens,Woodside,40.75398,-73.90084,Private room,58,2,32,2019-06-24,2.96,5,88 +1682258,Big Studio Apt Convenient Gramercy,5434492,Elizabeth,Manhattan,Kips Bay,40.74011,-73.98185,Entire home/apt,200,1,0,,,1,0 +25834067,PRIVATE STUDIO APT!! 10 Min walk Times Square 11A,190921808,John,Manhattan,Hell's Kitchen,40.75571,-73.99647,Private room,62,2,19,2019-06-03,1.8,47,331 +10353094,Clean room for rent in Park Slope,53284346,Steven,Brooklyn,Park Slope,40.66932,-73.98321,Private room,49,5,2,2016-03-08,0.05,1,0 +30772753,Perfect apartment in NYC,28230496,Tyler,Manhattan,Lower East Side,40.72168,-73.98686,Entire home/apt,200,5,2,2019-04-14,0.32,1,78 +8308797,shared space with Great location!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59836,-73.95416999999999,Shared room,45,1,135,2019-07-07,2.91,5,351 +4549555,"Studio Space, 10 minutes to Central Park and river",6571805,Agata,Manhattan,Upper West Side,40.79407,-73.97679000000001,Shared room,55,2,54,2019-06-26,1.4,2,336 +23385738,Male room 2 minutes from East Broadway station III,170263842,Sultan,Manhattan,Lower East Side,40.71117,-73.98727,Shared room,32,14,0,,,4,341 +7827616,Private Room in Cozy NYC Apartment,41219108,Darsell,Queens,Astoria,40.76257,-73.91803,Private room,50,3,1,2016-09-05,0.03,1,0 +5536824,2 BEDROOM GREAT APT ON LEXINGTON AVE MUST SEE,24715671,Julia,Manhattan,Midtown,40.74294,-73.98499,Entire home/apt,200,30,9,2018-07-19,0.17,4,342 +12953757,Huge + Cozy East Williamsburg Room,24747678,Caroline,Brooklyn,Bushwick,40.7029,-73.9296,Private room,75,3,5,2018-08-04,0.14,1,0 +29800927,Brand New Luxury Apartment with Private Garden,157703622,John,Manhattan,Lower East Side,40.71707,-73.98931,Entire home/apt,200,30,0,,,2,97 +26958190,Brooklyn [Williamsburg] Apartment,202849060,Masashi,Brooklyn,Williamsburg,40.71258,-73.95764,Private room,90,21,6,2018-08-15,0.51,1,38 +17045913,Live Like a Local In GREENPOINT,40134417,Ben And Jane,Brooklyn,Greenpoint,40.73076,-73.95575,Entire home/apt,20,4,17,2018-03-20,0.58,1,0 +3395398,Cozy BR in heart of Manhattan (Hell's Kitchen),17130866,Thomas,Manhattan,Hell's Kitchen,40.76496,-73.99073,Private room,99,3,10,2018-07-15,0.58,1,0 +13978228,Airy Bright 1 Bedroom in Heart of Greenpoint BK,32704515,Lauren,Brooklyn,Greenpoint,40.72914,-73.9567,Entire home/apt,104,1,0,,,1,0 +3924506,Room in sunny & plant filled apt!,452781,Lian,Brooklyn,Crown Heights,40.67297,-73.95489,Private room,75,1,3,2015-10-11,0.05,1,0 +30685679,Home in NYC 1 BR Apartment Midtown Retreat,2239610,Tanya,Manhattan,Hell's Kitchen,40.756,-73.99804,Entire home/apt,165,5,10,2019-07-06,1.47,1,31 +21868918,Beautifully Lit True Brooklyn Loft,159526448,Natasha,Brooklyn,Williamsburg,40.72192,-73.95597,Entire home/apt,350,2,16,2019-05-12,0.82,1,0 +975229,Prime East Village location w/backyard garden!,5333736,Timothy,Manhattan,East Village,40.73055,-73.98875,Entire home/apt,159,4,65,2019-06-16,0.85,1,1 +31485528,Small Private Room with backyard,38757148,Daniel,Brooklyn,Bedford-Stuyvesant,40.68937,-73.94291,Private room,50,2,14,2019-06-20,2.46,1,5 +16011595,Top Floor Views Great Apartment in Williamsburg,24404906,Tony,Brooklyn,Williamsburg,40.70969,-73.95251999999999,Entire home/apt,120,5,1,2019-01-03,0.16,1,0 +22389071,"5* Modern Lux 2BR2B Midtown Manhattan, River Views",48205496,B,Manhattan,Hell's Kitchen,40.76825,-73.99107,Entire home/apt,199,3,12,2019-06-29,0.65,2,17 +16172162,"Gorgeous, sun-drenched private apt in Harlem",72808547,Jeremy,Manhattan,Harlem,40.808040000000005,-73.943,Entire home/apt,120,4,22,2019-06-24,0.71,1,0 +27988211,Welcome Home To Ridgewood!,138203985,Alejandro,Queens,Ridgewood,40.707240000000006,-73.91268000000001,Entire home/apt,195,1,94,2019-07-07,8.84,1,0 +24206202,Exquisite Park Slope Brownstone Apartment,182472967,Maureen,Brooklyn,Park Slope,40.67063,-73.97825999999999,Entire home/apt,140,3,1,2019-06-14,1.0,1,65 +20775039,Great Location - 1BR/Times Square/Hell's Kitchen,148861123,Andrew T,Manhattan,Hell's Kitchen,40.7631,-73.99133,Entire home/apt,145,2,77,2019-06-16,3.62,1,194 +33247707,Cozy East Village walk up,6048212,Lissa,Manhattan,East Village,40.72958,-73.98569,Entire home/apt,151,3,10,2019-06-17,3.0,1,7 +11926941,Cozy 1 bdrm near Prospect Park/BK,4501003,Brooke,Brooklyn,Flatbush,40.64117,-73.96038,Entire home/apt,99,1,3,2016-05-20,0.08,1,0 +10940559,Modern and comfortable is this 2 bedrooms,56726605,Weisbrod,Brooklyn,Canarsie,40.6344,-73.8948,Entire home/apt,177,3,23,2018-10-07,0.6,3,363 +24670553,South exposure Bay windows Loft studio,26584499,Ofir,Manhattan,Upper West Side,40.78245,-73.98355,Entire home/apt,125,30,0,,,8,283 +1121448,1 rm @ 3BR loft williamsburg room 2,4864306,Joseph,Brooklyn,Greenpoint,40.72541,-73.9567,Private room,50,2,36,2019-04-24,0.51,3,232 +2454507,Close to everything - Jr 1 bedroom,9991763,Andrew,Manhattan,Financial District,40.70781,-74.00701,Entire home/apt,130,365,6,2016-10-02,0.1,1,262 +10563076,Large Sunny East Williamsburg Loft,15105293,Ryan,Brooklyn,Williamsburg,40.70777,-73.9435,Entire home/apt,80,6,0,,,1,0 +14965582,Room in two bedroom apartment,94243268,Ayanna,Brooklyn,Bushwick,40.69296,-73.92092,Private room,64,1,0,,,1,83 +23040052,Cozy 2 bed 2 bath Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77717,-73.95130999999999,Entire home/apt,300,31,8,2018-12-27,0.49,33,342 +13725194,"Bright and spacious room in Bushwick, Brooklyn",49367785,Jordan,Brooklyn,Bushwick,40.69757,-73.92905999999999,Private room,45,5,0,,,1,0 +20609505,Your favorite room,82189528,Lara,Manhattan,Washington Heights,40.84131,-73.93574,Private room,52,2,1,2017-09-21,0.05,1,0 +16174929,Cosy Room in Williamsburg House,22432953,Charles-Hugo,Brooklyn,Williamsburg,40.70816,-73.94821999999999,Private room,55,4,3,2017-05-05,0.1,1,0 +24523422,Urban Place,160495098,Miller,Brooklyn,East Flatbush,40.63532,-73.94924,Private room,36,2,1,2018-06-10,0.08,5,0 +23247351,Charming room at Bed-Stuy,127427486,Bianca,Brooklyn,Bedford-Stuyvesant,40.6943,-73.93935,Private room,50,1,33,2019-03-24,2.29,1,0 +15701663,Home sweet home in Harlem,26504092,Wangari,Manhattan,Harlem,40.81407,-73.95092,Entire home/apt,100,3,2,2017-01-05,0.06,1,0 +31053180,Modern 2BR Williamsburg Loft With a Balcony,3363749,Alex,Brooklyn,Williamsburg,40.70646,-73.94169000000001,Entire home/apt,189,6,2,2019-05-16,0.45,3,242 +8683432,Spacious Apartment in Midtown West!,45598282,Niki,Manhattan,Hell's Kitchen,40.764140000000005,-73.99296,Entire home/apt,237,3,6,2016-11-28,0.15,2,0 +13729180,"Prime Village NOHO, renovated designed2BR~W/D unit",2119276,Host,Manhattan,East Village,40.72927,-73.99039,Entire home/apt,300,30,2,2017-05-02,0.06,39,310 +30766280,音樂之家 Musician and Artist Exhibition Home,213781715,Anting,Brooklyn,Greenpoint,40.732890000000005,-73.95203000000001,Entire home/apt,189,1,0,,,33,364 +7880998,NoMad One Bedroom on Park Ave,41543076,Kelsey,Manhattan,Midtown,40.74321,-73.98474,Entire home/apt,175,7,1,2016-07-01,0.03,1,0 +22302452,High Ceilings & Great Light,1371055,Bonny,Brooklyn,Prospect Heights,40.67764,-73.96632,Private room,70,5,18,2019-06-03,0.98,1,8 +11441692,Modern West Village Studio,6501137,Dee,Manhattan,West Village,40.73982,-74.00806999999999,Entire home/apt,228,1,10,2017-01-01,0.25,1,0 +13589669,East Brooklyn Garden Apartment,78485066,Corie,Brooklyn,East New York,40.6638,-73.89307,Entire home/apt,85,1,106,2019-06-13,2.87,2,337 +6674482,Private Bedroom in East Harlem,34933217,Emilie,Manhattan,East Harlem,40.79435,-73.94071,Private room,97,1,0,,,1,0 +28720687,"BP DORM STYLE SHARED ROOM, BIG BEAUTIFUL HOME+WIFI",213208277,Darry,Brooklyn,Borough Park,40.642140000000005,-73.99237,Shared room,31,5,7,2019-06-29,0.78,8,365 +27055213,Cozy Brooklyn Studio in Williamsburg (Graham L),7825844,Courtney,Brooklyn,Williamsburg,40.71603,-73.9409,Entire home/apt,128,5,0,,,1,35 +3302921,Cozy quiet East Village room/en suite bathroom,16680861,Carrie,Manhattan,East Village,40.72749,-73.99070999999999,Entire home/apt,189,2,138,2019-06-23,2.86,1,203 +8013780,Cute East Village Room for 1,24496111,Tessa,Manhattan,Gramercy,40.7331,-73.984,Private room,65,11,0,,,1,0 +35182164,Big Ole Bed in BK,246623234,Camille-Bettina,Brooklyn,Prospect-Lefferts Gardens,40.66232,-73.95251,Private room,51,2,1,2019-06-13,1.0,1,0 +24000030,"Private studio in East Village, affordable price",64892392,Valentine,Manhattan,East Village,40.72921,-73.98629,Entire home/apt,95,3,5,2018-12-31,0.37,1,5 +29904305,Comfy room with a sunroof in the heart of BK!,222581357,Stella,Brooklyn,Bushwick,40.69202,-73.91487,Private room,46,30,29,2019-07-03,3.6,3,246 +1980179,Best of the East Village Cozy 2 Bedroom,18174,Katya,Manhattan,East Village,40.72862,-73.98885,Entire home/apt,142,1,214,2019-07-05,3.17,1,242 +35727309,Prime Midtown West! Spacious & Renovated 3BR!,268294305,Karissa,Manhattan,Hell's Kitchen,40.75499,-73.99436999999999,Entire home/apt,299,3,0,,,1,237 +21414821,New!! Cozy full equipped room in Times Square,155182192,Adam,Manhattan,Hell's Kitchen,40.75949,-73.9908,Private room,40,1,108,2019-05-24,5.21,1,65 +36396086,Nice bedroom - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75255,-73.93128,Private room,89,1,0,,,5,359 +19806972,"Sunny room, artistic modern building near subway",114523254,Larissa,Manhattan,East Harlem,40.7875,-73.94675,Private room,85,1,8,2017-10-16,0.34,1,0 +283072,One bedroom sharing Bathroom,1474637,Eliza,Brooklyn,Cypress Hills,40.67889,-73.86404,Private room,75,7,0,,,1,0 +18090927,An Amazing 1-Bedroom Apt. with Spectacular Views,686339,Ben,Manhattan,Kips Bay,40.73819,-73.97389,Entire home/apt,150,62,0,,,1,88 +4753866,Nirvana On Riverside,24530713,Byron,Manhattan,Harlem,40.82501,-73.95373000000001,Private room,125,1,4,2015-11-27,0.08,3,365 +14933521,Sunny 1 Bedroom in Harlem,93020402,Esi,Manhattan,Harlem,40.81949,-73.94621,Entire home/apt,129,3,67,2019-07-01,1.96,1,0 +9266394,Spacious apt next to Botanic Garden,48133396,Katherine,Brooklyn,Crown Heights,40.66563,-73.96118,Entire home/apt,85,90,0,,,1,0 +26250476,Quiet Homestead in the city,102228163,Cesar,Brooklyn,Carroll Gardens,40.67683,-74.00056,Entire home/apt,90,7,3,2018-10-30,0.25,3,0 +12431649,1 bed Apt Near to Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76306,-73.99257,Entire home/apt,150,30,3,2018-11-05,0.12,31,332 +12783632,NYC Mini Hotel,57230304,Imanuelly,Queens,Elmhurst,40.74037,-73.8861,Private room,75,1,2,2019-05-26,0.92,3,351 +12989767,Beautiful Studio on Tree-Lined St.,16436459,Liz,Manhattan,Chelsea,40.74583,-74.00451,Entire home/apt,175,4,30,2019-07-01,0.82,1,48 +33226326,Manhattan luxury building super large studio,106857875,Yige,Manhattan,Chelsea,40.75426,-73.99848,Entire home/apt,140,120,0,,,1,255 +20772204,"NO XTRA FEES, 30 min To Grand Central:Pvt Entrance",82889379,Shera,Bronx,Wakefield,40.89811,-73.85543,Private room,55,1,156,2019-06-30,7.0,4,318 +20565481,Historic UES Penthouse/Rooftop Terrace by the MET,146871946,Lauren,Manhattan,Upper East Side,40.7774,-73.96066,Entire home/apt,300,1,0,,,1,0 +36356906,Spacious,108355692,Christopher,Queens,Flushing,40.75825,-73.83369,Private room,57,30,0,,,1,87 +23668733,Double Studio beside Empire State #6,177174475,Alberto,Manhattan,Midtown,40.74776,-73.98668,Entire home/apt,107,1,0,,,17,208 +10281054,Spacious Private Room in Brooklyn,2238052,Chris,Brooklyn,Bushwick,40.69288,-73.90831,Private room,69,2,54,2019-06-09,1.26,1,0 +19176163,Chic Apartment for rent in East Village,133694068,Julissa,Manhattan,East Village,40.72767,-73.98855999999999,Entire home/apt,99,2,38,2019-05-20,1.51,1,29 +15219855,Spacious one bedroom in Union Sq/Greenwich Village,10920393,Andrew,Manhattan,Greenwich Village,40.73506,-73.99203,Entire home/apt,275,2,5,2017-01-01,0.15,1,0 +23237952,"Cozy, private and lovely room at home in Bedstuy",1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94475,Private room,44,3,9,2018-07-04,0.54,2,0 +842176,Cozy Room in Williamsburg Loft Apt,3330412,Pierre & Amira,Brooklyn,Williamsburg,40.71541,-73.94464,Private room,80,4,80,2017-10-18,1.08,1,245 +32371477,Extra Large Room Close to Midtown,61042,Marlon,Manhattan,East Harlem,40.7996,-73.94216,Private room,55,5,2,2019-06-22,2.0,6,6 +758782,Perfect Midtown Apt E. 50th St,286313,Kiovanna,Manhattan,Midtown,40.75383,-73.96777,Entire home/apt,133,6,22,2019-06-29,0.33,1,5 +34570002,Sonder | 116 John | Ideal Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70658,-74.00684,Entire home/apt,100,29,0,,,327,342 +29281128,NYC LUXURY STUDIO,53621734,Erika,Manhattan,Hell's Kitchen,40.75985,-73.99799,Entire home/apt,170,12,1,2018-10-19,0.11,1,365 +24804386,Sunny NYC Studio steps from Central Park,1092203,Erin,Manhattan,Upper West Side,40.78277,-73.97604,Entire home/apt,150,4,12,2019-03-31,1.55,1,0 +34438157,"Cozy, Brooklyn Room in the ""Middle of Everything!""",10568305,Gpa,Brooklyn,Crown Heights,40.66975,-73.92878,Private room,49,1,2,2019-06-24,2.0,1,325 +13112855,Prime location Irving Place Doorman 1 bedroom 5191,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73505,-73.98565,Entire home/apt,180,30,1,2017-07-31,0.04,96,281 +30558568,ALL YOU COULD WANT FOR YOUR STAY IN BK! L/4,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95752,Private room,40,15,3,2019-05-03,0.47,11,354 +16467165,Studio Apartment in Prospect Lefferts Gardens,7579679,Martha,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96185,Entire home/apt,50,4,1,2017-05-03,0.04,1,0 +12324428,Comfy Room in Large E Williamsburg Apartment,1702298,Sofia,Brooklyn,Williamsburg,40.71378,-73.93762,Private room,40,15,0,,,1,0 +22151798,Apartment in South Bronx,45553025,Jose H.,Bronx,Mott Haven,40.81037,-73.91946,Entire home/apt,65,2,47,2018-11-25,2.52,1,0 +11419512,Brand New Building/Apt - Great Area,59913399,Michael,Brooklyn,Williamsburg,40.71016,-73.96076,Private room,60,3,8,2018-11-20,0.36,1,3 +11633801,Prospect Heights Three Bedroom,28808966,Christopher,Brooklyn,Crown Heights,40.67815,-73.96231999999999,Entire home/apt,180,1,0,,,1,0 +2107696,Entire 2 BED APARTMENT - WILLIAMSBURG- Best Price,9265204,Gianni,Brooklyn,Williamsburg,40.70765,-73.94821,Entire home/apt,210,3,7,2019-06-10,0.1,2,343 +36334813,Sunny Room in the heart of Williamsburg,17379828,Caterina,Brooklyn,Williamsburg,40.70906,-73.95544,Private room,75,3,0,,,1,7 +23632578,Chelsea Studio Steps from Madison Square Garden,3717633,Tony,Manhattan,Chelsea,40.75129,-73.99561,Entire home/apt,185,2,32,2019-06-23,2.02,1,47 +30622293,Pvt. Room w/full bed safe & close to everything,222760631,Denise,Bronx,Throgs Neck,40.82507,-73.8204,Private room,45,3,0,,,1,36 +25804337,One Bedroom Bed-Stuy Walk-Up,6328069,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95071999999999,Entire home/apt,100,2,5,2018-08-25,0.43,1,0 +31484603,"Gorgeous, sunny, two bedroom beach house.",5369840,Kimberley,Queens,Belle Harbor,40.57743,-73.84519,Entire home/apt,105,2,0,,,1,22 +7696645,BrooklynBridge/Ft Greene,7590543,Dolores,Brooklyn,Navy Yard,40.69855,-73.97595,Entire home/apt,215,4,99,2019-07-06,2.09,1,0 +32681579,"Artful UWS King Room near Central Park, Museums",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78241,-73.98076999999999,Private room,220,1,0,,,10,284 +2435621,Stunning 1br in Historic Brownstone,26640,Sally,Manhattan,Upper West Side,40.7851,-73.97397,Entire home/apt,195,30,45,2019-05-31,0.73,2,327 +17464151,Riverside Park Nest,118276455,Eric,Manhattan,Upper West Side,40.79517,-73.97555,Entire home/apt,200,30,5,2019-06-06,0.21,1,271 +32633622,Spacious Brooklyn Home with 2 Large BD & Garden,27736765,Myckie,Brooklyn,Bedford-Stuyvesant,40.67899,-73.93548,Entire home/apt,160,100,0,,,1,0 +35384851,Modern 2BD in Astoria-10 min to Central Park,11866880,Juan,Queens,Astoria,40.76358,-73.92399,Entire home/apt,289,3,0,,,1,253 +30009035,Sweet room on prime location,225571766,Ashraf,Queens,Jackson Heights,40.75068,-73.87739,Private room,80,2,5,2019-06-07,2.5,1,57 +25517407,Spacious room in prime Willyb! Steps 2 Bedford L,1034976,Katie,Brooklyn,Williamsburg,40.71777,-73.95824,Private room,100,1,18,2019-05-08,1.36,2,33 +19385872,Sun-filled Oasis in Crown Heights,13283016,Sarah,Brooklyn,Crown Heights,40.66658,-73.95167,Entire home/apt,157,1,0,,,1,0 +2636532,GORGEOUS Newly-Renovated 2-BR Flat,13347167,AFI Apartments,Manhattan,Upper East Side,40.77278,-73.95753,Entire home/apt,142,30,1,2016-08-13,0.03,29,205 +27362309,Not available,14621589,Sol,Brooklyn,Bedford-Stuyvesant,40.699740000000006,-73.94658000000001,Private room,50,400,0,,,1,90 +30853694,Entire Loft with a bedroom and walk-in closet,14276413,Sedef,Brooklyn,Bedford-Stuyvesant,40.69066,-73.95922,Entire home/apt,300,2,2,2019-01-01,0.3,1,0 +35614155,"""The quick get Away #2""",241454071,Leyland,Bronx,Hunts Point,40.81879,-73.88646,Private room,35,2,1,2019-06-26,1.0,2,59 +16258754,Cozy Modern Bedroom In A Newly Updated Apt,8091133,Daniel,Brooklyn,Bushwick,40.7004,-73.91934,Private room,40,2,0,,,1,0 +32732490,Pro-Music Recording Studio With Bedroom & Lounge,106067584,Shelby,Brooklyn,Bedford-Stuyvesant,40.69025,-73.92491,Private room,225,1,0,,,1,179 +31209400,2 bedroom apartment in Staten Island,141524395,Myrka,Staten Island,Mariners Harbor,40.63531,-74.15789000000001,Entire home/apt,130,2,8,2019-06-30,1.41,1,174 +19123481,Spacious Bohemian Bedroom,133259451,Samantha,Brooklyn,Bedford-Stuyvesant,40.68015,-73.94949,Private room,50,3,2,2017-07-23,0.08,1,0 +29790239,Comfortable artistic Brooklyn apartment,94546995,Hollis,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94554000000001,Entire home/apt,75,3,15,2019-05-21,2.47,1,4 +25336605,Luxury Apartment July 4th Wkend -Fireworks view,69825290,Colin,Queens,Long Island City,40.75332,-73.94159,Entire home/apt,150,1,1,2019-01-02,0.16,1,0 +11713899,Modern Exposed Brick Studio,39149459,Daisy,Manhattan,East Village,40.72428,-73.98748,Entire home/apt,110,1,1,2016-05-23,0.03,1,0 +22204856,Room available in 3 BD Brooklyn apartment,1819657,Eleanor,Brooklyn,Clinton Hill,40.68381,-73.96786,Private room,55,2,0,,,1,0 +20002262,Tays LES sanctuary,34382987,Taylor,Manhattan,East Village,40.72384,-73.98406999999999,Private room,90,5,0,,,1,0 +7244824,Inviting Private Room in NYC.,37932285,Sarah,Manhattan,Harlem,40.82028,-73.95381,Private room,65,1,3,2018-01-03,0.08,1,0 +16395966,Hidden Gem in Crown Heights,52014015,Yobiel,Brooklyn,Crown Heights,40.6754,-73.94977,Entire home/apt,225,1,0,,,1,0 +30232126,3 BEDROOMS/2 BATHS ENTIRE APARTMENT 10 MINS to JFK,107915864,Mina,Queens,Howard Beach,40.66682,-73.85161,Entire home/apt,130,1,0,,,4,285 +6359111,"A huge, debonair loft in midtown",5720429,Gregory,Manhattan,Murray Hill,40.74853,-73.98192,Entire home/apt,325,1,66,2019-07-02,1.33,1,67 +25137366,Charm and cozy close to NY and La Guardia Airport,19614644,Gerusa,Queens,Ditmars Steinway,40.77598,-73.92251999999999,Private room,49,2,25,2019-05-19,1.83,1,4 +14629878,Shared Penthouse,46502890,Jackie,Queens,Richmond Hill,40.69858,-73.82893,Private room,60,30,1,2016-08-31,0.03,2,363 +20913,Charming 1 bed GR8 WBurg LOCATION!,79402,Christiana,Brooklyn,Williamsburg,40.70984,-73.95775,Entire home/apt,100,5,168,2018-07-22,1.57,1,0 +32844884,Place like home,244217586,Rajwinder,Queens,Jamaica,40.70949,-73.79304,Entire home/apt,90,1,0,,,1,0 +20569589,Beautiful apartment located in Chelsea!,11827970,Elizabeth,Manhattan,Chelsea,40.7382,-73.99844,Entire home/apt,250,3,17,2018-11-24,0.76,1,0 +10117624,Well-furnished studio w/ patio!,12190846,Kerry,Brooklyn,Williamsburg,40.72097,-73.9548,Entire home/apt,250,1,0,,,1,0 +18949153,Sunny One Bedroom off the Park,25391872,Pavel,Brooklyn,Prospect-Lefferts Gardens,40.65585,-73.95581999999999,Entire home/apt,105,1,7,2017-06-30,0.27,1,0 +9370370,Garden Apartment with patio,48618336,Yvonne,Queens,Astoria,40.76507,-73.90576999999999,Entire home/apt,65,30,32,2017-09-23,0.72,1,67 +13529037,Private Green Apple Brownstone Studio Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81589,-73.94648000000001,Entire home/apt,110,4,125,2019-06-20,3.37,4,44 +21437509,Peaceful Artist's Room in Williamsburg,13081524,Sarah,Brooklyn,Williamsburg,40.71226,-73.93949,Private room,60,2,48,2019-06-29,2.3,1,13 +6337725,Cozy Harlem 1BD 15 mins to midtown,33000709,Casey,Manhattan,Harlem,40.81412,-73.95185,Entire home/apt,140,2,2,2015-08-27,0.04,1,0 +21851390,East village apartment,158191137,Thomas,Manhattan,East Village,40.72863,-73.99008,Private room,70,3,8,2019-06-07,0.4,1,0 +7834733,"Beautiful, Airy, Minimal Apartment",13425453,Peter,Brooklyn,Clinton Hill,40.68096,-73.95902,Private room,69,1,0,,,1,0 +31883127,✴NEWLY RENOVATED✴ 2 BDR | SLEEPS 4 @ BROOKLYN,6833598,Timothy,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91899000000001,Entire home/apt,99,2,13,2019-07-05,3.98,1,182 +1262053,Stylish Park Slope Townhouse,6873370,Thomas,Brooklyn,Sunset Park,40.66134,-73.98844,Entire home/apt,102,2,24,2019-01-08,0.34,1,0 +18997371,Cozy Getaway,90104417,Sueann,Staten Island,Tottenville,40.50873,-74.23914,Entire home/apt,85,2,49,2019-07-01,2.08,2,159 +13308110,Sunny & Spacious 1bdrm apt,1713791,Roshan,Brooklyn,Bushwick,40.706990000000005,-73.92188,Entire home/apt,149,1,41,2019-06-02,1.1,1,69 +16054732,Charming apt in Bed-Study! Central location,4233535,Mariam,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95851,Private room,60,1,0,,,1,0 +2554110,Great east village studio!,7132792,Milenna,Manhattan,Gramercy,40.73237,-73.98288000000001,Entire home/apt,130,6,2,2017-01-01,0.06,1,0 +16821898,Big bright cozy room to call home,111918887,Bianca,Brooklyn,Windsor Terrace,40.65559,-73.97797,Private room,50,30,5,2019-06-30,0.18,1,126 +32523519,The Manhattan View,173009,Scott And Bea,Staten Island,Stapleton,40.63285,-74.0778,Entire home/apt,125,2,10,2019-07-07,3.19,1,252 +8210686,Beautiful Room in Greenpoint Loft,4998154,Minka,Brooklyn,Greenpoint,40.73266,-73.95841,Private room,80,3,0,,,1,0 +2325144,Cozy Nook in a Unique Loft,11876825,Christopher,Brooklyn,Bushwick,40.69856,-73.93162,Private room,128,3,52,2018-01-06,0.8,1,219 +5818551,"Cozy apartment ,in uptown Manhattan",30196119,Mark,Manhattan,Harlem,40.82943,-73.9407,Entire home/apt,120,5,28,2019-05-23,0.82,1,355 +906058,Columbia area room pvt bath & entry,4765670,Irene,Manhattan,Morningside Heights,40.80776,-73.9654,Private room,105,2,233,2019-06-23,3.01,1,294 +24968131,Private Room in peaceful town,7989399,Esin,Queens,Sunnyside,40.73891,-73.92642,Private room,50,3,3,2018-10-10,0.29,2,112 +26887521,SUNNY HARLEM HAVEN ON A BEAUTIFUL HARLEM BLOCK,8534610,E Vera,Manhattan,Harlem,40.811890000000005,-73.94136999999999,Private room,90,2,23,2019-06-16,2.09,1,104 +28315011,An Art Director's Fort Green Studio,15146990,Madelyn,Brooklyn,Fort Greene,40.68616,-73.97206,Entire home/apt,115,2,4,2019-07-01,0.44,1,95 +4645170,Private Room with Queen size bed,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76025,-73.99555,Private room,89,4,59,2019-06-30,1.06,2,286 +12898943,Beautiful Pre-War on Prospect Park,10259868,Meredith,Brooklyn,Crown Heights,40.66676,-73.95991,Private room,85,7,0,,,1,0 +10635913,Murray Hill Studio,54908827,Nina,Manhattan,Murray Hill,40.74976,-73.97748,Entire home/apt,80,1,0,,,1,0 +16756027,NYC Sunny Private Flat In Heart of it All.,8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95669000000001,Private room,89,2,35,2019-06-03,1.35,4,139 +19677579,"Sunny room in historic Bedstuy, Brooklyn",124171,Miguel,Brooklyn,Bedford-Stuyvesant,40.68533,-73.94230999999999,Private room,60,1,1,2018-07-08,0.08,1,0 +22114333,Sun & Central Park,102011406,Ler,Manhattan,East Harlem,40.78977,-73.9476,Private room,99,4,16,2019-05-12,0.87,1,130 +1225110,"Lovely, Private Home in Greenpoint",2888900,Alex,Brooklyn,Greenpoint,40.72992,-73.95628,Entire home/apt,350,7,4,2015-07-01,0.06,2,0 +31879035,Bright Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.798390000000005,-73.96126,Private room,60,30,0,,,32,317 +32178172,2BED 2 BATH/COLUMBUS CIRCLE/ BALCONY,131647128,Emily,Manhattan,Upper West Side,40.77054,-73.98344,Entire home/apt,290,30,2,2019-03-21,0.52,25,313 +30014004,Modern Brooklyn Condo,394891,Ray,Brooklyn,Crown Heights,40.67826,-73.96379,Entire home/apt,200,4,2,2019-01-03,0.25,1,8 +27141013,Modern Newly Renovated Home Away From Home,204346423,Yva,Brooklyn,Mill Basin,40.61768,-73.91669,Entire home/apt,85,2,36,2019-07-07,3.26,1,322 +21027809,Sunny 2 br apartment in Prospect Lefferts Gardens,9138141,Lory And Cindy,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95262,Entire home/apt,100,1,85,2019-07-07,8.95,1,125 +16513698,Very Big Manhattan Apartment very big Living Room,37994197,Sophia,Manhattan,Lower East Side,40.72068,-73.98574,Entire home/apt,349,3,76,2019-06-23,2.54,1,71 +2189450,East Village 2BR with view!,11165856,Jonathan,Manhattan,East Village,40.72358,-73.9867,Entire home/apt,100,10,0,,,1,0 +36243183,Spacious private room #2,35783912,Pi & Leo,Bronx,Fordham,40.86264,-73.89139,Private room,29,2,0,,,8,81 +20663997,"Quiet, spacious room in hip Greenpoint apartment",48608026,Sarah,Brooklyn,Greenpoint,40.7228,-73.94538,Private room,90,1,3,2017-09-30,0.14,1,0 +34320465,Holiday VILLA EXCLUSIVE,234274506,Chioma,Brooklyn,Cypress Hills,40.68138,-73.87736,Private room,35,1,7,2019-07-01,3.62,1,158 +35686816,Clinton Hill Dupex,50506922,Asli,Brooklyn,Clinton Hill,40.68927,-73.96542,Entire home/apt,125,3,0,,,1,31 +10724373,Gorgeous Gramercy Studio,1913404,Ellie,Manhattan,Gramercy,40.738040000000005,-73.9852,Entire home/apt,110,1,3,2017-11-22,0.07,1,0 +7508742,Wild Flower Nice quiet space Queen size bed.,26354652,Philbert,Brooklyn,Flatbush,40.64935,-73.96485,Private room,90,2,24,2019-07-02,1.48,1,175 +2262357,spacious homey one bdrm apt.,11552512,Sandra,Queens,Sunnyside,40.74622,-73.92296,Entire home/apt,120,2,5,2019-05-27,0.19,1,81 +18488335,Sunny Duplex 2 bdr apt in the heart of Harlem,12293403,Joffrey,Manhattan,Harlem,40.8125,-73.94151,Entire home/apt,85,3,35,2019-06-23,1.36,2,40 +31022770,1bdr apartment / 2 stops to Manhattan (D/N trains),98522037,Anna,Brooklyn,Sunset Park,40.64929,-74.00421999999999,Entire home/apt,100,2,5,2019-06-05,0.82,1,0 +13371699,Beautiful Spacious Apartment near Prospect Park,2455767,Althea,Brooklyn,Windsor Terrace,40.65867,-73.97971,Entire home/apt,145,2,78,2019-06-29,2.18,1,314 +26397041,1940's Historic Brooklyn Townhome,6323006,Mark,Brooklyn,East Flatbush,40.63863,-73.93826,Entire home/apt,300,5,2,2019-06-19,0.81,1,174 +2451110,2019 Special! LARGE West Village 1 BED!,12533228,Rose,Manhattan,Greenwich Village,40.72908,-73.9965,Entire home/apt,279,1,78,2019-05-12,1.22,1,363 +19250742,Harlem Garden Oasis in New York City Brownstone,58782992,Mark And Josephine,Manhattan,Harlem,40.82287,-73.94509000000001,Entire home/apt,125,31,96,2019-05-25,3.93,2,186 +36306938,"Simple, Safe, Clean",23191854,Akiva,Brooklyn,Midwood,40.61231,-73.95448,Private room,44,2,0,,,1,7 +4216813,Penthouse w/Terrace Williamsburg,9904977,Matt,Brooklyn,Greenpoint,40.72309,-73.93767,Entire home/apt,200,3,95,2019-06-26,1.65,1,358 +11228512,Great 1 BR available in UES!,58523861,Doris,Manhattan,Upper East Side,40.77837,-73.94802,Private room,70,1,0,,,1,0 +18108849,Best location to live in Astoria,124741583,Marina,Queens,Astoria,40.76601,-73.91841,Private room,49,5,2,2017-06-27,0.08,1,179 +16415297,"Spacious&Sunny bedroom near Central Park,UpperEast",12895206,Salvatore,Manhattan,Upper East Side,40.77651,-73.94791,Private room,65,7,4,2017-12-29,0.13,1,0 +27704712,Spacious 2BR with Private Patio in Lower East Side,9793059,Adam,Manhattan,Lower East Side,40.71586,-73.98908,Entire home/apt,200,4,16,2019-05-18,1.46,1,56 +32139526,Perfect Little Gem in the East Village,171331943,Marko,Manhattan,East Village,40.72882,-73.98103,Entire home/apt,160,3,6,2019-07-02,6.0,1,63 +35035847,TimeSquare High-level modern apartment 1BDR!,42174219,Zack,Manhattan,Theater District,40.76113,-73.98557,Private room,180,2,1,2019-06-01,0.77,1,31 +31713858,Long Island City Apt with a Terrace,237880163,Sandeep,Queens,Sunnyside,40.7379,-73.92911,Private room,85,1,21,2019-07-02,4.92,1,80 +31761417,Large quiet apt. Right next to everything you need,123060492,DeShawn,Queens,Astoria,40.7679,-73.91764,Entire home/apt,75,5,2,2019-03-04,0.41,1,0 +15436800,Independent entrance,67619393,Arthur,Queens,Corona,40.73759,-73.86350999999999,Private room,37,3,30,2019-06-18,0.98,1,48 +18812330,A Guest Room in a Bushwick Artist/Musician's Loft,71849302,Dave,Brooklyn,Williamsburg,40.70798,-73.93652,Shared room,64,1,69,2019-06-22,3.04,1,81 +35451636,Newly renovated private room close to Central Park,266726110,Sergii,Manhattan,Harlem,40.80315,-73.95616,Private room,88,30,0,,,7,364 +18836337,Modern Comfort,95564806,Olvin,Brooklyn,Brownsville,40.66032,-73.91341,Private room,55,2,58,2019-02-25,2.25,3,0 +28204876,Private modern studio suite with private bathroom,118410907,Sophia,Brooklyn,Bensonhurst,40.60644,-73.99135,Entire home/apt,88,1,39,2019-07-03,3.77,1,362 +20495252,Beautiful Room in a Classic Harlem Neighborhood!,126844198,Rahwa,Manhattan,Harlem,40.8255,-73.94119,Private room,50,3,2,2017-10-10,0.09,1,0 +34855302,West Village GEM on Charles St!,262767899,Paola,Manhattan,West Village,40.73559,-73.99959,Entire home/apt,299,2,1,2019-06-19,1.0,1,118 +14551515,Large Bedroom in Bushwick,80771146,Tetyana,Brooklyn,Bushwick,40.696,-73.92964,Private room,65,3,0,,,1,0 +22566815,Stunning Private Room in Awesome BK,1317913,Lauren,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95235,Private room,75,3,0,,,2,0 +7535791,"Big, bright loft in Williamsburg",39483454,Laura,Brooklyn,Williamsburg,40.7129,-73.95565,Entire home/apt,180,14,2,2015-08-05,0.04,1,0 +32169418,Little Cottage,158407820,Omar,Queens,Woodside,40.75403,-73.90075999999999,Entire home/apt,98,2,15,2019-06-26,4.13,5,337 +4621217,Gramercy~New 1BR~Sleeps4~Rono~,2119276,Host,Manhattan,Gramercy,40.73346,-73.98216,Entire home/apt,140,30,7,2018-09-10,0.13,39,332 +21213799,Nice room in Harlem,63417081,Devon,Manhattan,Harlem,40.82332,-73.94426,Private room,45,30,2,2018-12-31,0.1,8,261 +1467618,1 min to Bedford Ave (L) Station,7860852,Matthew,Brooklyn,Williamsburg,40.71867,-73.9557,Entire home/apt,190,3,10,2019-05-26,0.26,2,0 +1474980,Be my Guest! Cozy East Village apt!,823392,Karen,Manhattan,East Village,40.72247,-73.97946999999999,Private room,73,12,11,2019-06-29,0.16,1,21 +33558048,"Artist Loft: Clean, Cozy, Sun Filled, Plant Oasis",252856825,Jessi,Brooklyn,Bedford-Stuyvesant,40.69446,-73.9543,Entire home/apt,250,1,4,2019-07-02,1.85,1,10 +26140709,Workspace Room 3 - 2,9864136,Anthony,Brooklyn,Bushwick,40.686440000000005,-73.91554000000001,Private room,36,2,1,2018-08-10,0.09,26,302 +3447448,Waterfront Experience,14509754,Wally,Brooklyn,Williamsburg,40.71936,-73.96181,Private room,150,1,0,,,1,364 +21462212,Clean private room with double bed,145285876,Hiro,Brooklyn,Williamsburg,40.71536,-73.96358000000001,Private room,66,2,1,2017-11-02,0.05,2,0 +14463527,Sunny Room in Greenpoint.,52040778,Sally,Brooklyn,Greenpoint,40.72408,-73.93952,Private room,50,25,0,,,1,5 +22781825,Free bottle of wine with stay!,168308087,Sarah,Manhattan,Chelsea,40.73686,-73.99171,Entire home/apt,75,1,0,,,1,0 +14039287,Park Slope Railroad Room in July!,76114171,Priya,Brooklyn,Park Slope,40.67026,-73.97668,Private room,40,1,2,2016-07-28,0.06,1,0 +33291824,Nice and Cozy 2 bedrooms apartment near Manhattan,209569701,Beatriz,Queens,Long Island City,40.75464,-73.94107,Entire home/apt,190,4,7,2019-06-13,2.56,1,255 +9625926,2 bedroom in Cobble Hill,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68406,-73.99155999999999,Entire home/apt,219,2,0,,,2,0 +16814205,Cozy Room Close to JFK!!,111841534,Malini,Queens,Jamaica,40.67949,-73.79841,Private room,53,1,392,2019-07-06,13.15,1,71 +18655599,Luxury Studio Apartment in Downtown Brooklyn,36522433,Zexi,Brooklyn,Downtown Brooklyn,40.694590000000005,-73.98261,Entire home/apt,130,5,2,2017-08-29,0.08,1,0 +34119485,Bright and Spacious Apartment in Bay Ridge,29094579,Ruby,Brooklyn,Fort Hamilton,40.61642,-74.02396999999999,Entire home/apt,89,3,4,2019-06-23,1.56,1,21 +21063162,Space and Light in the Heart of Midtown,33009,Seth,Manhattan,Hell's Kitchen,40.76192,-73.9909,Entire home/apt,180,3,3,2018-11-26,0.14,1,0 +12452110,Traveller's Flat – Hell's Kitchen,12327430,Marco,Manhattan,Hell's Kitchen,40.76386,-73.99707,Entire home/apt,148,4,104,2019-06-23,2.7,2,145 +21625317,Your Private Sunny Studio Apt in Crown Heights,24035151,Daeun,Brooklyn,Crown Heights,40.67577,-73.95751,Entire home/apt,70,3,3,2017-11-13,0.15,1,0 +16708143,Bright room with full size bed.,52059111,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.9592,Private room,50,1,1,2017-03-06,0.04,1,0 +12028733,Comfortable and Spacious Bedroom B,52474491,Arthur,Brooklyn,Sea Gate,40.577740000000006,-74.01021999999999,Private room,97,1,2,2016-03-28,0.05,3,0 +18239876,Studio aprtmnt for ONE located in upper Manhattan,125589679,Shanta,Manhattan,Washington Heights,40.836940000000006,-73.94211999999999,Entire home/apt,100,3,71,2019-06-21,2.66,1,363 +27296868,East 39th Street Furnished Studio,200380610,Pranjal,Manhattan,Murray Hill,40.74688,-73.97341999999999,Entire home/apt,180,30,0,,,65,364 +21324522,Brownstone Duplex with Private Outdoor Patio!,12337318,Andrew,Manhattan,Harlem,40.82296,-73.94545,Entire home/apt,200,2,38,2019-06-10,1.89,2,101 +21745569,Convenient Private and Cozy Environment,158406020,Marvin,Brooklyn,East Flatbush,40.64902,-73.9286,Private room,45,1,15,2019-02-09,0.76,2,269 +19176053,Renovated sunny 1br w/ private bath steps to train,39808438,Easton,Brooklyn,Bushwick,40.68947,-73.91544,Private room,45,2,30,2019-03-27,1.31,5,0 +32241142,Sonder | Stock Exchange | Tranquil 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01074,Entire home/apt,214,2,3,2019-05-25,1.23,327,333 +17730019,HALSEY HAVEN,101435219,Gretchen,Brooklyn,Bedford-Stuyvesant,40.68607,-73.92392,Entire home/apt,161,2,45,2019-06-24,1.65,2,270 +26756446,"Cozy bedroom mins to Manhattan, one block to train",201203968,William,Brooklyn,Williamsburg,40.7127,-73.94034,Private room,62,2,64,2019-06-10,5.35,2,26 +36207836,Big Room close to LGA Airport. Cuarto Grande.,157053317,Jey,Queens,East Elmhurst,40.76263,-73.88999,Private room,40,1,0,,,1,318 +7913704,Quiet Room in Harlem Apartment,2405940,Hannah,Manhattan,Harlem,40.82457,-73.94984000000001,Private room,42,2,3,2016-09-06,0.08,1,0 +22714989,Entire Apartment - A retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65682,-73.95875,Entire home/apt,125,3,0,,,2,0 +21995883,Chelsea urban style loft,79886089,Stephanie,Manhattan,Chelsea,40.74624,-73.99273000000001,Private room,150,5,4,2019-01-01,0.22,1,0 +35907244,Bright Breezy Sleeping Pad NextdoorTo Subway/Pratt,21261408,Jay,Brooklyn,Clinton Hill,40.68853,-73.96089,Shared room,45,1,0,,,6,345 +9384981,Relax in your Brooklyn Private Bed with Key,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.6947,-73.93481,Private room,72,4,100,2019-06-28,2.34,6,113 +7385692,"Huge 1 bdr, convenient location!",38404959,Maria,Queens,Ditmars Steinway,40.77742,-73.90965,Private room,85,3,3,2018-09-05,0.06,2,163 +6971639,ACADIA Spacious 2 Bedroom Apt - Close to Hospitals,25237492,Juliana,Manhattan,Upper East Side,40.76021,-73.96157,Entire home/apt,165,30,10,2018-11-18,0.22,34,346 +35157163,Private bedroom near EVERYTHING,222549093,Anna Laura,Manhattan,Harlem,40.81557,-73.95702,Private room,60,5,0,,,3,21 +15735169,Spacious studio in Upper East Side,85726670,Priscilla,Manhattan,Upper East Side,40.77043,-73.95557,Entire home/apt,150,3,2,2019-06-09,0.08,1,0 +21548325,"Private comfortable bedroom in Bay Ridge, Brooklyn",69054780,Tamara,Brooklyn,Fort Hamilton,40.62245,-74.02958000000001,Private room,55,7,3,2018-04-02,0.15,1,0 +27910595,"Cozy&Clean Suite-private entry, bedroom & bathroom",210843289,Tajudeen,Staten Island,Mariners Harbor,40.63068,-74.15521,Private room,40,2,86,2019-06-25,10.12,1,56 +16255284,Luxurious Penthouse Loft with balcony in West Vil,65811347,Katya,Manhattan,West Village,40.73613,-74.00711,Entire home/apt,220,28,2,2017-08-26,0.08,1,365 +34579204,Lovely Ensuite Room with own entrance,212874794,Michael,Brooklyn,Park Slope,40.68018,-73.98052,Private room,49,31,0,,,1,42 +23290010,Sunny Williamsburg Apt (1 month min stay),1539109,Mary,Brooklyn,Williamsburg,40.71225,-73.95756999999999,Private room,68,28,5,2019-06-17,0.53,1,258 +30541504,"Spacious, sunny room in hip neighbourhood!",21132706,Gjermund,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94958000000001,Private room,50,3,0,,,1,25 +20589695,Beautiful Home in the Heart of Greenpoint,4033648,Victoria,Brooklyn,Greenpoint,40.729420000000005,-73.95121999999999,Entire home/apt,120,4,9,2019-05-26,0.4,1,10 +24438564,Chic one Bedroom apartment NYC,53781263,Oscar,Queens,Ridgewood,40.70142,-73.90515,Entire home/apt,90,1,22,2019-06-30,1.64,2,5 +6678082,Newly renovated amazing 2 bedrooms,34371968,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68207,-73.93279,Entire home/apt,150,4,70,2019-06-26,1.54,1,293 +21244390,Cozy room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75703,-73.99371,Private room,100,1,130,2019-06-23,6.25,2,45 +4287589,"LG GARDEN Apt ON Sunset Park, on41ST near 6th Ave",15715046,Katie,Brooklyn,Sunset Park,40.65031,-74.00239,Entire home/apt,125,2,51,2019-07-01,0.89,1,351 +36069486,Private room in Central Park North,264495166,Jordania,Manhattan,Harlem,40.80199,-73.95779,Private room,90,2,1,2019-07-03,1.0,3,46 +29056345,"Modern, Bright, & Cheerful - Free Cleaning & WiFi",155297713,Marie & Tyler,Brooklyn,Bushwick,40.705290000000005,-73.92535,Private room,40,30,1,2018-11-22,0.13,3,54 +21344762,Modern Manhattan 1 Bedroom 15 Mins from Midtown,34867672,Robert,Manhattan,East Harlem,40.80891,-73.93798000000001,Entire home/apt,100,30,22,2019-01-31,1.05,1,0 +33242348,1 room in private house - 15 mins to NYC & Ferry,161357125,Mohsin,Staten Island,Todt Hill,40.60991,-74.11577,Private room,50,2,6,2019-06-18,2.02,3,52 +6612737,Furnished Bedroom in Murray Hill,28181993,Anshul,Manhattan,Kips Bay,40.73909,-73.9788,Private room,70,15,0,,,1,0 +737075,"Bright Friendly Apt, East Village!",2333904,Stephanie,Manhattan,East Village,40.7232,-73.97927,Private room,75,26,57,2019-05-20,0.7,3,98 +6627752,"Cosy Apt. in Brooklyn, near subway",25599307,Julia,Brooklyn,Flatbush,40.63915,-73.95451,Entire home/apt,90,6,33,2017-05-31,0.69,1,0 +20395608,★ Warm NYC Getaway ★ | Walk/Transit Score 85+ |,131697576,Anisha,Bronx,East Morrisania,40.83243,-73.88608,Private room,55,2,60,2019-06-18,2.59,4,171 +35935104,Cozy Central Park West Residence,270284621,Kate,Manhattan,Upper West Side,40.77485,-73.97827,Entire home/apt,150,4,0,,,1,63 +7727798,Room with its private bathroom and garden access,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69461,-73.93406,Private room,86,3,91,2019-07-02,1.99,7,20 +16376497,Private Room blocks from Union Square,81190209,Claudio,Manhattan,Stuyvesant Town,40.73125,-73.97891,Private room,110,1,0,,,1,0 +10041531,A Large Room in a Huge Apartment,50007401,Jessica,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94833,Private room,45,2,0,,,1,0 +35872024,"Full size bedroom in a duplex, private garden view",4521174,Caroline,Brooklyn,Crown Heights,40.67032,-73.93956999999999,Private room,65,7,0,,,3,63 +33592928,Comfortable Sofa Bed For Rent In NYC. Female ONLY,197368927,Cebile,Brooklyn,Sheepshead Bay,40.6093,-73.95211,Shared room,40,2,8,2019-06-08,2.55,8,358 +258688,Spacious & Stylish Chelsea One Bedroom Apartment,436599,Chad,Manhattan,West Village,40.74031,-74.00532,Entire home/apt,325,4,46,2019-06-02,0.5,1,20 +34501825,Bushwick penthouse,40707667,Horacio,Brooklyn,Bushwick,40.70191,-73.91951999999999,Private room,60,1,12,2019-07-04,5.9,1,27 +8319784,~Lavish 1 Bedroom Upper East Side NYC Apt!,30283594,Kara,Manhattan,Upper East Side,40.76483,-73.95801,Entire home/apt,249,30,1,2017-06-29,0.04,121,273 +6524806,Great room for couples on a budget!,34124276,Nicole,Queens,Long Island City,40.75235,-73.93714,Private room,52,1,4,2016-07-28,0.08,1,0 +31502105,The Peaceful Palace Spacious,236018119,Lucy,Queens,Queens Village,40.70472,-73.74865,Entire home/apt,121,1,13,2019-07-06,2.28,3,90 +33510678,COZY&CHARMING ROOM - CLOSE TO MANHATTAN,239952407,Alaor,Queens,Long Island City,40.75961,-73.93366,Private room,50,5,0,,,1,0 +5885101,one large private bedroom/ two bedroom apartment,21364540,Francisca,Brooklyn,Williamsburg,40.70217,-73.93737,Private room,60,4,3,2017-09-02,0.09,2,25 +93313,MAISON DES SIRENES 2,25183,Nathalie,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93963000000001,Entire home/apt,120,2,75,2019-06-23,0.76,2,237 +9976264,Spacious/Beautiful Private Room,51262617,Sandra,Brooklyn,Greenpoint,40.72722,-73.95246999999999,Private room,100,2,101,2019-07-01,2.75,1,284 +16475935,Master Bedroom in Clinton Hill,23700673,Yoni,Brooklyn,Clinton Hill,40.69377,-73.96229,Private room,100,3,0,,,2,2 +19730080,Private bedroom in Sunny Bushwick Apartment,139093829,Valentina,Brooklyn,Bushwick,40.6874,-73.91455,Private room,40,3,17,2018-08-27,0.71,1,0 +12084205,East Village 1B in 3B apt,51924404,Angela,Manhattan,East Village,40.72966,-73.98476,Private room,56,1,2,2016-06-01,0.05,1,0 +8988997,Beautiful Furnished 1 Bedroom NYC Apartment,30283594,Kara,Manhattan,Chelsea,40.74569,-73.99183000000001,Entire home/apt,129,30,0,,,121,164 +5681611,Private room in Jackson Heights Apartment 2+,16514175,Karen,Queens,Elmhurst,40.74595,-73.88691,Private room,69,1,20,2018-10-26,0.57,5,65 +29738205,Beautiful Private Small Room with 2 Beds,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95499000000001,Private room,63,2,13,2019-06-18,1.72,3,321 +6269945,Manhattan Apartment (Female Guests),32583105,Nancy,Manhattan,Upper East Side,40.77867,-73.95121,Private room,90,1,75,2019-06-14,1.49,1,359 +21174566,"Columbus Circle, Central Park, Time Warner O MY!",42628496,Kenny,Manhattan,Hell's Kitchen,40.76616,-73.98441,Private room,125,1,39,2019-04-14,1.83,1,0 +10519216,Beautiful LARGE one bedroom apt,54235059,Emmett,Queens,Long Island City,40.74399,-73.95321,Entire home/apt,195,1,0,,,1,0 +223930,Lovely Apartment,1164642,Rosalynn,Brooklyn,Prospect Heights,40.674240000000005,-73.96665,Entire home/apt,150,5,24,2019-06-23,0.25,1,363 +21728670,Private 1BR w/ Full-sized Bed. Great Location!,158222655,Adam,Brooklyn,Williamsburg,40.71901,-73.9571,Private room,100,1,69,2019-06-20,3.55,1,85 +23565616,Studio apartment w/ balcony near subway!,40078965,Nina,Queens,Elmhurst,40.73182,-73.87579000000001,Entire home/apt,95,5,29,2019-07-04,1.81,1,120 +3898329,Best views of Manhattan!,20177186,Ted,Manhattan,Financial District,40.70943,-74.01405,Entire home/apt,200,2,6,2015-10-12,0.1,1,0 +11411361,Sunny private bedroom,57287881,Ivy,Brooklyn,Williamsburg,40.71097,-73.94549,Private room,45,5,0,,,1,0 +2135116,"Downtown, close to every subway!",2382974,Chris,Manhattan,Battery Park City,40.71,-74.0154,Private room,110,3,1,2017-05-25,0.04,1,0 +1935302,COZY and WARM Garden Apartment,10008086,Brandon,Brooklyn,Fort Greene,40.69117,-73.97046999999999,Entire home/apt,180,2,72,2019-07-07,3.12,1,290 +32992390,Private Room with Own Entrance in Williamsburg!,1489654,Austin,Brooklyn,Williamsburg,40.71247,-73.94915,Private room,93,1,25,2019-06-25,7.01,1,234 +11474664,Family-friendly 2 bed apt.near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68165,-73.84558,Entire home/apt,120,4,70,2019-06-05,1.76,4,51 +16192835,Modern Artist's Loft in East Williamsburg/Bushwick,47453782,Avi,Brooklyn,Williamsburg,40.70729,-73.93129,Entire home/apt,175,2,44,2019-05-12,1.43,1,3 +27453970,Manhattan - Master Room - 1mn Metro - Central Park,57002433,Lucile,Manhattan,East Harlem,40.79713,-73.941,Private room,80,1,25,2019-07-02,2.25,2,0 +6000868,Charming Brownstone Apartment,2787900,Maggie,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94662,Entire home/apt,175,2,42,2019-02-09,0.82,1,0 +2193902,East Village~Organic Living,1587234,Marie,Manhattan,East Village,40.72422,-73.98210999999999,Entire home/apt,225,2,46,2019-04-30,0.8,1,320 +19227424,"Private, cozy room near major trains",86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.6812,-73.91148000000001,Private room,50,1,102,2019-06-22,4.14,6,237 +267708,"Charming Hotel Alternative +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79111,-73.94466,Private room,99,3,25,2019-06-15,0.96,2,127 +11950107,Private Bedroom Near Prospect Park,32306916,Vin,Brooklyn,Crown Heights,40.67324,-73.95156999999999,Private room,55,1,4,2016-05-15,0.1,1,0 +4842112,2 bed / 2 bath East Village top floor AMAZING,7065271,Sophie,Manhattan,East Village,40.72551,-73.98541999999999,Entire home/apt,260,10,4,2018-08-31,0.08,1,31 +578941,Beautiful Park Slope 2 bedroom,2847655,Gideon,Brooklyn,Park Slope,40.66732,-73.98233,Entire home/apt,159,2,4,2015-09-21,0.08,1,0 +11511431,Historic Upper West Side Townhouse 1 or 2 Bdrms,23901404,Ray,Manhattan,Harlem,40.82334,-73.94811,Entire home/apt,165,2,90,2019-07-07,2.58,1,35 +33941416,Comfy Room in Williamsburg! Close to 3 subways!,256299491,Anthony,Brooklyn,Williamsburg,40.70445,-73.94491,Private room,75,4,5,2019-06-29,2.27,1,6 +22203227,Entire 3 bedroom apartment in Brooklyn (36),132706680,Christine,Brooklyn,East New York,40.67539,-73.90207,Entire home/apt,120,2,55,2019-06-26,2.89,1,86 +30062210,Cozy Four Twenty Friendly Bedroom in Brooklyn,225913497,Mamadou,Brooklyn,Bedford-Stuyvesant,40.67966,-73.90755,Private room,28,3,1,2019-01-01,0.16,1,0 +12136198,5th ave/Broadway near Empire State,65143341,Noel,Manhattan,Midtown,40.74771,-73.98727,Entire home/apt,139,1,186,2019-06-24,4.68,1,230 +10057826,Deluxe Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72778,-73.94471999999999,Entire home/apt,205,3,5,2018-02-18,0.12,13,72 +19836734,Sunlit giant apt in the privileged Upper East,4380358,C Lum,Manhattan,Upper East Side,40.78072,-73.94726,Private room,135,4,5,2019-05-31,0.22,1,95 +23624930,Lisa's Comfort Zone,176763105,Lisa,Queens,Jamaica,40.6743,-73.78471,Private room,70,1,41,2019-05-05,2.76,1,67 +28660377,Gorgeous Bedroom in the heart of Bushwick Him-2R-1,216235179,Nina,Brooklyn,Bushwick,40.69938,-73.91953000000001,Private room,55,30,1,2018-12-21,0.15,17,339 +16578826,"Harlem ""Hostel"" for Single Travelers",17078225,Sarah-Jane,Manhattan,Harlem,40.81516,-73.94829,Shared room,55,2,36,2019-06-30,1.28,2,88 +8505892,"Bright, Spacious, Art Filled Apt",11241345,Madison,Manhattan,Lower East Side,40.72027,-73.98565,Entire home/apt,275,1,0,,,1,0 +27658203,Sunny Room in Sunset Park Industry City Brooklyn,195517789,Patricia,Brooklyn,Sunset Park,40.65092,-74.00489,Private room,50,3,39,2019-07-02,3.79,2,300 +36150599,The most convenient place in Brooklyn,229381517,Pavel,Brooklyn,Prospect Heights,40.68017,-73.97352,Entire home/apt,250,1,0,,,2,158 +23433518,New Tidy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75522,-73.81259,Private room,46,2,26,2019-05-26,1.65,6,180 +27836335,Private Room in great location Bushwick!,13098292,Raisa,Brooklyn,Bushwick,40.699940000000005,-73.93299,Private room,55,2,0,,,2,0 +36031121,Home Away From Home,271069449,Tristan,Queens,Arverne,40.59125,-73.79683,Entire home/apt,129,2,1,2019-06-30,1.0,1,362 +9778978,upper manhattan rivervie new studio,32525636,Piner,Manhattan,Harlem,40.82094,-73.95745,Entire home/apt,50,3,1,2016-05-22,0.03,1,0 +23002904,Upper East Brownstone Duplex 4Beds &Private Garden,61849126,Laura,Manhattan,Upper East Side,40.77602,-73.95062,Entire home/apt,350,3,15,2018-11-25,0.9,1,5 +25772890,"Rustic room in beautiful, naturesque Fort Greene",71987360,Brendan,Brooklyn,Clinton Hill,40.6943,-73.96916999999999,Shared room,45,2,4,2018-08-13,0.31,1,0 +26813610,Neat+Nice+Large dining area & 2 min to Subway,19303369,Hiroki,Queens,Woodside,40.74323,-73.90471,Private room,33,37,1,2018-12-15,0.15,37,39 +10088612,"Full size bed, 2 guests, Manhattan Upper Westside",216227,Victor,Manhattan,Harlem,40.82069,-73.95549,Private room,60,1,229,2019-07-05,6.25,3,310 +22101002,Antique Suite,158034247,Christine,Brooklyn,Gravesend,40.58985,-73.98482,Private room,55,2,25,2019-03-21,1.34,1,0 +5881122,"Lovely, bright & cozy room in Manhattan!",22087408,Dominik,Manhattan,Lower East Side,40.71735,-73.98213,Private room,125,1,44,2019-06-10,1.15,3,284 +23059062,Sunny Basement Apt. in House w/ Garden Near Ferry,6966161,Michal,Staten Island,St. George,40.64399,-74.08525999999999,Entire home/apt,77,7,0,,,1,0 +26361306,Pent House Studio Minutes From Manhattan,123648417,Sean,Brooklyn,Flatbush,40.65401,-73.96212,Entire home/apt,125,1,22,2019-03-24,1.8,1,93 +33638326,Hustler's Paradise 2 (Semi Private),104927746,Amardeep,Staten Island,Concord,40.597,-74.08778000000001,Shared room,29,1,0,,,7,2 +5029202,"Spacious 2 Bedroom, 2 Bath, 5th Avenue Entire Apt",14362471,Andy And TJ,Manhattan,East Harlem,40.79641,-73.94847,Entire home/apt,229,30,6,2019-02-14,0.12,1,61 +35001013,1 Bedroom 1 Bathroom Murray Hill,221200420,Adam,Manhattan,Murray Hill,40.74458,-73.97146,Entire home/apt,200,30,0,,,23,339 +9496372,W 4th Ground Floor 1bd Apt,8472477,Scott,Manhattan,West Village,40.73095,-74.00242,Entire home/apt,132,1,1,2016-01-03,0.02,1,0 +3655007,Great Room for International Students!,18492106,Sharon,Bronx,Wakefield,40.88855,-73.85127,Private room,50,7,12,2018-09-15,0.55,1,0 +9381449,Holidays in Williamsburg!,27499750,Donovan,Brooklyn,Williamsburg,40.70943,-73.94277,Entire home/apt,125,1,0,,,1,0 +29763219,"Bright one bedroom. Lorimer (J,M) broadway (G)",4858280,Anna,Brooklyn,Williamsburg,40.70343,-73.94894000000001,Entire home/apt,149,6,7,2019-05-29,0.96,1,4 +24914710,Apartamento para viagem NY,188362154,Jordana,Queens,Astoria,40.76623,-73.91279,Private room,150,5,0,,,1,362 +22066635,2 bedrooms apartment in Williamsburg- Brooklyn,9831905,Alice,Brooklyn,Williamsburg,40.71793,-73.95772,Entire home/apt,230,7,0,,,1,0 +6423589,Lofted bedroom in large loft space full of plants,6767463,Tim,Brooklyn,Bushwick,40.70746,-73.92054,Private room,150,30,10,2017-02-28,0.2,1,0 +34862591,Spacey Bushwick Loft! Perfect location! Big Room!,2201963,Violeta,Brooklyn,Williamsburg,40.70631,-73.93338,Private room,64,21,0,,,1,5 +35230828,Tri-Level Apartment W/ Balcony Empire State Views,60113180,Austin,Manhattan,Kips Bay,40.74442,-73.98047,Entire home/apt,225,1,1,2019-06-30,1.0,1,221 +3623946,Sunny and Spacious Two Bedroom Duplex with Terrace,18254730,Valeria,Brooklyn,South Slope,40.66748,-73.98971,Entire home/apt,192,4,6,2019-04-28,0.14,1,8 +19094358,Great place for a family or a group of friends,123974198,Anny,Manhattan,Inwood,40.86665,-73.92695,Entire home/apt,175,2,7,2018-08-26,0.29,1,0 +29546751,Private apartment 10 min walk from train,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93481,Entire home/apt,139,1,12,2019-06-23,1.67,9,134 +29411649,1bd shared bathroom - very welcome apt in Harlem,134167192,Mamy Francine,Manhattan,Harlem,40.81502,-73.94183000000001,Private room,90,2,3,2018-11-18,0.36,1,0 +36062014,"Chic room, excellent location!",14844084,Patricia,Manhattan,Harlem,40.82625,-73.94791,Private room,75,4,0,,,1,113 +34227846,Great New York-korea town Shared room,179336958,Ruby,Manhattan,Midtown,40.74605,-73.98634,Shared room,65,3,1,2019-06-29,1.0,6,353 +3549798,Sunny Private Williamsburg Space,6309019,John,Brooklyn,Williamsburg,40.71474,-73.95662,Entire home/apt,200,2,175,2019-07-02,2.93,1,303 +35425596,Trendy 3Bd City Apartment next to the Park! ❤️,266595097,Evelyn,Manhattan,East Village,40.724340000000005,-73.98047,Entire home/apt,340,2,0,,,1,180 +35706862,Prime Williamsburg - 2BR - 10 min to Manhattan!,268585880,Angelica,Brooklyn,Williamsburg,40.71564,-73.94497,Entire home/apt,80,1,0,,,2,2 +31801816,Sparkling Clean BR in Unbeatable Location 웃,238324936,Marcel,Manhattan,Hell's Kitchen,40.76463,-73.98772,Private room,150,1,3,2019-03-07,0.56,3,152 +1266411,Cozy Brownstone Living in Brooklyn,6893861,Phillip + Zack,Brooklyn,Bedford-Stuyvesant,40.68445,-73.93785,Entire home/apt,181,3,153,2019-06-16,3.17,1,174 +33749115,Sensational Midtown East Dream Near E/M Trains,254372359,Timothy And Natalia,Manhattan,Midtown,40.75452,-73.97091999999999,Entire home/apt,250,5,7,2019-06-14,2.44,1,161 +5760776,Architects Central SoHo 1BR Home,29885916,Axel,Manhattan,SoHo,40.72386,-74.00461999999999,Entire home/apt,245,4,8,2019-01-02,0.16,1,52 +31866810,Brooklyn Best Location! Granite Prospect! Doorman!,236671534,Eva,Brooklyn,Brooklyn Heights,40.69653,-73.99540999999999,Entire home/apt,75,3,1,2019-02-20,0.21,1,94 +13441680,Private Bedroom in a 3BR Apartment,7141050,Mayra,Manhattan,Inwood,40.86541,-73.92935,Private room,52,2,10,2018-06-15,0.28,2,0 +19141112,Modern CoLiving at Ridgewood / shared room,133802988,Sergii,Queens,Ridgewood,40.70375,-73.90342,Shared room,30,30,1,2017-12-15,0.05,6,365 +13546425,Room in ground level brownstone with private yard,9501536,Morgan,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93935,Private room,60,2,2,2016-07-11,0.05,1,0 +30914235,Cozy Charming Room in South Slope 1 Min to METRO,51913277,Andrada And Alex,Brooklyn,Sunset Park,40.66182,-73.99805,Private room,45,2,13,2019-07-03,4.59,1,37 +29630309,Garden Room in Rego Park,89000911,Ursula,Queens,Middle Village,40.7258,-73.87071,Private room,65,1,0,,,2,0 +15955297,Brooklyn Heights for Christmas,103597496,Catherine,Brooklyn,Brooklyn Heights,40.69798,-73.99344,Entire home/apt,275,7,0,,,1,0 +16533876,Charming spacious room in Williamsburg,11521252,Florence,Brooklyn,Williamsburg,40.7129,-73.94896,Private room,83,4,0,,,1,0 +4941771,Perfectly Located Brooklyn Studio,25468442,Alexandra,Brooklyn,Prospect Heights,40.67273,-73.96361,Entire home/apt,125,2,34,2017-12-26,0.64,1,0 +31932642,Spacious and convenient room at Hamilton Heights!,20181084,Farouk,Manhattan,Harlem,40.82441,-73.95323,Private room,60,3,7,2019-05-25,2.16,1,199 +16477061,Classic Upper East Side Manhattan,3428943,Travel Bug,Manhattan,Upper East Side,40.76906,-73.95369000000001,Entire home/apt,119,7,0,,,1,0 +13248583,Spacious & cozy room in trendy SoHa !,3097033,Aida,Manhattan,Harlem,40.80304,-73.95148,Private room,65,2,50,2019-06-24,1.39,2,15 +1444400,Large Room In Newly Renovated Hell's Kitchen Apt.,7755092,Ron,Manhattan,Hell's Kitchen,40.76391,-73.99225,Private room,112,1,196,2019-07-03,5.4,1,71 +9115832,Lge bedroom (2 pers) in Bushwick,47501348,Margot,Brooklyn,Bushwick,40.698240000000006,-73.93231,Private room,60,1,0,,,1,0 +21701695,Lovely Private Room with Balcony in New York,96346005,Yamile,Manhattan,Upper West Side,40.77268,-73.98933000000001,Private room,135,3,69,2019-06-25,3.47,3,70 +29687924,Gorgeous Room with Private Bath in Bedstuy,104246751,Javier,Brooklyn,Bedford-Stuyvesant,40.69237,-73.94314,Private room,95,1,36,2019-07-02,4.34,1,79 +22651901,HUGE ONE BEDROOM IN BK,124657243,Bugsy,Brooklyn,Flatbush,40.65105,-73.95935,Entire home/apt,89,1,4,2018-03-07,0.23,1,0 +107630,Sweet Historic Greenpoint Duplex,306739,Maya,Brooklyn,Greenpoint,40.72911,-73.95493,Entire home/apt,175,3,248,2019-06-20,2.53,3,274 +21504532,Beautiful apartment direct in Midtown Manhattan,156246842,Sandra,Manhattan,Hell's Kitchen,40.76254,-73.98812,Private room,150,3,54,2019-06-22,2.67,3,24 +10542066,Cozy Room/ 10min LGA #2,51531044,Angela,Queens,Jackson Heights,40.75009,-73.87578,Private room,45,1,78,2019-03-22,1.94,4,337 +9236348,Spacious two bedroom with backyard,48007438,Daniel,Brooklyn,Bushwick,40.70198,-73.91571,Entire home/apt,95,1,0,,,1,0 +1656621,Classic Brownstone private suite,5738733,Elizabeth,Brooklyn,Bedford-Stuyvesant,40.68978,-73.93751,Entire home/apt,74,2,189,2019-06-30,3.02,2,131 +35842999,Clean Quiet 1BR in lovely doorman FiDi building,5339419,Catherine,Manhattan,Financial District,40.71133,-74.00676,Entire home/apt,220,4,0,,,1,6 +12585015,FANTASTIC FLOOR THROUGH ONE BEDROOM,18901504,Ronald,Manhattan,Midtown,40.755,-73.96670999999999,Entire home/apt,218,5,69,2019-06-30,1.81,2,152 +3276963,"Huge, Perfect Location West Village",16566615,Celeste,Manhattan,West Village,40.73691,-74.00013,Entire home/apt,166,14,18,2019-06-24,0.3,1,48 +4781700,Cool Room in NYC,24655252,Gabriel,Manhattan,Hell's Kitchen,40.7637,-73.98985,Private room,65,17,24,2019-06-03,0.45,1,86 +21970259,LARGE PRIVATE ROOM BY EVERYTHING MIDTOWN MANHATTAN,155125855,Vicente,Manhattan,Midtown,40.74739,-73.98344,Private room,130,1,40,2018-11-04,2.08,3,0 +19261697,Hidden Treasure in Bed-Sty,67992400,Ben,Brooklyn,Bedford-Stuyvesant,40.6953,-73.93567,Private room,50,2,1,2017-07-25,0.04,1,0 +13619296,Full Apt 2 Bedrooms in Brooklyn - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70876,-73.95125,Entire home/apt,150,2,0,,,3,0 +13127582,One bedroom in Beautiful Astoria with balcony!,42048980,Stephanie,Queens,Ditmars Steinway,40.77265,-73.91401,Private room,100,1,1,2016-05-30,0.03,1,0 +31267520,Mott Haven Dorm-Bed F,174785358,Rem,Bronx,Port Morris,40.8094,-73.93173,Shared room,28,1,17,2019-06-18,2.77,7,319 +34234242,Empire state building neighbor,44803585,Chrissy,Manhattan,Midtown,40.74673,-73.98191,Entire home/apt,300,1,4,2019-06-02,1.85,1,235 +30102118,Huge two bedroom in trendy Greenpoint,5743700,Joshua,Brooklyn,Greenpoint,40.72918,-73.95538,Entire home/apt,200,4,1,2018-12-26,0.15,1,0 +23631575,Bright and spacious room two blocks from park!,2515199,Marcie,Brooklyn,Flatbush,40.65232,-73.96208,Private room,36,2,11,2018-06-17,0.68,1,0 +60948,ACCOMMODATIONS GALORE #2,126607,Laurine,Manhattan,East Harlem,40.80942,-73.93936,Entire home/apt,140,3,135,2019-06-20,1.3,3,192 +5395116,Studio in UWS- Manhattan,14586567,Paula,Manhattan,Upper West Side,40.79368,-73.97324,Entire home/apt,150,1,0,,,1,0 +33393883,Charming 2BR/2BA on Upper West Side,9028198,Erin,Manhattan,Upper West Side,40.80273,-73.96386,Entire home/apt,300,1,4,2019-06-23,1.4,1,4 +29522531,Private Cozy Room,14719992,Yoni,Brooklyn,Cypress Hills,40.679590000000005,-73.89209,Private room,31,1,14,2019-06-08,1.72,3,210 +22639188,Hells Kitchen - Midtown West - 1 Bedroom Apartment,2925596,Daniel,Manhattan,Hell's Kitchen,40.76464,-73.99361,Entire home/apt,200,5,46,2019-07-01,2.63,1,228 +21864653,Cozy Room for Rent in South Slope,33435096,Francesca,Brooklyn,Sunset Park,40.6588,-73.99096999999999,Private room,50,2,44,2019-06-28,2.29,1,298 +35876805,Tropical Bushwick Paradise,269266449,Andrea,Brooklyn,Bushwick,40.70266,-73.91723,Private room,50,7,1,2019-06-28,1.0,1,310 +26203807,"SPACIOUS ARTSY room w/ rooftop, 25 min>Manhattan",104124704,Alejandro,Brooklyn,Crown Heights,40.66733,-73.9535,Private room,55,1,11,2019-05-12,0.92,1,0 +18404936,Location! Location!,63417081,Devon,Manhattan,Harlem,40.82359,-73.94433000000001,Private room,37,30,4,2018-07-15,0.18,8,291 +7399178,Cozy Room in the LOWER EAST SIDE!,38767720,Caitlin,Manhattan,Lower East Side,40.71934,-73.98424,Private room,97,1,2,2015-12-29,0.04,1,0 +10469388,1 br in the Heart of Williamsburg,32812120,Bjorn,Brooklyn,Williamsburg,40.71986,-73.96046,Private room,50,3,0,,,2,0 +27065834,Sunny one bedroom in the Friends Building,83856521,Casey,Manhattan,West Village,40.73264,-74.0062,Entire home/apt,275,1,3,2018-08-31,0.26,1,0 +33334958,Private NYC Studio--Near Central Park + East River,68930822,Jill Lauren,Manhattan,Upper East Side,40.76218,-73.95858,Entire home/apt,150,3,13,2019-06-25,4.24,1,61 +33769930,quiet inwood space,254567452,Sophia,Manhattan,Inwood,40.87079,-73.91960999999999,Private room,70,1,7,2019-06-04,2.59,1,73 +14071436,Luxurious Full Floor 2 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Midtown,40.75683,-73.96901,Entire home/apt,165,30,0,,,91,147 +4227141,Cozy Bedroom,21938126,Reenie,Brooklyn,Bedford-Stuyvesant,40.68724,-73.94218000000001,Private room,35,2,11,2019-06-02,0.81,2,11 +11603913,Doorman Gym Roofdeck Design 5129,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7906,-73.97267,Entire home/apt,135,30,2,2019-03-18,0.06,96,313 +13465546,Comfortable 2 BR in East Village/Cooper Square,9904775,Cooper,Manhattan,East Village,40.72627,-73.99145,Entire home/apt,200,3,27,2019-04-23,0.76,1,0 +32858895,Live like a true New Yorker!,8454981,Artez,Manhattan,Hell's Kitchen,40.75658,-73.99734000000001,Entire home/apt,150,3,7,2019-06-13,1.98,1,0 +31035022,Lovely Bushwick Garden Apartment,48325116,Marcela,Brooklyn,Bushwick,40.69157,-73.91288,Entire home/apt,155,2,1,2019-06-19,1.0,1,10 +696593,Park Slope One bedroom with Balcony,3228992,Karin,Brooklyn,Park Slope,40.67406,-73.97697,Entire home/apt,150,5,1,2015-07-16,0.02,1,27 +29945767,Cozy home away from home,9804005,Jean Charles,Brooklyn,Bedford-Stuyvesant,40.68931,-73.94041,Entire home/apt,95,2,1,2018-12-25,0.15,1,8 +770960,Cozy 1 BR in Prospect Heights,4067211,Stephane & Hana,Brooklyn,Prospect Heights,40.67453,-73.96759,Entire home/apt,155,3,13,2016-04-21,0.16,1,0 +9014320,Cute Doublebed in Lower East Side,36228511,Nieve,Manhattan,East Village,40.72247,-73.98435,Private room,100,1,5,2017-01-04,0.12,1,0 +16959759,Cute little room in a 3BR apt with shared bath.,113399802,Mireille,Brooklyn,Crown Heights,40.67138,-73.93679,Private room,82,1,21,2019-06-25,0.78,1,89 +19345943,Stylish Large Bright Brooklyn Loft!!,3919533,Piya,Brooklyn,Bushwick,40.69971,-73.93729,Entire home/apt,162,2,46,2019-06-25,1.92,1,19 +6297266,Cozy Family Home. Two Floors,32745492,Tami,Brooklyn,Sunset Park,40.66066,-73.99257,Entire home/apt,100,10,5,2017-04-23,0.1,1,0 +20539354,★Luxurious Manhattan's Midtown Resort★ 2 Double's,64065593,ResortShare5,Manhattan,Midtown,40.75172,-73.97211999999999,Private room,198,2,9,2018-10-25,0.4,13,263 +31315980,Comfortable room Lower East Side. AC,17328806,Michael,Manhattan,Lower East Side,40.7179,-73.98192,Private room,90,2,8,2019-06-17,2.55,1,324 +29384404,Prime Location 34th&6th! Doorman Gym Deck 5231,16098958,Jeremy & Laura,Manhattan,Midtown,40.74829,-73.98653,Entire home/apt,180,30,0,,,96,342 +9820308,"Furnished 1 BR, near Times Square",50583919,Samkit,Manhattan,Hell's Kitchen,40.75992,-73.9879,Private room,68,3,1,2016-01-18,0.02,1,0 +4264127,Location Lucy ( only female ),3250450,Petya,Queens,Astoria,40.75896,-73.9153,Private room,39,30,13,2018-09-09,0.26,18,341 +16917171,West Village - 1 Bedroom,31906445,Laura,Manhattan,West Village,40.73459,-74.00143,Entire home/apt,135,2,1,2017-02-20,0.03,1,0 +11204018,"Comfy, quiet room next to subway!",7678663,Ella,Brooklyn,Crown Heights,40.66727,-73.95274,Private room,40,4,1,2016-03-27,0.03,1,0 +4525589,Spacious studio apt in Jackson Hts,20627511,Mark,Queens,Jackson Heights,40.75034,-73.89215,Entire home/apt,90,3,0,,,1,0 +4737830,great room in the best place,24459029,Nima,Brooklyn,Crown Heights,40.67083,-73.94944,Private room,44,1,3,2015-07-15,0.05,1,0 +35998302,Sunny and Spacious room near CUMC,269078124,铀 Yuli,Manhattan,Washington Heights,40.84251,-73.94105,Private room,52,1,0,,,3,33 +34350718,cute comfortable & furnished heart of times square,207795404,Ros,Manhattan,Hell's Kitchen,40.75966,-73.98928000000001,Entire home/apt,141,30,0,,,2,115 +2171821,Cool New 1br Apt - 1block from L&M,11079245,Florian / Anna,Queens,Ridgewood,40.70218,-73.91005,Private room,100,7,14,2019-05-08,0.24,1,365 +28432700,Large one bedroom Apartment in Ditmas Park,2770596,Emilio,Brooklyn,Flatbush,40.63813,-73.96592,Entire home/apt,120,5,3,2018-12-26,0.31,2,231 +20661572,The printing studio bedroom with garden in Bedstuy !!Brooklyn. Historic neighborhood close to everything ! Full kitchen bathroom BBQ and porch at your disposal. Learn to print !!,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69366,-73.93794,Private room,140,1,0,,,2,173 +29573034,Studio Apartment Full Bath 15 Minutes From JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.68911,-73.86922,Entire home/apt,60,2,25,2019-06-30,3.18,2,289 +1171566,Nolita: 1BR with private bathroom,6395317,Pierre,Manhattan,Nolita,40.72011,-73.99468,Private room,100,15,5,2019-04-30,0.08,1,197 +3474320,Private brownstone studio Brooklyn,12949460,Asa,Brooklyn,Park Slope,40.67926,-73.97711,Entire home/apt,160,1,488,2019-07-01,8.14,1,269 +13207484,Luxury High Rise in Forte Green Brooklyn,9149064,Kange,Brooklyn,Fort Greene,40.69388,-73.98085,Entire home/apt,150,1,15,2019-04-06,0.42,1,55 +24449621,fifth ave,184653310,Amit,Manhattan,Midtown,40.75775,-73.97955999999999,Entire home/apt,300,7,14,2019-06-14,0.98,1,85 +18568551,Modern Williamsburg Studio,9285643,Michael,Brooklyn,Williamsburg,40.71988,-73.96294,Entire home/apt,150,5,0,,,1,0 +35257699,Hell's Kitchen /Times Sq - Comfortable 2 BDR Flat,264962468,Milica,Manhattan,Hell's Kitchen,40.76273,-73.99028,Entire home/apt,255,2,2,2019-07-01,2.0,1,55 +20881488,Urban Bungalow Loft in Heart of Williamsburg!,598896,Su,Brooklyn,Williamsburg,40.71992,-73.96029,Entire home/apt,250,2,3,2018-05-12,0.14,2,184 +7919094,Spacious 1 Bd in Heart of WillyB,41757762,Sara,Brooklyn,Williamsburg,40.71122,-73.95663,Entire home/apt,170,13,6,2018-03-01,0.17,1,0 +1290208,Live like a real New Yorker!,7016230,André,Manhattan,Lower East Side,40.7191,-73.98866,Entire home/apt,80,3,67,2017-01-16,0.92,1,85 +13434959,1 Bd 10 mins to Manhattan Steps to Prospect Park,2559697,Steven,Brooklyn,Prospect-Lefferts Gardens,40.66058,-73.96132,Entire home/apt,40,2,25,2019-06-16,0.7,1,223 +1391683,Huge Sunny BR Washington Heights 1-4 guests,7474069,Carrie,Manhattan,Washington Heights,40.8469,-73.94521999999999,Private room,75,4,14,2017-09-29,0.23,3,0 +13624873,East Village Cottage,2010460,Thaya,Manhattan,East Village,40.72544,-73.9899,Private room,80,2,31,2019-06-30,0.94,1,28 +3499251,Classic Upper West Side studio loft,10034987,Izzy,Manhattan,Upper West Side,40.78273,-73.97319,Entire home/apt,199,3,25,2016-12-31,0.42,1,0 +25030446,SoBecaTown 1 Bedroom,6529128,Kendra,Manhattan,Tribeca,40.71854,-74.00352,Entire home/apt,220,3,15,2019-06-21,1.21,1,84 +22361657,Friendly and Artsy Brooklyn Bedroom,5778653,Trisha,Brooklyn,Bedford-Stuyvesant,40.69671,-73.94896,Private room,45,1,1,2017-12-31,0.05,1,0 +876355,Large 1BR Columbia University,3994331,Vivian,Manhattan,Morningside Heights,40.81368,-73.95942,Entire home/apt,108,30,5,2019-01-19,0.07,1,230 +22571719,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.7504,-73.96934,Entire home/apt,170,30,1,2018-06-16,0.08,7,364 +4775737,A Cozy Studio in Clinton Hill,24630374,Takako,Brooklyn,Clinton Hill,40.68233,-73.96418,Entire home/apt,110,4,14,2016-12-25,0.25,1,0 +34702046,No.3,257683179,H Ai,Queens,Flushing,40.75019,-73.81435,Private room,45,1,1,2019-07-06,1.0,6,83 +29756773,Willoughby penthouse,223869982,Steve,Brooklyn,Bedford-Stuyvesant,40.69495,-73.93509,Private room,100,7,0,,,1,0 +34197608,Private room in Brooklyn,232641412,Amp,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94308000000001,Private room,45,2,0,,,1,3 +4614146,Stay on St. Marks Place for your NYC Vacation!,4293340,Teena,Manhattan,East Village,40.72764,-73.98748,Private room,79,2,2,2017-12-25,0.1,1,0 +35912030,Get Inspired in Soho | 1 Bedroom,18464253,Ravid,Manhattan,NoHo,40.72727,-73.99322,Entire home/apt,180,5,0,,,1,317 +4786030,East Village sunny/new bedroom,24672682,Panayota,Manhattan,East Village,40.72879,-73.97959,Private room,110,1,1,2015-01-01,0.02,1,0 +33658071,"Bright, renovated apartment close to subway+city",3002017,Barblin,Brooklyn,Bedford-Stuyvesant,40.68466,-73.91716,Entire home/apt,130,2,10,2019-07-01,5.36,1,262 +8334574,Unbeatable NY room in East Village!,5283853,Chara,Manhattan,East Village,40.72972,-73.9875,Private room,140,2,35,2017-08-21,0.78,2,28 +6568523,2 Bdrm in Luxury Condo on Hudson,33459378,Karen,Manhattan,Battery Park City,40.7101,-74.01720999999999,Entire home/apt,195,7,2,2015-08-16,0.04,1,0 +7065748,1 Room in Spacious East Village Apt,37047337,Will,Manhattan,East Village,40.72332,-73.97985,Private room,57,1,0,,,1,0 +30043303,Cosy entire apartment in great location,22826759,Fuchsia,Brooklyn,Greenpoint,40.72051,-73.95464,Entire home/apt,103,3,3,2019-05-19,0.46,1,11 +32616111,Big room!!! (only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58539,-73.96984,Shared room,28,9,2,2019-04-16,0.55,12,0 +11905189,Sunny and Charming BedStuy 1-BR/Studio Apt,4323335,Jamie,Brooklyn,Bedford-Stuyvesant,40.686,-73.94629,Entire home/apt,105,4,22,2019-06-29,0.67,1,11 +35901922,Charming one-bedroom apartment in Williamsburg,29569974,Raphaël,Brooklyn,Williamsburg,40.70558,-73.9418,Entire home/apt,89,2,1,2019-06-20,1.0,1,266 +19241855,1 Bed&Bath in heart of Bushwick (20mintoManhattan),18515933,Maddie,Brooklyn,Bushwick,40.70565,-73.92492,Private room,70,2,10,2018-11-12,0.4,1,18 +4156015,Cozy East River 1 bed/1 bath,21565088,ZVIPCO LLC (Robert),Manhattan,East Harlem,40.79591,-73.93316,Entire home/apt,99,1,50,2019-07-06,0.87,1,333 +18922939,Harlem Home Away from Home!,15553988,Arielle,Manhattan,Harlem,40.82843,-73.94672,Entire home/apt,100,3,4,2019-06-25,0.16,1,0 +16725576,"Room with the balcony, fits 3!",68762417,Simon,Manhattan,East Harlem,40.79501,-73.94448,Private room,99,1,109,2019-07-05,3.61,4,168 +31405999,"Serene FiDi 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70491,-74.00978,Entire home/apt,271,30,0,,,232,331 +30498804,Sun Drenched Room Ridgewood / Bushwick,228895684,Maria,Queens,Ridgewood,40.70711,-73.90713000000001,Private room,35,5,0,,,1,321 +31194309,Hip Bushwick Basement Dwelling,91845557,Angela,Brooklyn,Bedford-Stuyvesant,40.68788,-73.91935,Private room,75,1,0,,,1,0 +18271718,Private Comfy Best Value BR w/Yard!~175ft to Subwy,40883799,Amos,Brooklyn,Bushwick,40.70596,-73.92182,Private room,60,1,83,2019-06-28,3.15,3,175 +15433822,Large and bright cozy room in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77777,-73.94914,Private room,100,7,13,2018-01-02,0.41,3,0 +31168577,Beautiful Brooklyn Apartment: The Cozy Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64376,-73.94615999999999,Private room,48,1,5,2019-06-08,0.8,5,0 +7756711,Charming garden apt in a brownstone,40784273,Anne,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91819,Entire home/apt,99,5,1,2015-08-27,0.02,1,0 +15701672,Hidden gem walking distance to Central Park.,34061867,Aydin,Manhattan,Upper East Side,40.770790000000005,-73.95922,Private room,100,2,17,2019-07-02,0.52,1,4 +4592475,Private Terrace in Brooklyn!,4445796,Courtney,Brooklyn,Greenpoint,40.725570000000005,-73.95243,Private room,95,1,7,2015-06-02,0.14,1,0 +35167683,Great Studio in Hells Kitchen Next to Times Square,158635893,Alexey,Manhattan,Hell's Kitchen,40.76366,-73.9888,Entire home/apt,209,1,4,2019-06-23,3.43,1,177 +28820641,Located in the perfect neighborhood of NYC a gem,130562125,Emma,Manhattan,SoHo,40.72608,-74.00336,Entire home/apt,350,2,32,2019-07-01,3.42,1,284 +34620880,Private room with Central Park view,261188287,Stella,Manhattan,Upper West Side,40.77221,-73.98085,Private room,92,10,0,,,1,0 +30589865,VANLIFE in NYC! Perfect for minimal travelers!,20902952,Michael,Brooklyn,Red Hook,40.67204,-74.00792,Entire home/apt,120,2,1,2019-05-05,0.45,1,157 +11433561,Fresh East Village 4K Pre-War Remix w Full Bar!,3395433,Nick,Manhattan,East Village,40.73117,-73.98385999999999,Entire home/apt,175,3,6,2019-06-02,1.91,1,0 +4822557,Cozy room in Brooklyn!!,24832418,Patrick,Brooklyn,Bedford-Stuyvesant,40.69253,-73.94681,Private room,90,1,0,,,1,0 +5188840,Home 4 Medical Professionals-St John's Episcopal 2,26377263,Stat,Queens,Far Rockaway,40.59642,-73.75605999999999,Private room,38,6,5,2017-12-02,0.11,43,313 +20794628,Williamsburg-Greenpoint Loft,19043884,Aaron,Brooklyn,Greenpoint,40.72591,-73.95645,Entire home/apt,210,2,103,2019-06-22,4.62,1,268 +31269990,Cute big private room with a private bathroom.,47023469,Olga,Manhattan,Upper West Side,40.79595,-73.97251,Private room,110,1,2,2019-06-23,0.6,3,6 +34087750,Sonder | 116 John | Ideal 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.00499,Entire home/apt,164,29,0,,,327,328 +17258228,Little Red and the big GWB,116333529,Gina,Manhattan,Washington Heights,40.85076,-73.94046999999999,Private room,50,1,0,,,1,0 +33965894,Doesn't get better than this! Cozy Spacious Room,256403429,Brenda,Brooklyn,Flatbush,40.65235,-73.95347,Private room,54,1,10,2019-07-05,4.35,5,70 +7693424,Shared Apartment to share,40404813,Ingrid,Brooklyn,East Flatbush,40.64588,-73.94960999999999,Private room,100,1,2,2016-01-05,0.05,1,365 +4795485,"Beautiful, sunny, large 1BD!",24712268,L & R,Brooklyn,Gowanus,40.66845,-73.99181,Entire home/apt,145,5,11,2019-06-16,0.24,1,40 +13543171,ENTIRE APARTMENT FOR FAMILIES OR GROUPS,32991339,Eric,Brooklyn,Williamsburg,40.70707,-73.9528,Entire home/apt,250,1,9,2018-11-11,0.27,2,254 +13656752,"Spacious 1 Bedroom in Vibrant Harlem, Manhattan",4278354,Demarius,Manhattan,Harlem,40.80927,-73.9427,Private room,61,1,4,2017-10-09,0.11,1,0 +782063,Cozy apartment steps to subway,4125000,Joseph,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95475,Entire home/apt,119,5,7,2016-04-23,0.09,1,0 +36118677,Modern room with balcony,271350187,Elena,Brooklyn,Williamsburg,40.71731,-73.94906999999999,Private room,135,1,2,2019-07-05,2.0,3,353 +13633468,Chill in Alphabet City,27379154,Elizabeth,Manhattan,East Village,40.72248,-73.98316,Private room,85,3,4,2016-11-28,0.11,1,0 +34510977,"Hip, lofty apt in historic townhouse w backyard",831185,Andrew,Brooklyn,Crown Heights,40.67958,-73.96226999999999,Entire home/apt,305,2,1,2019-06-24,1.0,3,179 +6445656,Big Room in Heart of Williamsburg,13873277,Elan,Brooklyn,Williamsburg,40.715990000000005,-73.95539000000001,Private room,100,28,0,,,1,0 +13689663,Great Room in Charming Nolita Apartment,8338942,Victor,Manhattan,Nolita,40.72241,-73.99377,Private room,124,1,168,2019-06-22,4.58,4,147 +9193390,Luxury stay near Lincoln Center NYC,47825300,Sid,Manhattan,Upper West Side,40.77616,-73.98974,Private room,300,1,0,,,1,0 +33991062,Sonder | Stock Exchange | Superior 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01176,Entire home/apt,255,2,6,2019-06-08,2.57,327,237 +51438,1 Bedroom in 2 Bdrm Apt- Upper East,236421,Jessica,Manhattan,Upper East Side,40.77333,-73.95199000000001,Private room,130,14,0,,,2,0 +27782948,Private room in trendy Williamsburg,20448671,Kandi,Brooklyn,Williamsburg,40.7098,-73.9418,Private room,66,2,6,2019-01-02,0.66,3,173 +22166900,Large 2 bedroom Moroccan oasis in the East Village,161915399,Lilia,Manhattan,East Village,40.72245,-73.98337,Entire home/apt,260,1,86,2019-05-24,4.59,1,259 +26565864,Luxury East Village Penthouse With Private Deck,390844,Leigh,Manhattan,East Village,40.72436,-73.98235,Entire home/apt,199,2,9,2019-06-28,0.8,1,0 +11965862,SUNNY and SPACIOUS room in Brooklyn,63914230,Kay,Brooklyn,Williamsburg,40.7128,-73.9605,Private room,76,5,1,2016-07-12,0.03,1,0 +36420404,Home Sweet Home,273656890,Liana,Manhattan,East Harlem,40.79266,-73.9474,Private room,50,1,0,,,1,81 +7621698,A cozy place in Astoria,39978385,Andraz,Queens,Astoria,40.76979,-73.92019,Entire home/apt,100,10,7,2019-06-29,0.15,1,0 +32784607,New Williamsburg King Bed Condo,10994728,Jeff,Brooklyn,Williamsburg,40.71665,-73.9515,Entire home/apt,150,3,2,2019-05-14,0.77,1,159 +12995569,Simple Luxury in Columbus Circle,7199306,Katie,Manhattan,Hell's Kitchen,40.76814,-73.98476,Entire home/apt,177,2,2,2016-08-21,0.06,1,0 +21587326,2 bed 1 Bath Washer Dryer huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77736,-73.95156,Entire home/apt,200,31,2,2019-02-22,0.29,33,325 +17388041,"Private Entrance,Room and Bathroom!",99556266,Mariano,Manhattan,East Harlem,40.7993,-73.93305,Private room,120,2,37,2018-08-03,1.33,2,304 +17088382,"A Prime location private room furnished 3br,2b ap",420399,Gautam,Manhattan,Upper East Side,40.77158,-73.95786,Private room,80,5,3,2019-06-20,0.15,2,50 +18327630,Gigantic 2 Bed/2 Bath Step to Columbus Circle&Park,125545452,Tasny,Manhattan,Hell's Kitchen,40.76597,-73.98379,Entire home/apt,325,5,84,2019-06-24,3.15,1,69 +20305785,Private spacious studio in Richmond Hill,144833193,Lucyna,Queens,Kew Gardens,40.70491,-73.83614,Entire home/apt,100,2,0,,,1,0 +19718634,Enormous apartment with everything you need,3495471,Russell,Bronx,Claremont Village,40.83561,-73.91108,Entire home/apt,58,3,59,2019-06-03,2.89,1,42 +1586935,Luxury Gramercy Lg 1Bd w Balcony,8457613,Erin,Manhattan,Gramercy,40.73494,-73.98751,Entire home/apt,250,365,0,,,1,365 +21014202,曼哈顿林肯中心一室一厅,97044757,柏润,Manhattan,Upper West Side,40.77312,-73.98819,Private room,78,1,11,2018-06-10,0.5,2,0 +9391541,Design Lux 1 bed ! Doorman Gym!5222,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79312,-73.96606,Entire home/apt,156,30,1,2018-08-31,0.1,96,252 +14968000,Spacious Comtemporary 3BR Apartment,24805685,Saif,Brooklyn,Park Slope,40.67124,-73.98625,Entire home/apt,218,2,117,2019-07-08,3.41,1,226 +11491051,NYC Studio Apartment,60500336,Adam,Manhattan,Murray Hill,40.74573,-73.97802,Entire home/apt,100,1,1,2016-04-01,0.03,1,0 +20679396,旅客之家,64887490,Queen,Queens,Flushing,40.75895,-73.79196,Entire home/apt,80,2,86,2019-06-30,3.83,1,115 +31369363,"Private room Greenpoint, Brooklyn NY",19019393,Jana,Brooklyn,Greenpoint,40.72615,-73.94592,Private room,49,3,0,,,1,0 +30310012,"Cozy, comfortable room in historic district",66294381,Maria,Manhattan,Morningside Heights,40.80385,-73.96305,Private room,45,10,0,,,1,0 +32503099,Boss Room in Deluxe Pad,3104336,Amy,Brooklyn,Bushwick,40.70094,-73.93013,Private room,35,90,0,,,1,326 +7801,Sweet and Spacious Brooklyn Loft,21207,Chaya,Brooklyn,Williamsburg,40.71842,-73.95718000000001,Entire home/apt,299,3,9,2011-12-28,0.07,1,0 +29710266,Manhattan Sights & Sound (Ladies Only),223574944,Carly,Manhattan,Kips Bay,40.74355,-73.97936,Shared room,39,2,2,2019-03-25,0.52,2,326 +17095925,Comfy Bedroom in Bushwick (3mins from Train),9439324,Chérie,Brooklyn,Bushwick,40.68699,-73.9056,Private room,46,1,63,2019-05-25,2.32,3,0 +30501956,"3 beds w/ Kitchenette, own bath separate entrance",139195158,Gina,Queens,Woodside,40.75166,-73.90108000000001,Private room,99,2,10,2019-05-09,1.59,1,5 +36417651,Mid-century Modern Studio on UWS,11270687,Lauren,Manhattan,Upper West Side,40.79873,-73.96938,Entire home/apt,150,2,0,,,1,74 +35608098,Spacious room with balcony near downtown Manhattan,267886811,Stu,Manhattan,Washington Heights,40.8462,-73.93498000000001,Private room,80,3,1,2019-06-30,1.0,1,112 +11619745,Hells Kitchen 3 Bedroom,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76406,-73.991,Entire home/apt,185,30,3,2018-11-30,0.08,91,0 +5077231,Charming Bright Upper East Space,7021059,Katie,Manhattan,Upper East Side,40.77636,-73.95099,Entire home/apt,150,1,0,,,2,0 +6492449,Spacious Duplex for Spring Retreat,6804278,Randy,Brooklyn,Bedford-Stuyvesant,40.68084,-73.93075,Entire home/apt,160,4,9,2015-10-26,0.18,1,365 +20982734,"Spacious, Modern Uptown Getaway with Balcony",5668108,Wakahiu,Manhattan,East Harlem,40.80012,-73.94549,Entire home/apt,250,4,7,2019-04-24,0.33,1,0 +20863293,"Bright Private room, perfect for fashion week!",24639450,Sean,Queens,Ridgewood,40.6988,-73.90725,Private room,55,2,0,,,1,0 +28565575,Central & Cozy Brooklyn Home,215591956,Magdalena,Brooklyn,East New York,40.67111,-73.87083,Entire home/apt,160,2,22,2019-06-23,2.38,1,48 +24122725,Ivoire Realty(Bronx maison avec vue),181711840,Christophe,Bronx,Kingsbridge,40.86286,-73.9024,Private room,35,2,24,2019-06-07,1.56,2,365 +24560351,Brooklyn Apartment with Jaw-Dropping Rooftop,69767,Molly,Brooklyn,Clinton Hill,40.68059,-73.95848000000001,Entire home/apt,162,3,10,2019-06-13,0.76,1,4 +26255072,15 min to NYC from a comfy and clean house.,157295347,Ana,Queens,Woodside,40.74445,-73.90581,Private room,32,2,16,2018-12-23,1.28,3,365 +4905337,"Clean and Serene Kensington, Bk",13772270,Mariano,Brooklyn,Kensington,40.6461,-73.97332,Entire home/apt,85,2,3,2017-05-10,0.08,1,351 +3394964,Your Manhattan haven: dressed in red,10657357,Ivan,Manhattan,Washington Heights,40.83132,-73.94100999999999,Private room,50,5,24,2019-06-27,0.39,4,177 +13156982,Sunny New Artist's 1BR In Greenpoint,62285182,Brian,Brooklyn,Greenpoint,40.73432,-73.95145,Entire home/apt,117,2,17,2016-11-19,0.47,1,0 +13650177,"private yard & apt-near metro,direct to Manhattan",79258584,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94115,Entire home/apt,104,5,115,2019-06-24,3.13,1,182 +15721847,Colorful Artist Loft w. your own Ocean Oasis,909710,Claire,Brooklyn,Williamsburg,40.70634,-73.95338000000001,Private room,49,5,17,2018-04-30,0.53,1,0 +7400940,Spacious Graham Ave Room Aug 1 -21,3911807,Jean,Brooklyn,Williamsburg,40.71576,-73.94468,Private room,45,5,0,,,1,0 +276216,Nights in White Satin in the Slope,1440691,Dena,Brooklyn,Sunset Park,40.65992,-73.99042,Entire home/apt,127,180,1,2016-09-01,0.03,1,365 +29505792,2nd floor art,183707967,Dionyssios,Manhattan,Washington Heights,40.85416,-73.9292,Entire home/apt,120,2,14,2019-06-12,2.12,4,365 +15128456,Clean room with private bathroom in Bushwick!,658618,Leticia,Brooklyn,Bushwick,40.69025,-73.91251,Private room,65,1,23,2019-06-21,0.69,1,290 +1871311,Times Square Modern Apartment,2808971,Frederic,Manhattan,Hell's Kitchen,40.76316,-73.99358000000001,Entire home/apt,200,2,6,2019-06-09,0.09,1,20 +21535750,2 bedroom third floor in the heart of Brooklyn.,156535560,Alex,Brooklyn,Flatbush,40.64116,-73.95991,Entire home/apt,55,2,70,2019-06-24,3.64,1,5 +17287645,Wonderful Charming Apt- Columbia University Area,40741349,Mitsue,Manhattan,Washington Heights,40.83705,-73.94083,Private room,60,1,3,2018-07-01,0.21,1,341 +19861483,"Charming, Sunlit 1-Bedroom on Upper East Side",137751858,Kelly,Manhattan,Upper East Side,40.78069,-73.95149,Entire home/apt,120,3,8,2017-09-21,0.34,1,0 +5159567,Perfect One Bedroom in Greenpoint,22011099,David,Brooklyn,Greenpoint,40.72981,-73.95268,Entire home/apt,195,6,21,2018-08-15,0.44,1,42 +34323565,Sonder | 21 Chelsea | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74229,-73.9959,Entire home/apt,209,29,0,,,327,365 +3662949,Stylish & Spacious Perfect for Pride!,18567895,Ryan,Manhattan,Hell's Kitchen,40.76522,-73.99486,Entire home/apt,250,2,6,2016-06-17,0.11,1,0 +14109893,Charming Artist Studio,3404898,Erica,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.96004,Entire home/apt,110,2,6,2016-10-23,0.17,1,0 +32715168,Great room great view /10min to heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.7412,-73.90552,Private room,55,1,2,2019-06-16,1.82,2,152 +31243221,"Private room close to train, airport & the city",5592622,Christina,Queens,Astoria,40.756,-73.91386,Private room,55,1,23,2019-07-07,4.63,5,100 +34181609,"Huge, Bright Room in Prime Williamsburg",57247607,Iman,Brooklyn,Williamsburg,40.71808,-73.95839000000001,Private room,200,2,0,,,1,69 +19803208,Spacious & Spectacular,9020323,Andrea,Brooklyn,Bedford-Stuyvesant,40.67921,-73.94283,Private room,110,3,20,2019-07-05,0.89,1,173 +16687716,Gorgeous Large Room near LGA,14730722,Omar £ Jacqueline,Queens,East Elmhurst,40.76441,-73.88943,Private room,90,2,9,2018-09-02,0.34,1,0 +36423090,Private room in beautiful Williamsburg loft!,43297161,Perry,Brooklyn,Williamsburg,40.70538,-73.94314,Private room,65,2,0,,,1,6 +26754694,"COZY AND ELEGANCE PLACE NEAR JFK, LGA",173290675,Charlie,Queens,Woodhaven,40.69883,-73.85141999999999,Private room,45,2,8,2019-05-10,0.81,3,50 +35424310,Speakeasy Vibes Above a Bar in Popular Bushwick,35244614,Mick,Brooklyn,Bushwick,40.70155,-73.92628,Entire home/apt,125,2,2,2019-07-01,2.0,1,7 +5101342,Quiet private retreat high above Brooklyn.,19293586,Adam,Brooklyn,Williamsburg,40.71759,-73.94388000000001,Private room,100,2,19,2019-06-29,0.61,1,34 +4629599,Coozy Room In Park Slope.,22503794,Shawn,Brooklyn,South Slope,40.66238,-73.98456999999999,Private room,95,1,2,2015-08-08,0.04,1,364 +20257840,Elegant Oasis in the Upper East Side,60293337,Melissa,Manhattan,Upper East Side,40.77667,-73.95335,Private room,120,1,89,2019-06-30,3.92,1,149 +24230182,Brand-new Room - 20 mins to Manhattan,127412674,Charles,Brooklyn,Williamsburg,40.70111,-73.94471,Private room,75,2,28,2019-05-29,1.91,2,342 +7898302,Upper West Side charming brownstone,41644172,Jody,Manhattan,Upper West Side,40.78888,-73.97723,Entire home/apt,150,1,1,2015-08-19,0.02,1,0 +8972219,Cozy apartment East Village NYC,12933114,Ausra,Manhattan,East Village,40.72143,-73.97824,Entire home/apt,130,5,4,2017-01-01,0.09,1,0 +21139869,East Side Private Bedroom,28027678,Gane,Manhattan,Kips Bay,40.742740000000005,-73.97918,Private room,115,1,160,2019-06-28,7.43,1,15 +9705958,"Comfy, family-friendly BedStuy apt",20007675,Veleda And Orion,Brooklyn,Bedford-Stuyvesant,40.683890000000005,-73.93437,Entire home/apt,65,2,4,2016-01-13,0.09,1,0 +33940543,211 east 34 stRoom 3,255431206,Mohammed,Brooklyn,East Flatbush,40.65295,-73.9463,Private room,42,7,4,2019-07-01,2.55,9,120 +8274711,Penthouse Studio in Historic Harlem,1017231,Susan,Manhattan,Harlem,40.82755,-73.93786999999999,Entire home/apt,125,3,8,2016-03-19,0.17,1,1 +16229170,big loft apartement in the Lower East Side,185745,Alessandra,Manhattan,Lower East Side,40.71278,-73.9919,Entire home/apt,200,1,26,2019-06-06,0.95,2,317 +8881955,Big ass room in Brooklyn,46476909,Eric,Brooklyn,Crown Heights,40.67052,-73.95621,Private room,60,2,1,2015-10-21,0.02,1,0 +31297452,Luxury NEW two level suite (Duplex) in Chelsea,99683151,Christina,Manhattan,Chelsea,40.74285,-74.00196,Entire home/apt,190,3,15,2019-06-11,2.54,3,293 +22115009,Shared room with Bed Tent (Privacy Pop).,44620317,Claudia,Queens,Corona,40.74061,-73.85651,Shared room,45,1,8,2018-09-28,0.53,4,347 +22681018,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.75059,-73.97122,Entire home/apt,170,30,0,,,7,364 +16781516,Large NYC room billionaires row 5 min CentralPark!,22101365,Natalie,Manhattan,Upper East Side,40.76404,-73.96547,Private room,99,3,79,2019-06-23,2.75,1,107 +22811128,Crown Heights Hideaway,44278310,Charity,Brooklyn,Crown Heights,40.67488,-73.9388,Private room,50,1,0,,,1,0 +8929521,Private studio room - Brownstone - Brooklyn,46690777,Michael,Brooklyn,Crown Heights,40.67653,-73.93766,Private room,88,4,64,2019-05-11,1.44,1,68 +19603759,1 Room highrise over Central Park-private balcony,137821526,Cathy,Manhattan,East Harlem,40.79572,-73.9481,Private room,165,1,3,2018-06-17,0.13,2,0 +19929279,Awesome 2 Bedroom Brooklyn Apartment / Sleeps 6,10391137,Ryan,Brooklyn,Clinton Hill,40.69539,-73.9666,Entire home/apt,250,3,67,2019-06-11,2.99,1,87 +13917029,Private Room in a Great Brooklyn Loft,616808,Emine Gozde,Brooklyn,Williamsburg,40.70778,-73.9464,Private room,42,15,1,2016-07-27,0.03,1,0 +13215920,Beautiful Private room!,69977115,Jacob,Brooklyn,Bensonhurst,40.61608,-73.99056,Private room,79,2,0,,,4,179 +32260219,private room for up to 2 guests,242094791,Lizhen,Queens,Elmhurst,40.74311,-73.88098000000001,Private room,300,1,1,2019-02-18,0.21,1,89 +6850801,3 Bedroom Kid-Friendly Apartment,27287584,Chana,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.94457,Entire home/apt,250,4,0,,,1,0 +33423849,Private Room with Private Bathroom Newly Renovated,10149317,Lana,Queens,Kew Gardens,40.71042,-73.82911999999999,Private room,70,5,6,2019-06-18,2.54,5,308 +15339227,"Spacious room in a clean, quiet and cozy home.",97794621,Luis,Queens,Sunnyside,40.73922,-73.9265,Private room,70,1,76,2019-07-07,2.28,1,76 +19619393,"ENTIRE APT | BRIGHT 2 BED | Q, B & PROSPECT PARK",63480384,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.65473,-73.96112,Entire home/apt,115,2,4,2019-05-19,0.36,2,86 +12873930,Upper West Side 1BR next to subway/Central Park,70419222,Doreen,Manhattan,Upper West Side,40.78458,-73.97836,Entire home/apt,180,3,2,2016-08-16,0.06,1,0 +167013,Spacious modern studio apartment in Manhattan,306605,Daniel,Manhattan,Chelsea,40.74342,-73.99483000000001,Entire home/apt,205,9,3,2018-05-13,0.04,2,76 +17405965,2 cozy rooms in a quiet building,39731713,Polina,Queens,Ridgewood,40.69934,-73.90348,Private room,45,3,0,,,1,0 +19288937,Airy and bright floor in East Village townhouse,135073646,Joy,Manhattan,East Village,40.72784,-73.98883000000001,Entire home/apt,250,2,99,2019-06-21,4.03,1,176 +32943764,Two Bedrooms Tonhouse,247900596,Sergo,Manhattan,Harlem,40.80598,-73.94792,Entire home/apt,325,1,16,2019-07-06,4.21,1,346 +13392646,Prime Beautiful Brooklyn Brownstone,76173252,Victoria,Brooklyn,Carroll Gardens,40.68132,-73.99757,Entire home/apt,150,2,14,2017-11-25,0.38,1,0 +20527413,"Spacious, 2 Story Suburban Retreat in the LES",54401544,Cassidy,Manhattan,Lower East Side,40.71898,-73.98472,Private room,133,2,1,2017-12-03,0.05,1,0 +3070876,Fantastic fully furnished room,2448006,El Haj,Manhattan,Harlem,40.80392,-73.94685,Private room,75,3,5,2016-10-20,0.1,3,325 +5490833,Brooklyn Luxury,11463877,Danielle,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93486999999999,Private room,75,1,0,,,1,0 +21977693,Sunny Private Bedroom in East Village,2863092,Emma,Manhattan,East Village,40.7253,-73.98861,Private room,85,7,0,,,1,0 +28690364,En-suite room with PRIVATE bathroom,120767920,Jimmy &Cindy,Queens,Flushing,40.75548,-73.81371999999999,Private room,53,2,24,2019-07-07,2.61,10,359 +15873841,"Cozy Private Room in Sunset Park,BK",53635805,William,Brooklyn,Sunset Park,40.64759,-73.99812,Private room,38,2,1,2016-11-10,0.03,1,0 +29678364,Kan house,183417610,Kanchana,Queens,Elmhurst,40.7409,-73.87738,Private room,180,1,3,2019-05-27,0.39,3,88 +947810,Seeking Short Term Roommate on UES,5138312,Georgina,Manhattan,Upper East Side,40.774640000000005,-73.95695,Private room,50,20,11,2019-06-03,0.16,1,269 +35288933,HUGE LGBT Townhouse w KingBed & Backyard @Bushwick,135563904,Michael,Queens,Ridgewood,40.70528,-73.90896,Entire home/apt,350,1,7,2019-07-01,7.0,3,64 +25517202,Cosy Brooklyn room with a rooftop access,5342802,Mikaela,Brooklyn,Bedford-Stuyvesant,40.68616,-73.91866,Private room,45,3,2,2018-09-14,0.15,2,0 +27134625,Garden apartment in the heart of Fort Greene,31619241,Caroline,Brooklyn,Fort Greene,40.68925,-73.97108,Entire home/apt,165,2,16,2019-06-20,3.72,1,29 +18719762,AMAZING HOUSE 3 Bedrooms 3 Bathrooms.,52084781,Ms. George,Queens,Glendale,40.69252,-73.89533,Entire home/apt,150,3,22,2019-06-23,0.93,1,292 +16161888,Chill 2BD in Brooklyn,105489342,Josephine,Brooklyn,Brownsville,40.66041,-73.91561999999999,Entire home/apt,129,2,73,2019-06-24,2.34,1,82 +33339676,Sunny Large Studio Elevator Doorman Gym UN 5226,16098958,Jeremy & Laura,Manhattan,Midtown,40.75191,-73.9698,Entire home/apt,140,30,0,,,96,311 +36424509,Brooklyn Loft : Comfort & Sunset City Views,8411075,Ramiro,Brooklyn,Bushwick,40.69608,-73.9121,Entire home/apt,119,2,0,,,1,5 +13222140,"Private appartment,minutes from NY citi. Fantastic loc ation, walking distance to manhattan ferry.",15523,Vadim,Staten Island,Tompkinsville,40.63342,-74.08249,Private room,72,2,25,2018-09-03,0.66,2,237 +13293325,Cozy Beautiful Room Only 20min from Manhattan NYC!,75020731,Stefan,Queens,Ridgewood,40.70219,-73.89859,Private room,45,7,35,2019-07-01,1.29,1,18 +12343127,Centre of Williamsburg,8854804,Nicolin,Brooklyn,Williamsburg,40.71635,-73.95746,Private room,100,3,0,,,1,0 +20663936,"Cozy, private bedroom in Greenpoint/Williamsburg",133843931,Bryan,Brooklyn,Greenpoint,40.72546,-73.95558,Private room,37,1,62,2019-06-30,2.8,2,359 +6283933,Large room w its own bathroom (& bath),41612,Toni,Brooklyn,Carroll Gardens,40.67678,-73.99708000000001,Private room,45,2,0,,,1,0 +21473601,Over-sized studio in UnionSquare/EastVillage!,15894157,Lizzie,Manhattan,East Village,40.73073,-73.98601,Entire home/apt,145,3,27,2019-05-26,1.33,1,7 +27958130,Big beautiful room with tons of sunlight,25710035,Blaine,Brooklyn,Bushwick,40.69695,-73.92268,Private room,37,28,1,2018-10-31,0.12,1,0 +14403574,COZY ROOM in a beautiful Bushwick apartment,12442710,Ben,Brooklyn,Bushwick,40.69467,-73.93113000000001,Private room,67,3,97,2019-06-24,2.75,1,141 +14914739,Duplex apartment in the heart of Brooklyn,93699493,Andres&Ine,Brooklyn,Bedford-Stuyvesant,40.68381,-73.94346,Entire home/apt,250,3,41,2019-06-29,1.2,1,30 +22247895,Private Room near the Myrtle Wyckoff L/M train,23817448,Desirée,Queens,Ridgewood,40.7029,-73.91174000000001,Private room,38,2,0,,,1,0 +12000603,Well located apartment near NY City,64170911,Anne,Bronx,Riverdale,40.8883,-73.91665,Entire home/apt,150,2,79,2019-06-30,1.99,1,267 +2209835,LARGE 1 BEDROOM APT. IN MIDTOWN NEAR SUBWAY/BUS,8811222,Claudia,Manhattan,Kips Bay,40.74361,-73.97677,Entire home/apt,150,2,120,2019-07-01,3.25,1,29 +4566818,1 bedroom in Cozy 2 bedroom upper west side,23671946,Yonatan,Manhattan,Harlem,40.81622,-73.95885,Private room,100,3,0,,,2,0 +1182187,Best Chelsea Street. Beautiful Room. Superhost.,6467086,George,Manhattan,Chelsea,40.74652,-74.00089,Private room,125,2,228,2019-07-01,3.07,1,53 +26571486,Humble home,151714821,Ailin,Bronx,Morris Heights,40.84835,-73.9141,Entire home/apt,149,1,1,2018-07-25,0.09,1,0 +32892576,New! Sunny Loft/Studio in Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73304,-73.95491,Entire home/apt,50,1,8,2019-05-20,2.47,6,0 +783341,Private Bedroom LOWER EAST SIDE,4111640,Jennifer,Manhattan,Lower East Side,40.71502,-73.98192,Private room,69,7,48,2019-06-21,0.61,1,235 +19954367,"Large, New, Modern Uptown Room - 2",9864136,Anthony,Manhattan,Harlem,40.82086,-73.94485999999999,Private room,65,30,0,,,26,188 +23373453,"""Grandma Chic"" Brooklyn Apartment... Williamsburg",23089194,Katie,Brooklyn,Williamsburg,40.71536,-73.94058000000001,Private room,69,5,6,2019-01-02,0.51,1,0 +9905142,New York NY Downtown (East Village),15869370,Bernie,Manhattan,East Village,40.73036,-73.98673000000001,Entire home/apt,250,7,20,2019-05-13,0.47,1,13 +1472009,"Jupiter Suites, Rm #3- (JFK)",7853251,Enyinne,Queens,St. Albans,40.690540000000006,-73.77306,Private room,59,1,32,2016-09-21,0.45,5,359 +32699108,"In the heart of Hunters Point, Long Island City",74116175,Lauro,Queens,Long Island City,40.745470000000005,-73.95198,Entire home/apt,300,2,7,2019-07-01,2.26,1,40 +15814363,Cute Two Bed - East Village,11921184,Rachel,Manhattan,East Village,40.72461,-73.98172,Private room,85,2,37,2019-05-26,1.2,1,6 +27890305,Sofa bed space for rent nightly,174504698,Moza,Queens,Elmhurst,40.73853,-73.88646999999999,Shared room,100,1,0,,,1,179 +5031539,GORGEOUS 1BR IN MIDTOWN 1/15-1/19,25974544,Patrick,Manhattan,Hell's Kitchen,40.76263,-73.9887,Entire home/apt,350,1,0,,,1,0 +15956155,Only 15 minutes from Manhattan,103605111,Yukiko,Queens,Woodside,40.74381,-73.89726,Private room,45,2,36,2019-06-26,1.13,1,52 +13525308,Spacious Brooklyn Apt near F/G train,50995154,Bev,Brooklyn,Kensington,40.64277,-73.9744,Entire home/apt,95,2,11,2019-04-15,0.3,1,0 +3038797,2 Queen beds Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7276,-73.94029,Entire home/apt,129,30,4,2019-06-06,0.08,52,337 +35424212,Amazing Getaway on The Upper East Side,266600351,Raquel,Manhattan,East Harlem,40.78658,-73.94989,Entire home/apt,200,4,0,,,1,121 +34117732,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76654,-73.95825,Private room,38,30,0,,,6,39 +16811199,Spacious 1 bdrm apt in amazing location,77812140,Peter,Queens,Ridgewood,40.70475,-73.91081,Entire home/apt,120,2,2,2017-05-21,0.08,1,0 +3209866,"Cozy 1br - Fort Greene, Brooklyn",16258619,Folake,Brooklyn,Fort Greene,40.69802,-73.97614,Private room,120,3,1,2014-09-17,0.02,1,365 +3212765,A single room that converts with bathroom,11837926,Anthony,Manhattan,Midtown,40.76429,-73.98043,Private room,125,7,17,2019-07-01,0.29,3,309 +34419243,Beautiful LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75317,-73.93502,Private room,99,1,7,2019-06-01,3.44,10,352 +22322311,Cute and Cozy One Bedroom with optional Futon Bed!,65292898,Callie,Manhattan,East Harlem,40.79733,-73.93695,Private room,75,2,0,,,1,0 +8964008,Cozy Bed in Midtown Manhattan,18655157,Phuong,Manhattan,Midtown,40.74387,-73.98496,Shared room,55,5,5,2019-06-20,0.12,3,0 +16004740,Luxury One Bedroom w/ City Views,17108681,Claudia,Manhattan,Upper East Side,40.77878,-73.95056,Entire home/apt,265,2,10,2018-08-20,0.45,1,3 +34860502,Sunny bedroom in Brooklyn,73869612,Rebecca,Brooklyn,Crown Heights,40.67562,-73.95319,Private room,90,7,0,,,1,5 +17669561,"A cozy getaway, home away from home",57862648,Isaiah,Brooklyn,East New York,40.6613,-73.89088000000001,Private room,60,1,0,,,1,88 +28329261,Sunny Central Park Apt (2 blocks from park),4410716,Nicole,Manhattan,Harlem,40.79993,-73.95485,Private room,75,14,4,2019-05-27,0.4,1,66 +33273525,"Beautiful, large, sunny private bedroom available",24204269,Alexis,Brooklyn,Prospect Heights,40.67953,-73.97334000000001,Private room,70,20,1,2019-05-09,0.49,1,0 +36147589,"Cozy private room with ensuite, 25min to Manhattan",18924861,Vincent,Queens,Sunnyside,40.73769,-73.92441,Private room,60,28,0,,,1,330 +13505542,Cozy Room 1 Block from the Train,2417692,Verena,Queens,Astoria,40.75946,-73.91173,Private room,70,10,3,2019-06-14,0.4,2,250 +36379279,"Amazing ,quiet, cozy, 1 bedroom on Union Square E",273519401,Geraldo,Manhattan,Gramercy,40.73684,-73.98796999999999,Entire home/apt,299,1,0,,,1,168 +26594390,Spacious Studio Apartment in Luxury Building,17407870,Elizabeth,Queens,Long Island City,40.75087,-73.94202,Entire home/apt,197,2,24,2019-07-01,2.11,1,232 +253332,"Spacious, modern loft in awesome neighborhood",552343,Cynthia,Brooklyn,Sunset Park,40.6623,-73.99049000000001,Entire home/apt,96,120,13,2018-09-01,0.14,1,204 +1974700,AMAZING ONE BEDROOM IN MANHATTAN,1556814,Tammy,Manhattan,Harlem,40.81381,-73.94166,Entire home/apt,250,30,19,2019-07-05,0.3,1,318 +16314763,CHARMING ROOM W/ ROOF DECK ACCESS 3 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69461,-73.96186,Private room,97,30,9,2019-03-07,0.29,11,263 +27808723,A beautiful home for vacation,152246149,Catherine,Bronx,Throgs Neck,40.83148,-73.82930999999999,Private room,65,1,23,2019-06-21,2.18,5,365 +33685563,Magical cozy studio in the heart of West village,35842670,Keshet,Manhattan,West Village,40.73792,-74.00063,Entire home/apt,230,14,2,2019-06-20,0.65,1,87 +4053517,Two-Bedroom Greenpoint Apartment,3967335,Molly,Brooklyn,Greenpoint,40.72527,-73.95016,Entire home/apt,174,2,31,2019-06-02,0.54,2,12 +21834937,Beautiful & spacious room 15 mins to Manhattan,14540215,Merisa,Brooklyn,Bushwick,40.69834,-73.93436,Private room,50,14,1,2018-01-08,0.05,1,0 +13542768,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75897,-73.9617,Entire home/apt,210,30,0,,,87,188 +30850215,wheelchair accessible apt near Columbia University,230653775,Jane,Manhattan,Morningside Heights,40.80672,-73.96547,Entire home/apt,150,4,2,2019-05-23,0.55,1,0 +20283433,Williamsburg Apt: Near Train & Close to Waterfront,7714461,Charles,Brooklyn,Williamsburg,40.71389,-73.95103,Private room,55,7,19,2019-05-31,0.85,2,151 +32978570,Large bedroom with 200SF outdoor patio,97853468,Steven,Bronx,Hunts Point,40.817240000000005,-73.88878000000001,Private room,60,3,2,2019-06-29,0.68,4,335 +21603901,Cozy Private Room with Terrace in Williamsburg,46363732,Bérénice,Brooklyn,Williamsburg,40.71372,-73.95149,Private room,69,2,5,2018-03-18,0.25,1,0 +21307577,"Unique, Comfortable Apt in Heart of East Village",12404709,Clinton,Manhattan,East Village,40.72853,-73.98472,Private room,100,2,55,2019-07-06,3.06,2,25 +6242355,Great Loft in Williamsburg-Brooklyn,32405588,Marco,Brooklyn,Williamsburg,40.71046,-73.96054000000001,Entire home/apt,184,10,1,2016-08-06,0.03,2,6 +24525290,Paradise in New York City,185265758,Shama,Manhattan,Harlem,40.82156,-73.94966,Entire home/apt,247,2,82,2019-07-06,5.68,2,266 +6784908,Spacious/quiet one bedroom apt,18186682,Catherine,Manhattan,Inwood,40.87211,-73.91544,Entire home/apt,78,30,2,2019-03-31,0.09,1,15 +27067463,Private room for rent,2688409,Ia,Brooklyn,Borough Park,40.64436,-73.99866,Private room,55,3,0,,,1,363 +27724217,Warm and Friendly Bronx Home,209306758,Harriet,Bronx,Baychester,40.87886,-73.84300999999999,Private room,69,3,9,2019-06-11,0.87,2,311 +21472026,Studio Apartment Available over Thanksgiving,17592183,Laura,Manhattan,Upper East Side,40.76241,-73.96134,Entire home/apt,150,5,1,2017-11-18,0.05,1,0 +10339291,New Modern Industrial Studio Apt,53209258,Michelle,Brooklyn,Bushwick,40.69724,-73.932,Private room,105,1,0,,,1,0 +249618,At a very nice area in the WestSide,1307773,Karina,Manhattan,Washington Heights,40.85099,-73.92822,Private room,125,60,4,2015-07-03,0.06,1,364 +3265407,Sunny Brooklyn room,9944244,Linnea,Brooklyn,Prospect Heights,40.67303,-73.96424,Private room,57,7,11,2019-04-27,0.18,1,0 +28310699,Nice room near Manhattan in a safe neighborhood,79499558,Robertina,Queens,Jackson Heights,40.75176,-73.88374,Private room,55,4,23,2019-07-07,2.28,4,112 +10770836,Upper West Side Studio,55709707,Ethan,Manhattan,Upper West Side,40.79176,-73.97329,Entire home/apt,82,1,0,,,1,0 +33259063,LUXURIOUS! Private Bedroom/Bath near Central Park,21686560,Katarina,Manhattan,Upper East Side,40.773990000000005,-73.9461,Private room,217,1,6,2019-05-25,1.94,1,242 +25734018,Fully renovated Park Slope brownstone apartment,34758216,Rebecca,Brooklyn,Park Slope,40.67796,-73.97616,Entire home/apt,305,2,67,2019-07-02,5.19,1,101 +10692885,Cool Chelsea studio for chilling!,2541529,Sarah,Manhattan,Chelsea,40.74237,-74.00063,Entire home/apt,120,2,2,2016-06-08,0.05,1,0 +28206615,法拉盛步行7号地铁7分钟左右单房(共用卫生间),213049308,Cen,Queens,Flushing,40.755390000000006,-73.83570999999999,Private room,56,1,19,2019-06-23,2.0,3,45 +3199681,Bright & Sunny FULLY FURNISHED Room,627678,Nathan,Queens,Forest Hills,40.73381,-73.85365999999999,Private room,50,7,2,2018-08-20,0.15,1,140 +30509230,Coziest space off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.68992,-73.92594,Private room,70,1,1,2018-12-08,0.14,2,0 +29079912,Cozy place to stay 7 minutes from Manhattan...,210755291,Elizabete,Queens,Astoria,40.76172,-73.92098,Private room,100,3,2,2019-05-20,0.94,1,364 +27390188,2BR APT IN MIDTOWN~WEST55TH STREET,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76711,-73.98685,Entire home/apt,250,30,0,,,65,275 +1755484,Museum Mile Central Pk- Madison Ave,9232106,Lynne,Manhattan,Upper East Side,40.77648,-73.96126,Entire home/apt,225,4,10,2019-05-28,0.17,1,348 +34620781,Balcony Private Room with Private Bath En-suite,261187437,Shasha,Brooklyn,Borough Park,40.63313,-74.00598000000001,Private room,35,1,7,2019-06-24,4.04,6,364 +17757976,Spacious Luxury Loft - 1BR,121185129,Kathleen,Manhattan,Gramercy,40.7345,-73.98482,Entire home/apt,325,6,11,2018-07-29,0.41,1,177 +35079012,Amazing Williamsburg Apartment,1722490,Dom,Brooklyn,Williamsburg,40.72096,-73.95528,Entire home/apt,150,5,0,,,1,0 +35374299,Cozy South Williamsburg Room- Best Location in BK,9843389,Lawrence,Brooklyn,Williamsburg,40.70929,-73.95523,Private room,75,1,2,2019-06-13,1.82,2,260 +796490,Park Slope House -private room -1 block from metro,4107826,Mike,Brooklyn,South Slope,40.66882,-73.98841,Private room,65,5,5,2016-09-28,0.14,1,0 +1300950,Great Room and Private Bathroom,7073209,Jackie,Brooklyn,Fort Greene,40.68846,-73.97567,Private room,115,2,57,2019-06-30,2.67,2,288 +34272398,Brooklyn Townhouse Apartment with Outdoor Space,29032861,Suzen,Brooklyn,Bedford-Stuyvesant,40.67797,-73.91818,Entire home/apt,150,3,2,2019-05-27,1.2,1,14 +11118641,1 BR in 2BR - Luxury High Rise,57765248,Chandni,Manhattan,Hell's Kitchen,40.75744,-73.9936,Private room,90,1,6,2016-05-18,0.14,1,0 +22305946,Spacious room in a cosy BedStuy palace,79704239,Alice,Brooklyn,Bedford-Stuyvesant,40.68891,-73.9548,Private room,45,5,0,,,2,0 +29878717,King size luxury studio minutes to Manhattan,75435800,Dean,Queens,Long Island City,40.75262,-73.93656,Entire home/apt,165,2,0,,,2,0 +33676336,"Light-Filled Studio, Steps to Subway",4128255,Lily,Brooklyn,Fort Greene,40.68694,-73.97435,Entire home/apt,104,2,7,2019-06-24,3.33,1,2 +4822057,Room in Airy Williamsburg Apt,19660044,Jennifer,Brooklyn,Williamsburg,40.70816,-73.94244,Private room,103,1,7,2016-05-31,0.13,1,0 +17667639,Your 1 bedroom home away from home!,43907907,Elle,Manhattan,Upper West Side,40.79563,-73.97634000000001,Entire home/apt,215,3,38,2019-06-10,1.4,1,31 +36332335,Manhattan Rooms by Central Park & 6 green train,97640457,Mel,Manhattan,East Harlem,40.79913,-73.94226,Private room,90,2,0,,,1,171 +22637100,"Private room in Queens, Ny # 1",158540605,Sonia,Queens,Glendale,40.70099,-73.89034000000001,Private room,25,1,101,2019-07-04,5.59,6,216 +7205212,Sunny Studio Next to Central Park,35651880,Ayesha,Manhattan,Upper West Side,40.79874,-73.96034,Entire home/apt,130,3,18,2017-09-30,0.39,1,0 +6322937,Large Sunny NYC entire apt 15 mins!,80447,Francesca,Queens,Long Island City,40.7645,-73.93181,Entire home/apt,115,5,6,2016-10-16,0.13,1,0 +28284832,Very Accomodating,213605347,Roberta,Queens,Laurelton,40.68104,-73.74821,Entire home/apt,50,1,14,2019-06-24,1.53,1,356 +34341449,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71606,-73.76777,Private room,50,1,4,2019-06-30,1.76,3,89 +24158722,Luxury Studio in Hell’s Kitchen - In Unit W/D,31404168,Ashley,Manhattan,Hell's Kitchen,40.761790000000005,-73.99989000000001,Entire home/apt,142,20,4,2018-09-28,0.3,1,0 +35808316,Water View in Battery Park near Statue of Liberty,76572037,Lisa,Manhattan,Battery Park City,40.70964,-74.01798000000001,Entire home/apt,199,1,0,,,1,43 +13332334,Strivers Row Studio,11727297,Ivonne,Manhattan,Harlem,40.81816,-73.94305,Entire home/apt,110,2,9,2017-10-01,0.26,1,0 +22715051,Duplex Apt in Brooklyn Beautiful Brownstone,24967136,Paul,Brooklyn,Bedford-Stuyvesant,40.68226,-73.93153000000001,Entire home/apt,119,5,25,2019-05-25,1.49,2,77 +6776698,JFK SPACIOUS ROOM / A 4 BLOCKS TO SUBWAY,9284163,Antonio,Queens,Woodhaven,40.68955,-73.85348,Private room,39,2,262,2019-06-23,5.28,3,346 +22102108,Great apartment in the heart of Manhattan!,20905481,Jamie And John,Manhattan,Hell's Kitchen,40.76028,-73.99014,Entire home/apt,179,1,125,2019-06-26,6.51,1,201 +8955750,Sunny Brooklyn Brownstone apartment,46182242,Kristen,Brooklyn,Sunset Park,40.64469,-74.01035,Entire home/apt,140,2,74,2018-12-16,1.65,1,2 +21550302,JFK Comfort.5 Mins from JFK Private Bedroom & Bath,156684502,Nalicia,Queens,Springfield Gardens,40.6611,-73.7683,Private room,80,1,403,2019-07-06,19.75,3,26 +22438742,White Castle,21878092,Sasha,Brooklyn,Williamsburg,40.7089,-73.95631999999999,Entire home/apt,150,2,9,2019-02-24,0.56,1,0 +35343610,*New* Modern 2 Bedroom in Brooklyn Sleeps up to 8,133005440,Alex,Brooklyn,Clinton Hill,40.68253,-73.96599,Entire home/apt,125,2,6,2019-07-05,6.0,2,241 +20031768,Cozy Bedroom in Charming Astoria,4777135,Emily,Queens,Long Island City,40.75955,-73.9336,Private room,56,2,19,2018-01-27,0.81,1,0 +11840545,"2BR in Brooklyn, NY",45526701,Elizabeth,Brooklyn,Crown Heights,40.67237,-73.95172,Entire home/apt,135,2,22,2019-06-28,1.68,1,92 +28859846,Business Travelers/2 bedrooms,8857758,Cleonides,Queens,Maspeth,40.72972,-73.89916,Entire home/apt,109,5,1,2019-06-30,1.0,2,160 +22713035,"Bright, minimal hideaway with ensuite bathroom",52825108,Raven,Brooklyn,Bushwick,40.69928,-73.9309,Private room,66,14,1,2018-11-13,0.13,1,49 +8069765,Brooklyn Jeff L Huge Room and yard!,42623155,Edward,Brooklyn,Bushwick,40.70343,-73.92538,Private room,75,10,1,2015-09-16,0.02,1,0 +11460993,Harlem Gem,60278793,Lisa,Manhattan,Harlem,40.81575,-73.94913000000001,Entire home/apt,169,3,96,2019-06-17,2.51,1,39 +18448516,Spacious house close to yankee stadium.,127895318,Emmanuel,Bronx,Mount Hope,40.84992,-73.90346,Private room,50,1,6,2018-05-05,0.23,1,0 +19180465,Brooklyn Royalty,44140036,Ricardo,Brooklyn,East Flatbush,40.65185,-73.93388,Private room,80,2,1,2017-06-25,0.04,2,158 +16261570,Cozy 1BD Apt 20min from Manhattan!,20718860,Dalilah,Queens,Astoria,40.76205,-73.90556,Entire home/apt,99,3,0,,,1,0 +28606397,"Affordable Couch-Surfing, Near All",9731301,Arq,Queens,Jackson Heights,40.75011,-73.89113,Shared room,70,1,2,2019-03-31,0.32,1,365 +30688621,A Little Sanctuary,16358757,Nelmir,Brooklyn,Crown Heights,40.67685,-73.94405,Entire home/apt,80,5,5,2019-06-24,0.81,1,8 +33428580,Sunny Cozy Economic Garden Bedroom 4GR,17555570,Yan,Brooklyn,Crown Heights,40.668890000000005,-73.92376,Private room,49,1,23,2019-06-27,7.04,12,48 +9735931,Private room in spacious apartment,6501582,Gaia,Brooklyn,Crown Heights,40.67693,-73.93234,Private room,50,7,11,2019-05-12,0.26,1,0 +1291490,nice room in bedstuy M,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68322,-73.95085,Private room,60,1,142,2019-06-13,1.95,15,321 +11653081,Mod Home Steps from Prospect Park,282655,Jenna,Brooklyn,Flatbush,40.64841,-73.96969,Entire home/apt,150,3,125,2019-07-01,3.32,3,264 +12628500,Private room for 2 NY Close to LGA No hidden fees,67261284,Dante,Queens,Jackson Heights,40.75123,-73.87993,Private room,67,1,204,2018-12-16,5.27,2,0 +326956,"Large Cozy Room #2, Landmark Home 1 Block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68625,-73.96446,Private room,180,3,15,2019-04-22,0.18,6,266 +29220410,Canadian Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80423,-73.96334,Private room,75,1,23,2019-06-11,2.74,3,8 +13586614,East Village 2 BR Duplex Apt on Quiet Block,4047676,Patricia,Manhattan,East Village,40.72539,-73.97963,Entire home/apt,295,2,48,2018-08-09,1.33,1,0 +14952053,Private natural light oasis with Super Host!!,93368072,Ann,Brooklyn,Cypress Hills,40.67825,-73.89416,Private room,70,1,174,2019-06-30,5.06,1,109 +32401236,fabulous & large bedroom - East Williamsburg,238766198,Lily,Brooklyn,Williamsburg,40.71235,-73.93963000000001,Private room,67,2,9,2019-06-14,1.99,1,345 +28564408,1Dynamic private room in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69256,-73.90456999999999,Private room,65,2,26,2019-06-07,2.8,8,362 +2361323,Safe Sunny 1brm near subway,12059266,Audrey,Brooklyn,Crown Heights,40.67935,-73.9633,Entire home/apt,120,30,14,2018-07-21,0.22,1,108 +36343547,Gorgeous 3 BR with backyard 15 minutes from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69378,-73.93932,Entire home/apt,200,3,0,,,2,316 +10551015,Big cozy room with 2 windows,880323,Vincent,Brooklyn,Bushwick,40.69447,-73.92213000000001,Private room,36,2,1,2016-02-07,0.02,1,0 +9907257,"1 Bdr. Lower East Side, NY, 2 beds",50943387,Lincoln,Manhattan,Lower East Side,40.71759,-73.9842,Entire home/apt,175,1,1,2016-01-03,0.02,1,0 +34398878,"Large, Bright & Cozy Retreat-2 in B'klyn",221275418,Rufina,Brooklyn,Bedford-Stuyvesant,40.67918,-73.93727,Private room,55,2,7,2019-06-23,3.44,3,360 +16323731,RG - Budget Friendly room in the Greenpoint area!,83717038,Max,Brooklyn,Greenpoint,40.73731,-73.95493,Private room,45,2,85,2019-06-16,2.73,3,171 +484297,Large home in most desirable Brooklyn hood!,2397411,John,Brooklyn,Clinton Hill,40.68545,-73.96534,Entire home/apt,350,4,10,2018-09-12,0.12,1,0 +10016343,Grand Madison Avenue Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.75065,-73.98204,Entire home/apt,155,29,0,,,31,327 +22515792,Private Bedroom in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92993,Private room,89,1,92,2019-06-26,5.1,7,11 +26874133,Spacious Studio Apt | Walk + Transit score 100,2280048,Edgar,Brooklyn,East Flatbush,40.66097,-73.9319,Entire home/apt,79,4,15,2019-06-23,1.27,1,174 +26035350,Private Bedroom in Open Williamsburg Loft,195667782,Bill,Brooklyn,Williamsburg,40.70898,-73.94813,Private room,76,1,59,2019-06-20,4.57,1,44 +12110663,Large Quiet Bedroom in South Harlem,64948443,Kim,Manhattan,Harlem,40.80726,-73.95178,Private room,82,5,106,2019-06-19,2.7,1,39 +4846449,Perfect room/Great Safe Location 20mins to TimesSq,6486116,Ari,Manhattan,East Harlem,40.78804,-73.94906,Private room,81,1,142,2019-06-01,2.81,4,223 +16578112,City Life Minus The City Price - Flatbush Brooklyn,22694337,Emani,Brooklyn,Flatbush,40.6485,-73.95439,Private room,36,1,18,2019-06-13,0.79,1,154 +2836845,Old World Elegance in Astoria!,10987233,Anastasia,Queens,Ditmars Steinway,40.77297,-73.91604,Entire home/apt,160,2,175,2019-07-01,2.78,1,269 +4265471,Ladies Shared Dorm Room (Top Bunk),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.68676,-73.95801,Shared room,30,2,13,2019-07-01,0.37,3,339 +2089745,GREAT in CHELSEA: JUST SEE REVIEWS,10661984,Joseph,Manhattan,Chelsea,40.74611,-74.00014,Entire home/apt,220,7,55,2019-06-04,1.12,1,13 +10502523,Private Room For 1 w/ Separate Entrance Student / Intern / Traveler,43392243,Rita,Staten Island,Concord,40.60077,-74.07788000000001,Private room,35,4,73,2019-05-01,2.1,4,320 +16310570,CRAZY SPACE & CRAZY SUN IN BUSHWICK,105828057,Kim,Brooklyn,Bushwick,40.6957,-73.91875,Private room,49,25,61,2018-03-06,1.96,1,0 +17790958,Room in SOHO! On Broome Street,49651890,Rosemarie,Manhattan,Nolita,40.72196,-73.99664,Private room,120,6,47,2019-07-03,2.54,1,40 +20803845,Newly Renovated Apartment in the Heart of Brooklyn,28341776,Josh,Brooklyn,Park Slope,40.68117,-73.97785,Private room,100,3,81,2019-07-07,3.67,2,42 +9295059,"1BR steps from park, museums, more",11797330,Casey,Manhattan,Upper East Side,40.78397,-73.95040999999999,Entire home/apt,139,3,18,2016-07-25,0.44,1,0 +550288,Cozy Upper East Side 1 Bedroom,2684478,Brian,Manhattan,Upper East Side,40.78024,-73.94813,Entire home/apt,160,4,16,2019-02-12,0.2,1,0 +34402039,Bedstuy Brownstone apartment with a backyard,1237632,Melaney,Brooklyn,Bedford-Stuyvesant,40.68965,-73.9288,Private room,65,7,0,,,1,0 +10359702,Private room with a bathroom,53319402,Yauheniya,Queens,Astoria,40.76301,-73.91295,Private room,80,1,0,,,1,0 +30468736,Spacious apt in Brooklyn Brownstone 1 min to Metro,39523280,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.661840000000005,-73.9495,Entire home/apt,185,2,30,2019-06-21,4.59,1,281 +29884367,Luxury & safe and close to everything in NYC,109583232,Lidor,Queens,Long Island City,40.75074,-73.94206,Entire home/apt,150,13,4,2019-02-01,0.64,1,121 +2716889,Apt #1: 2BR/1BA w/ Backyard,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67203,-73.93494,Entire home/apt,155,28,23,2018-11-03,0.36,2,336 +2627951,Cozy private space in a brand new apartment,4045120,Guyen,Brooklyn,Flatbush,40.64851,-73.96121,Private room,70,1,7,2019-07-01,2.21,1,176 +20075580,Kew gardens,5016524,Darshan,Queens,Forest Hills,40.71395,-73.83185999999999,Private room,45,1,2,2017-08-12,0.09,1,0 +14320998,1 Bedroom,84810879,Linda,Queens,Rosedale,40.66155,-73.73064000000001,Private room,88,1,0,,,3,364 +17979046,Room Rental in Washington Heights,63772058,Nikita,Manhattan,Washington Heights,40.84345,-73.9422,Private room,100,2,0,,,1,0 +9324841,Large artist one bedroom in Williamsburg!,9659504,Danny,Brooklyn,Williamsburg,40.71676,-73.94575,Entire home/apt,165,4,10,2018-07-31,0.23,1,0 +7645359,Old World Charm in Hip Brooklyn,7500,Russ,Brooklyn,Clinton Hill,40.68864,-73.96759,Entire home/apt,175,30,7,2019-03-02,0.17,1,27 +34490363,Deluxe King Room steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75661,-73.98756999999999,Private room,100,1,0,,,13,358 +12985547,Gorgeous- 2 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77219,-73.95588000000001,Entire home/apt,142,30,2,2018-09-30,0.15,29,319 +6286253,SunLit Room in Hip Neighborhood,32678605,Rebekah,Brooklyn,Bushwick,40.69756,-73.92209,Private room,100,1,0,,,1,0 +3755474,New Bright & Modern Apartment within a Brownstone,9928037,Elliot,Manhattan,Murray Hill,40.74735,-73.97671,Entire home/apt,149,3,8,2018-01-02,0.17,1,0 +31067269,New York - Upper East side cozy appartment,60658041,Armel,Manhattan,Upper East Side,40.77018,-73.95501999999999,Private room,125,3,2,2019-06-18,0.3,1,0 +28616435,^^SWEET DEAL in NYC^,89728139,Tanya,Manhattan,Harlem,40.82714,-73.93888000000001,Private room,89,3,15,2019-06-01,1.56,1,179 +9549937,"Cozy, updated 2 bedroom in Nolita!",24170584,Lauren,Manhattan,Little Italy,40.72011,-73.99729,Entire home/apt,265,1,1,2016-12-10,0.03,2,0 +36272851,Private Bedroom in a Prewar Gramercy Building!*,19962052,Thikshan,Manhattan,Kips Bay,40.73929,-73.98183,Private room,135,2,1,2019-07-07,1.0,3,41 +33962690,Cozy lil Williamsburg walk-up with a resident dog,91183632,Dilan,Brooklyn,Williamsburg,40.71331,-73.9627,Private room,75,1,0,,,1,43 +10041002,1st Floor Beautiful Brownstone Apt,7503132,Whitney,Brooklyn,Clinton Hill,40.68399,-73.96191999999999,Entire home/apt,100,5,7,2016-11-27,0.16,1,0 +3970724,Spacious 2 bedroom in trendy hood,3339819,Jennifer,Brooklyn,Crown Heights,40.6723,-73.95951,Entire home/apt,200,2,3,2015-05-26,0.05,1,0 +28041818,Bedroom Two in Private House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.67296,-73.79658,Private room,80,1,75,2019-07-05,9.34,3,57 +1324087,Lovely 1-bedroom-heart of Astoria,6002245,Nicholas,Queens,Astoria,40.76062,-73.9175,Entire home/apt,80,70,44,2019-04-26,0.61,1,198 +20757599,Manhattan view in Bushwick,80897490,Steven,Brooklyn,Bedford-Stuyvesant,40.69099,-73.92657,Private room,50,1,1,2017-09-07,0.04,1,0 +14164319,Spacious and Sunny Greenpoint Townhouse,31277975,Alan,Brooklyn,Greenpoint,40.73101,-73.95248000000001,Entire home/apt,250,3,80,2019-06-23,2.23,1,98 +20167264,"Gorgeous ""Smart"" Room in Manhattan 30 min to WTC",10109608,Aj,Manhattan,Harlem,40.81145,-73.95067,Entire home/apt,65,3,9,2017-11-09,0.4,2,0 +13531852,Spacious Comfortable Room Located In East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63345,-73.94536,Private room,90,1,4,2018-05-09,0.11,8,189 +7718452,Cosy and Convenient Carroll Garden,3074287,Gianni,Brooklyn,Carroll Gardens,40.68333,-73.99369,Entire home/apt,147,4,91,2019-05-27,2.1,2,3 +32492910,JFK LUXURY BEDROOM # 2,244082709,Jfk,Queens,Springfield Gardens,40.65973,-73.77125,Private room,55,1,17,2019-06-25,3.92,7,161 +26423738,Sonder | View 34 | Vibrant 1BR + Rooftop,12243051,Sonder,Manhattan,Murray Hill,40.74444,-73.97355,Entire home/apt,185,29,0,,,96,332 +28312520,Little paradise,131993336,David,Queens,Forest Hills,40.71962,-73.85,Private room,49,1,47,2019-06-26,4.64,2,196 +3970755,Sunny Junior 1 Bedroom,3164949,Robert,Brooklyn,Cobble Hill,40.68781,-73.99415,Entire home/apt,160,4,0,,,1,0 +9043905,"Bright, Charming APT in West Village/SoHo",3331710,Amy,Manhattan,Greenwich Village,40.72874,-74.00121999999999,Entire home/apt,200,2,29,2019-01-01,0.65,1,0 +18272753,The Reptarium: hip hideaway in sunny Bushwick loft,20175399,Grace,Brooklyn,Bushwick,40.70765,-73.92159000000001,Private room,69,2,16,2017-10-22,0.61,1,0 +4438223,Hip 1 bedroom in perfect location,22606202,Gerald,Manhattan,Harlem,40.80743,-73.95663,Private room,165,2,6,2019-01-02,0.12,1,363 +25296394,NYC Hideaway Urban Suite,191085997,Christopher,Bronx,Pelham Bay,40.85519,-73.82932,Entire home/apt,195,2,2,2018-10-09,0.19,3,313 +20435343,Cozy room in the the heart of artful Bushwick BK,127082964,Christopher,Brooklyn,Bushwick,40.70439,-73.92546,Private room,54,2,10,2018-04-29,0.43,2,0 +470090,Studio Apt. Lower East - Manhattan,2332430,Murch,Manhattan,Lower East Side,40.72147,-73.99208,Entire home/apt,210,1,230,2019-07-01,2.65,1,319 +34038333,Walking distance to Central Park,257019090,Camille,Manhattan,Upper West Side,40.78046,-73.9784,Entire home/apt,150,4,0,,,1,0 +35131138,Cozy 1 Bed in Midtown East,64024615,Michael And Aaron,Manhattan,Midtown,40.75871,-73.96948,Entire home/apt,235,2,4,2019-07-01,4.0,1,171 +9509218,Large 1 Bedroom Gem in A+ location.,49275064,Chelsea,Manhattan,East Village,40.73161,-73.9896,Entire home/apt,166,3,54,2019-06-23,1.24,1,0 +13765949,Cute sunny Upper East Side Studio,64839278,Opeyemi,Manhattan,Upper East Side,40.77316,-73.94998000000001,Entire home/apt,120,2,29,2017-12-30,0.8,1,0 +12404734,Clean and Cozy Room in Williamsburg!,13406954,Jackie,Brooklyn,Williamsburg,40.7121,-73.96155999999999,Private room,80,1,1,2016-05-23,0.03,3,0 +2065985,"Woodside Queens, New York",9757249,Kenny,Queens,Sunnyside,40.74071,-73.9191,Private room,50,1,0,,,1,0 +19057619,living room in a 1br apt for rent MANHATTAN,133037177,Ben,Manhattan,Inwood,40.86556,-73.92656,Private room,36,28,28,2019-05-31,1.12,1,106 +23807689,Il Ponte *LES* Suite - free street Parking & Wifi,116839989,Ez,Manhattan,Lower East Side,40.72051,-73.98357,Entire home/apt,110,30,54,2019-05-27,3.4,5,193 +13216357,"Cozy, clean, Harlem studio",14052889,Mary,Manhattan,Harlem,40.82779,-73.94065,Entire home/apt,105,7,32,2019-05-08,0.91,1,290 +21675209,Beautiful cozy studio in the heart of Manhattan,26135855,Aliza,Manhattan,Murray Hill,40.74601,-73.97823000000001,Entire home/apt,200,1,46,2019-05-27,2.36,1,0 +13506967,Sunny 1-Bedroom in Cobble Hill with Outside Space,4337162,Neil,Brooklyn,Cobble Hill,40.68688,-73.999,Private room,142,3,8,2017-12-31,0.22,1,10 +9810696,MANNYS' PLACE,50541121,Jesus,Manhattan,Hell's Kitchen,40.76385,-73.98669,Entire home/apt,199,2,137,2019-06-24,3.14,1,317 +28684892,Sweet Tribeca Studio w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71618,-74.00608000000001,Entire home/apt,282,30,0,,,232,244 +17716205,Brand new studio in high rise,26980460,Joe,Brooklyn,Downtown Brooklyn,40.69383,-73.98539,Entire home/apt,180,14,1,2018-09-17,0.1,1,0 +13399051,"Modern Apartment LES, 2mn to train",4027689,Miguel,Manhattan,Lower East Side,40.71518,-73.98953,Private room,150,3,12,2017-10-30,0.32,2,0 +35615687,Duplex Apartment 3 bedroom 2 bath (6 guest),145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95006,Entire home/apt,350,2,1,2019-06-30,1.0,2,0 +9588828,Comfortable UES 2BDR Apt,49630478,Kaitlyn,Manhattan,Upper East Side,40.78007,-73.94677,Entire home/apt,115,4,1,2015-12-29,0.02,1,0 +34017464,Amazing 2 bedroom apt . Recently renovated.,6752504,Ella,Brooklyn,Gravesend,40.59609,-73.97485999999999,Entire home/apt,120,5,0,,,3,23 +27282824,"Bright, Cozy West Village Studio",193289800,Claire,Manhattan,West Village,40.73214,-74.00531,Entire home/apt,120,2,14,2019-05-20,1.24,1,0 +29831517,Large private bedroom in private house.,224384517,Rena,Brooklyn,Canarsie,40.64403,-73.88908,Private room,60,1,64,2019-07-04,8.97,1,142 +24494717,Central Park Apt w/ Patio + Washer/Dryer,2450194,Brittany,Manhattan,Upper West Side,40.79,-73.96851,Entire home/apt,148,2,5,2018-11-25,0.34,1,2 +29829054,Best location in Williamsburg!,20827165,Melissa,Brooklyn,Williamsburg,40.71545,-73.94383,Entire home/apt,99,2,1,2018-11-19,0.13,2,0 +16172498,Cozy and quiet room on Broadway 2!,102383709,Mark & Will,Manhattan,Harlem,40.83069,-73.94779,Private room,58,4,131,2019-06-26,4.17,2,115 +33628454,HOSTEL MY REFUGE PAISA (CAMAROTE#4 Parte Baja),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76303,-73.88039,Shared room,34,1,2,2019-05-04,0.7,4,123 +26430182,"Cozy, clean apartment in Harlem near the subway",140096210,Sarah,Manhattan,East Harlem,40.78866,-73.9507,Entire home/apt,250,1,0,,,1,0 +9319328,"Cozy Bowery Studio (6, BDFM trains)",48370995,James,Manhattan,NoHo,40.72624,-73.99316999999999,Entire home/apt,100,1,8,2016-11-15,0.19,1,0 +905425,PAINTERS PARADISE / GREENPOINT,4843750,Painter,Brooklyn,Greenpoint,40.73425,-73.95506,Entire home/apt,160,5,152,2019-06-19,2.1,1,281 +26607877,COZY ROOM 5 MNS WALK TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.80367,-73.94803,Private room,90,3,6,2019-01-02,0.6,3,353 +22157683,Midtown East Apartment,127267474,Christopher,Manhattan,Midtown,40.75459,-73.96706,Entire home/apt,125,2,5,2018-04-08,0.26,1,0 +15173557,Confort 1 bdrm convenient commute to Manhattan,11585415,Ding,Brooklyn,Williamsburg,40.7047,-73.94579,Private room,100,1,0,,,1,0 +23380590,Sunny apt in dynamic Bushwick,164519659,Jessica,Brooklyn,Bushwick,40.70073,-73.91714,Private room,35,1,6,2018-04-21,0.37,1,0 +29150743,Spacious Apartment with a View in Williamsburg,7912469,Pedro,Brooklyn,Williamsburg,40.70695,-73.94913000000001,Private room,50,2,3,2018-11-15,0.34,1,0 +35368172,Stylish Spacious 1 bedroom in Amazing Location,266158631,Dani,Manhattan,Hell's Kitchen,40.76194,-73.99006,Entire home/apt,189,1,4,2019-06-30,4.0,1,180 +16479344,Large Studio Apt in Central Harlem (Entire Apt),2970729,Vera,Manhattan,Harlem,40.8116,-73.943,Entire home/apt,120,3,15,2019-07-02,2.06,1,15 +14489615,Cozy 1br mins from CASINO JFK & NYC (2nd Apt),8552126,Claudius,Queens,Jamaica,40.66933,-73.77818,Entire home/apt,60,3,60,2019-05-12,1.71,2,0 +12493228,Bright Airy Cozy Spacious Bedroom,816008,Elika,Manhattan,Hell's Kitchen,40.76093,-73.99014,Private room,100,5,8,2017-07-31,0.21,1,0 +26555450,Big Bright Studio in the Heart of Brooklyn,7169873,Julia,Brooklyn,Midwood,40.61716,-73.96271,Entire home/apt,80,5,24,2019-06-08,2.02,1,0 +29163083,Warm and Cozy two bedroom in prime Chelsea,217792112,George,Manhattan,Chelsea,40.74889,-74.00131999999999,Entire home/apt,320,3,40,2019-06-16,4.53,1,95 +264323,Comfortable Manhattanville,305972,Allan,Manhattan,Morningside Heights,40.81055,-73.95549,Private room,85,7,171,2019-03-31,1.84,2,144 +34346014,Cosy crisp clean pad in Williamsburg,3203693,David,Brooklyn,Williamsburg,40.70996,-73.95121,Entire home/apt,100,6,1,2019-07-03,1.0,1,7 +30426001,South Harlem Share,228437214,Paul,Manhattan,Harlem,40.80306,-73.95508000000001,Private room,65,1,48,2019-07-05,6.7,1,4 +29035769,Clinton Hill Sunny Room,218825786,Mariana,Brooklyn,Clinton Hill,40.68883,-73.96141,Private room,55,3,2,2019-01-05,0.31,1,0 +23061070,Suite Luxe - Luxury & Modern Comfort,49831860,Robert,Brooklyn,Canarsie,40.641290000000005,-73.91315999999999,Entire home/apt,130,3,141,2019-06-17,8.21,2,114 +17877959,Huge Studio Apt+Sleeps 4 ppl Bklyn Near ALL,116754031,Rosemary,Brooklyn,Flatlands,40.62723,-73.92635,Entire home/apt,75,2,38,2019-06-30,1.38,3,363 +29797522,"Near to all trains, 15 minute from JFK, safe house",213183791,Walkiris,Queens,Corona,40.74419,-73.85861,Private room,110,1,1,2019-01-02,0.16,1,357 +3271052,Gorgeous Apt 1 block from Subway,2009585,Cecile,Brooklyn,Cobble Hill,40.68785,-73.99181,Entire home/apt,145,3,13,2016-08-14,0.22,1,0 +11371974,1 bedroom Apt in Prospect Heights,32974295,Jacqueline,Brooklyn,Prospect Heights,40.67893,-73.97068,Entire home/apt,70,1,0,,,1,0 +9882254,Owl's Landing - Garden Room,50068597,Alex,Staten Island,Stapleton,40.63516,-74.07735,Private room,52,2,137,2019-07-01,3.17,3,340 +5706202,"New City View 1BR Loft, Greenpoint",7503643,Vida,Brooklyn,Greenpoint,40.72573,-73.94071,Entire home/apt,149,30,1,2017-10-15,0.05,52,357 +11462944,Big Cozy Apartment in West Uptown,46453731,Gabriela,Manhattan,Harlem,40.80136,-73.95476,Entire home/apt,140,4,0,,,1,0 +23025738,Spacious Private Room in Williamsburg!,14097466,Arjun,Brooklyn,Williamsburg,40.708490000000005,-73.94535,Private room,140,3,1,2018-10-02,0.11,1,0 +30736119,"Modern and Cozy Private Bedroom in Brooklyn, NY",230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.68045,-73.9064,Private room,55,1,8,2019-06-15,1.13,6,173 +31520819,Private apartment (1st floor) with all amenities,220125576,Yogi,Queens,Ozone Park,40.67883,-73.85627,Entire home/apt,72,2,7,2019-05-27,1.2,3,52 +36450814,FLATBUSH HANG OUT AND GO,267223765,Jarmel,Brooklyn,Flatbush,40.64922,-73.96078,Shared room,20,1,0,,,3,363 +35684457,Brand new one bedroom UpperEastSide,268438637,Kenneth,Manhattan,Upper East Side,40.76938,-73.95143,Entire home/apt,249,1,1,2019-07-06,1.0,1,359 +25313204,Charming Apartment in Brooklyn,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94633,Entire home/apt,108,1,35,2019-03-13,2.77,10,158 +6988794,Private Room in large 2 bedroom apt,36641477,David,Queens,Forest Hills,40.724,-73.84962,Private room,75,3,1,2015-08-31,0.02,1,0 +8053664,Bare Bones Backyard Bungalow,1112829,Erin,Brooklyn,Bushwick,40.70011,-73.92119,Private room,40,5,1,2015-09-18,0.02,1,0 +4377337,Beautiful Railroad Style Apartment!,18893494,Leonella,Manhattan,East Harlem,40.79872,-73.9411,Entire home/apt,120,3,6,2019-06-18,0.96,1,279 +31262486,Amazing location with the Manhattan Skyline View!!,233315839,Kemal,Brooklyn,Williamsburg,40.72085,-73.96115999999999,Private room,105,1,1,2019-01-27,0.18,1,0 +2735650,DISCOUNTED Entire Apt: Prime UWS location!,13968910,Mike,Manhattan,Upper West Side,40.79496,-73.97349,Entire home/apt,140,1,19,2018-08-08,0.3,1,0 +30447266,ENJOYABLE APT. FOR LONG STAY. 15 MIN. TO MANHATTAN,3229770,Luis,Queens,Sunnyside,40.73697,-73.92478,Entire home/apt,149,3,6,2019-06-25,0.91,4,305 +15049253,Queens Comfy Private Room (JFK-8mins) with porch,74331597,Nickesha,Queens,St. Albans,40.68511,-73.76884,Private room,70,2,125,2019-05-21,3.65,5,365 +8166218,Spacious Parisian style apartment,2881763,Miguel,Manhattan,Chelsea,40.73921,-73.99717,Entire home/apt,220,2,3,2016-11-18,0.06,1,0 +9358718,Chez Sullivan,23716267,Michael,Manhattan,Hell's Kitchen,40.75505,-73.99354,Entire home/apt,175,1,0,,,1,0 +26570172,Manhathan NY,199793200,Romulo,Manhattan,Inwood,40.86735,-73.91762,Private room,53,3,3,2018-08-23,0.26,1,0 +35713354,Carnegie Hall Two Queens with Corner View,261761196,Park Central,Manhattan,Midtown,40.76546,-73.9806,Private room,300,1,0,,,8,317 +9735503,Full 1BR+Balcony 17min to Midtown,166014,Matt & Virginia,Queens,Astoria,40.77066,-73.92181,Entire home/apt,100,7,2,2016-08-06,0.05,1,0 +5691347,Lovely studio - Clinton Hill/Barclays Center area.,26264587,Nancy,Brooklyn,Clinton Hill,40.68319,-73.96766,Entire home/apt,135,14,20,2019-06-13,0.46,1,41 +35196787,Great Astoria Apartment,40436170,Robert,Queens,Astoria,40.76728,-73.90781,Entire home/apt,95,1,5,2019-07-07,5.0,1,65 +18794243,Brooklyn Room Close to Manhattan,26738513,Malachi,Brooklyn,Bushwick,40.69319,-73.91642,Private room,55,3,49,2019-04-20,1.9,3,13 +2880806,2B & Private Garden A Williamsburg Spacious Escape,1240820,Triny,Brooklyn,Williamsburg,40.71923,-73.95684,Entire home/apt,295,2,110,2019-07-05,1.74,3,151 +9847917,Furnished East Village room,7511881,Nika,Manhattan,East Village,40.72608,-73.97843,Private room,60,2,1,2016-01-05,0.02,1,0 +35702864,LOVELY separate apartment in Bedstuy brownstone,6712411,John,Brooklyn,Bedford-Stuyvesant,40.68273,-73.9193,Entire home/apt,118,2,3,2019-07-01,3.0,1,101 +31003285,"City Views, Private Balcony, Clean, Private Bath",188230441,MyHomes,Queens,Flushing,40.75342,-73.83164000000001,Private room,90,1,27,2019-06-17,4.09,1,29 +29257038,"Soho Gem: A Modern, Zen 1BR in Nolita.",193473122,Renwick,Manhattan,Little Italy,40.71962,-73.99682,Entire home/apt,150,3,10,2019-06-08,1.15,1,9 +3539882,Renovated Studio - LES,16583238,Tommy,Manhattan,Lower East Side,40.72165,-73.98759,Entire home/apt,125,5,12,2015-12-31,0.2,1,0 +17881079,Charming studio with Manhattan view.,17232044,Maria,Brooklyn,Greenpoint,40.72449,-73.94485999999999,Private room,84,7,7,2019-01-02,0.26,1,24 +15903188,Private room in Astoria 10min ride to Central Park,57307079,Julian,Queens,Astoria,40.76785,-73.91596,Private room,70,1,19,2019-06-09,1.5,1,172 +18795229,Ground Floor Studio,130822245,Joe Berat,Queens,Rego Park,40.72661,-73.86046,Entire home/apt,70,1,89,2019-06-23,3.42,1,157 +27732417,"Brooklyn /Private Bedroom & bathroom, 3 Guests",209374833,Candia,Brooklyn,Crown Heights,40.66678,-73.96148000000001,Private room,99,3,19,2019-07-05,4.96,2,41 +3272628,cozy harlem getaway,1568951,Laura,Manhattan,Harlem,40.80407,-73.94603000000001,Entire home/apt,80,3,12,2019-04-07,0.25,1,0 +25395740,Top Floor Sun-Drenched West Village Studio,17788946,Jenny,Manhattan,West Village,40.73655,-74.00225999999999,Entire home/apt,175,2,19,2019-06-16,1.45,1,3 +34020020,"Charming, quiet and lovely Brooklyn Heights Studio",14950774,Gina,Brooklyn,Brooklyn Heights,40.690940000000005,-73.99293,Entire home/apt,160,7,0,,,1,98 +20009122,HEART of MANHATTAN,117287,Lara,Manhattan,Hell's Kitchen,40.76764,-73.98468000000001,Private room,130,2,3,2018-05-20,0.19,3,239 +1785141,Entire 1 Bedroom in Williamsburg,5481728,Mike,Brooklyn,Williamsburg,40.70658,-73.96759,Entire home/apt,145,2,6,2017-06-11,0.09,1,0 +7762201,"Studio Apartment, Brooklyn",3189999,Sebastian,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94962,Entire home/apt,99,5,1,2015-09-08,0.02,1,0 +11006093,West Soho/Hudson Square Gem 1b/1bath,56498254,Tecla,Manhattan,SoHo,40.72761,-74.00901999999999,Entire home/apt,150,7,9,2019-02-18,0.22,1,190 +35862574,2bdrms lrg prime Williamsburg apt in townhouse,269652307,Gabriel,Brooklyn,Williamsburg,40.71325,-73.95874,Entire home/apt,170,1,1,2019-06-28,1.0,1,77 +28543707,Fab & huge room in historic bedstuy brownstone,921829,Ali,Brooklyn,Bedford-Stuyvesant,40.6909,-73.93737,Private room,60,3,17,2019-06-25,1.75,1,340 +13995107,Spacious & quiet room w/ Balcony,39368803,Jorge,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95708,Private room,54,4,4,2017-09-21,0.12,1,0 +28805003,"Micro-Studio in Hells Kitchen, Shared Bath",198861577,Novo,Manhattan,Hell's Kitchen,40.76021,-73.99197,Private room,69,30,0,,,5,0 +9755479,Beautiful 1BR NYC,18799694,Evan,Manhattan,East Village,40.73333,-73.99075,Entire home/apt,300,1,0,,,1,0 +33423250,"Location, Location, Location Close to Central Park",117536647,Victor,Manhattan,East Harlem,40.80022,-73.94185,Entire home/apt,124,1,13,2019-06-26,5.06,1,86 +25767363,Luxurious New Building in the Heart of Bushwick,2152359,Alexandre,Brooklyn,Bushwick,40.69905,-73.92466,Entire home/apt,220,4,0,,,1,0 +35382875,Beautiful room w/ private bathroom in Williamsburg,29387731,Valerie,Brooklyn,Williamsburg,40.71203,-73.95241,Private room,65,4,1,2019-06-27,1.0,1,5 +813793,"Large, Private 2-BR Flat in the Lower East Side!",4276374,Peter,Manhattan,Lower East Side,40.71988,-73.98639,Entire home/apt,225,4,92,2019-06-24,1.47,1,67 +7379929,Great E.Village Apt. Best Location!,27283579,Alexi,Manhattan,East Village,40.72423,-73.99013000000001,Private room,119,2,4,2015-08-12,0.08,1,0 +30047100,Big brownstone apartment in prime Williamsburg,22588056,Amy,Brooklyn,Williamsburg,40.71323,-73.96319,Entire home/apt,90,7,1,2019-01-02,0.16,1,0 +6071347,"Cozy, Entire Apt, Close to L train",3987736,Marcel,Brooklyn,Bushwick,40.70069,-73.91114,Entire home/apt,80,5,8,2017-09-08,0.16,1,0 +16604568,Park Slope. The best community in Brookyn NY.,41878998,Ruth,Brooklyn,South Slope,40.66812,-73.98595,Private room,90,3,3,2019-04-08,0.4,1,5 +29412375,Bryan's house,3928437,Bryan,Brooklyn,Clinton Hill,40.68303,-73.95988,Private room,139,1,1,2018-12-01,0.14,1,83 +23572577,Sunny Bushwick Bedroom,20302754,Ruben,Brooklyn,Bushwick,40.69322,-73.91268000000001,Private room,43,1,12,2019-04-22,0.76,2,47 +16613747,"Sunny, Clean, Nice bedroom available in Bushwick",29096,Jonathan,Brooklyn,Bushwick,40.70677,-73.92043000000001,Private room,65,3,91,2019-06-23,3.5,1,294 +16584878,Modern and bright duplex in central Cobble Hill,11704017,Daniel,Brooklyn,Cobble Hill,40.6858,-73.99977,Entire home/apt,350,30,2,2017-11-04,0.09,1,156 +36388748,Private Times Square Room with Pool/Gym,217557021,Jas,Manhattan,Hell's Kitchen,40.7617,-73.99815,Private room,180,3,0,,,1,365 +781486,Spacious room in historic house,2723812,Libertad,Bronx,Port Morris,40.80461,-73.92276,Private room,60,3,86,2017-12-12,1.13,2,1 +20435714,Pretty studio with lots of light,48677247,Elle,Bronx,Norwood,40.88304,-73.88278000000001,Entire home/apt,58,5,1,2017-09-05,0.04,1,0 +13405322,Charming Free Standing Wooded Carriage House,76316036,Tobias,Brooklyn,Crown Heights,40.67587,-73.95467,Entire home/apt,250,7,3,2017-10-02,0.13,1,0 +17430853,Small room in Queens,113558700,Berat,Queens,Rego Park,40.72749,-73.86035,Private room,30,1,61,2019-06-08,2.17,3,361 +36076577,Luxury Private One Bedroom in the Upper East Side,271391063,Bryan,Manhattan,Upper East Side,40.76943,-73.95608,Entire home/apt,165,1,1,2019-06-30,1.0,1,5 +9311761,Cozy apartment in Lower East Side,6655182,Tim,Manhattan,Lower East Side,40.71846,-73.98727,Private room,150,2,2,2016-09-24,0.05,1,0 +33858603,Sunny,15347665,Catalina,Manhattan,Harlem,40.819,-73.94568000000001,Entire home/apt,160,29,0,,,1,0 +30389441,Shining Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71609,-74.00501,Entire home/apt,275,30,0,,,232,342 +21068619,Clean & nice room near Central Park/2min to subway,44229047,Felix,Manhattan,Harlem,40.80436,-73.95649,Private room,80,45,1,2017-10-06,0.05,1,0 +11868110,111 St. Marks Place,63269523,John,Manhattan,East Village,40.72804,-73.98281,Entire home/apt,140,1,1,2016-03-21,0.02,1,0 +9921802,Sunny Cozy Room in Lovely Bed-Stuy,19844147,Emory,Brooklyn,Bedford-Stuyvesant,40.68125,-73.94044,Private room,60,3,8,2019-02-10,0.58,1,296 +10257476,Private Room in Artsy Home - Heart of Manhattan,5903619,Kimberly,Manhattan,Hell's Kitchen,40.76464,-73.99403000000001,Private room,125,1,45,2019-06-29,1.13,1,322 +26293088,Sunny & Rustic one-bedroom in the West Village!,43297299,Nick,Manhattan,West Village,40.73886,-74.00413,Entire home/apt,200,3,6,2019-06-03,0.94,1,0 +19502013,ღღღUltimate Broadway Experienceღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76708,-73.98912,Private room,99,1,83,2019-06-25,3.36,3,157 +33809888,Modern and Cozy Queen Bedroom (Shared),225055374,David,Manhattan,Upper East Side,40.77203,-73.95344,Shared room,75,30,0,,,3,365 +10425572,Large Bedroom in 2BR spacious brownstone,265152,Marta,Brooklyn,Fort Greene,40.68665,-73.9774,Private room,67,3,14,2019-03-19,0.41,3,0 +31534723,Brownstone Fashion Studio,20863433,Mona,Brooklyn,Bedford-Stuyvesant,40.685,-73.94711,Entire home/apt,130,1,7,2019-06-30,1.98,1,16 +12763008,Spacious Master Bedroom 20 mins away from NYC,69433039,Jason,Queens,Sunnyside,40.73852,-73.92777,Private room,85,10,27,2019-05-27,0.71,1,125 +33509538,WALK TO FREE SI FERRY FROM FURNISHED STUDIO APT,160956,Neil,Staten Island,St. George,40.64015,-74.08126999999999,Entire home/apt,99,3,4,2019-06-28,2.31,1,326 +16556049,Private Bathroom and Cozy Bedroom in Brooklyn,78441349,Melissa,Brooklyn,East Flatbush,40.64638,-73.95065,Private room,90,1,30,2019-06-04,1.16,3,244 +1019360,Hip charming Williamsburg apartment,693889,Heather,Brooklyn,Williamsburg,40.70798,-73.94263000000001,Entire home/apt,120,5,7,2016-10-26,0.1,1,0 +35709113,Centrally Located Private 2BR Residence ♛,224731704,Andrew,Manhattan,Hell's Kitchen,40.7655,-73.98871,Entire home/apt,300,1,0,,,3,350 +18463609,Spring in Bed Stuy,31315421,Angela,Brooklyn,Bedford-Stuyvesant,40.68257,-73.9279,Entire home/apt,100,2,77,2019-06-21,2.96,1,277 +30048716,"Come live in, Brooklyn",225749624,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94366,Private room,70,1,1,2018-12-01,0.14,1,0 +2164135,"BIG, BRIGHT, STYLISH + CONVENIENT",1470471,Kerstin,Brooklyn,Bedford-Stuyvesant,40.69112,-73.95203000000001,Private room,80,3,90,2019-06-17,1.39,1,199 +13558030,"Comfy Room 10min/ LGA, 30min/ JFK, 30min/ City",51531044,Angela,Queens,Jackson Heights,40.75061,-73.87576,Private room,40,2,66,2019-06-09,1.82,4,293 +3067093,Stylish East Village Studio near Union Sq,3541594,Jennifer,Manhattan,East Village,40.73057,-73.99034,Entire home/apt,200,2,12,2019-06-09,1.52,1,0 +26057252,"Bushwick Brownstone, Long-term Stay",87767243,David,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9149,Private room,41,21,1,2018-10-07,0.11,2,155 +282514,"Own Room & Bath, Sunny Town House, 18"" to Wall St",1464358,Dian,Brooklyn,Bedford-Stuyvesant,40.68106,-73.9292,Private room,97,3,29,2019-06-25,1.57,1,118 +32683537,Stylish Private 1 Double Bed Room in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.75987,-73.98758000000001,Private room,304,1,6,2019-05-30,2.54,7,351 +31458142,Huge studio in the heart of Kips Bay,235655558,Steph,Manhattan,Kips Bay,40.74343,-73.98147,Entire home/apt,140,1,3,2019-04-01,0.63,1,0 +35718849,PRIVACY CHELSEA BEAUTY WITH PRIVATE ENTRANCE,14563616,Anna/Phillip,Manhattan,Chelsea,40.73724,-73.99429,Entire home/apt,249,1,5,2019-07-01,5.0,2,125 +24873530,Bed-Stuy 2 Bedroom Beauty w/ Spacious Living Room,26178850,Anna,Brooklyn,Bedford-Stuyvesant,40.68344,-73.93308,Private room,45,5,19,2019-05-27,1.34,1,199 +22256926,Beautiful room in Brooklyn,15640230,Susana,Brooklyn,Crown Heights,40.66452,-73.9337,Private room,33,30,1,2018-09-02,0.1,4,354 +23120678,Cozy Uptown Apartment!,4757826,Cy,Manhattan,East Harlem,40.79037,-73.9458,Entire home/apt,115,2,3,2018-08-13,0.22,1,1 +11552402,Comfy NYC Studio 15 Min. To Midtown,60990988,Terrence,Manhattan,Harlem,40.81032,-73.95415,Entire home/apt,90,2,198,2019-06-19,4.87,1,39 +33186981,Beautiful apartment in Bedstuy Brooklyn,72031522,Vanessa,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93436,Private room,60,2,9,2019-06-15,2.76,1,22 +15477385,Charming Apartment in Brooklyn,15858985,Laura,Brooklyn,Bedford-Stuyvesant,40.68852,-73.9499,Entire home/apt,140,5,0,,,1,168 +820953,Entire Apt Yours! (5 Night Minimum),4105474,Amanda,Brooklyn,Greenpoint,40.72166,-73.94037,Entire home/apt,99,7,10,2019-01-01,0.13,1,81 +8684082,Spacious Room in Hell's Kitchen!!,45598282,Niki,Manhattan,Hell's Kitchen,40.76443,-73.99219000000001,Private room,105,3,17,2017-01-02,0.4,2,0 +20757519,Sofa bed in bright & beautiful apt (with rooftop),42154911,Hannah,Manhattan,Harlem,40.82992,-73.94563000000001,Shared room,60,2,1,2017-09-03,0.04,2,0 +33246476,Spacious bedroom in Williamsburg,13480762,Shana,Brooklyn,Williamsburg,40.71768,-73.94027,Private room,40,1,9,2019-06-01,2.84,2,22 +32894721,COZY NYC!!!,206695257,Ronald,Queens,Queens Village,40.71324,-73.73318,Private room,70,1,4,2019-06-23,1.6,1,88 +35763126,Charming & Stylish Home in Chelsea,44138549,Jonathan,Manhattan,Chelsea,40.74357,-73.99750999999999,Entire home/apt,260,5,0,,,1,17 +31950840,LUX 2 Bedroom Sleep 6 City Center Private Deck,237250378,Jeff,Manhattan,Kips Bay,40.7436,-73.98165,Entire home/apt,276,3,12,2019-06-07,2.42,1,277 +27934562,Shared Apt w/ Young professionals - Fast WiFi,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.69985,-73.91195,Private room,38,30,0,,,9,43 +35613707,Cozy One BR near Manhattan!- 15min to Time Square.,267928032,Chhong,Queens,Flushing,40.72899,-73.79578000000001,Entire home/apt,119,1,0,,,1,179 +3625117,60s-inspired @ a penthouse loft!,18260299,Ota,Brooklyn,Bushwick,40.69217,-73.90768,Private room,50,30,14,2019-06-10,0.23,6,88 +6238281,One bedroom in Midtown,32374510,Shannon,Manhattan,Hell's Kitchen,40.76497,-73.9933,Entire home/apt,175,1,0,,,1,0 +5558242,Sunny Park Slope Studio Brownstone,16548032,Galya,Brooklyn,Park Slope,40.66907,-73.97609,Entire home/apt,115,5,4,2017-06-23,0.08,1,0 +20615793,Quaint Loft near Broadway minutes to Central Park,3449385,JimiBeth,Manhattan,Upper West Side,40.79273,-73.97592,Entire home/apt,100,4,32,2018-07-28,1.51,1,0 +32470732,New Renovate in 2019 & Everything is New,19303369,Hiroki,Manhattan,Inwood,40.8647,-73.92353,Private room,29,30,0,,,37,1 +2965008, Family Friendly Brooklyn House,37879,Jeffrey,Brooklyn,Gowanus,40.67024,-73.99351,Entire home/apt,299,3,13,2019-04-24,0.56,1,346 +4412533,cozy tucked away in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79765,-73.94022,Private room,79,3,56,2019-05-27,1.1,2,90 +18874394,Lovely Caroll Garden 3BRs with large private deck,62734,Kremer,Brooklyn,Gowanus,40.67882,-73.99166,Entire home/apt,119,60,4,2018-06-09,0.19,2,156 +777297,XL 2 Bedroom LOFT in the Heart of Williamsburg,3419446,Jennifer,Brooklyn,Williamsburg,40.71606,-73.95527,Entire home/apt,200,2,72,2019-06-23,0.95,1,52 +4342895,The Perfect 1brm Apartment - Sunny & Spacious!,3800365,Mei-Ling,Brooklyn,Williamsburg,40.71874,-73.94055,Entire home/apt,123,3,21,2017-11-22,0.61,1,0 +28155197,Your home away from home!!,208079253,Wendy,Brooklyn,Crown Heights,40.67737,-73.94034,Entire home/apt,115,3,32,2019-06-16,3.49,1,168 +21852211,BEAUTIFUL MODERN DESIGNER LOFT with BATHTUB!,33658455,Alex,Manhattan,West Village,40.73642,-73.9992,Entire home/apt,345,3,61,2019-07-01,3.17,1,150 +22067406,Incredible Newly Renovated Two-Bedroom Apartment,93487618,David,Brooklyn,Dyker Heights,40.62643,-74.0072,Entire home/apt,90,2,55,2019-06-22,2.85,2,285 +32050188,Private room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76124,-73.9894,Private room,120,1,29,2019-06-23,5.8,2,198 +5882725,Beautiful Private Williamsburg Suite with Terrace,20557884,Anita,Brooklyn,Williamsburg,40.70691,-73.9481,Entire home/apt,165,4,73,2019-06-25,1.42,1,237 +8794624,"Cozy Bedroom in Crown Heights, BK",11918958,Elizabeth,Brooklyn,Crown Heights,40.68003,-73.96123,Private room,50,1,0,,,1,0 +11305815,Fourth of July getaway,59105771,Rachel,Manhattan,Inwood,40.86083,-73.92626,Entire home/apt,140,3,5,2016-12-27,0.13,1,8 +28953757,One Bed Room with a share living and kitchen apt,195251910,Ahmad,Queens,Long Island City,40.76216,-73.94109,Private room,100,1,2,2019-02-18,0.32,1,1 +18579690,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73412,-73.8509,Entire home/apt,278,2,16,2018-07-12,0.62,6,0 +9880673,Lavish 1BR apt. near Madison Square Park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76702,-73.9834,Entire home/apt,239,30,0,,,121,352 +15772473,Duplex Penthouse between Union Sq and East Village,12733096,Nuno,Manhattan,East Village,40.73296,-73.98884,Entire home/apt,275,2,0,,,1,0 +27054761,Modern apartment in Brooklyn's Stuyvesant heights,160343057,Helen,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91954,Entire home/apt,158,2,8,2018-10-21,0.69,1,0 +12927770,"Amazing light, spacious & Modern",1289635,Alan,Queens,Long Island City,40.74069,-73.95604,Entire home/apt,200,5,4,2019-04-24,0.11,1,16 +31993628,Room in prime location! Mins from LIC & Midtown!,137358866,Kazuya,Queens,Long Island City,40.74821,-73.92087,Private room,44,30,0,,,103,247 +7631585,Spacious Well Kept Apartment 5 min to Midtown,40034304,Finley,Queens,Long Island City,40.75203,-73.9361,Private room,80,3,8,2018-10-23,0.56,1,0 +11769558,"Large 2 bedroom apartment, 100% private, Bushwick",62649248,Benjamin,Brooklyn,Bushwick,40.70663,-73.9175,Entire home/apt,100,30,28,2019-04-26,0.81,2,87 +32569915,Sun-Filled Cozy Bedroom steps to Fort Greene Park,196613633,Zach,Brooklyn,Fort Greene,40.693540000000006,-73.97171999999999,Private room,95,5,0,,,2,0 +18124043,ChelseaStudio w/t SunnyPrivateTerrace&EmpireView:),124898889,Fania,Manhattan,Chelsea,40.74432,-73.99985,Entire home/apt,180,5,7,2018-01-02,0.26,1,0 +13899190,East Village One Bedroom,15099636,Natalie,Manhattan,East Village,40.72611,-73.97905,Entire home/apt,120,1,3,2016-07-25,0.08,1,0 +30060150,Private room in trendy neighborhood,129902279,Catalina,Brooklyn,Sunset Park,40.65977,-73.99087,Private room,40,8,7,2019-06-12,0.96,1,66 +21477282,Entire Apartment in Brooklyn Brownstone,6357428,Sophia,Brooklyn,Crown Heights,40.67592,-73.94792,Entire home/apt,100,2,3,2017-12-31,0.15,1,0 +33451888,"Super comfy Bushwick getaway, 4 min. from the M!",50737287,D'Arcy,Brooklyn,Bushwick,40.69814,-73.9219,Private room,40,2,1,2019-04-30,0.43,1,0 +34059931,1 BR Large Luxury Furnished Ap. Near Central Park,15145088,Izi,Manhattan,Upper West Side,40.78537,-73.97456,Entire home/apt,190,30,0,,,8,157 +33241841,Spacious Manhattan Club Suite,24831061,Hosteeva,Manhattan,Midtown,40.76403,-73.98191,Entire home/apt,275,1,0,,,8,0 +10087575,Chic NYC Brownstone,2144034,Brandon,Manhattan,Harlem,40.82753,-73.94861999999999,Entire home/apt,90,1,2,2016-05-02,0.05,1,0 +34353572,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,255697979,Heleen,Brooklyn,DUMBO,40.70412,-73.99194,Entire home/apt,200,30,0,,,2,365 +8860450,Stylish One-Bedroom in Gramercy!,12838732,Elizabeth,Manhattan,Gramercy,40.73743,-73.98652,Entire home/apt,190,2,76,2019-06-14,1.68,1,12 +9679289,"Entire Large Basement, very quiet.",50006975,William,Brooklyn,Bushwick,40.70633,-73.92231,Private room,55,1,1,2016-01-05,0.02,1,0 +6718383,Home 4 Medical Professionals-Kngbr1,26377263,Stat,Brooklyn,East Flatbush,40.66058,-73.93383,Private room,43,30,1,2015-11-28,0.02,43,347 +35685857,NEW! CHARMING 2 BEDROOM APARTMENT IN MANHATTAN,78424147,Catherine,Manhattan,Washington Heights,40.84344,-73.93966999999999,Entire home/apt,210,5,2,2019-07-01,2.0,1,354 +31234496,Cozy space in Brooklyn,9270510,Andres,Brooklyn,Flatbush,40.64689,-73.95862,Private room,45,1,7,2019-06-30,1.46,1,34 +35286246,Decorator's Apt in Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76928,-73.96675,Entire home/apt,250,14,0,,,3,344 +10049711,Cozy Room in 2BDR Apt UES,2784447,James,Manhattan,Upper East Side,40.76206,-73.95705,Private room,90,8,0,,,1,0 +17141884,Private room in a Luxury building: Midtown NYC,32383664,Karthik,Manhattan,Midtown,40.75151,-73.97114,Private room,60,30,1,2017-06-05,0.04,1,0 +32681584,Artful UWS Penthouse with Balcony by Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78136,-73.97988000000001,Private room,350,1,0,,,10,282 +10943209,Cozy Room In East Village!,52761277,Min,Manhattan,East Village,40.72387,-73.979,Private room,80,2,1,2018-10-07,0.11,1,87 +9365502,Cozy 1 bdrm Chelsea/Meatpacking,3843401,Chanel,Manhattan,Chelsea,40.74097,-73.99953000000001,Entire home/apt,150,1,1,2015-11-17,0.02,1,0 +9690687,Huge Brooklyn Apartment,2088995,Padraic,Brooklyn,Flatbush,40.65326,-73.95513000000001,Entire home/apt,70,2,1,2019-04-10,0.33,1,0 +7680750,New 2BR+1BA For Up To 6 Ppl Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92795,Entire home/apt,100,3,120,2019-06-18,2.63,3,220 +35679309,A unique cozy 2 bedroom apartment,268396733,Hirsh,Brooklyn,Kensington,40.64353,-73.9845,Entire home/apt,100,1,1,2019-06-28,1.0,1,96 +31308773,Light & Airy Williamsburg Retreat,234338317,Anna,Brooklyn,Williamsburg,40.71105,-73.94563000000001,Private room,80,1,1,2019-06-23,1.0,1,86 +27649404,Charming Private Room,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69339,-73.93970999999999,Private room,55,2,41,2019-06-16,3.73,3,358 +619471,Historic Brownstone Parlor & Garden,3069794,Hayley,Brooklyn,Bedford-Stuyvesant,40.68372,-73.9406,Private room,65,3,5,2014-08-31,0.06,2,341 +36348535,Gorgeous large 3 bedroom apartment in Williamsburg,14598000,Daniel,Brooklyn,Williamsburg,40.70802,-73.94053000000001,Entire home/apt,200,4,0,,,2,315 +35546352,"Zen-Oasis, Entire Apartment Only 8 min from JFK!!",103336088,Tiyanna,Queens,Jamaica,40.6748,-73.79241999999999,Entire home/apt,85,1,5,2019-07-07,5.0,1,62 +21437933,Large one-bedroom in Bushwick with Cleo the Cat,2545414,Ali,Brooklyn,Bushwick,40.70327,-73.92024,Entire home/apt,89,7,10,2018-12-27,0.51,1,11 +4310501,Spacious Bedroom in East Village,21127377,Orhun,Manhattan,East Village,40.72627,-73.98915,Private room,110,3,64,2019-06-30,1.26,1,14 +21216288,Spacious Apartment + Bushwick Backyard,5022142,Yoni,Queens,Ridgewood,40.706,-73.91418,Entire home/apt,90,4,4,2019-05-29,0.26,1,0 +3791325,1BR Clinton Hill Apt Beautiful Garden - Video,3028267,Vernon,Brooklyn,Clinton Hill,40.69352,-73.96556,Entire home/apt,150,7,15,2019-05-25,0.27,1,280 +9712682,Brownstone 1 BR with Huge Backyard,2412806,Amadou,Brooklyn,Fort Greene,40.68792,-73.97904,Entire home/apt,210,2,115,2019-06-21,2.66,1,247 +21627938,Unbelievable male room Manhattan for lngterm! III,39528519,Max,Manhattan,Lower East Side,40.71021,-73.98863,Shared room,29,100,0,,,28,341 +5492696,"Lovely Studio, a Block from Trains!",15107994,Saad,Queens,Jackson Heights,40.74761,-73.89466,Entire home/apt,85,4,6,2016-01-06,0.11,1,0 +29547577,The Spot! 25 min from NYC walk to Belmont Park,129559712,Sidney,Queens,Queens Village,40.71024,-73.72928,Entire home/apt,100,2,42,2019-07-07,5.08,1,123 +26335577,Spacious Williamsburg Nook w/ Balcony,11080981,Trisha,Brooklyn,Williamsburg,40.71682,-73.95107,Private room,200,1,0,,,1,0 +8342009,Cozy apartment with lots of light,43375242,Gabriela,Queens,Long Island City,40.75653,-73.93268,Private room,120,2,9,2019-04-22,0.2,2,89 +10838084,UPTOWN FABULOUS,3881467,Robert,Manhattan,Washington Heights,40.85612,-73.93024,Private room,45,1,50,2019-06-23,1.32,1,90 +7842671,Bedroom in Soho/Nolita Two-bedroom,3599088,Chris,Manhattan,Nolita,40.72113,-73.99465,Private room,59,2,10,2018-02-18,0.21,2,0 +18175051,Private Bedroom in charming 2 Bdrm Duplex,9147284,David,Brooklyn,Bushwick,40.69808,-73.92054,Private room,60,1,4,2018-11-27,0.3,1,341 +35092820,Fantastic 2 Bedroom Apt Near Times Square,263753140,Neal,Manhattan,Hell's Kitchen,40.76194,-73.99074,Entire home/apt,350,1,2,2019-06-22,2.0,1,304 +12953717,Peaceful room in a lovely Brooklyn duplex,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65254,-73.98017,Private room,72,1,4,2016-09-05,0.1,4,0 +21311903,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70258,-73.8151,Private room,135,1,0,,,18,365 +12964477,"Clean, Simple, & Private Bedroom (near N/R train)",28370925,En & Lora,Brooklyn,Sunset Park,40.63833,-74.01794,Private room,39,5,89,2018-07-25,2.34,4,0 +27567455,Best Apartment in Bay Ridge,4232014,Izzie,Brooklyn,Bay Ridge,40.63348,-74.03088000000001,Entire home/apt,100,2,8,2019-07-07,0.76,1,46 +5038299,Beautiful Fort Greene Studio,17465490,Tarun,Brooklyn,Fort Greene,40.68752,-73.9795,Entire home/apt,180,31,1,2015-01-21,0.02,1,0 +21822750,*AWESOME PLACE*2 MIN SUBWAY!,159020652,JoaoLinda,Brooklyn,Bushwick,40.68235,-73.90381,Private room,48,2,58,2019-06-30,3.04,1,349 +1151209,Large Sunny 1BR - Entire 2nd Floor,6309691,Lisa,Brooklyn,Greenpoint,40.73369,-73.95854,Entire home/apt,139,1,284,2019-06-19,3.8,2,160 +5361021,Beautiful Washington Heights room,27790643,Carl,Manhattan,Washington Heights,40.84522,-73.93952,Private room,49,1,1,2015-03-23,0.02,1,0 +9457917,Cozy 1 Bed Rm Appt in Kipps Bay !,49011283,Murtaza,Manhattan,Kips Bay,40.744040000000005,-73.97564,Entire home/apt,70,3,0,,,1,0 +9479324,Subletting my room (Jan-May),49133999,Eli,Brooklyn,Clinton Hill,40.69585,-73.96344,Private room,65,60,0,,,1,0 +3401083,Sunny Bushwick Brownstone,17153037,Janice,Brooklyn,Bushwick,40.69195,-73.92068,Entire home/apt,125,7,25,2018-08-13,0.41,1,270 +14089094,Cozy 1 Bedroom in Brooklyn,84738777,Rohan,Brooklyn,Sunset Park,40.64187,-74.01252,Private room,30,2,1,2016-09-06,0.03,1,0 +19354239,Crown Heights Brooklyn residential rental!,135630698,Esty,Brooklyn,Crown Heights,40.66891,-73.94605,Entire home/apt,150,3,23,2019-06-08,0.93,1,120 +18667956,Bushwick Chef's house,71224013,Heejun,Brooklyn,Bushwick,40.69445,-73.91161,Private room,70,1,22,2019-07-01,0.85,1,331 +21232999,Cozy room and a private bathroom bklyn :),14898658,Chadanut,Brooklyn,Kensington,40.64388,-73.9813,Private room,45,1,52,2019-06-17,2.47,11,42 +21081485,Spotless Private Room near Airport and Subway!,29597567,Lucy & Rodo,Queens,Corona,40.74533,-73.86076,Private room,49,2,127,2019-06-22,6.05,1,64 +21011532,"Brooklyn Factory Conversion -Bright, Plant Filled",151293286,William,Brooklyn,Bedford-Stuyvesant,40.692820000000005,-73.96034,Entire home/apt,120,4,6,2019-06-02,0.37,1,0 +17963856,Upstate Manhattan,24010376,Elaina,Manhattan,Inwood,40.86517,-73.92318,Private room,65,1,1,2017-12-28,0.05,1,0 +16260353,Cozy artsy bedroom near Cloisters,24967970,Ekaterina,Manhattan,Inwood,40.86269,-73.9222,Private room,80,3,6,2019-06-25,0.28,1,58 +19602515,LES East Village Spacious Getaway,11758216,Ariana,Manhattan,East Village,40.723490000000005,-73.98491,Entire home/apt,150,4,5,2019-07-02,0.27,1,8 +218358,Your Haven in the Upper West Side,1129218,Orlando,Manhattan,Harlem,40.8078,-73.95208000000001,Private room,80,7,19,2019-06-03,0.35,1,285 +32443972,Bright/Cozy 1 Bedroom Condo in Heart of Brooklyn!,243716532,Daniel,Brooklyn,Bedford-Stuyvesant,40.69067,-73.95823,Entire home/apt,120,5,12,2019-07-07,3.87,1,137 +10031336,GREAT location LARGE 1BR $129 night,21801127,Carlos,Manhattan,Upper East Side,40.77668,-73.94819,Entire home/apt,129,3,0,,,1,0 +34620353,Boutique Studio Apt,261183419,Crystal,Manhattan,Washington Heights,40.85833,-73.93401999999999,Entire home/apt,70,30,0,,,1,83 +33960097,1890 Townhouse Penthouse Centered S Williamsburg,44918139,Shai,Brooklyn,Williamsburg,40.71093,-73.95815,Entire home/apt,250,31,1,2019-07-01,1.0,1,90 +9253827,Close to train - Williamsburg Garden Apartment,48078451,Mathew,Brooklyn,Williamsburg,40.71673,-73.94193,Entire home/apt,125,3,93,2019-06-30,2.69,1,23 +10038693,Studio Loft in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.727340000000005,-73.94451,Entire home/apt,189,3,7,2019-05-07,0.21,13,74 +13771435,Friendly Upper West Side Apartment,2025836,Anna,Manhattan,Upper West Side,40.78176,-73.97822,Entire home/apt,150,1,2,2016-07-29,0.06,1,0 +14347194,"Cozy Bedroom (East Harlem, Manhattan)",23816403,Talia,Manhattan,East Harlem,40.788070000000005,-73.944,Private room,75,2,50,2018-03-24,1.46,1,0 +8498999,Historically located 1 bdroom,44754726,Danielle,Manhattan,Harlem,40.81646,-73.9369,Entire home/apt,180,1,0,,,1,0 +16010302,"Chic Chelsea charming apartment, GREAT DECOR",18939173,Pablo,Manhattan,Chelsea,40.75133,-73.99965,Entire home/apt,228,4,16,2019-07-06,0.51,1,103 +35129203,"Spare Room Available.. Bedstuy, 20 mins to City!",30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92694,Private room,39,30,0,,,5,247 +7843582,"Spacious, Quiet One Bedroom Apt",1246073,Josh,Brooklyn,Crown Heights,40.67042,-73.95676999999999,Entire home/apt,119,2,27,2019-07-01,0.58,1,154 +19294842,"ACintheroom!35minutestodowntown Manhattan,QUEENbed",47782497,Robianddebbie,Brooklyn,East New York,40.66906,-73.87805,Private room,55,7,15,2019-05-01,1.33,3,318 +30767663,1 bedroom apartment in Bushwick,6297882,Indre,Brooklyn,Bushwick,40.69879,-73.92936,Entire home/apt,120,3,2,2019-06-05,0.35,1,0 +18071406,Room in Hells Kitchen for short term stay!,69572951,Ilija,Manhattan,Hell's Kitchen,40.76316,-73.9904,Private room,100,4,0,,,1,0 +13859134,Near Manhattan & ForestHStadium studio w/ pvt bath,79751520,Julia,Queens,Forest Hills,40.71249,-73.84942,Private room,90,1,31,2018-09-24,0.9,2,1 +21824864,The Great Room on the Upper East Side,27552154,Sylvia,Manhattan,Upper East Side,40.7627,-73.96225,Private room,90,3,1,2018-01-01,0.05,2,0 +16282085,Beautiful townhouse in Brooklyn NY,54342301,Katka,Brooklyn,Crown Heights,40.67748,-73.95101,Entire home/apt,300,2,11,2019-01-02,0.38,1,9 +19209436,Large 1-bedroom Apt with lots of charm and art.,87259106,Vaughn,Manhattan,Harlem,40.80995,-73.94485,Entire home/apt,102,3,24,2018-01-15,0.96,1,0 +35034543,Shared Apt by Central Park in Hell's Kitchen 7,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76424,-73.98916,Shared room,69,1,8,2019-06-21,6.32,7,357 +29900966,Landmark Brooklyn Brownstone 35 min from Midtown,65747874,Eric,Brooklyn,Crown Heights,40.674240000000005,-73.94098000000001,Entire home/apt,137,2,21,2019-07-06,2.78,2,63 +27693532,Light one bedroom apartment in Soho!,1423082,Alice,Manhattan,Nolita,40.72265,-73.99458,Entire home/apt,150,2,26,2019-05-27,2.41,1,0 +35464510,Cozy super affordable room,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.67813,-73.92904,Private room,38,5,1,2019-06-14,1.0,3,356 +27781833,"Queens Apt (bedroom w balcony), close to subway",134170699,Rafa' S,Queens,Elmhurst,40.73603,-73.87845,Private room,70,2,25,2019-07-07,2.31,2,177 +15866121,A lovely unique space in the heart of Brooklyn,6181203,Segun,Brooklyn,Crown Heights,40.67638,-73.91578,Private room,42,4,13,2018-05-21,0.41,1,364 +1045491,Prime Williamsburg. Brand new,1356046,Daniel,Brooklyn,Williamsburg,40.71454,-73.9507,Private room,75,3,179,2019-06-09,2.39,2,136 +23580002,Classic Brooklyn Apartment,176245949,Tone,Brooklyn,Red Hook,40.67656,-74.01656,Entire home/apt,140,2,59,2019-07-03,3.68,1,77 +35829570,★ Easy Access to the Best of Brooklyn - Tree Top ★,393473,Bobby,Brooklyn,Bedford-Stuyvesant,40.69221,-73.95168000000001,Entire home/apt,116,2,4,2019-07-02,4.0,2,156 +27454904,Spectacular Loft Like Garden Floor,206195782,Leigh,Manhattan,Harlem,40.808040000000005,-73.95373000000001,Entire home/apt,195,2,14,2019-07-01,1.43,1,33 +30334838,Refined private room next to Columbia University,126653377,Sergii,Manhattan,Harlem,40.80384,-73.95754000000001,Private room,63,30,1,2019-04-01,0.3,6,364 +6105342,One Bedroom Available (May 1-May 6),31678869,Sonya,Manhattan,Harlem,40.8251,-73.93899,Private room,200,1,0,,,1,0 +21444621,Studio Apartment in Williamsburg,29110524,MaKaya,Brooklyn,Williamsburg,40.72031,-73.95615,Entire home/apt,115,4,0,,,1,0 +15090815,The comfy spot away from home,89873907,Christine,Brooklyn,Cypress Hills,40.680040000000005,-73.88709,Private room,51,3,0,,,1,317 +11971580,The Heart of west HARLEM-With a European flair,5388411,Timothy,Manhattan,Harlem,40.82776,-73.94700999999999,Entire home/apt,90,3,0,,,1,0 +30800201,Sunny and Bright Space in Heart of East Village,2729738,Kristina,Manhattan,East Village,40.72728,-73.98255999999999,Entire home/apt,225,4,0,,,1,0 +6302460,Private Bedroom and Office,21211868,Cliff,Brooklyn,Bedford-Stuyvesant,40.68728,-73.94104,Private room,55,5,1,2015-06-21,0.02,1,0 +4174847,Quiet bedroom in a waste free household,21663531,Dana,Queens,Ridgewood,40.7078,-73.90177,Private room,50,21,38,2018-09-30,0.76,2,245 +22438808,Huge Apartment in East Village,164378428,Saim,Manhattan,East Village,40.72555,-73.98246999999999,Entire home/apt,165,2,2,2018-01-01,0.11,1,0 +4738250,room in prime williamsburg,24461143,Jisoo,Brooklyn,Williamsburg,40.71754,-73.96228,Private room,77,1,0,,,1,0 +5292616,Chelsea Apartment - GREAT LOCATION!!!!,16427090,Frank,Manhattan,Chelsea,40.73933,-73.99879,Entire home/apt,229,3,2,2016-11-01,0.06,1,0 +36318560,Luxury Sun-filled Private Room near Time Square,52917571,Linda Lou,Manhattan,Midtown,40.75286,-73.99297,Private room,120,2,1,2019-07-06,1.0,1,7 +32114824,5 minutes from Times Square! Central Manhattan.,240934322,Pete,Manhattan,Hell's Kitchen,40.76412,-73.98770999999999,Private room,125,3,0,,,1,173 +15781521,Private Room in a 3 Bedroom Apartment!,24215329,Rohan,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92271,Private room,60,2,0,,,1,0 +2102542,Cozy 1BD-15min to NYC $150,2977901,Andrea,Brooklyn,Cobble Hill,40.68803,-73.99181999999999,Entire home/apt,150,1,19,2015-06-22,0.28,1,0 +36427922,Home away from home,238163900,Lucy,Queens,Cambria Heights,40.68557,-73.72731,Private room,50,3,0,,,1,176 +8114639,Cozy Private Bedroom in heart of Williamsburg,19058116,Sarah,Brooklyn,Williamsburg,40.7105,-73.94693000000001,Private room,50,1,3,2016-07-29,0.08,1,0 +518566,"Gorgeous, charming Upper East private room",1497427,Andrea,Manhattan,Upper East Side,40.77108,-73.95966999999999,Private room,82,3,10,2019-05-15,0.13,2,251 +35422845,Bright and cozy studio - separate kitchen in UES,266590338,Antonella,Manhattan,Upper East Side,40.77401,-73.94993000000001,Entire home/apt,220,5,0,,,1,77 +29016146,Ex-Large 2 Bedroom Apartment Harlem Delight!,218680572,Curtiss,Manhattan,Harlem,40.80879,-73.94813,Entire home/apt,250,28,7,2019-06-02,1.02,1,183 +20671003,Charming 1 br apartment,140492812,Andrew,Brooklyn,Bushwick,40.70587,-73.92358,Entire home/apt,94,2,13,2018-04-15,0.57,2,0 +6692574,Cozy 1br apt in center flushing,22727131,Iris,Queens,Flushing,40.75529,-73.83043,Entire home/apt,150,7,1,2015-11-01,0.02,1,0 +32975416,Private room with bathroom close to M/J trains,248161322,Sergii,Brooklyn,Bushwick,40.70106,-73.93895,Private room,80,30,0,,,14,342 +35339627,Newly Renovated Apartment 47 Buffalo 3F Room#2,260688089,Hui,Brooklyn,Bedford-Stuyvesant,40.67864,-73.92362,Private room,60,1,4,2019-06-30,4.0,2,166 +18656413,Comfy Wall Street Apartment,110031106,Allie,Manhattan,Financial District,40.70586,-74.00875,Private room,85,1,3,2017-06-04,0.12,1,0 +28396,Modern Apt with Spectacular Views,6197784,Jo,Brooklyn,Williamsburg,40.71923,-73.96468,Private room,90,1,9,2011-09-18,0.08,1,245 +31676259,Huge 1br ** Priv.Balcony & River Views ** Gym*Pool,13773574,Cecile,Manhattan,Midtown,40.76497,-73.98191,Entire home/apt,225,30,0,,,12,328 +4157451,Bedroom in Manhattan - Prime Location,9432174,Daniel,Manhattan,Upper East Side,40.76805,-73.95424,Private room,90,4,87,2019-06-13,2.01,1,10 +16616410,Vacation in Astoria,62716661,Nelli,Queens,Astoria,40.7566,-73.91974,Private room,69,1,0,,,1,0 +2539,Clean & quiet apt home by the park,2787,John,Brooklyn,Kensington,40.647490000000005,-73.97237,Private room,149,1,9,2018-10-19,0.21,6,365 +14808890,Comfortable Twin Size Bed Near Airport,51550484,Zhur,Queens,Richmond Hill,40.69416,-73.84698,Private room,47,2,25,2019-06-10,1.13,2,152 +14340165,Luxury Modern Studio in The Bronx,9605945,Chondra,Bronx,Throgs Neck,40.81587,-73.81532,Entire home/apt,175,2,28,2019-05-28,0.92,1,36 +11532518,1 Bedroom Apt East Village/USQ,24319977,Charles,Manhattan,East Village,40.72895,-73.98558,Entire home/apt,200,1,0,,,1,0 +343971,Beautiful Room in a Beautiful New NYC Apartment,10609846,Ben,Manhattan,Harlem,40.83177,-73.95,Private room,89,1,56,2018-07-16,0.64,1,365 +26450808,Sonder | Hanover Square | Elegant 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70362,-74.00804000000001,Entire home/apt,190,29,0,,,96,333 +19179608,Home away from home in Brooklyn!,73632360,Matthew,Brooklyn,Bedford-Stuyvesant,40.68776,-73.94936,Private room,50,1,0,,,1,0 +30175606,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 3",9864136,Anthony,Brooklyn,Bushwick,40.68513,-73.91385,Private room,50,30,0,,,26,365 +14215061,Cozy Room in Astoria,75480489,Ramazan,Queens,Ditmars Steinway,40.7708,-73.90035999999999,Private room,70,3,23,2019-01-02,0.66,1,365 +18923188,Spectacular pool 2 Bed 1 Bath Huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77895,-73.94974,Entire home/apt,200,31,3,2018-12-03,0.19,33,281 +12885249,Room in Bushwick Bk available June,65459567,Destiny,Brooklyn,Bushwick,40.68651,-73.91185,Private room,26,14,0,,,1,0 +13379511,Charming Brownstone in Clinton Hill,76037379,Josh+Emily,Brooklyn,Clinton Hill,40.68594,-73.96293,Entire home/apt,120,3,2,2016-11-28,0.05,1,0 +35355147,Charming 3BR Apt in Downtown Manhattan,264842412,Ysabel,Manhattan,Financial District,40.70757,-74.01386,Entire home/apt,321,3,4,2019-06-30,4.0,1,65 +12181549,Charming Two Bridges Hideout,808189,Ashley,Manhattan,Two Bridges,40.712790000000005,-73.99445,Entire home/apt,111,1,41,2019-06-23,1.17,1,4 +20689395,Calm Brownstone Charm in Clinton Hill,5402500,Johanna,Brooklyn,Clinton Hill,40.68541,-73.96188000000001,Entire home/apt,114,12,27,2019-05-07,1.19,1,13 +11981021,Prime Brand New 1 bed!5206,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74962,-73.97431,Entire home/apt,250,30,2,2019-01-09,0.17,96,337 +11902812,Spacious Bushwick BR; Yard! ~175ft to Subway,40883799,Amos,Brooklyn,Bushwick,40.70518,-73.92165,Private room,65,1,52,2019-06-29,1.7,3,179 +9259254,Large Apartment - East Village,12587611,Logan,Manhattan,East Village,40.72614,-73.98795,Entire home/apt,200,4,0,,,1,0 +15016999,Crown Heights 1-Bedroom Near Parks and Museum,94782931,Joe,Brooklyn,Crown Heights,40.666920000000005,-73.95205,Entire home/apt,105,1,7,2019-06-19,0.21,1,6 +19896613,Cozy & Quiet Private UES Room,73056979,Kesaun,Manhattan,Upper East Side,40.7822,-73.95101,Private room,55,1,7,2018-01-16,0.3,1,0 +27606720,Serene Bedroom & Boudoir in Design Loft,16356851,Sophia,Brooklyn,Greenpoint,40.734390000000005,-73.95839000000001,Private room,120,5,8,2019-06-13,0.79,2,179 +35337180,"3BR/1.5BA East Harlem - Families, Space , Quiet!",20179690,G,Manhattan,East Harlem,40.80211,-73.94365,Entire home/apt,350,1,1,2019-06-24,1.0,1,17 +9768492,BROOKLYN 2 BEDROOM,50368837,Jorge,Brooklyn,Crown Heights,40.67735,-73.94468,Entire home/apt,100,3,1,2018-01-02,0.05,2,0 +266155,One bed suite with private garden,1385157,Brian,Manhattan,Upper West Side,40.78304,-73.97447,Entire home/apt,167,30,16,2019-03-31,0.17,5,252 +24751420,Cozy and Spacious Studio in Columbus Circle,130965770,Joshua,Manhattan,Hell's Kitchen,40.76914,-73.98756999999999,Entire home/apt,180,1,43,2019-07-01,4.37,1,2 +33964014,The Zen Home,15853933,Radilena,Queens,Astoria,40.76623,-73.91243,Private room,69,1,9,2019-05-31,3.42,1,35 +1954495,East Village gem!,10102809,Jennifer,Manhattan,East Village,40.7281,-73.98671,Entire home/apt,100,3,2,2014-12-19,0.03,1,0 +35059840,Coote Luxe Suite - Modern and Comfortable APT,263969450,Damiso,Brooklyn,Canarsie,40.64127,-73.89119000000001,Entire home/apt,100,2,11,2019-07-05,7.5,1,167 +13249656,renovated one bedroom in our beautiful townhouse,1996771,Arturo,Brooklyn,Bedford-Stuyvesant,40.68063,-73.95015,Entire home/apt,140,3,122,2019-06-25,3.26,1,275 +24650569,Comfortable bedroom in PLG,4028002,Tracy,Brooklyn,Prospect-Lefferts Gardens,40.65867,-73.9522,Private room,109,1,0,,,1,95 +4384442,Bedroom in Crown Heights,7010789,Adriana,Brooklyn,Crown Heights,40.67054,-73.95668,Private room,45,2,1,2016-06-29,0.03,1,0 +19655186,Spacious Prewar South Bronx Apartment,138359603,Anamaria,Bronx,Concourse,40.82153,-73.92683000000001,Entire home/apt,140,2,2,2017-08-09,0.08,1,0 +15988494,QUEEN BEDROOM in sunny CENTRAL PARK apartment,103892907,Dali,Manhattan,Harlem,40.79935,-73.95399,Private room,103,1,2,2016-12-10,0.06,1,0 +11020169,Luxurious one bedroom apartment in a quiet area.,57165692,Charles,Bronx,Baychester,40.87223,-73.84335,Entire home/apt,95,3,206,2019-07-01,4.98,2,144 +4403159,Cute bedroom in Williamsburg,13061093,Priscillia,Brooklyn,Williamsburg,40.70953,-73.95994,Private room,45,1,1,2016-03-16,0.02,1,0 +19766791,Beautiful Private Room,38815234,Viviana,Manhattan,Harlem,40.82747,-73.94224,Private room,45,3,42,2019-06-03,1.78,2,252 +28286163,Sun-drenched 3BD apt in Harlem,15439251,Willy,Manhattan,Harlem,40.82302,-73.94259,Entire home/apt,220,3,12,2019-07-03,1.29,4,230 +21839960,"Safe, Comfortable and Convenient",39346203,Amy,Queens,Forest Hills,40.72573,-73.85292,Private room,45,2,8,2018-01-14,0.4,1,0 +13376196,Great Location - Whole apt - 1 bedroom,73734452,Evan,Manhattan,Upper East Side,40.762,-73.96045,Entire home/apt,97,5,3,2017-06-16,0.08,1,0 +20773211,"Quiet, Comfortable room near A Express Train",8833868,Susan,Manhattan,Washington Heights,40.85663,-73.93564,Private room,50,4,22,2019-07-02,1.46,1,42 +20616948,AMAZING AND QUITE 2 BEDROOM APARTMENT ON SOUTH ST.,76104209,Rated,Manhattan,Financial District,40.7074,-74.00151,Entire home/apt,205,30,1,2018-10-11,0.11,33,332 +13398406,"Big Room, Big Living Room, Rooftop Hot Tub",76244490,Kunal,Brooklyn,Williamsburg,40.71605,-73.9518,Shared room,35,15,0,,,1,0 +34714305,Sonder | 116 John | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70863,-74.00541,Entire home/apt,110,29,0,,,327,357 +30767017,Spacious Bedroom in the heart of Fort Greene 1L-3,230192510,Zach,Brooklyn,Fort Greene,40.69691,-73.97376,Private room,48,30,1,2019-02-14,0.21,25,220 +34284697,2 Bedroom Apt w private entrance & backyard,6302448,Hidemi,Brooklyn,Bedford-Stuyvesant,40.67882,-73.94941,Entire home/apt,120,2,0,,,1,40 +35541835,Lower East Side Gem - Perfect location,65346107,Jonathan,Manhattan,Lower East Side,40.72076,-73.9885,Entire home/apt,170,5,1,2019-06-14,1.0,1,4 +22969403,East Village Sunny 2 Bedroom Apartment in New York,52949531,Leah,Manhattan,East Village,40.72196,-73.98103,Entire home/apt,170,3,0,,,1,0 +17682843,"Astoria close to JFK,Laguardia airport, Manhattan",117195769,Simone,Queens,Astoria,40.76505,-73.90918,Private room,80,1,161,2019-07-02,5.74,3,365 +14332210,Duplex in Manhattan 15min to Times Square,3767367,Regina,Manhattan,Upper East Side,40.78255,-73.95123000000001,Private room,80,3,90,2019-06-27,2.53,3,323 +21217074,Harlem Hideaway Garden Apartment,145825873,Dennis,Manhattan,Harlem,40.80475,-73.9491,Entire home/apt,108,30,3,2019-01-19,0.23,4,213 +22281732,"Private Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.8112,-73.95966999999999,Private room,100,3,42,2019-06-16,2.43,6,0 +2310791,Old Brooklyn Charm,3689829,Lee,Brooklyn,Clinton Hill,40.68583,-73.96558,Entire home/apt,200,2,110,2019-06-24,1.73,1,51 +10102792,Great room*City View*Huge roofdeck*,8832880,Ashley,Brooklyn,Greenpoint,40.73321,-73.9561,Private room,55,2,0,,,1,0 +30478388,"Your home away from home, private cozy room",104814095,Hanine,Queens,East Elmhurst,40.75938,-73.88158,Private room,29,1,5,2019-07-01,0.86,3,35 +30565063,Private Bedroom on Newly Renovated Apartment,61560050,Bárbara,Brooklyn,Bushwick,40.70279,-73.91346999999999,Private room,55,2,2,2019-01-01,0.32,1,0 +25904988,Bedstuy spacious townhouse w. amazing backyard,175408,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68242,-73.92788,Entire home/apt,250,10,1,2018-07-21,0.08,1,0 +15736953,Serenity Near Time Square,83246395,Roshelle,Manhattan,Hell's Kitchen,40.75764,-73.98963,Private room,150,2,0,,,1,0 +30909031,Your 2 bedroom home in Brooklyn.,79355506,Eriola,Brooklyn,Fort Hamilton,40.62113,-74.03036999999999,Entire home/apt,98,5,1,2019-01-01,0.16,1,23 +31993541,Nice bright and quiet room near Prospect park,10174909,Marine,Brooklyn,Crown Heights,40.66415,-73.95169,Private room,50,7,0,,,1,0 +25205932,Weekend Astoria Charmer,52532097,Maegan,Queens,Long Island City,40.75533,-73.91936,Shared room,45,1,5,2018-06-24,0.37,1,0 +13174455,Brooklyn room in a New Bldg - 20mns from Manhattan,73643860,Aicha,Brooklyn,Bedford-Stuyvesant,40.68846,-73.92155,Private room,65,2,5,2019-06-23,2.24,1,48 +32695731,New York City - Double Room (A140),244746656,William,Manhattan,Midtown,40.75169,-73.97335,Entire home/apt,315,1,0,,,4,3 +29331258,Stunning 2bed Williamsburg (gym/roof) J/M/Z G & L,178826661,Orpaz,Brooklyn,Williamsburg,40.70635,-73.94655999999999,Entire home/apt,200,4,0,,,1,0 +25168678,Cozy Room Near Lincoln Center,22029264,Yangbing,Manhattan,Upper West Side,40.77419,-73.9872,Private room,86,2,1,2018-06-15,0.08,1,0 +4905248,*DYLAN* Exquisite 1 BR & Terrace - Contemporary,25237492,Juliana,Manhattan,Upper West Side,40.78141,-73.98445,Entire home/apt,130,30,12,2019-04-18,0.23,34,292 +6611774,Bright Bedroom in Park Slope,3183567,Ale,Brooklyn,Park Slope,40.6777,-73.98106,Private room,75,2,0,,,1,0 +7636280,Calm and Cute Entire Studio,40058595,Sloane,Manhattan,Upper East Side,40.77865,-73.94858,Entire home/apt,175,2,4,2016-05-29,0.08,1,0 +33767467,Beautiful & Tranquil Private Room in Williamsburg,9693094,Laksmi,Brooklyn,Williamsburg,40.70734,-73.96417,Private room,71,2,5,2019-07-02,2.88,1,182 +34035431,"Private Room by Emmons, beaches. B, Q trains.",177031514,Alena,Brooklyn,Sheepshead Bay,40.58438,-73.95564,Private room,60,1,4,2019-06-23,1.85,1,341 +34953750,Quiet apartment 501 Upper east side/Manhattan,71630660,Kosjenka,Manhattan,Upper East Side,40.77086,-73.95130999999999,Entire home/apt,150,3,0,,,1,273 +29705115,Charming Apt in Historic Greenpoint Brownstone,153503882,Katherine,Brooklyn,Greenpoint,40.72795,-73.95481,Entire home/apt,150,2,8,2019-03-18,1.03,1,0 +14967790,"Master Bedroom,lots of natural and light furnished",94263025,Derek,Brooklyn,Bushwick,40.68918,-73.91216999999999,Private room,60,1,11,2018-02-18,0.57,2,0 +14022980,HUGE Apt w/1 bedroom sublet in Brooklyn,7656555,Carly,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94816999999999,Private room,33,2,11,2018-09-01,0.31,1,0 +28270500,REGO PARK HOUSE NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73095,-73.85706,Entire home/apt,268,2,2,2019-05-20,0.76,3,5 +15598367,Cozy Private Room 1-2people,82854298,Tamicka,Queens,Cambria Heights,40.69857,-73.74225,Private room,47,1,63,2017-10-22,1.95,2,0 +17809303,Room With A View,1495021,Lida,Queens,Sunnyside,40.7381,-73.91893,Private room,64,31,0,,,2,95 +8191699,Studio near Central Park.,13184549,Mila,Manhattan,Upper East Side,40.77569,-73.95201999999999,Entire home/apt,140,7,3,2016-08-14,0.06,1,0 +10124343,Hip Trendy and Convenient!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69508,-73.94856,Private room,58,2,256,2019-06-16,5.96,4,38 +13082588,Modern and Clean Upper East Side Studio,17671924,Emily,Manhattan,Upper East Side,40.770790000000005,-73.95949,Entire home/apt,100,2,2,2016-07-17,0.05,1,0 +7602400,Stylish 1 BR in the heart of SoHo,2619307,Kameryn & Rob,Manhattan,SoHo,40.72634,-74.00101,Entire home/apt,180,3,6,2016-09-05,0.14,1,0 +34810928,Spacious Washington Heights Oasis with Laundry,7313602,Amy,Manhattan,Washington Heights,40.85374,-73.93198000000001,Entire home/apt,90,3,1,2019-06-03,0.83,1,12 +24284701,HEART WILLIAMSBURG - PRIVATE TERRRACE AND BATHROOM,101457588,Louis,Brooklyn,Williamsburg,40.70705,-73.94976,Private room,70,5,1,2018-06-03,0.07,1,0 +10226511,Charming Bedroom in Gramercy,52551507,Alisha,Manhattan,Gramercy,40.73728,-73.9842,Private room,99,1,0,,,1,0 +270315,Bed-stuy Royal Room,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68812,-73.93254,Private room,34,10,16,2019-03-27,0.19,3,216 +36212415,Beautiful studio in far rockaway,272365275,Abimbola,Queens,Bayswater,40.59947,-73.76468,Private room,55,1,0,,,1,170 +36351985,Duplex studio renovated new bathroom own entrance,36205885,Eddy,Queens,Ridgewood,40.70688,-73.90981,Entire home/apt,80,1,0,,,3,163 +21088999,"SOHO / GREENWICH VILLAGE +Prime location- 1 Bedroom",51538274,Zachary,Manhattan,Greenwich Village,40.72801,-74.00105,Entire home/apt,150,80,18,2019-04-15,0.87,1,182 +9936109,"Comfy apartment, close to train, beautiful street!",970003,Cyntia,Manhattan,Morningside Heights,40.81218,-73.96112,Entire home/apt,200,3,1,2016-06-13,0.03,1,0 +36145727,Park side Apt in front of Forest Park,271867677,Erwin,Queens,Woodhaven,40.69658,-73.85615,Private room,50,1,2,2019-07-06,2.0,1,359 +5550788,"Cozy 3 and 1/2 bedroom apt ,near Times Square",1982425,Nya,Manhattan,Hell's Kitchen,40.75702,-73.99458,Private room,95,7,2,2019-05-15,0.14,1,335 +20541640,Boho Chic Brooklyn Heights,11478902,Ben,Brooklyn,Brooklyn Heights,40.694390000000006,-73.99396,Entire home/apt,110,2,1,2017-08-30,0.04,1,0 +13389756,Spacious Light Palace in Heart of Williamsburg,6574489,Jilly,Brooklyn,Williamsburg,40.717690000000005,-73.95275,Private room,95,2,9,2017-03-16,0.24,1,0 +31100145,Super Big Deluxe Private Room near LGA (Room #03),155691570,Mili,Queens,East Elmhurst,40.76533,-73.87159,Private room,45,1,74,2019-06-23,11.38,5,89 +6687933,"Clean, Trendy, Private Room in LES",35000945,Jacqueline,Manhattan,Lower East Side,40.71748,-73.98364000000001,Private room,60,1,0,,,1,0 +3884893,Convenient Lovely Manhattan Private Bathroom,16715941,Ian,Manhattan,East Harlem,40.79887,-73.94178000000001,Private room,95,1,297,2019-07-03,5.03,2,127 +13979694,Cozy comfortable room near LGA&JFK#2,82367658,John,Queens,Richmond Hill,40.690540000000006,-73.82185,Private room,38,3,19,2019-06-17,0.55,5,278 +2153435,The best Williamsburg has to offer!,4630562,Edward,Brooklyn,Williamsburg,40.71587,-73.96351,Entire home/apt,320,2,172,2019-07-04,2.99,1,330 +26131004,Sunny Delight,196421197,Pedro Y Martha,Queens,East Elmhurst,40.75902,-73.87698,Private room,45,3,15,2019-07-01,1.18,1,365 +19532225,"Affordable Bedtsuy July Rental, ideal for student!",137156356,Esteban,Brooklyn,Bedford-Stuyvesant,40.68428,-73.94915999999999,Private room,49,7,0,,,1,0 +32919210,"Private room,1 min from Subway,20 min to Manhattan",245258532,Elena,Queens,Kew Gardens,40.713,-73.83100999999999,Private room,45,2,16,2019-07-05,4.1,2,6 +8126631,Cozy room harlem,16746108,April,Manhattan,Harlem,40.81993,-73.94704,Private room,45,2,0,,,1,0 +26602421,"Midtown apt, steps to Penn station (family, kids)",200007278,Rose,Manhattan,Chelsea,40.75274,-73.99647,Entire home/apt,255,3,4,2019-02-10,0.33,1,0 +13770179,Cozy Private masterRoom 2 Blocks from Central Park,80794677,Yi,Manhattan,Upper West Side,40.79938,-73.96235,Private room,48,1,4,2016-08-25,0.11,1,0 +30189129,"BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN, NY. 3",221836975,Jon,Queens,Jackson Heights,40.74848,-73.89149,Shared room,35,2,1,2018-12-30,0.16,3,310 +35467947,Harmonious Bright Bedroom,4107600,Valentina,Brooklyn,Bushwick,40.70385,-73.91694,Private room,55,2,0,,,3,314 +21926198,Experience NYC living on the Upper East Side,10020112,Naomi,Manhattan,Upper East Side,40.77625,-73.95495,Entire home/apt,250,3,2,2018-01-02,0.1,1,0 +7920394,SoHo- Spacious 1 Bed/Bath- Private Apartment,6272532,Dan,Manhattan,SoHo,40.72521,-74.00213000000001,Entire home/apt,145,5,8,2018-09-04,0.19,1,0 +31397084,LES Luxury Studio! with Private Outdoor Terrace!!,22412963,Anne,Manhattan,Lower East Side,40.71805,-73.98675,Entire home/apt,225,25,22,2019-06-30,3.63,3,268 +18813227,"★Comfy Bedroom in Convenient, awesome location!★",51380878,Jean Paul,Brooklyn,Flatbush,40.65068,-73.96073,Private room,31,1,83,2019-06-16,3.28,2,37 +28021392,Queens Jazz Home (JW),211212649,Kyle,Queens,St. Albans,40.69548,-73.77436,Private room,65,2,1,2018-12-31,0.16,1,0 +15450848,A Life in Brooklyn,25010766,Joseph,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93058,Entire home/apt,150,2,61,2017-09-02,1.83,1,0 +24006208,CLEAN & COZY PRIVATE ROOM SHARING APARTMENT QUEENS,53778891,Laura,Queens,Kew Gardens,40.71295,-73.82866999999999,Private room,50,2,20,2019-07-07,1.4,1,334 +30469789,Big bright apartment in hip neighborhood,21552055,Shelley,Brooklyn,Greenpoint,40.72594,-73.94852,Entire home/apt,150,1,4,2019-02-17,0.59,2,0 +8425148,*Amazing Lower East Side Apartment*,21940002,Zlatko,Manhattan,Lower East Side,40.71978,-73.98424,Entire home/apt,205,2,6,2017-01-01,0.13,1,0 +35067259,Comfort,264157833,Margo,Brooklyn,Bedford-Stuyvesant,40.68406,-73.93966999999999,Entire home/apt,300,2,0,,,1,87 +667375,Light & airy Chelsea NY 1bdrm apt,3376141,Nic,Manhattan,Chelsea,40.74272,-74.00309,Entire home/apt,200,3,17,2018-06-24,0.21,1,5 +10246816,Charming Park Slope One+ Bedroom,22663500,Carrie,Brooklyn,South Slope,40.66622,-73.98357,Private room,75,5,1,2018-06-24,0.08,1,0 +30763404,Entire studio East village Walk to All,230192818,Felicia,Manhattan,East Village,40.72138,-73.98084,Entire home/apt,90,1,22,2019-06-28,3.4,2,17 +29675374,Trendy and Spacious East Harlem 1BR Apt,223340140,Olivia,Manhattan,East Harlem,40.79793,-73.94334,Entire home/apt,109,1,3,2018-12-29,0.45,1,0 +23053827,Mi hermoso hogar a 4 bloques del AirPort LGA,171107511,Paola,Queens,East Elmhurst,40.76393,-73.86444,Private room,80,2,1,2018-10-07,0.11,1,219 +8819442,*PRIME* Linen & Lavender in the LES (Clinton St.),24628477,Jessy & Grant,Manhattan,Lower East Side,40.71963,-73.98499,Entire home/apt,261,4,196,2019-06-05,4.3,1,125 +9149435,Bright and Spacious Park Slope 1BR,46561509,John,Brooklyn,Park Slope,40.67286,-73.97133000000001,Entire home/apt,220,1,0,,,1,0 +25230902,East Village Studio Apartment,3720000,Stephanie,Manhattan,East Village,40.72765,-73.98669,Entire home/apt,200,2,20,2019-06-16,1.47,1,53 +1524017,CHELSEA BROWNSTONE 1BRM GARDEN APT ,8131878,Tabita,Manhattan,Chelsea,40.74461,-74.00171999999999,Entire home/apt,140,5,50,2019-06-13,0.91,1,328 +27163003,Bright Brooklyn Oasis 1 Block from Subway,103681571,Paige,Brooklyn,Bedford-Stuyvesant,40.69149,-73.96043,Private room,60,2,5,2019-05-22,0.48,1,2 +35287089,Upper East Side Luxury Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76918,-73.9667,Entire home/apt,225,14,0,,,3,340 +28385105,30 day min days-entire apt minutes to Manhattan!,49804236,JoAnn,Queens,Sunnyside,40.74707,-73.9235,Entire home/apt,80,30,3,2019-06-10,0.44,1,109 +35336938,Room in queens house for rent,264043510,Ken,Queens,Springfield Gardens,40.6626,-73.76349,Private room,90,1,1,2019-06-23,1.0,6,365 +9404709,Stylish apartment in Sunset Park Brooklyn,2743716,Spyridon,Brooklyn,Sunset Park,40.64577,-74.00532,Entire home/apt,90,7,6,2018-07-01,0.17,1,0 +33153247,Comfortable quiet single room in beautiful Astoria,104796372,Eric,Queens,Astoria,40.77151,-73.93066,Private room,65,1,2,2019-06-23,2.0,1,7 +8532128,Beautiful UES 1 Bedroom,44923714,Carolyn,Manhattan,Upper East Side,40.7818,-73.95121999999999,Entire home/apt,120,1,0,,,1,0 +25132635,"Modern, bright 1 BR Brooklyn apt - Great location!",2300343,Dafna,Brooklyn,Bedford-Stuyvesant,40.68686,-73.95425999999999,Entire home/apt,80,2,8,2019-02-28,0.73,1,0 +13378438,Private BR + Bathroom in brand new BK brownstone!,28283747,Allison,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94686,Private room,46,7,1,2016-07-31,0.03,1,0 +16394608,Cozy room in Beautiful Brooklyn!,37236633,Elís,Brooklyn,Bedford-Stuyvesant,40.68273,-73.93397,Private room,50,30,2,2016-12-31,0.07,1,0 +7498981,The little big room,24377694,Kori,Brooklyn,Crown Heights,40.67628,-73.95421999999999,Private room,55,1,1,2017-08-19,0.04,3,0 +12812544,High SkyView W&D GYM Doorman 5180,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77725,-73.95137,Entire home/apt,190,30,3,2017-10-04,0.08,96,330 +10926362,Charming Midtown West - Entire Apt,3576466,Kevin,Manhattan,Hell's Kitchen,40.76364,-73.9898,Entire home/apt,170,2,18,2019-05-13,0.45,2,63 +21740278,Cozy Williamsburg Apartment,25275076,Deliah,Brooklyn,Williamsburg,40.7153,-73.93906,Entire home/apt,92,3,0,,,1,0 +11377233,"Spacious, modern room in Bedstuy",42626435,Will,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9441,Private room,31,29,10,2017-05-28,0.25,1,0 +6084475,"Room in Lic, Queens brick townhouse",31534322,Nia,Queens,Long Island City,40.74637,-73.94615,Private room,60,2,83,2019-06-03,1.65,4,81 +32244701,Quiet 1bedroom apartment,241985900,V,Manhattan,Hell's Kitchen,40.7588,-73.9922,Entire home/apt,150,1,23,2019-06-23,4.66,1,106 +2459916,"$455 Cozy 1bd, BKLYN Sublet March",12577771,Victor,Brooklyn,Bedford-Stuyvesant,40.68948,-73.93528,Private room,18,1,0,,,1,0 +8650076,NYC luxury apt in W Style building,9094952,Marisa,Manhattan,Financial District,40.70428,-74.01066999999999,Entire home/apt,127,2,3,2016-04-27,0.07,1,0 +26012,Sunny 2-story Brooklyn townhouse w deck and garden,109589,Jessica,Brooklyn,Gowanus,40.68157,-73.98989,Entire home/apt,200,30,19,2017-03-17,0.2,1,208 +31316654,Luxury One Bedroom Apartment (Midtown Manhattan),230077977,Taisiya,Manhattan,Hell's Kitchen,40.76509,-73.99508,Entire home/apt,179,6,1,2019-01-23,0.18,1,3 +12897713,Chelsea Flat steps from Herald Sq,70638431,Michael,Manhattan,Chelsea,40.75041,-73.99489,Entire home/apt,300,1,2,2016-05-26,0.05,1,0 +6464881,Cozy Studio in Prospect Heights,18412434,Felami,Brooklyn,Prospect Heights,40.67485,-73.9632,Entire home/apt,85,7,52,2019-05-06,1.05,1,24 +10946644,3 bedrm beauty in Crown Heights,18495460,Frank,Brooklyn,Crown Heights,40.6735,-73.95486,Entire home/apt,162,30,26,2019-04-30,0.64,3,18 +9574936,Convenient Place in Midtown,49566321,Timur,Manhattan,Hell's Kitchen,40.76515,-73.9847,Shared room,100,2,18,2017-04-04,0.41,1,365 +2615065,Beautiful & Tranquil Oasis in a Great Location,524730,Oz,Brooklyn,Williamsburg,40.7165,-73.94842,Entire home/apt,100,30,99,2019-01-09,1.57,2,151 +22029995,"Beautiful, bright apartment in prime Williamsburg",6967723,Emily & Mathias,Brooklyn,Williamsburg,40.71603,-73.95749,Entire home/apt,209,7,1,2018-01-02,0.05,1,0 +34788798,The Secret Garden,41672509,Na'ama,Manhattan,Washington Heights,40.84433,-73.93948,Private room,60,1,13,2019-06-24,7.5,1,316 +9331671,Essential Lower East Side,48431029,Kevin,Manhattan,Lower East Side,40.72201,-73.98775,Entire home/apt,175,3,14,2019-06-17,1.86,1,51 +16630483,"SPACIOUS, trendy Flatiron Apt-Traveler's Delight!",107459717,Matt,Manhattan,Kips Bay,40.73945,-73.98273,Entire home/apt,144,2,2,2018-12-16,0.08,1,0 +30388333,Thoughtful UWS Studio w/ Gym near Central Park by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.79094,-73.97235,Entire home/apt,238,30,0,,,232,279 +13099377,1 Bedroom in Quiet Hamilton Heights Neighborhood.,43518492,Angela,Manhattan,Harlem,40.82828,-73.94264,Private room,130,3,3,2019-05-20,0.1,1,0 +6676250,Comfortable bed in a great room!,12720552,Julie,Brooklyn,Bushwick,40.70161,-73.92919,Shared room,50,1,9,2019-05-05,0.19,5,365 +29948786,2BR / 2BA - Sleeps 6!,8618782,Anthony,Manhattan,Harlem,40.8063,-73.9558,Entire home/apt,350,3,1,2019-01-01,0.16,1,5 +8291897,Cozy with Great location !!,43719073,Nora,Brooklyn,Sheepshead Bay,40.6,-73.95612,Shared room,45,1,126,2019-07-01,2.94,5,342 +11352664,Gated Manhattan Enclave,26024758,Sabia,Manhattan,East Harlem,40.81357,-73.93575,Entire home/apt,95,2,74,2019-06-02,1.85,1,92 +17531493,Cute Room in Upper West Side (FEMALES ONLY),78254013,Ana,Manhattan,Upper West Side,40.79917,-73.96765,Private room,75,1,19,2018-01-04,0.73,1,0 +15359119,"Spacious, Sunny, 1 Bdrm Apt w/ King Bed",17796102,Gabriella,Manhattan,Inwood,40.86107,-73.92959,Entire home/apt,90,26,4,2019-06-27,0.35,1,58 +6311978,LES Private Room in 3BR Apt,4309521,Sarah,Manhattan,Lower East Side,40.71959,-73.98984,Private room,60,1,1,2016-01-05,0.02,1,0 +30559544,Cozy Home,195024580,Mikael,Brooklyn,Williamsburg,40.72066,-73.95725999999999,Entire home/apt,150,7,2,2019-03-11,0.32,1,8 +14485372,Family Friendly 2 Bedrooms 1 Bath w. washer/dryer,89361094,Karen,Manhattan,East Harlem,40.78672,-73.94869,Entire home/apt,289,2,74,2019-06-10,2.09,1,243 +5354796,Spacious airy room perfect for two!,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85535,-73.91388,Private room,57,2,106,2019-06-20,2.02,4,82 +30556230,THE BEST LOCATION TO EXPERIENCE NYC! B/3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68736,-73.95777,Private room,59,15,5,2019-05-18,0.94,11,343 +22242334,Whole Apartment Near Prospect Park,41423658,Diane,Brooklyn,Prospect-Lefferts Gardens,40.65896,-73.96104,Entire home/apt,69,2,37,2019-06-11,2.0,1,3 +14760211,"Madison Ave Palace - Washer Dryer, Outdoor Deck",61391963,Corporate Housing,Manhattan,Upper East Side,40.78321,-73.95645999999999,Entire home/apt,200,30,4,2019-04-30,0.21,91,311 +35386935,"Gay friendly private room, 20 minutes to Manhattan",16950644,Bojan,Queens,Jackson Heights,40.75103,-73.8913,Private room,85,1,2,2019-07-07,2.0,1,42 +6402807,Stylish central 1 BR apartment,6354467,Robert,Manhattan,Chelsea,40.74476,-73.99861999999999,Entire home/apt,100,4,4,2017-01-03,0.09,1,0 +21667189,Plant Filled Artist Duplex in Trendy Bushwick,11056171,Sasha,Brooklyn,Bushwick,40.69812,-73.93151,Private room,48,4,6,2019-04-24,0.32,1,6 +27507457,THE GARDEN ROOM,6786361,Michael,Brooklyn,Bushwick,40.69633,-73.92699999999999,Private room,65,5,13,2019-06-14,1.2,2,310 +35842545,Cozy perfection in the middle of everything,2880794,Brandy,Brooklyn,Park Slope,40.67757,-73.98037,Entire home/apt,115,3,1,2019-07-02,1.0,1,29 +7555693,Clean White Room overlooking Bridge & River,39603420,Graham,Manhattan,Harlem,40.82652,-73.95304,Private room,75,1,151,2019-05-30,3.17,1,0 +16269344,"Fort Greene 2 bed, 2 bath in modern building",92321381,Terry,Brooklyn,Fort Greene,40.69117,-73.96968000000001,Entire home/apt,145,30,0,,,1,29 +29008272,ASTORIA ROOM very nice with Balcony N/W train,43194941,Marco,Queens,Astoria,40.76322,-73.91131999999999,Private room,80,1,7,2019-05-26,0.76,1,85 +35285031,Luxury and stylish 2-BR condo clsoe to LGA Airport,187264773,Mark,Queens,East Elmhurst,40.76011,-73.88833000000001,Entire home/apt,149,2,7,2019-07-01,5.83,1,341 +7728265,clinton Hill - bedsty,6623512,Nitzan,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95779,Private room,32,7,0,,,1,0 +24451302,Light-filled apartment in heart of Crown Heights,107802009,Luis,Brooklyn,Crown Heights,40.6752,-73.95231,Entire home/apt,155,3,6,2018-07-29,0.45,2,0 +3334850,Charming Quiet Apartment in NYC (安靜公寓),16838156,Mark,Manhattan,Kips Bay,40.73953,-73.98009,Entire home/apt,185,29,5,2018-07-03,0.08,1,2 +6438254,Charming Brooklyn 1BD+Den,33611370,Christopher,Brooklyn,Carroll Gardens,40.68303,-73.99686,Entire home/apt,125,14,2,2015-10-26,0.04,1,0 +15997880,"Bright, cozy studio in Astoria",103981529,Eva,Queens,Long Island City,40.76184,-73.92839000000001,Entire home/apt,76,3,9,2017-06-11,0.29,1,0 +8936266,Prime West Village haven,6764705,Kirk,Manhattan,West Village,40.7382,-74.00299,Entire home/apt,299,5,4,2016-07-05,0.09,1,0 +33107400,"Wonderful 3 people room near M,J, L,G trains",248161322,Sergii,Brooklyn,Bushwick,40.70028,-73.93952,Shared room,35,30,0,,,14,333 +35767582,Modern double bed in large duplex (in Gramercy),7761295,Macha,Manhattan,Gramercy,40.73808,-73.98325,Private room,85,2,0,,,1,12 +28954021,Crown Heights Nice,57403189,Joslin,Brooklyn,Crown Heights,40.67635,-73.94378,Entire home/apt,100,2,13,2019-06-30,3.2,2,20 +12733742,Cozy room in Manhattan Morningside,69243005,Jen,Manhattan,Harlem,40.82555,-73.95159,Private room,45,3,1,2016-06-14,0.03,2,0 +6570517,Comfy Room Close the Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.8179,-73.9539,Private room,75,2,52,2017-03-08,1.04,3,0 +35741117,Rare Spacious 2 Bedroom apartment with yard...,268852377,Wanderson,Brooklyn,Bedford-Stuyvesant,40.69819,-73.94719,Entire home/apt,160,2,1,2019-07-01,1.0,1,347 +21900721,Cozy room in a shared apt,159794474,Alex,Manhattan,Upper East Side,40.777,-73.95770999999999,Private room,76,1,0,,,1,0 +21922639,"Luxury Studio Apt in Williamsburg, 24 hr Doorman",9238069,Jamiel,Brooklyn,Greenpoint,40.71911,-73.95045,Entire home/apt,150,2,15,2019-06-02,0.76,1,1 +21175493,Trendy Park Slope Apartment,152883368,Amber,Brooklyn,Park Slope,40.6749,-73.97979000000001,Private room,130,1,14,2018-06-02,0.69,1,0 +3840324,Williamsburg + private patio garden,10366196,Matt,Brooklyn,Williamsburg,40.70859,-73.94639000000001,Entire home/apt,120,5,18,2019-02-26,0.32,1,188 +30429625,Guest Room with 2 beds in Bayridge Brooklyn,148049072,Ahmed,Brooklyn,Fort Hamilton,40.61964,-74.02518,Private room,90,2,1,2019-01-01,0.16,1,79 +29167257,Multicultural House II,203123161,Luis,Bronx,Concourse,40.82132,-73.92884000000001,Entire home/apt,100,3,24,2019-06-30,3.44,2,187 +25780953,Large one-bedroom in heart of West Village,2572082,Blair,Manhattan,West Village,40.73492,-74.00418,Entire home/apt,250,2,5,2019-06-24,0.57,1,48 +30295700,Cozy Room 20 min from Manhattan in brand new unit,23959538,Julian,Queens,Ridgewood,40.70268,-73.90824,Private room,36,1,0,,,1,0 +29740703,5minutes to Manhattan luxury apartment,223741555,Mengxiao,Queens,Long Island City,40.74813,-73.93852,Private room,69,5,4,2018-12-27,0.53,1,0 +25937108,Luxury 2 Bedroom Grand Central,168465501,Ian,Manhattan,Murray Hill,40.75058,-73.97746,Entire home/apt,200,30,0,,,4,364 +29337912,Chelsea Apartment,132866292,Ned,Manhattan,Chelsea,40.74165,-73.99968,Entire home/apt,225,2,47,2019-06-24,5.38,1,101 +36035142,"Large 1 Bedroom Apartment, Steps to Central Park!!",263336381,Tanya,Manhattan,Upper West Side,40.7836,-73.97511,Entire home/apt,135,30,0,,,1,44 +21304935,Spacious basement apartment,154184894,Mike,Queens,Cambria Heights,40.6939,-73.73104000000001,Private room,130,2,0,,,2,0 +16706521,Entire studio Apartment in New York City.,110686573,Roger,Manhattan,West Village,40.72999,-74.00475,Entire home/apt,110,5,9,2018-05-20,0.39,1,0 +9575567,20 Minutes to Manhattan,7252221,Zhenya,Brooklyn,Flatbush,40.65221,-73.96289,Private room,55,14,5,2019-06-30,0.24,2,21 +26777948,Comfortable Studio Apartment,120035273,Ral,Bronx,Edenwald,40.89245,-73.83721,Entire home/apt,42,1,32,2019-06-20,2.74,1,32 +10120414,The LES Apartment,33231070,Mert,Manhattan,Lower East Side,40.72063,-73.98944,Entire home/apt,150,3,0,,,1,0 +35485080,GOOD VYBZ BROOKLYN,237729032,Samuel,Brooklyn,East New York,40.67807,-73.8794,Private room,60,3,0,,,2,365 +4782243,Charming LES studio w/ BBQ patio,2715121,Miriam,Manhattan,Lower East Side,40.71801,-73.99078,Entire home/apt,180,1,5,2016-05-22,0.09,1,0 +32340585,Enjoy privacy & comfort in Washington Heights 1BR,17174170,Angela,Manhattan,Washington Heights,40.85197,-73.92853000000001,Entire home/apt,74,1,4,2019-03-24,0.95,1,0 +26742074,"Cozy clean bright room Bushwick, blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93247,Private room,80,20,9,2019-06-09,0.78,4,154 +13941308,"# CENTRAL PARK - 3 stops away (32""TV room)",82921914,G. Matthew,Manhattan,Harlem,40.81922,-73.95276,Private room,69,2,121,2019-06-30,3.44,3,65 +289037,"2BR in Cobble Hill, Brooklyn, NY",632334,Michael,Brooklyn,Carroll Gardens,40.68353,-73.9914,Entire home/apt,189,2,13,2016-09-05,0.18,1,0 +16530962,Studio Apartment UES - 12/31 - 1/14 Availablity,73643863,Lauren,Manhattan,Upper East Side,40.77675,-73.95206,Entire home/apt,95,3,0,,,1,0 +35939197,"Rooms in the new hipster area of Brooklyn, NYC 3",266998393,Hector,Brooklyn,Bushwick,40.69427,-73.91995,Private room,30,3,0,,,3,100 +2776119,Studio Apt Avail - Convenient to City & Hot Spots,14197781,Bruce,Brooklyn,Bedford-Stuyvesant,40.69707,-73.93914000000001,Entire home/apt,68,30,3,2016-12-13,0.09,1,0 +22057431,A Well-Appointed Home in a Historic BK Brownstone,60523852,Tariq,Brooklyn,Bedford-Stuyvesant,40.68522,-73.94511999999999,Entire home/apt,150,3,2,2018-01-01,0.11,1,0 +19010965,Amazing Bright Room With Separate Bathroom,27522582,Gabriele,Brooklyn,Bushwick,40.70075,-73.91644000000001,Private room,70,1,0,,,3,0 +27805071,Lovely 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75452,-73.96256,Entire home/apt,239,29,0,,,96,206 +540057,Stylish Uptown Westside Apt.,2653648,Kareem,Manhattan,Harlem,40.82445,-73.95243,Entire home/apt,185,1,102,2019-06-13,1.19,2,91 +34515538,Sunny Private Bedroom in Uptown Manhattan,141426597,Lester,Manhattan,Washington Heights,40.85762,-73.93175,Private room,115,3,3,2019-06-30,2.05,3,179 +2136293,Studio Apartment Near Express Subway to Manhattan,6599585,Mike,Queens,Richmond Hill,40.70171,-73.82788000000001,Entire home/apt,65,2,162,2019-06-26,2.45,1,302 +19227222,BRIGHT MASSIVE ROOM. 20 MINUTES TO MIDTOWN,133657043,Diana,Manhattan,Harlem,40.830090000000006,-73.94723,Private room,77,1,1,2019-06-02,0.81,1,0 +19501640,Sunny shared apartment in Harlem,45103075,Ian,Manhattan,Harlem,40.8188,-73.94505,Private room,38,3,0,,,1,0 +5803,"Lovely Room 1, Garden, Best Area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.66829,-73.98779,Private room,89,4,167,2019-06-24,1.34,3,314 +23917121,"Sunny, Spacious Bed Stuy Dream Apartment",179765779,Allegra,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93045,Entire home/apt,125,3,80,2019-07-07,5.41,1,269 +3930878,Clean One Bedroom Apartment,20364466,Michael,Manhattan,East Village,40.72509,-73.97898,Entire home/apt,117,3,7,2018-05-25,0.12,1,7 +4796255,"Pvt room in 2br/1bath, Crown Hghts",810311,Farai,Brooklyn,Crown Heights,40.66596,-73.9549,Private room,100,3,3,2018-10-08,0.08,1,89 +18240743,Private Room in Staten Island + Walk-In Closet. #1,72603148,Faye,Staten Island,Stapleton,40.63457,-74.07817,Private room,65,1,56,2019-07-07,2.09,3,351 +14011318,Artsy basement with bathroom and private entrance,7658111,JesAnn,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93115999999999,Private room,50,2,22,2018-10-14,0.63,1,8 +35613104,Queen Bed Artist Apt by Bushwick w/ Piano & Guitar,251969263,Eunice,Queens,Ridgewood,40.70022,-73.89596999999999,Private room,54,1,0,,,2,29 +16280020,East Harlem hideaway,14683530,Ivy,Manhattan,East Harlem,40.79507,-73.94248,Entire home/apt,200,5,8,2018-12-31,0.26,1,19 +3946239,Clinton Hill Apartment 2 BR,20449694,Luis,Brooklyn,Clinton Hill,40.68646,-73.95975,Entire home/apt,150,2,11,2018-06-08,0.42,1,0 +24162261,Spacious 1st floor apartment.,83377687,Fernando,Queens,Jackson Heights,40.75436,-73.85696,Entire home/apt,135,2,46,2019-06-25,3.08,2,141 +729841,Gorgeous Apt Heart of West Villlage,73549,Melinda,Manhattan,West Village,40.73616,-74.00399999999999,Entire home/apt,200,2,23,2018-12-07,0.32,1,0 +828553,Location AND Space in the city!!,3882661,Ms,Manhattan,Gramercy,40.7349,-73.98549,Entire home/apt,130,3,26,2019-06-23,0.41,2,23 +4821605,1 BR in Spacious 4 BR duplex,24828814,Aaron,Brooklyn,Bushwick,40.70295,-73.91354,Private room,38,1,1,2016-04-02,0.03,1,0 +21433001,Colorful & cozy studio in Brooklyn,11908891,Alenka,Brooklyn,Flatbush,40.64016,-73.96784,Entire home/apt,97,3,2,2017-11-18,0.1,1,0 +20405148,"Clean, Near Central Park and Subway",39469667,Anton,Manhattan,Midtown,40.7577,-73.9662,Private room,105,1,142,2019-06-23,6.6,1,38 +15057686,"Home 4 Medical Professionals - The ""Parasthesia""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68785,-73.95045999999999,Private room,54,30,0,,,43,285 +23582823,Cozy and charming 01 bedroom studio,4436365,Marcelo,Queens,Woodside,40.75524,-73.90768,Entire home/apt,120,3,2,2019-06-04,1.5,1,180 +34954639,"Private Bedroom Stylish, Cozy Apartment- Gramercy",263383528,Irina,Manhattan,Gramercy,40.73712,-73.98844,Private room,245,1,2,2019-07-02,2.0,1,179 +30651057,Amazing two bedroom with the terrace/73A.,48146336,Irina,Manhattan,Hell's Kitchen,40.76157,-73.99358000000001,Entire home/apt,190,30,1,2019-02-11,0.2,20,331 +6768399,3)Cozy Sunny Warm Room 阳光温馨单房 停车容易,30616879,Anna,Queens,Flushing,40.75443,-73.80787,Private room,48,2,53,2019-04-07,1.07,3,153 +5605822,Sunny 2 bedroom Apt in Brownstone,517966,Shean,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93885999999999,Entire home/apt,135,3,148,2019-06-21,2.86,2,134 +24017674,Private room in cozy prime Bushwick apartment,14856361,Elena,Brooklyn,Bushwick,40.70063,-73.92981,Private room,65,1,59,2019-06-30,4.13,1,43 +20187779,Beautiful bright room Near JFK & J Train#2,107272884,Lynn L,Queens,Richmond Hill,40.69584,-73.84727,Private room,40,1,59,2019-06-08,2.52,4,354 +25982839,Luxury gallery apartment in beautiful Greenpoint,121392618,Michal,Brooklyn,Williamsburg,40.71882,-73.94159,Entire home/apt,190,1,95,2019-05-26,7.38,1,0 +840794,Big one bedroom located in Brooklyn,4390881,Todd,Brooklyn,Prospect Heights,40.6763,-73.96528,Entire home/apt,85,14,13,2019-01-26,0.17,1,22 +26361403,HIDDEN GEM near JFK w. PRIVATE ENTRANCE x PARKING.,174197082,Deborah,Queens,Rosedale,40.65695,-73.73617,Entire home/apt,80,1,106,2019-06-29,8.69,2,300 +4349695,Rustic Chic Private Living Room,22578720,Derek,Brooklyn,Flatbush,40.64507,-73.95933000000001,Private room,69,1,33,2017-10-30,0.59,1,0 +29975548,NICE APARTMENT-TIME-SQUARE/CENTRAL PARK,186812508,Endy,Manhattan,Midtown,40.76651,-73.98289,Entire home/apt,201,2,33,2019-06-12,4.21,1,227 +27045165,Washington Heights Paradise,138635224,Josh,Manhattan,Washington Heights,40.85671,-73.93011,Shared room,40,1,19,2019-04-05,1.82,2,341 +28658731,Gorgeous Bedroom in the heart of Bushwick Him-2L-1,216235179,Nina,Brooklyn,Bushwick,40.69952,-73.91868000000001,Private room,55,30,1,2019-05-04,0.45,17,342 +7979200,1 Bed Apt in ClintonHill Brownstone,12739246,Pete,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95669000000001,Entire home/apt,95,5,11,2016-09-03,0.23,1,0 +33849375,Beautiful Park Slope summer 1-bedroom sublet,10873558,Michelle,Brooklyn,Park Slope,40.67093,-73.97555,Entire home/apt,101,60,0,,,2,32 +7383380,Large loft in Bushwick,4907734,Paul,Brooklyn,Williamsburg,40.70068,-73.94103,Private room,45,3,14,2018-08-29,0.35,1,0 +7914369,Charming 1 Bedroom Garden Apt!,2010157,Alex,Brooklyn,Bedford-Stuyvesant,40.68372,-73.91994,Entire home/apt,120,2,92,2019-07-03,2.02,1,54 +4902143,"Large One Bedroom Apartment, 15 mins to Manhattan",557918,Bill & Regina,Queens,Sunnyside,40.74628,-73.9196,Entire home/apt,119,6,15,2019-03-09,0.46,1,1 +11419133,Private sunny room in Chelsea,6034691,Eleena,Manhattan,Chelsea,40.74448,-73.99221,Private room,80,40,2,2016-12-20,0.05,1,0 +15483662,"Spacious Room for 2 in Sunnyside, near Manhattan",75458625,Lidia,Queens,Sunnyside,40.74795,-73.91744,Private room,108,3,6,2019-05-28,0.36,4,29 +36351128,"One bedroom without roomies, close to everything",273361532,David & Amy,Manhattan,Upper West Side,40.80281,-73.9655,Entire home/apt,110,3,2,2019-07-05,2.0,1,15 +36282009,Private Room in a beautiful 2 BR apartment,213428885,Anas,Manhattan,Harlem,40.80707,-73.95241999999999,Private room,40,20,0,,,1,273 +35030460,BEAUTIFUL ROOM WITH GARDEN VIEW!,10975951,Ayla Silvia,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94499,Private room,60,2,2,2019-06-23,1.67,1,1 +27201540,Brooklyn / Bed Stuy :: Brownstone garden-floor apt,257904,David,Brooklyn,Bedford-Stuyvesant,40.68518,-73.93517,Entire home/apt,150,5,5,2018-11-15,0.48,1,0 +349841,Williamsburg Loft: Amazing Sublet,202507,Nom,Brooklyn,Williamsburg,40.71682,-73.96369,Private room,160,5,0,,,1,0 +8435067,"Bright, Light & Sunny Room",18830662,Jack,Manhattan,Chinatown,40.71707,-73.99065999999999,Private room,99,3,1,2015-10-12,0.02,2,0 +24961004,brand new studio in the East Village with roofdeck,1562990,Natalie,Manhattan,East Village,40.72249,-73.982,Entire home/apt,175,7,4,2019-01-03,0.38,1,0 +25415951,Large Manhattan Artist Flat,798380,Chris,Manhattan,Inwood,40.86029,-73.92984,Entire home/apt,120,7,1,2018-08-10,0.09,1,172 +15095589,"Comfortable Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.65651,-74.0029,Private room,60,2,34,2019-06-13,1.0,2,181 +26843473,"Brooklyn Charming Apt, Bed Stuy/sleeps 3",33214549,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94977,Entire home/apt,129,1,0,,,5,0 +36388492,"✨Premier King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.755590000000005,-73.94106,Private room,101,1,0,,,3,361 +28422482,Chateau Greenpoint Dog Lovers,11728318,John,Brooklyn,Greenpoint,40.72624,-73.94285,Private room,40,2,24,2019-06-30,2.69,1,95 +30708281,"Garden, Exotic Lounge Apartment",2838058,Annette,Manhattan,Harlem,40.81216,-73.94411,Entire home/apt,165,5,0,,,2,163 +33216329,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76453,-73.98035,Private room,250,1,0,,,8,0 +32575481,Private room in 2 bedroom apartment,81534306,Nourdine,Manhattan,Washington Heights,40.8524,-73.94214000000001,Private room,70,1,0,,,2,0 +29016907,Queens home in quiet neighborhood Room 2,155152907,Maria,Queens,St. Albans,40.70459,-73.76271,Private room,45,2,15,2019-06-30,1.67,2,262 +34650966,PARK VIEW ROOM W DOUBLE CLOSET,1190978,Linden & Bah,Manhattan,Harlem,40.82414,-73.95393,Private room,40,30,0,,,2,322 +15902775,"Modern, Spacious & Pristine Room in Gramercy",103158392,Arthur,Manhattan,Kips Bay,40.73726,-73.97932,Private room,115,3,61,2019-06-25,1.94,1,137 +8503064,Minimalistic en suite in Bushwick,17028800,Gina,Brooklyn,Bushwick,40.69856,-73.93087,Private room,90,1,1,2015-10-02,0.02,1,0 +21707614,Spacious Williamsburg Artist's Duplex,145021,Guy,Brooklyn,Williamsburg,40.71509,-73.96342,Entire home/apt,150,2,6,2019-07-01,0.42,1,13 +100186,Large Brand New Park Slope 1BR,526805,Mi,Brooklyn,Gowanus,40.66918,-73.99186999999999,Entire home/apt,130,7,98,2019-06-28,0.99,1,35 +23918586,"Clean Private Room, 10 min from 2 subway lines.",22710535,Ben,Brooklyn,Bedford-Stuyvesant,40.68659,-73.92949,Private room,150,1,1,2018-03-25,0.06,1,0 +28515078,Minimalist Oasis/ Condo,124155350,Anna,Manhattan,Harlem,40.82778,-73.94995,Entire home/apt,150,2,7,2019-01-02,0.76,1,0 +756928,Your OWN Private Garden Apartment,1358245,Tania,Brooklyn,Clinton Hill,40.68785,-73.96708000000001,Entire home/apt,100,2,27,2018-09-15,0.33,1,159 +1016819,2BR 2Bath duplex w garden & terrace,5596242,Sabrina And Eduardo,Brooklyn,Clinton Hill,40.68771,-73.96186,Entire home/apt,235,6,5,2018-07-03,0.07,1,3 +35656431,Private big bedroom w/ access to kitchen- Flushing,128681436,Angel,Queens,Flushing,40.75938,-73.80124,Private room,40,1,1,2019-07-01,1.0,1,66 +6950807,Spacious 1bdrm in Long Island City,36441990,Samir,Queens,Astoria,40.75671,-73.91749,Entire home/apt,105,1,5,2016-08-13,0.1,1,0 +32526864,"Private room for a single, couple or small family",88367005,Karla,Brooklyn,Bushwick,40.68949,-73.90588000000001,Private room,36,1,1,2019-03-08,0.24,1,0 +21817150,Spacious & Airy Loft Apartment in Williamsburg,35567813,Hilary,Brooklyn,Williamsburg,40.71576,-73.94088,Entire home/apt,175,2,0,,,1,35 +22238046,Bronx 167th Grand ConCourse,162457374,Daniel,Bronx,Concourse Village,40.83314,-73.91708,Private room,38,2,0,,,1,0 +9240067,Cozy studio on the Upper East Side!,20761853,Elena,Manhattan,Upper East Side,40.78167,-73.95004,Entire home/apt,170,1,137,2019-06-23,3.06,2,289 +20896281,Sun-filled Park Slope Gem - Location!,10262386,Dylan,Brooklyn,Park Slope,40.67963,-73.97849000000001,Entire home/apt,225,3,12,2019-07-08,0.55,1,47 +35707070,Nice Room with Water Views,22071068,Max,Brooklyn,Williamsburg,40.70929,-73.96889,Private room,115,1,0,,,1,90 +31803169,Beautiful & Spacious APT / Large Living Room Area,80093359,Isabella,Brooklyn,Bushwick,40.6856,-73.91413,Entire home/apt,79,2,4,2019-06-11,0.86,2,0 +3198365,Cozy Studio Close to Central Park,16209547,Gina,Manhattan,Harlem,40.80185,-73.95666999999999,Entire home/apt,175,2,142,2019-06-29,2.39,2,339 +30155455,Manhattan apt in the best part of NYC,53887230,Danielle,Manhattan,Washington Heights,40.85042,-73.93649,Entire home/apt,120,5,1,2019-01-05,0.16,1,231 +22451363,Perfect block in NYC,164509613,Eduardo,Manhattan,Morningside Heights,40.80414,-73.96498000000001,Entire home/apt,145,1,23,2019-07-05,1.37,1,3 +35191797,High End Upper East Stunner,61391963,Corporate Housing,Manhattan,Upper East Side,40.77957,-73.95475,Entire home/apt,142,30,0,,,91,245 +31495625,Sunny one-bedroom in Prospect Heights,17726859,Liz,Brooklyn,Prospect Heights,40.681,-73.96826999999999,Private room,150,1,1,2019-01-19,0.18,1,0 +7843851,Private room in artsy Brooklyn home,41332081,Stephanie,Brooklyn,Crown Heights,40.67689,-73.94884,Private room,85,3,8,2015-11-18,0.17,1,179 +12953106,DUMBO/Vinegar Hill Luxury Apartment,41134220,Mohamed,Brooklyn,Vinegar Hill,40.70196,-73.98297,Entire home/apt,170,30,0,,,1,270 +29514964,Beautiful Queen Bed Room - Entire Apt!,2670024,Renata,Brooklyn,Sunset Park,40.66266,-73.99064,Entire home/apt,120,7,1,2019-01-02,0.16,1,128 +30937961,Cozy room in a great food-filled neighborhood,222654299,Irma,Queens,Elmhurst,40.74096,-73.87937,Private room,35,3,4,2019-06-16,0.76,1,310 +17495518,Upper East Side Apartment,118554120,Ken,Manhattan,Upper East Side,40.78073,-73.95013,Entire home/apt,122,7,7,2017-12-29,0.27,1,0 +34071098,3BR Times Square! Great Location! W/D!,253789998,Kim,Manhattan,Hell's Kitchen,40.76303,-73.98894,Entire home/apt,149,30,2,2019-05-23,0.9,1,148 +18841864,Sunny apartment in Clinton Hill,2294171,Ro,Brooklyn,Clinton Hill,40.68318,-73.96067,Entire home/apt,120,2,1,2017-05-29,0.04,1,0 +9547361,Charming 1BR in Upper Eastside,45595980,Tny,Manhattan,Upper East Side,40.76719,-73.96565,Entire home/apt,130,30,11,2019-04-29,0.3,12,28 +34338645,MASSIVE zen garden Master BR in Chelsea,233270180,Sam,Manhattan,Chelsea,40.74386,-73.99344,Private room,85,30,1,2019-05-07,0.48,1,69 +11356941,Sleek Modern Loft w/ Balcony,7194539,Chris,Brooklyn,Williamsburg,40.717,-73.9565,Entire home/apt,349,2,42,2019-06-30,1.07,1,337 +14969217,Gorgeous brand new apartment in Bushwick,2260600,Lidia,Brooklyn,Bushwick,40.69096,-73.91055,Entire home/apt,105,5,26,2019-05-20,0.77,1,269 +34949120,Modern house (2 BR Apt) • 30 Mins from Time Square,259013161,Jisoo,Queens,Woodside,40.74302,-73.90287,Entire home/apt,150,1,3,2019-06-15,1.91,2,155 +23780896,Delnewyorkroom,45845050,Delcio,Queens,Jackson Heights,40.75204,-73.88902,Private room,70,5,3,2018-04-20,0.19,1,189 +9551417,"Modern 2BR Apt by Central Park, & Subway",49349133,Onur,Manhattan,East Harlem,40.79665,-73.94824,Entire home/apt,225,2,31,2019-06-09,0.7,1,160 +1325759,Gorgeous Apt in Prime Williamsburg,7195403,Emily,Brooklyn,Williamsburg,40.71058,-73.96243,Entire home/apt,147,3,14,2019-03-11,0.2,2,0 +24606641,Classy Antique Private Bedroom 20-minutes to Ferry,99202586,Thelma,Staten Island,Randall Manor,40.62947,-74.12991,Private room,79,2,4,2019-07-01,0.3,5,355 +23023728,"Cozy, Full 1 Bedroom Apartment Near Central Park",12417778,Turner,Manhattan,Upper East Side,40.77395,-73.95493,Entire home/apt,100,3,16,2019-06-26,0.95,1,20 +21160958,Huge private bedroom one block from the train!,2385790,G,Brooklyn,Bedford-Stuyvesant,40.69592,-73.93793000000001,Private room,80,1,5,2017-11-17,0.24,2,0 +829083,"Steps From Art, Shopping & Eats",4345735,Jennifer,Brooklyn,Prospect Heights,40.67378,-73.96471,Entire home/apt,150,3,11,2014-12-26,0.14,1,0 +4991895,"Bright & spacious room, 2 minutes to subway!",10635169,Jin,Brooklyn,Crown Heights,40.67067,-73.95693,Private room,70,1,49,2019-07-02,4.45,1,47 +28912768,Cozy BK Apt -Roof & Balcony- 5 star host reviews!,10448306,Kelly,Brooklyn,Williamsburg,40.718140000000005,-73.95517,Entire home/apt,180,2,4,2019-02-23,0.43,1,0 +12342876,Cozy&Spacious in Beautiful Astoria,8389062,Eliza,Queens,Astoria,40.76202,-73.91467,Entire home/apt,120,1,1,2016-06-12,0.03,1,0 +26867963,Midtown Apartment- very convenient location!,3710483,Jennifer,Manhattan,Hell's Kitchen,40.75566,-73.99916999999999,Entire home/apt,200,2,3,2018-08-31,0.26,1,0 +19785259,Lower East Side - Bare Bones,53821069,Daniel,Manhattan,Lower East Side,40.72276,-73.9886,Entire home/apt,94,1,8,2017-07-28,0.33,1,0 +20927619,PRIVATE CLEAN ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77156,-73.90521,Private room,60,1,48,2019-01-03,2.27,8,128 +36354796,"✨Superb King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75716,-73.94221999999999,Private room,101,1,0,,,3,365 +629315,1BD brownstone apt in Fort Greene!,2397437,Lauren,Brooklyn,Fort Greene,40.68935,-73.9695,Entire home/apt,120,3,22,2015-10-28,0.27,1,189 +17780857,"SUPER HIGH END condo, roof deck, Ditmas Park Bklyn",121429669,Elizanda,Brooklyn,Kensington,40.63052,-73.97161,Private room,250,2,0,,,1,365 +16162933,Bronx Bed and Breakfast,101289150,David & Elaine,Bronx,Castle Hill,40.82286,-73.84765,Entire home/apt,86,2,86,2019-06-10,2.76,1,171 +35644795,Bed in a shared dormitory next to Brooklyn bridge,11182145,Kateryna,Brooklyn,Fort Greene,40.69334,-73.98179,Shared room,50,1,0,,,1,347 +5302719,Spacious & Bright Apt in Park Slope,9846230,Celine,Brooklyn,Park Slope,40.6774,-73.98246999999999,Entire home/apt,145,5,0,,,1,0 +7142734,1 Bedroom w/Jacuzzi in Private Home,37405985,Jenny,Queens,Forest Hills,40.71818,-73.84944,Private room,109,1,86,2019-06-30,1.78,1,344 +23712143,2e chambre pour 1 personne où couple,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82434,-73.91377,Private room,40,2,80,2019-07-04,5.01,2,291 +33044381,^^Dynamic Private Budget Room. 20 min to City,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95155,Private room,65,2,7,2019-06-24,2.02,7,272 +22361004,Manhattan NY Luxurious Hotel,160792280,Dez,Manhattan,Midtown,40.76595,-73.98169,Entire home/apt,190,1,0,,,2,0 +12972533,Gorgeous Grand 2 BR LES Gem!,71382423,Jules,Manhattan,Lower East Side,40.71772,-73.98881999999999,Entire home/apt,329,3,104,2019-06-23,2.79,1,205 +31263586,Sunny room in prime williamsburg location!!!!!!!,107589614,Jim,Brooklyn,Williamsburg,40.7131,-73.96004,Private room,70,3,0,,,2,188 +9349010,Smart & Chic Studio Prime Location,3716641,Ofer,Manhattan,Upper West Side,40.79273,-73.97216,Entire home/apt,104,30,5,2017-02-26,0.13,8,156 +12052609,Cozy private 1.5BR Garden Apartment w/ backyard,44332076,Amber,Manhattan,Washington Heights,40.84915,-73.93316999999999,Entire home/apt,170,5,24,2019-04-24,1.39,1,121 +35691113,Brand NEW 2br/2bath in Lower Manhattan,268491219,Stas,Manhattan,Two Bridges,40.71143,-73.99557,Entire home/apt,285,2,0,,,1,338 +23826739,Lovely Room!,34404232,Holly,Queens,Astoria,40.76143,-73.92121999999999,Private room,60,1,24,2018-08-19,1.5,1,0 +1767037,Small Cozy Room Wifi & AC near JFK,9284163,Antonio,Queens,Woodhaven,40.68968,-73.85219000000001,Private room,29,2,386,2019-06-19,5.53,3,50 +24757844,Sunlit Room with Kitchen near Manhattan and LGA,39074591,Shoshana,Queens,Woodside,40.74699,-73.90844,Private room,46,1,2,2019-06-19,0.15,1,0 +10016353,Cozy Orchard St. Bedroom in the Lower East Side,16664377,D,Manhattan,Lower East Side,40.71835,-73.99138,Private room,65,1,178,2019-07-04,4.16,3,79 +9370538,Charming 1 bedroom apt ...,6452596,Juliana,Manhattan,Chinatown,40.71544,-73.99051999999999,Entire home/apt,250,2,1,2015-11-28,0.02,1,0 +747029,Private rooms in heart of Chelsea,3920522,Erik,Manhattan,Chelsea,40.74314,-74.00119000000001,Private room,155,5,18,2019-06-05,0.24,1,90 +10099517,Master room in a luxury apartment,16869971,Han,Manhattan,Roosevelt Island,40.76947,-73.94303000000001,Private room,80,1,1,2016-01-05,0.02,2,0 +978386,"A GEM Garden Apt on Broadway & 42ST QUEENS, NY",5354308,Yiota,Queens,Astoria,40.75751,-73.91678,Entire home/apt,85,2,260,2019-07-03,3.44,1,254 +11798782,Private Bedroom & Bath- Brooklyn,26865924,Donminique,Brooklyn,Crown Heights,40.67228,-73.93569000000001,Private room,65,1,1,2016-06-13,0.03,1,0 +26319688,Beautiful Private Room in Brooklyn,69977115,Jacob,Brooklyn,Bensonhurst,40.615590000000005,-73.99027,Private room,79,2,0,,,4,89 +8864262,Greenwich Village Stylish Studio,46401172,Anne Marie,Manhattan,West Village,40.73458,-74.00808,Entire home/apt,225,1,83,2019-06-17,1.9,1,344 +34421663,2 Bedroom the NYs Most Poppin Neighborhood,259816232,Rachel,Manhattan,Lower East Side,40.71911,-73.98414,Entire home/apt,250,1,0,,,2,179 +4280118,"Lovely, light-filled Bushwick flat",1990602,Jessica,Brooklyn,Bushwick,40.70741,-73.92239000000001,Private room,60,3,2,2016-06-22,0.04,1,0 +10039250,"JFK,LGA,Manhattan,TimeSq,privateBathroom,Queens",36577517,Nan,Queens,Elmhurst,40.74556,-73.88118,Private room,49,2,1,2016-03-11,0.02,2,83 +15221767,Charming pre-war near Central Park,22862376,Maimouna,Manhattan,Harlem,40.79992,-73.95501999999999,Entire home/apt,70,30,14,2019-05-31,0.76,1,50 +31438319,Apartamento con cuarto privado en Manhattan,85108863,Manuel,Manhattan,Washington Heights,40.85065,-73.93188,Private room,45,2,12,2019-06-05,2.32,1,78 +35938640,The Moses Suite 2,270314994,Nicole/Jason,Brooklyn,Canarsie,40.64078,-73.90575,Entire home/apt,110,2,1,2019-07-01,1.0,1,360 +16136287,Bedroom in Large Artist Loft in Brooklyn,15863391,Cyril,Brooklyn,Clinton Hill,40.68987,-73.96095,Private room,49,5,16,2019-01-10,0.53,1,0 +19415114,Entire Apt (1 Bdr) in the Upper East Side 85 St,59906749,Heidi,Manhattan,Upper East Side,40.7794,-73.95427,Entire home/apt,119,3,6,2018-08-28,0.25,1,0 +1524302,Huge 1 Bedroom Loft at Habitat 101!,7503643,Vida,Brooklyn,Greenpoint,40.72686,-73.94176999999999,Entire home/apt,149,30,7,2018-10-31,0.11,52,281 +31415232,Luxury 2 Bedroom 2 Bath Brownstone in NYC,188741104,Susan,Manhattan,Harlem,40.81027,-73.94306,Entire home/apt,175,31,3,2019-04-05,0.63,4,274 +9132807,Modernly Furnished Studio Apt in Midtown NYC,30283594,Kara,Manhattan,Midtown,40.75242,-73.97187,Entire home/apt,139,30,0,,,121,360 +10082057,"Victorian Home, Welcoming Comfort",51734800,Laura,Brooklyn,Flatbush,40.63066,-73.96495999999999,Private room,115,2,5,2018-03-31,0.13,2,358 +29738207,Charming Room 1 with 2 Beds Close to Metro,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.6847,-73.95532,Private room,70,2,23,2019-06-23,2.95,3,293 +5372526,Great share - central location downtown,1223259,Jeff,Manhattan,Lower East Side,40.71952,-73.99313000000001,Private room,71,10,56,2019-05-14,1.08,1,131 +30069091,"Work Friendly, Private Bathroom and Kitchen",225963659,Alexander,Brooklyn,Bushwick,40.69538,-73.92501,Private room,59,20,0,,,1,0 +8106774,BRIGHT HARLEM FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81525,-73.94552,Entire home/apt,165,7,86,2019-06-28,1.84,3,99 +35644555,Amazing Luxury on Striver’s Row,268149303,Tarvatta,Manhattan,Harlem,40.81858,-73.94524,Private room,125,2,0,,,1,125 +7033271,Amazing room in uptown Manhattan,27439022,Boris,Manhattan,Washington Heights,40.85008,-73.94277,Private room,85,2,95,2019-07-06,1.96,1,321 +34401334,Beautiful Room in BK!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68022,-73.91423,Private room,40,2,4,2019-06-12,1.82,10,350 +21767656,AMAZINGLY LOCATED DECORATED ONE BEDROOM CONDO,14321520,Edward,Manhattan,Hell's Kitchen,40.76521,-73.98507,Entire home/apt,275,4,0,,,1,0 +12283602,"Greenpoint Haven, 12min walk from 7",12603183,Paulina,Brooklyn,Greenpoint,40.73675,-73.95382,Entire home/apt,150,3,0,,,1,0 +533168,Spacious Nolita 2 Bd w/roof garden,2620162,Olivia,Manhattan,Nolita,40.72184,-73.9944,Entire home/apt,300,30,92,2019-06-08,1.09,1,106 +19436634,Artist Hostel III in Bedstuy Brooklyn,132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69625,-73.94856999999999,Shared room,37,2,1,2017-08-19,0.04,3,138 +35166290,"OCEAN Room only for “1 lady” +Solo Travelers !!!!!",264823783,Wada,Manhattan,Harlem,40.819790000000005,-73.95297,Private room,55,7,3,2019-06-20,2.81,2,182 +27455707,Spacious Apartment in Astoria,243321,Richard,Queens,Long Island City,40.76398,-73.92969000000001,Entire home/apt,150,3,0,,,1,0 +299078,Charming 1BD in SoHo,787261,L,Manhattan,SoHo,40.72509,-74.00304,Entire home/apt,250,5,152,2019-06-23,1.69,1,109 +14314240,"Entire 2 bedroom apt ,Prime Williamsburg",11052217,Fabio,Brooklyn,Williamsburg,40.71358,-73.95429,Entire home/apt,180,4,94,2019-06-26,2.72,1,326 +8442997,"1,000 Square Foot Apt - in MANHATTAN!",18418581,Pooja,Manhattan,Washington Heights,40.85432,-73.93198000000001,Entire home/apt,235,1,28,2019-03-10,0.64,3,364 +786843,PRIVATE ROOFTOP +BEST LOCATION+COZY,3117671,Mariana,Brooklyn,Williamsburg,40.71222,-73.95827,Entire home/apt,145,3,121,2019-07-02,1.51,1,45 +8473623,"Large, sunny Williamsburg room",5803786,Bailey,Brooklyn,Williamsburg,40.70727,-73.94025,Private room,75,2,1,2015-09-28,0.02,1,0 +4060446,Modern spacious flat in Manhattan,21060554,Rob,Manhattan,Inwood,40.87279,-73.91991,Entire home/apt,99,5,61,2019-04-21,1.06,1,1 +13955012,1 large bedroom with private bathroom,82505349,Marwan,Brooklyn,Bushwick,40.69387,-73.91341,Private room,100,5,0,,,1,0 +8369857,International Meeting Place_Room 2,43371802,Sinaly,Brooklyn,Flatlands,40.62868,-73.92739,Private room,125,4,13,2019-05-19,0.29,5,180 +19265766,Cozy luxurious & private 1 1/2 bedroom in Brooklyn,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68153,-73.9538,Entire home/apt,200,7,8,2019-05-26,0.33,2,355 +27566002,Modern living in old Harlem (the Scream1),2802223,Raluca,Manhattan,Harlem,40.82789,-73.93812,Private room,60,30,5,2018-10-13,0.47,2,0 +2435669,Charming Mid-Century Studio,1301613,Janet,Brooklyn,Flatbush,40.64815,-73.96486,Entire home/apt,79,2,8,2017-09-05,0.13,1,6 +21384233,Gorgeous renovated Boutique townhouse apartment,10546345,Kimberley,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92523,Entire home/apt,180,4,31,2019-06-17,1.47,1,339 +26280881,Bedroom in 3br exposed brick apt w deck & garden,55978113,Alexis,Staten Island,Stapleton,40.63705,-74.07722,Private room,80,1,4,2018-10-25,0.34,2,29 +7953819,Lovely Brooklyn Brownstone w Yard,2665690,Mercedes,Brooklyn,Bedford-Stuyvesant,40.68432,-73.93226999999999,Entire home/apt,150,30,10,2017-01-03,0.25,1,30 +13201181,"2BR heart of Williamsburg, luxury hipster heaven",19873203,Caitlin,Brooklyn,Williamsburg,40.71351,-73.95848000000001,Entire home/apt,319,2,49,2019-06-03,1.32,1,82 +12594614,1BR Avaliable in 3Br Condo,17603414,Kaan,Manhattan,Harlem,40.82471,-73.94332,Private room,70,4,27,2019-07-01,0.75,2,156 +4700565,Charming Bohemian Bushwick Apt,24298733,Tuva,Brooklyn,Bushwick,40.69167,-73.92169,Private room,48,4,1,2015-08-22,0.02,2,0 +15990199,Bright & Spacious 1br in the Heart of UWS,44949168,Tingting,Manhattan,Upper West Side,40.78602,-73.97537,Entire home/apt,167,3,3,2017-10-02,0.09,1,0 +4481694,*NEW* Modern Sunny Loft in Bushwick/Brooklyn,567972,Melanie,Brooklyn,Bushwick,40.69815,-73.93616,Entire home/apt,120,3,4,2017-01-06,0.08,1,157 +22034977,South Bronx Hideaway,148100571,Jenny,Bronx,Soundview,40.82668,-73.8822,Entire home/apt,50,1,2,2017-12-09,0.1,2,0 +2493176,Cozy spacious UES studio,12760201,Megan,Manhattan,Upper East Side,40.77574,-73.9524,Entire home/apt,141,1,20,2018-06-05,0.33,1,0 +14220943,Comfortable oasis in the heart of Brooklyn,86397793,Thorill,Brooklyn,East Flatbush,40.644740000000006,-73.92296999999999,Entire home/apt,49,2,77,2019-06-23,2.17,1,264 +26682918,Sunny Private Bedroom Near Manhattan,200600695,Carolina,Queens,Sunnyside,40.74122,-73.92223,Private room,80,1,11,2019-06-23,0.93,1,346 +25455908,Private bedroom in UWS Apartment,57516611,Mayumi,Manhattan,Upper West Side,40.80109,-73.96523,Private room,99,2,14,2019-07-02,1.06,1,8 +20998265,Charming- cozy bedroom,90531953,Carolina,Bronx,Concourse,40.82453,-73.92563,Private room,60,1,16,2018-01-01,0.74,1,0 +8066385,Share A Rustic Forte Greene studio w/ adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68667,-73.9676,Entire home/apt,104,2,15,2019-05-19,0.39,2,100 +35717409,Share Room;Cozy;Silent and Safe 15 m to Times Sq,175730239,Baboucarr,Queens,Sunnyside,40.73913,-73.92692,Shared room,30,3,0,,,12,359 +31052540,“Quincy Manor” in the heart of Bedford-Stuyvesant.,82735692,David,Brooklyn,Bedford-Stuyvesant,40.68858,-73.94534,Entire home/apt,100,2,20,2019-07-07,3.16,1,273 +13770959,Beautiful 2 BR Garden Dplx in BK (w/ opt nursery),978029,Meriwether,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95810999999999,Entire home/apt,245,5,0,,,1,0 +3003127,Private Room with Full Amenities,11998560,Ruby,Brooklyn,Crown Heights,40.67401,-73.92833,Private room,66,1,6,2019-06-30,0.11,2,41 +17730939,Large bright bedroom,369015,Thai,Bronx,Pelham Gardens,40.86437,-73.83863000000001,Private room,43,20,6,2019-06-23,0.69,2,104 +13974584,Private Bedroom in 2-floor Bushwick Apartment,3152934,Cheno,Brooklyn,Bushwick,40.68758,-73.91320999999999,Private room,50,1,2,2016-08-06,0.06,1,0 +22175249,Cozy Room is available in Nice apartment,161919000,Rana,Brooklyn,Sheepshead Bay,40.58568,-73.93536,Private room,85,3,0,,,1,0 +21091355,Comfortable and lovely furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.761390000000006,-73.96222,Entire home/apt,80,30,4,2019-02-07,0.26,8,272 +15438016,Awesome room and rooftop deck in East Williamsburg,27506975,Nick,Brooklyn,Williamsburg,40.70553,-73.94266999999999,Private room,90,2,1,2016-10-17,0.03,1,0 +20231901,Spacious/ elegant one bed apt. - perfect location,654586,Osh,Manhattan,Greenwich Village,40.72982,-74.00034000000001,Entire home/apt,175,2,25,2019-07-01,1.78,1,64 +16347965,UES Beautiful Apartment off Park Av,33229585,Natalia,Manhattan,Upper East Side,40.76786,-73.96973,Entire home/apt,280,4,23,2019-07-07,0.76,1,17 +21091844,Sunny Room in Queens,28270349,Jie,Queens,Flushing,40.76604,-73.79442,Private room,100,1,34,2018-10-31,1.65,2,189 +6950477,Cozy Studio in Historic Brownstone,7253422,Nate',Manhattan,Harlem,40.82599,-73.94545,Entire home/apt,76,1,3,2015-08-22,0.06,1,0 +3339205,Updated 1 bedroom heart of Chelsea,15689833,Whitney,Manhattan,Chelsea,40.74259,-74.00128000000001,Entire home/apt,160,4,11,2017-01-02,0.18,1,1 +12791778,Newly renovated williamsburg bedroom near subway,17239096,David,Brooklyn,Williamsburg,40.71262,-73.94466,Private room,100,2,6,2018-02-19,0.28,1,0 +34910477,Spacious 2BR duplex in charming brownstone,263113162,Andrew,Manhattan,Harlem,40.8287,-73.94686999999999,Entire home/apt,120,30,0,,,1,94 +11567815,"Bright, Modern, Spacious Duplex Apt",1253313,Gabriel,Queens,Astoria,40.76964,-73.92116999999999,Entire home/apt,90,2,28,2018-12-31,0.7,1,0 +33787778,Uptown 1-bdr apartment. 2 stops to Times Sq!,222763653,Vaz,Manhattan,Morningside Heights,40.81342,-73.9565,Entire home/apt,165,1,15,2019-06-16,5.11,1,27 +9645768,Prime West village studio apartment,49873719,Jil,Manhattan,West Village,40.72941,-74.00480999999999,Entire home/apt,150,7,0,,,1,0 +36485057,Affordable room in Bushwick/East Williamsburg,6570630,Marisol,Brooklyn,Bushwick,40.70184,-73.93316999999999,Private room,40,4,0,,,2,36 +24521322,Sonder | Hanover Square | Sun-Filled 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70551,-74.00839,Entire home/apt,225,29,0,,,96,1 +30785849,"Chic, stylish apartment in HEART of NYC",27863129,Nikita,Manhattan,West Village,40.7385,-74.00014,Entire home/apt,250,2,39,2019-05-27,6.32,1,0 +29662087,"Three ""new"" New Yorker's",222755851,Sarah,Manhattan,Upper West Side,40.79896,-73.96027,Private room,145,1,2,2018-11-08,0.24,2,0 +12827123,Beautiful Park Slope Room with Rooftop & Backyard,15398860,Harlan,Brooklyn,South Slope,40.66631,-73.98268,Private room,50,20,0,,,1,0 +3522329,East Village 1 Bedroom,17737666,Allie,Manhattan,East Village,40.73136,-73.98714,Entire home/apt,140,1,48,2016-01-17,0.81,1,0 +17716523,30 Minutes from Manhattan Apartment by South Beach,41398005,Mirco,Staten Island,Arrochar,40.59347,-74.06914,Entire home/apt,122,1,52,2019-06-23,2.0,3,219 +34286555,Comfortable Futon Couch in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67326,-73.95366999999999,Shared room,24,5,7,2019-07-01,3.33,4,14 +29383233,"“One of a kind” Penthouse +獨一無二的紐約閣樓",213781715,Anting,Manhattan,NoHo,40.72872,-73.99199,Entire home/apt,179,1,1,2019-05-26,0.68,33,187 +33210320,The Love Shack,72744910,Saman,Brooklyn,Greenpoint,40.71971,-73.94377,Private room,65,2,6,2019-05-21,1.94,1,20 +20139611,"R#1Very nice, comfortable, quiet and peaceful room",95958773,Maryna,Brooklyn,Brighton Beach,40.57717,-73.9608,Private room,95,1,7,2019-06-27,0.32,3,342 +10228901,Sunny private room on LowerEastSide,32824042,Carlos,Manhattan,Lower East Side,40.71334,-73.98575,Private room,40,1,0,,,1,0 +19055226,Musician's Getaway + Full Analog Recording Studio,58225,Joshua,Brooklyn,Bedford-Stuyvesant,40.69097,-73.94721,Private room,101,2,9,2019-05-13,0.36,1,364 +27291497,3BR/2.5BTH Modern Brownstone Duplex w Terrace,194684765,James,Brooklyn,Bedford-Stuyvesant,40.68855,-73.9443,Entire home/apt,204,5,28,2019-06-08,2.96,1,225 +3157420,Giant Private Room in Battery Park ,4119683,Zachary,Manhattan,Battery Park City,40.71029,-74.01725,Private room,100,1,4,2016-07-26,0.08,1,0 +22649404,"@Ferry,2Bedroom/4bed.Private,Renovated/Stylish...",1715301,Mark,Staten Island,Tompkinsville,40.63518,-74.07956,Entire home/apt,65,4,63,2019-06-27,3.63,3,191 +15469541,Cozy two bedroom apartment.,92708653,Renette,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93675,Entire home/apt,130,3,34,2019-06-24,1.28,1,147 +29626161,"Sunny room in UWS, Columbia,Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80441,-73.96351999999999,Private room,85,1,46,2019-07-05,5.59,4,20 +18989137,Boerum Hill Beauty,132464510,Christine,Brooklyn,Boerum Hill,40.68508,-73.98413000000001,Private room,125,1,8,2018-10-07,0.32,1,156 +18290561,Harlem Jewel + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81358,-73.94296,Entire home/apt,177,3,71,2019-06-19,2.67,3,199 +10117223,"Charming Room in Bushwick, Brooklyn Apt",18782603,Kimberly,Brooklyn,Bushwick,40.685390000000005,-73.9092,Private room,50,3,2,2016-08-15,0.06,1,0 +243229,2BR Apt - 20min to Soho,1276497,Alon,Brooklyn,Bedford-Stuyvesant,40.68016,-73.94878,Entire home/apt,280,3,5,2017-07-09,0.05,1,365 +2087663,"Chic, neat & cozy small 1 BR Apt",10657268,Boryana,Queens,Astoria,40.76165,-73.92179,Entire home/apt,130,5,0,,,1,0 +18354821,Quiet and cozy,832695,Gloria And Dmitrii,Queens,Astoria,40.7648,-73.92081,Private room,50,1,6,2018-10-30,0.23,1,0 +30437291,Beautiful large room Manhattan/Roosevelt Island,228524640,Dragomir,Manhattan,Roosevelt Island,40.7616,-73.95052,Private room,55,21,1,2019-03-08,0.24,1,342 +8916960,Central Park Slope Garden Apt,46632214,Patrick,Brooklyn,Park Slope,40.6711,-73.9772,Entire home/apt,150,7,40,2019-06-25,0.89,1,279 +33716700,Cozy studio in great location on Upper East Side,254157091,Alexandra,Manhattan,Upper East Side,40.77116,-73.95776,Entire home/apt,130,3,7,2019-06-26,2.84,1,5 +15819933,Gorgeous Spacious Bedroom In Ridgewood Queens,16494382,Mark,Queens,Ridgewood,40.70735,-73.89343000000001,Private room,20,7,0,,,1,89 +24515524,Affordable Modern/Luxury 2 Bedroom Apt,58097815,Gesner,Brooklyn,Bedford-Stuyvesant,40.68771,-73.92281,Entire home/apt,145,2,73,2019-06-21,4.95,1,219 +2924588,"Exclusive Manhattan , 24 h doormen",14933223,Maria,Manhattan,Midtown,40.75293,-73.97173000000001,Private room,110,14,9,2019-06-01,0.14,1,21 +409293,Private Sunny Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79477,-73.95045999999999,Private room,100,3,67,2019-05-28,0.76,3,345 +20089471,Bargain! Amazing location Orchard St in the LES,2174446,Tessa,Manhattan,Chinatown,40.71674,-73.99079,Private room,58,3,1,2017-08-20,0.04,1,0 +22618396,Spacious Brooklyn Bedroom with Natural Light,107978473,Trishia,Brooklyn,Greenpoint,40.73375,-73.9557,Private room,60,2,3,2018-06-19,0.23,1,0 +9775146,"Comfy 2BR + Outdoor patio/ Subway 2,3",50396427,Anu -Nicole,Brooklyn,Prospect Heights,40.67702,-73.96445,Entire home/apt,128,28,12,2019-05-09,0.31,1,256 +8226346,"Cozy, light, private room",41962603,Dmitry,Brooklyn,Bushwick,40.6972,-73.92697,Private room,96,3,0,,,1,0 +25826245,Morningside Heights Gem,123073403,Claudia,Manhattan,Morningside Heights,40.80551,-73.96618000000001,Entire home/apt,125,3,1,2019-01-13,0.17,1,0 +16518377,East Village 1BR Apt with all the amenities,3012457,Cody,Manhattan,East Village,40.7235,-73.97963,Entire home/apt,200,2,3,2018-07-10,0.16,1,0 +12535946,LUX One Bedroom Doorman W&D 5133,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79433,-73.96518,Entire home/apt,200,30,1,2018-11-27,0.13,96,337 +22173625,Private ground floor apartment in Brooklyn,161976329,Chad Antonio,Brooklyn,East New York,40.6714,-73.87701,Entire home/apt,55,3,58,2019-06-09,3.02,1,57 +17684151,Cosy apartment in Park Slope,25054395,Ginevra,Brooklyn,South Slope,40.66929,-73.98706999999999,Entire home/apt,163,5,12,2019-05-30,0.43,1,192 +16412250,Cozy and quiet 1 bedroom in great neighborhood,19294443,Melissa,Brooklyn,Park Slope,40.67514,-73.97598,Entire home/apt,85,2,1,2017-01-01,0.03,1,0 +29081056,Cozy & Large NYC Private Suite!,48954003,Bradley,Bronx,Olinville,40.88453,-73.86273,Private room,80,2,20,2019-05-03,2.2,1,188 +8439145,"Beautiful, Secure, Central NYC Apartment!",7654837,George,Manhattan,Midtown,40.75287,-73.97439,Entire home/apt,149,10,3,2019-01-01,0.13,1,14 +30690804,Cosy APt,43053304,Ali,Manhattan,Upper East Side,40.77778,-73.94893,Entire home/apt,120,5,1,2019-02-24,0.22,1,0 +7556587,Sunny Room in Harlem,39608626,,Manhattan,Harlem,40.82929,-73.94181999999999,Private room,28,1,1,2015-08-01,0.02,1,0 +35199871,Yellow Room,63790926,Mehmet,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93494,Private room,50,1,4,2019-06-25,3.75,1,349 +1115381,Private Room & Balcony in New York,6121678,Kamala,Brooklyn,Park Slope,40.67771,-73.98151999999999,Private room,85,2,1,2015-09-12,0.02,1,0 +23413509,Two bedroom apartment in Brooklyn/Bed Stuy,152877297,Hp,Brooklyn,Bedford-Stuyvesant,40.67985,-73.91060999999999,Entire home/apt,95,2,50,2019-06-17,3.13,1,54 +4038794,Bright room with private bathroom,19638238,Elke,Manhattan,Washington Heights,40.83428,-73.94738000000001,Private room,75,2,25,2019-05-30,0.53,1,198 +13589297,Brightly Lit Charming 1 Bed,77990284,Mariam,Manhattan,Upper West Side,40.79394,-73.97665,Private room,89,3,1,2016-07-02,0.03,1,0 +11672400,BRIGHT Modern Spacious East Village Studio Apt,61972032,Giovanni,Manhattan,Gramercy,40.7318,-73.98321999999999,Entire home/apt,186,2,169,2019-06-24,4.17,1,0 +35686679,Beautiful and spacious house in Forest Hills NY,141211593,Tamar,Queens,Forest Hills,40.71655,-73.85219000000001,Entire home/apt,250,5,0,,,1,53 +3882466,5132- Huge Studio! SWIMMING POOL,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79563,-73.9664,Entire home/apt,168,30,4,2019-03-31,0.16,96,283 +14614708,LOVELY Studio in Heart of Soho,30443527,Angelica,Manhattan,Greenwich Village,40.72936,-73.99911,Entire home/apt,195,4,17,2018-10-21,0.49,1,188 +29457860,not available,914386,Anna,Queens,Ozone Park,40.68129,-73.84235,Private room,75,1,1,2018-10-26,0.12,2,173 +3067244,Bright Prospect Park Charmer,3241305,Emilia,Brooklyn,Prospect-Lefferts Gardens,40.65962,-73.96063000000001,Entire home/apt,99,4,43,2019-05-06,0.7,1,0 +5133942,"Sunny 1000 sqft, heart of Crown Hts",7088204,Genesis,Brooklyn,Crown Heights,40.67131,-73.94979000000001,Entire home/apt,150,5,8,2019-05-20,0.36,1,118 +9544914,"King Bed, Private Room in Crown Heights, Comedian",22423049,Abraham,Brooklyn,Crown Heights,40.67157,-73.94117,Private room,36,2,100,2017-07-31,2.28,1,0 +36041096,Luxury building Brand new Apartment in Chelsea!,271151866,Shelly,Manhattan,Chelsea,40.74438,-73.997,Entire home/apt,250,5,0,,,1,60 +13532366,Chill Private Room in Extremely Convenient Place,9540269,Josh,Manhattan,Upper West Side,40.76986,-73.98673000000001,Private room,90,1,1,2016-08-09,0.03,1,0 +29977234,Waterfront Studio View of Manhattan,35468424,Carissa,Manhattan,Greenwich Village,40.72893,-73.99512,Entire home/apt,89,2,22,2019-07-05,2.83,1,11 +19745541,One Bedroom LOFT 2 blocks from Bedford ave L,15476792,Gosia,Brooklyn,Williamsburg,40.7179,-73.96047,Entire home/apt,105,1,24,2017-12-31,1.01,1,0 +2435408,Modern Duplex Studio Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.726690000000005,-73.9419,Entire home/apt,129,30,9,2019-04-30,0.16,52,325 +36037836,Amazing Wiliamsburg Private Room,222287033,Francis,Brooklyn,Williamsburg,40.71096,-73.96575,Private room,95,2,0,,,5,211 +22241573,Private Room B In Prime Location,162427870,Anna,Manhattan,Chelsea,40.74729,-73.98957,Private room,115,1,162,2019-06-23,8.68,3,312 +14870802,Private Room in the Heart of SoHo,34252002,Harriet,Manhattan,Nolita,40.72204,-73.99705,Private room,100,2,10,2017-03-19,0.29,1,0 +30928305,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.72886,-73.99139,Entire home/apt,179,1,0,,,33,364 +1696050,"Spacious Room, Central Location, Historic block.",4463092,Samuel,Manhattan,Harlem,40.80339,-73.95167,Private room,71,2,64,2019-06-26,1.02,2,18 +12892861,Great Apartment for 2~ right next to subway~!,70594777,Deqing,Brooklyn,Clinton Hill,40.68873,-73.96523,Entire home/apt,150,7,4,2016-07-31,0.11,1,0 +14817574,Spacious Room in the heart of Greenwich Village!,88398053,Colleen,Manhattan,Greenwich Village,40.72807,-73.99925,Private room,99,2,5,2017-08-20,0.15,1,0 +24250052,Private Room on NYC's Upper West Side,21379585,Erik Joshua,Manhattan,Upper West Side,40.77988,-73.98605,Private room,95,1,50,2019-05-30,3.3,1,0 +5183502,"Airy, Modern, Large Room W'burg two blocks subway",1762555,Arti,Brooklyn,Williamsburg,40.71508,-73.94586,Private room,100,4,38,2019-06-12,1.06,1,10 +15222861,"Private! entire studio, private bath, own entrance",33614329,Walter,Brooklyn,Bushwick,40.69555,-73.93069,Entire home/apt,95,1,81,2019-07-03,2.42,4,193 +3378576,Private room in Williamsburg Apt,6273146,Jon,Brooklyn,Williamsburg,40.70935,-73.94614,Private room,250,1,0,,,1,0 +33636056,Sonder | The Biltmore | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76112,-73.98663,Entire home/apt,217,29,1,2019-05-31,0.75,327,337 +20184562,Cozy One Bedroom Apartment + Loft in East Village,61862775,Melissa,Manhattan,East Village,40.72698,-73.98649,Entire home/apt,154,3,2,2017-08-28,0.09,1,0 +32253160,Family House 旅行客栈,240055586,George,Queens,Fresh Meadows,40.73704,-73.79151,Entire home/apt,255,1,13,2019-06-17,2.87,5,114 +23275777,2 Floor-Entire Detached House 30 Min to Manhattan,113905011,Li,Queens,Rego Park,40.73082,-73.86796,Entire home/apt,109,2,68,2019-06-30,4.02,1,54 +30069635,"Chic, spacious, private home away from home!",101367917,Colleen,Queens,Astoria,40.76589,-73.92259,Private room,150,2,4,2019-04-28,0.55,1,0 +31085569,AFFORDABLE LUXURY...ENTIRE APARTMENT @ Its Best!,123519201,Festus Atu,Manhattan,Inwood,40.86856,-73.92623,Entire home/apt,300,1,12,2019-06-16,2.98,2,357 +30209958,Lovely exposed brick room to rent in Williamsburg,27716292,Ianthe,Brooklyn,Williamsburg,40.71225,-73.94960999999999,Private room,50,2,2,2019-07-01,0.92,1,0 +32546587,"Private Room In SoHo, Modern Building",244197139,Brooke,Manhattan,Nolita,40.72106,-73.99501,Private room,67,30,0,,,5,137 +31214157,Cozy private room in Manhattan,81764323,Lucas,Manhattan,Kips Bay,40.743840000000006,-73.97851999999999,Private room,110,2,7,2019-07-01,1.28,1,175 +4137645,Beautiful Williamsburg Private Room,11134688,Noelle,Brooklyn,Williamsburg,40.71243,-73.95655,Private room,60,1,1,2014-09-23,0.02,1,0 +20520410,MANHATTAN Budget Shared Room East harlem,39657176,Andrew,Manhattan,East Harlem,40.8027,-73.9398,Shared room,75,7,1,2017-08-20,0.04,1,0 +13573103,"Private room in Bushwick, Brooklyn. backyard+roof!",78279322,Cortland,Brooklyn,Bushwick,40.69092,-73.91546,Private room,35,1,1,2016-07-05,0.03,1,0 +29604741,My cozy studio,5497326,Jennifer,Manhattan,Upper West Side,40.77873,-73.97845,Entire home/apt,285,7,0,,,2,79 +15106603,Beautiful and Quiet Upper West Side Escape,9280524,Greg,Manhattan,Upper West Side,40.79778,-73.97232,Entire home/apt,185,2,1,2016-10-23,0.03,1,0 +30932198,Amazing location in SOHO! Make your visit GREAT!,11286990,Grace,Manhattan,SoHo,40.72725,-74.00288,Entire home/apt,225,2,9,2019-06-30,2.08,1,11 +6364086,Spacious Luxury Studio-96th and WEA,3471132,Robin,Manhattan,Upper West Side,40.7966,-73.97154,Entire home/apt,190,4,8,2016-11-27,0.16,1,0 +9218051,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72647,-73.98379,Private room,95,1,2,2015-11-10,0.04,2,0 +599847,Beautiful Ft. Greene Apartment-NEW!,2966937,Chris,Brooklyn,Clinton Hill,40.68533,-73.96808,Entire home/apt,149,2,20,2018-12-30,0.24,1,4 +20703198,East Village Apartment In The Heart Of It All,72581005,Henry,Manhattan,East Village,40.727920000000005,-73.98288000000001,Private room,110,15,6,2018-06-05,0.27,1,0 +21595950,Private Room Loft w/Outdoor Patio in Williamsburg,40991179,Justin,Brooklyn,Williamsburg,40.72174,-73.95806999999999,Private room,125,3,1,2017-11-26,0.05,2,2 +27731601,"Williamsburg Loft - Spacious, Sky-High Ceilings",4354856,Jay,Brooklyn,Williamsburg,40.71095,-73.95170999999999,Private room,100,60,0,,,2,157 +24978251,Cozy private room in luxury apartment,3673226,Linda,Manhattan,East Harlem,40.78723,-73.94949,Private room,90,3,5,2019-03-25,0.37,1,0 +9840355,Gorgeous apartment in West Village,3242525,Ther,Manhattan,West Village,40.73113,-74.00314,Entire home/apt,120,4,1,2016-07-06,0.03,1,0 +34157717,Private Apt w/2 Queen beds close to NY Attractions,110539055,Manny,Bronx,Williamsbridge,40.87699,-73.85365999999999,Entire home/apt,87,2,5,2019-06-30,5.0,2,298 +21327327,Spacious Private Room in Manhattan Apartment,75812000,Carina,Manhattan,Washington Heights,40.85051,-73.93579,Private room,50,4,4,2017-12-29,0.2,1,0 +12812370,Newly updated studio with luxury charm,9631746,Charese,Manhattan,Hell's Kitchen,40.7592,-73.99313000000001,Entire home/apt,177,25,21,2019-04-03,0.65,1,10 +35037976,Midtown Steal by Rockefeller Center,263901573,Maria,Manhattan,Midtown,40.75455,-73.9695,Private room,125,1,8,2019-07-03,8.0,3,123 +16339175,"Cozy, Quiet, 1 bedroom apartment - Lower East Side",93393807,Al,Manhattan,Lower East Side,40.7178,-73.98448,Entire home/apt,177,1,46,2019-06-23,1.5,1,31 +19619159,"Bright, Modern and Cozy Chelsea Studio!",18776880,Caroline,Manhattan,Chelsea,40.74118,-73.999,Entire home/apt,155,2,4,2017-10-23,0.16,1,0 +21683372,Beautiful apartment in great Harlem neighborhood,81928702,K.C.,Manhattan,Harlem,40.82645,-73.94457,Entire home/apt,125,3,23,2019-05-31,1.18,1,166 +26664837,Great renovated apartment 1 block away from train,17926275,Jessica,Manhattan,Washington Heights,40.85116,-73.93457,Entire home/apt,90,3,7,2019-06-26,0.64,1,6 +33870501,2 BDR apt in Brownstone Greenpoint Williamsburg,38257294,Casha,Brooklyn,Greenpoint,40.72599,-73.95498,Private room,185,1,8,2019-07-05,5.45,1,123 +31499813,SUNNY SAFE & COZY BRICK BEDROOM CLOSE TO NYC! <3,236014031,Jim,Bronx,Longwood,40.81624,-73.9011,Private room,50,2,0,,,1,0 +8146609,Large room in Williamsburg,8860559,James,Brooklyn,Williamsburg,40.70939,-73.95155,Private room,77,4,1,2015-09-13,0.02,1,0 +35076834,"Designer owned, newly renovated Bed Stuy flat",6788279,Brad,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91553,Entire home/apt,97,1,2,2019-06-26,2.0,1,92 +35063377,"Bright, loft-style room in prime Williamsburg",10400953,Antje,Brooklyn,Williamsburg,40.71544,-73.96003,Private room,100,5,0,,,1,12 +18979087,Simple and clean bedroom with good view and light,70074907,Emily,Manhattan,Roosevelt Island,40.76873,-73.94397,Private room,51,1,2,2017-06-16,0.08,2,0 +33607370,"MARCELO’S ROOM +Close to JFK airport and LGA",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73125,-73.87250999999999,Private room,38,1,28,2019-07-02,8.94,4,365 +21713358,Modern Whimsical Room,63749946,Rachel,Brooklyn,Crown Heights,40.67433,-73.9248,Private room,54,4,11,2019-05-16,0.56,3,0 +4950807,Amazing Central Park view,25517905,Andreias,Manhattan,Upper West Side,40.79751,-73.96168,Private room,123,3,176,2019-06-21,3.39,3,253 +1542279,nice room in bedstuy L,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6839,-73.95042,Private room,55,1,126,2019-06-19,1.77,15,343 +3884105,"Big, Bright Studio Blocks from Park and Subway",20084270,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96001,Entire home/apt,100,2,7,2018-08-26,0.12,1,0 +9089397,"Hosting single travelers, Weekends",47394476,Alexander,Queens,Astoria,40.76352,-73.91353000000001,Private room,50,2,1,2015-11-03,0.02,1,0 +15437413,Spacious 1 Bedroom at Central Park,4970150,Sawyer,Manhattan,Upper West Side,40.78152,-73.97249000000001,Entire home/apt,249,2,18,2018-11-04,0.55,1,0 +30465539,Bohemian twist studio,140348326,Sanja,Queens,Astoria,40.75807,-73.91582,Entire home/apt,80,4,0,,,2,0 +26694068,Beautiful cozy 3 bedrooms steps from Industry City,199147185,Lou,Brooklyn,Sunset Park,40.66214,-73.99511,Entire home/apt,172,1,34,2019-06-20,3.07,5,133 +289703,Beautiful SoHo Luxury Apartment,815741,Geoff,Manhattan,SoHo,40.7253,-73.99916,Entire home/apt,249,5,8,2016-11-26,0.11,1,0 +5943770,Chambre Privée près de Central Park,18002339,Juliette,Manhattan,Upper West Side,40.79788,-73.9618,Private room,60,7,1,2015-06-15,0.02,1,0 +33743082,"NEWLY-RENOVATED APARTMENT, 35 MINS FROM MANHATTAN",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68935,-73.87254,Entire home/apt,150,30,0,,,6,17 +32799550,TW #4 Private Rm 1st Fl. Full Size Bed 1 Guest,211136294,Sharon & Erika,Bronx,Schuylerville,40.83647,-73.83491,Private room,65,2,5,2019-06-01,1.9,5,183 +35470543,"Brooklyn - Bushwick/ Pool, Gym, Sauna, Rooftop.",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69339,-73.90647,Private room,60,3,1,2019-06-21,1.0,3,72 +3575918,The Artist's House (with roof garden!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65698,-73.95761,Private room,45,14,8,2019-06-09,0.81,4,31 +18025342,"1BR near Mt Sinai, Columbia, Cent Pk. Must See!",6752799,Zach,Manhattan,East Harlem,40.7972,-73.94749,Private room,45,28,1,2017-07-02,0.04,2,147 +33453326,Unique Private Suite,20182359,Edgar,Manhattan,Harlem,40.81141,-73.94051,Private room,135,3,7,2019-07-03,4.04,1,365 +30021600,Tasteful Bright Studio Loft in Historic Brownstone,225655167,David,Brooklyn,Bedford-Stuyvesant,40.6887,-73.92742,Entire home/apt,150,5,3,2019-03-15,0.46,1,24 +33498032,"Beautiful Private apartment, Sunset Park Brooklyn",252437123,Connie,Brooklyn,Sunset Park,40.64849,-74.00277,Entire home/apt,130,2,8,2019-06-30,2.55,1,19 +15624363,Furnished Bedroom w/Private Bath in BROOKLYN,52894477,Jennifer & Inam,Brooklyn,Crown Heights,40.67033,-73.96161,Private room,48,30,3,2019-05-15,0.24,1,136 +33373213,Sunny Studio Great View,69095594,Emanuel,Manhattan,East Harlem,40.78593,-73.94292,Entire home/apt,139,2,3,2019-04-11,0.89,1,74 +33592474,Private Room Near Q Train in Brooklyn,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60765,-73.95392,Private room,65,1,4,2019-07-07,2.26,8,359 +21278102,Harlem Hideaway Guest Room,145825873,Dennis,Manhattan,Harlem,40.80421,-73.9502,Private room,160,3,10,2019-06-02,0.52,4,236 +19829879,Spacious Loft with Designer Layout,2887664,Brock,Brooklyn,Williamsburg,40.7124,-73.96342,Entire home/apt,260,2,15,2019-05-23,0.68,1,88 +34568807,Private Condo Room w Ground Level Entrance,136840462,Sharlene,Bronx,Longwood,40.81963,-73.90956,Private room,55,1,10,2019-05-31,5.26,1,310 +15082930,"Beautiful, quiet, light-filled 1-bdrm apt",4169040,Elias,Brooklyn,Williamsburg,40.71111,-73.96299,Entire home/apt,150,4,12,2018-11-30,0.37,1,5 +202273,Cozy and spacious - rare for NYC!,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94934,Private room,67,4,72,2016-12-26,0.76,3,0 +4616452,Upper East Side Spacious 2 Bedrooms,23915731,Helene,Manhattan,Upper East Side,40.77439,-73.94965,Entire home/apt,249,3,1,2016-07-19,0.03,1,0 +28368870,Bright Bedroom in NYC (30 min to Midtown + MoMa),37252076,Iara,Queens,Jackson Heights,40.75378,-73.8862,Private room,45,3,3,2019-06-24,0.35,2,132 +30400683,Amazing place Harlem (10 min walk Central Park),36747057,Roberto,Manhattan,Harlem,40.80666,-73.95691,Private room,90,6,4,2019-03-24,1.02,1,0 +3851911,large sunny pre war studio ,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.6847,-73.94523000000001,Entire home/apt,115,2,59,2019-06-08,1.02,5,337 +22355018,Sunlit BR+private bath in pristine Nolita loft,7465567,Nick,Manhattan,Chinatown,40.71835,-73.99641,Private room,130,2,2,2018-04-12,0.13,2,0 +22295702,East Village Studio Apartment,135587084,Cami,Manhattan,East Village,40.72504,-73.98326999999999,Entire home/apt,150,12,17,2019-01-09,0.9,1,0 +9181483,My Casa Ur Home Away From Home,47773961,Jhovana,Manhattan,East Village,40.72403,-73.97740999999999,Private room,90,4,72,2019-06-27,1.62,1,63 +14406923,"Location near Kissena Blvd. & Holly Ave., Flushing",71663192,Maverick,Queens,Flushing,40.74891,-73.82039,Private room,80,1,15,2019-05-01,0.43,1,288 +17754072,Bed in Family Home Near LGA Airport,26432133,Danielle,Queens,East Elmhurst,40.76389,-73.87155,Shared room,38,1,224,2019-07-06,7.96,5,80 +30591478,Spacious-Sleeps 2-Next to trains-Flex Chk In Times,228263278,475,Manhattan,Harlem,40.82428,-73.94854000000001,Private room,160,2,0,,,4,180 +13064336,Cozy Private Bedroom - Williamsburg,1412548,Naomi,Brooklyn,Williamsburg,40.70806,-73.94224,Private room,60,3,1,2017-10-12,0.05,1,0 +32469620,Cute room with private rooftop near Central Park,39079982,Mansi,Manhattan,East Harlem,40.7908,-73.94491,Private room,99,1,6,2019-04-25,1.49,1,0 +7095125,"Discount! Mins to SOHO -Queen bed, spacious",36656552,Kandee,Manhattan,Lower East Side,40.71892,-73.99240999999999,Private room,150,1,51,2018-09-06,1.05,3,0 +11496968,1BD apartment with balcony on park,831572,Rupert,Brooklyn,Fort Greene,40.69277,-73.97449,Entire home/apt,170,1,12,2016-10-16,0.3,1,0 +21520497,Peace of mind,156396144,Vic,Bronx,Morrisania,40.82995,-73.90342,Entire home/apt,50,1,0,,,1,0 +2488022,Sunny Quiet Room In Harlem,12732806,Jerome,Manhattan,Harlem,40.8151,-73.95147,Private room,60,1,19,2018-10-22,1.34,1,356 +158290,Clinton Hill + Free Coffee = #smile,759583,Pepe,Brooklyn,Clinton Hill,40.68288,-73.96024,Private room,75,3,43,2019-05-20,0.44,2,365 +16690627,"Beautiful urban sanctuary in Park Slope, Brooklyn",6057126,Jac,Brooklyn,Park Slope,40.68057,-73.97721999999999,Entire home/apt,175,30,3,2019-05-18,0.87,1,321 +4795390,Cozy Private Room,16151285,Carol,Bronx,Williamsbridge,40.88016,-73.84923,Private room,43,28,15,2019-05-31,0.3,4,336 +5661080,Cozy&Central:EmpireState/Highline/Times Square,29345363,Simone,Manhattan,Chelsea,40.74924,-73.99784,Entire home/apt,165,3,58,2019-06-20,1.72,1,138 +22602996,Private room near Central Park and Subway!,166289951,George,Manhattan,East Harlem,40.79303,-73.94662,Private room,90,2,0,,,1,0 +7516218,Modern 1 Bedroom in Dumbo / Vinegar Hill,60046,John,Brooklyn,Vinegar Hill,40.70146,-73.98188,Entire home/apt,225,30,23,2019-06-11,0.49,1,268 +28073918,"SUNNY PRIVATE BEDROOM IN WILLIAMSBURG, BROOKLYN!",51022084,Tony,Brooklyn,Williamsburg,40.71216,-73.95968,Private room,75,4,3,2019-05-28,0.3,1,29 +29712675,"Luxury Two Bedroom Ground Floor, Walk-in Apartment",222179066,Nneka,Brooklyn,Bedford-Stuyvesant,40.68775,-73.92581,Entire home/apt,115,1,89,2019-06-20,11.03,1,278 +4931807,Cozy & Quaint,25401356,Krystle,Manhattan,East Harlem,40.79717,-73.93298,Entire home/apt,125,2,7,2016-01-09,0.15,1,0 +10142499,"Prívate room in Queens, NY",38260715,Lady,Queens,Corona,40.7394,-73.85526999999999,Private room,37,1,74,2019-06-30,1.73,1,135 +7265249,"South Slope Sunny 2 Bedroom, 2 bath",38038797,Robin,Brooklyn,Sunset Park,40.66226,-73.98956,Entire home/apt,125,2,11,2018-12-27,0.23,1,10 +17097495,The Chester Himes Room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80926,-73.94979000000001,Private room,75,3,48,2019-06-19,1.64,4,9 +16100819,Renovated 2 Bedroom Williamsburg Dream Home,4198285,Greg And Amy,Brooklyn,Williamsburg,40.71026,-73.94744,Entire home/apt,145,3,43,2019-07-04,1.36,1,5 +211078,Greenpoint Waterfront Loft,306739,Maya,Brooklyn,Greenpoint,40.73049,-73.96115,Entire home/apt,185,3,228,2018-04-25,2.39,3,1 +16300644,Sunny Private Bedroom in Prime Williamsburg,22919533,Kristina,Brooklyn,Williamsburg,40.71258,-73.95976,Private room,150,3,43,2019-06-24,1.41,2,67 +29216706,NEW Perfect cozy 1 BDRM near JFK & Casino NYC LGA,220129825,Carlton,Queens,Jamaica,40.67379,-73.78187,Entire home/apt,150,1,75,2019-07-01,9.3,2,69 +20210285,ROOM AC WI-FI PARKING CABLE FOR 2,131684478,Mervin (Michael),Staten Island,West Brighton,40.63291,-74.11749,Private room,37,2,25,2018-09-01,1.11,3,306 +15910575,Delightful place to stay,103131157,Grand,Manhattan,Midtown,40.74771,-73.98873,Private room,115,1,2,2017-07-29,0.08,1,88 +16302869,Modern & Cozy Room in Elegant Apt in Astoria,27951037,Kirsten,Queens,Ditmars Steinway,40.77664,-73.90896,Private room,65,30,79,2019-04-07,2.55,2,0 +32898150,Near Yankee Stadium,232665281,Melinda,Bronx,Concourse,40.82913,-73.92236,Private room,50,1,7,2019-06-23,1.84,1,265 +24312987,Sunny Loft in Williamsburg 20mins into Manhattan!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72558,-73.95706,Private room,68,1,55,2019-06-28,3.72,7,38 +30878695,BRIGHT BEAUTIFUL BROWNSTONE IN BROOKLYN,66913051,Amy,Brooklyn,Williamsburg,40.71792,-73.94171999999999,Entire home/apt,160,1,4,2019-01-20,0.59,1,49 +35986504,Private Comfortable Room near Subway,164648188,Sonia,Brooklyn,East New York,40.67595,-73.87964000000001,Private room,50,3,0,,,2,23 +13232917,Hip Crown Heights 2 Bedroom!,52592877,Alexis,Brooklyn,Crown Heights,40.67294,-73.9581,Entire home/apt,113,1,3,2016-07-06,0.08,1,0 +19913761,Brand NEW & SIMPLE apt in quiet Chinatown,6862083,Mischa,Manhattan,Two Bridges,40.71136,-73.99391,Private room,110,3,1,2018-09-28,0.11,1,350 +6481924,"Brooklyn, Sundrenched & Peaceful",1862576,Gan,Brooklyn,Sunset Park,40.65168,-74.00178000000001,Entire home/apt,105,7,3,2016-01-06,0.06,1,0 +28182769,Nice & Cozy manhattan apartment,99149791,Prez,Manhattan,Harlem,40.80281,-73.94748,Entire home/apt,160,1,2,2018-10-28,0.22,1,10 +11961053,Sunlit Red Hook Pied-à-terre,3752933,Steve,Brooklyn,Red Hook,40.67849,-74.01178,Private room,85,2,66,2019-06-24,4.58,1,59 +23199948,Empire State Studio,172506981,Marlene,Manhattan,Midtown,40.74827,-73.98828,Entire home/apt,150,3,27,2019-07-06,1.79,1,320 +24995099,PLACE NEXT TO THE BEACH,177860344,Maria,Brooklyn,Brighton Beach,40.57569,-73.95891999999999,Private room,80,3,1,2018-09-30,0.11,1,178 +747605,"East Village Studio, Great Location",3665794,Jack,Manhattan,East Village,40.72699,-73.97969,Entire home/apt,179,4,213,2019-07-01,2.62,1,277 +15983444,Wonderful Private Room with Spacious Outdoor Patio,103850896,Ashley,Brooklyn,Williamsburg,40.716440000000006,-73.9433,Private room,60,2,5,2017-10-22,0.16,2,0 +22403335,Fort Greene Jewel,163877894,JoAnn,Brooklyn,Clinton Hill,40.68933,-73.96879,Entire home/apt,149,29,24,2019-04-23,1.42,1,3 +4109420,"Accessible, large & stylish 2BR apt in Astoria!",19914713,Samantha,Queens,Astoria,40.76177,-73.91359,Entire home/apt,110,2,47,2019-07-07,0.81,2,0 +32282597,"E Flatbush! Cozy, 20 min walk to Dwnstate Hosp",242296495,Angela,Brooklyn,East Flatbush,40.64941,-73.93451,Private room,33,1,14,2019-07-06,3.09,3,37 +27394897,Renovated 1 Bedroom apt in Bensonhurst- Sleeps 4,206313609,Lily,Brooklyn,Bensonhurst,40.60569,-73.99823,Entire home/apt,113,3,24,2019-06-18,2.22,2,96 +23593409,Chic + Relaxing Vibe + Close to Subway,12881634,Olivia,Brooklyn,Bedford-Stuyvesant,40.68221,-73.92614,Entire home/apt,112,3,43,2019-07-01,2.63,1,29 +34722659,NEW! Chic Designer Vanilla,259468466,Jack,Manhattan,Lower East Side,40.71461,-73.98755,Private room,89,4,4,2019-07-07,2.86,2,182 +31224624,Rose in Spanish Harlem,202587815,Willie,Manhattan,East Harlem,40.79132,-73.95083000000001,Private room,85,2,15,2019-06-04,2.42,2,224 +26978101,"Shared Place by Times Square, Theaters District.",197190247,Jacob,Manhattan,Hell's Kitchen,40.76405,-73.98695,Shared room,75,1,50,2019-06-11,4.21,7,225 +28775021,Industrial apartment in the heart of Bushwick,3180546,Monica,Brooklyn,Bushwick,40.69943,-73.93292,Entire home/apt,150,3,3,2018-12-07,0.39,1,0 +27111405,King Bedroom - Ideal for Business Travelers,1462483,Danny,Manhattan,Midtown,40.74585,-73.98236999999999,Private room,100,4,32,2019-06-26,2.87,2,174 +34286828,Cosy luxury studio for sublet on upper west side,101856518,Dearna,Manhattan,Upper West Side,40.77904,-73.98786,Entire home/apt,180,3,0,,,1,0 +30104723,Cozy apt with washer dryer in trendy Williamsburg,226201658,Vanessa,Brooklyn,Williamsburg,40.70689,-73.94996,Entire home/apt,73,30,1,2019-03-02,0.23,3,345 +17223109,Cute Chelsea Apartment - 1 BR - Amazing Location!,10160214,Mario,Manhattan,Chelsea,40.73977,-73.99938,Entire home/apt,190,12,5,2019-06-06,0.5,1,32 +8077469,"Cozy room, great area, near train",42667448,Rachel,Brooklyn,Williamsburg,40.71982,-73.94409,Private room,46,7,2,2016-08-07,0.04,1,0 +16691826,Cozy and Cute 1 bdrm in perfect Midtown location,60539147,Kate,Manhattan,Hell's Kitchen,40.76468,-73.9868,Entire home/apt,98,30,4,2018-02-02,0.14,1,0 +33954574,Luxury High Rise with Private Balcony,23066402,Daniel,Manhattan,Chelsea,40.74371,-73.99622,Entire home/apt,225,3,2,2019-05-30,0.83,1,33 +21798589,Thanksgivings - Upper East 1 bedroom,51538706,Moises,Manhattan,East Harlem,40.78639,-73.94869,Entire home/apt,108,3,1,2017-11-26,0.05,1,0 +6638539,Spacious family House in Old Neighborhood,562114,Sveva,Brooklyn,Bay Ridge,40.63314,-74.02896,Entire home/apt,295,5,4,2019-04-27,0.13,1,19 +23483467,Modern: 5mins to train; 30min to Times-2 Bath (2),175311339,Eduardo,Queens,Jackson Heights,40.75295,-73.86465,Private room,37,2,66,2019-07-02,4.06,5,150 +31176662,Modern East Village Oasis,9201921,Rachel,Manhattan,East Village,40.72467,-73.98878,Entire home/apt,250,1,3,2019-05-27,1.7,1,0 +11363349,Cute bedroom in the East Village,29392554,Yana,Manhattan,East Village,40.72916,-73.97816,Private room,75,120,0,,,1,173 +24834309,Large 2BR apartment in Astoria near Midtown + LGA,6194487,Rocio & James,Queens,Astoria,40.76207,-73.90541,Entire home/apt,149,2,47,2019-06-25,3.46,3,308 +26757602,A room for rest before you wander,9541963,Rebecca,Brooklyn,Crown Heights,40.6746,-73.9474,Entire home/apt,90,1,51,2019-07-07,4.47,1,2 +33909511,Executive room for professional.,1709718,Victoria,Manhattan,Midtown,40.7651,-73.97808,Private room,199,1,1,2019-04-29,0.42,2,350 +22775929,Charming & Bright East Village One Bedroom,57791424,April,Manhattan,East Village,40.72406,-73.98275,Entire home/apt,180,3,2,2018-07-08,0.15,1,0 +6460353,A True Gem.,11775328,Kamilah,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96162,Entire home/apt,150,2,17,2019-05-19,0.37,1,336 +8868762,Room in Loft,7234603,Frida,Brooklyn,Williamsburg,40.70953,-73.92657,Private room,50,1,0,,,1,0 +33318809,Spacious Artistic 1 Bedroom Loft & High Ceilings,106159574,Jonathan,Brooklyn,Williamsburg,40.70694,-73.94176,Private room,90,2,3,2019-04-07,0.9,1,0 +32641909,Amazing One bedroom step away from Time SQ/73C,48146336,Irina,Manhattan,Hell's Kitchen,40.76237,-73.99202,Entire home/apt,160,30,1,2019-05-18,0.58,20,332 +21230213,Beautiful Room in Bed-Stuy Apartment,125549620,Ashley,Brooklyn,Bedford-Stuyvesant,40.68527,-73.93924,Private room,35,2,1,2017-10-25,0.05,1,0 +24121885,Cozy Private Bedroom Upper East Side,81013659,Milena,Manhattan,Upper East Side,40.7668,-73.954,Private room,100,3,64,2019-06-25,4.19,2,275 +21751524,Bright and sunny 1 BR in the heart of UES,4636552,Florencia,Manhattan,Upper East Side,40.77842,-73.95903,Entire home/apt,150,3,1,2017-11-27,0.05,1,0 +30801344,Huge BR in Classic UWS Building W 70s,3929012,Kevin,Manhattan,Upper West Side,40.78012,-73.98279000000001,Private room,129,1,37,2019-07-01,5.39,4,59 +105510,Private 1-Bedroom Apt in Townhouse,322716,Alex,Brooklyn,Crown Heights,40.67086,-73.94872,Entire home/apt,100,30,15,2019-01-05,0.16,5,282 +26518337,Cozy 1 Bedroom Apartment In Great LES Location,49909186,Andrea,Manhattan,Lower East Side,40.72003,-73.98928000000001,Entire home/apt,180,4,23,2019-07-01,1.99,2,233 +32244865,LARGE Trendy Studio!!!,53931758,Lc,Brooklyn,Flatbush,40.64464,-73.96453000000001,Entire home/apt,100,3,3,2019-06-03,0.97,1,73 +23254924,"Spacious 1 bedroom apt in Chinatown, NYC",49015786,Conor,Manhattan,Chinatown,40.71483,-73.99287,Entire home/apt,92,7,9,2019-05-10,0.53,1,4 +7471859,Williamsburg Walk Up,3504234,Ben,Brooklyn,Williamsburg,40.7128,-73.94175,Entire home/apt,125,1,0,,,1,0 +13752439,Your Home away from Home!,71564201,Fabian,Queens,Jamaica,40.6711,-73.76508000000001,Private room,61,1,58,2017-04-29,1.77,1,0 +36468880,Private room in a nice Brooklyn apartment,274195458,Abayomi,Brooklyn,Bushwick,40.69308,-73.91025,Private room,130,1,0,,,1,83 +2424342,Amazing Room—Private Bath (100% LEGAL!),2841152,Matthew,Brooklyn,Greenpoint,40.73169,-73.9554,Private room,109,2,107,2019-06-24,1.64,1,269 +4055732,Stay in Clinton Hill sprout house!,12368114,Rachelle,Brooklyn,Clinton Hill,40.684540000000005,-73.96382,Private room,40,1,1,2015-06-07,0.02,1,0 +274376,"Private Clinton Hill, Brooklyn Apt",1434931,Aaron,Brooklyn,Clinton Hill,40.68156,-73.96537,Entire home/apt,135,5,6,2019-06-24,0.13,1,317 +21966351,Stylish Queen Bed Room - Gowanus - Park Slope,159091490,Melissa,Brooklyn,Gowanus,40.6779,-73.98459,Private room,139,1,38,2019-07-07,2.85,17,337 +9511490,Williamsburg Secret Treasure with deck,240471,Roberto,Brooklyn,Williamsburg,40.70766,-73.94739,Private room,60,3,6,2017-06-02,0.14,2,188 +32664187,Beautiful room close to Prospect Park,25575398,Maya,Brooklyn,Crown Heights,40.66828,-73.95340999999999,Private room,70,5,3,2019-05-31,0.9,1,9 +21181643,"Midtown Manhattan shared Apartment,Prime Location",152948553,Lexy,Manhattan,Chelsea,40.75133,-73.99671,Private room,99,1,77,2019-06-17,3.64,1,101 +10539491,Kid Friendly Central Park West Apt.,54348871,Suzette,Manhattan,Upper West Side,40.79753,-73.96211,Entire home/apt,250,1,88,2019-06-20,2.13,1,329 +8538077,Cozy bright apt with a touch of rustic charm -,44950182,Dawn,Brooklyn,Cobble Hill,40.68665,-73.99150999999999,Entire home/apt,250,2,23,2019-06-24,1.04,1,0 +3378585,Beautiful Studio Near Times Square ,13535952,Nastassia,Manhattan,Hell's Kitchen,40.76125,-73.99642,Entire home/apt,300,1,0,,,1,0 +20590800,"5Star Super Convenient & Spacious BR, 1st Flr Apt",6745095,Walker,Brooklyn,Crown Heights,40.66925,-73.92663,Private room,65,2,81,2019-06-27,3.61,1,64 +25869269,Charming Bedroom in Cozy East Harlem Apartment,31975791,Xiomara,Manhattan,East Harlem,40.79822,-73.93468,Private room,70,2,25,2019-05-24,2.67,1,101 +13213869,Beautiful one bedroom home in Washington Heights,38284609,Emily,Manhattan,Washington Heights,40.8449,-73.94034,Private room,85,3,10,2019-01-01,0.3,1,362 +904060,Beautiful Modern apt in Brooklyn,4834187,Howard,Brooklyn,Clinton Hill,40.68496,-73.96110999999999,Entire home/apt,165,4,37,2018-09-30,0.47,1,343 +13578708,Modern Skyscraper in the Upper Westside Manhattan,1651250,Shervin,Manhattan,Upper West Side,40.7751,-73.98148,Entire home/apt,300,2,15,2016-11-25,0.41,2,3 +14317995,Central Park & Met Museum 1 Bedroom Gem!,8049219,Richard,Manhattan,Upper East Side,40.77666,-73.95625,Entire home/apt,165,2,22,2018-01-02,0.65,1,0 +28913606,King Hotel Room at Wyndham Midtown 45 Resort,49128620,Joy,Manhattan,Midtown,40.75359,-73.97305,Private room,175,2,2,2019-05-12,0.22,1,1 +6018325,COLUMBIA PRESBYTERIAN MED CTR * 2 Bedroom Apt*,25237492,Juliana,Manhattan,Washington Heights,40.84245,-73.93918000000001,Entire home/apt,140,30,8,2019-06-17,0.17,34,312 +1975999,Luxury studio,10200352,Marie,Manhattan,Chelsea,40.74163,-73.99857,Entire home/apt,189,3,9,2019-05-13,0.87,1,0 +26743587,"Private, Modern, Garden Apt - Historic Ditmas Park",201083646,Hilary,Brooklyn,Flatbush,40.6417,-73.96554,Entire home/apt,150,4,18,2019-06-18,1.57,1,52 +476983,"PRIVATE Room in Spacious, Quiet Apt",277379,Agnes,Manhattan,Harlem,40.82537,-73.94391999999999,Private room,85,1,439,2019-07-05,5.12,2,238 +14429976,Comfy private room in Williamsburg,78164397,Mike,Brooklyn,Williamsburg,40.71347,-73.96452,Private room,85,3,99,2019-06-13,3.09,1,19 +26275643,Modern Elegance on the Upper East Side,143719035,Ash,Manhattan,Upper East Side,40.76776,-73.95214,Entire home/apt,220,3,3,2019-04-09,0.26,1,0 +27285234,Spacious Bedroom in Ridgewood! 3L-4,205530337,Nina,Queens,Ridgewood,40.70175,-73.90552,Private room,45,30,0,,,8,340 +8630662,Most desired EastVillage retreat,45391169,Tania,Manhattan,East Village,40.72781,-73.98398,Private room,99,2,78,2019-06-20,1.71,1,363 +20190053,"Beautiful, family friendly place with great views",25415637,Jonathan,Brooklyn,Columbia St,40.68356,-74.00301,Entire home/apt,144,1,11,2018-09-03,0.48,1,0 +1644146,"Quaint, beautiful studio Brooklyn",1338262,Rachel,Brooklyn,Carroll Gardens,40.68468,-73.99145,Entire home/apt,150,3,94,2019-07-01,1.33,3,250 +9505047,Private Room/Bath in Modern Williamsburg Apt.,49255756,Sol,Brooklyn,Williamsburg,40.71848,-73.95817,Private room,80,7,11,2019-05-04,0.25,1,0 +8161540,Artist's Room in Bushwick,11315661,Angel,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92198,Private room,90,1,0,,,1,0 +20026248,Beach House,37318968,V Joe,Queens,Arverne,40.59082,-73.80328,Entire home/apt,275,2,24,2019-06-23,1.02,1,335 +32263166,Welcome to my Lovely Studio.,207640201,Denny,Bronx,Tremont,40.8474,-73.89612,Shared room,50,1,7,2019-05-19,1.54,1,158 +20167771,【アクセス抜群】空港10分・マンハッタン10分!駅徒歩5分の好立地なお部屋です,143534216,Hiroko,Queens,Elmhurst,40.7466,-73.88812,Private room,80,2,8,2017-10-14,0.35,1,0 +25311740,Huge 2 bedroom in Astoria,19503783,Ves,Queens,Ditmars Steinway,40.77975,-73.92087,Entire home/apt,100,14,0,,,1,189 +10798553,Gorgeous Greenpoint: Sublet April 10th - 27th,798949,Rachel,Brooklyn,Greenpoint,40.7254,-73.95246,Entire home/apt,99,10,0,,,1,0 +33117497,Beautiful Spacious Brooklyn Room #1,249291429,Boho,Brooklyn,Clinton Hill,40.69306,-73.96132,Private room,45,1,4,2019-05-26,1.88,2,135 +35268845,Your perfect getaway with a friendly hostess!,265534664,Maria,Queens,Long Island City,40.75365,-73.92246999999999,Private room,48,6,0,,,1,313 +30471690,Room in Astoria,74215453,Leo,Queens,Astoria,40.76626,-73.91422,Private room,100,5,0,,,1,41 +21546050,"Luxury Apt, Balcony, Rooftop - 20min Central Park",3749848,Sem,Queens,Long Island City,40.76654,-73.93508,Entire home/apt,90,6,0,,,1,0 +4430808,Studio-Private Entrance /Bath/Kitchen Near JFK,23002099,Sol & Izak,Queens,Jamaica Estates,40.71873,-73.80324,Entire home/apt,64,2,192,2019-06-17,3.47,1,234 +3464971,Sunny Home on Brooklyn Border: 15 min to Manhattan,17457445,Kermit & Azadeh,Queens,Ridgewood,40.70706,-73.91436999999999,Entire home/apt,225,7,0,,,1,0 +23713825,Private Room,145252418,Claudio,Manhattan,East Harlem,40.80386,-73.93618000000001,Private room,80,1,47,2019-07-07,3.41,3,178 +18571803,Luxury Apartment - Tranquil Sunny Bedroom!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91071,Private room,70,3,26,2019-05-29,1.32,3,0 +35278838,Private room in 2bed apt by subway & Prospect Park,3644678,Cindy,Brooklyn,Borough Park,40.64184,-73.99101999999999,Private room,30,30,0,,,1,251 +1981669,1 Bedroom Apartment Lefferts Garden,10226006,Ester,Brooklyn,Prospect-Lefferts Gardens,40.66362,-73.94926,Entire home/apt,80,5,19,2018-08-18,0.28,1,0 +30285558,"Cozy & convenient studio, midtown west Manhattan!!",82208124,Yang,Manhattan,Upper West Side,40.77497,-73.98788,Entire home/apt,137,3,8,2019-03-21,1.21,2,0 +14044731,One bedroom apartment for rent in West Harlem,47260217,Tess,Manhattan,Harlem,40.82287,-73.9518,Private room,38,7,2,2016-07-27,0.06,1,0 +21598186,2 Bedroom Private Space Near Subway,130797315,Aidana,Queens,Richmond Hill,40.70269,-73.82653,Entire home/apt,40,2,30,2019-06-24,1.47,1,44 +19769328,Private spacious bedroom near JFK Airport,35751147,Agraj,Queens,Richmond Hill,40.69452,-73.82741999999999,Private room,60,1,26,2019-05-05,1.09,1,0 +2105163,Gramercy Park Studio Apartment,10732706,Joe,Manhattan,Gramercy,40.73646,-73.98337,Entire home/apt,195,3,3,2019-01-03,0.21,1,0 +17423413,Cozy apartment near JFK,59900881,Yessenia,Queens,Howard Beach,40.66406,-73.84599,Entire home/apt,100,7,37,2019-01-02,1.42,1,0 +8634515,"★ Hidden Gem. Spacious. Restaurants, Cafés Galore.",24188973,Lei,Manhattan,Harlem,40.80449,-73.94743000000001,Entire home/apt,130,31,31,2019-05-27,0.69,1,66 +32008894,Bushwick Bedroom w/ private Bath.,59616570,Erika,Brooklyn,Bushwick,40.703520000000005,-73.92163000000001,Private room,55,4,0,,,1,189 +16381393,Skyline #2 view ny skyline,93121568,Charles,Bronx,Concourse,40.82388,-73.9279,Private room,60,2,53,2019-07-01,1.8,2,169 +27549628,Charming two-bedroom suite in Rockaway Beach,38675275,Margaret,Queens,Belle Harbor,40.57491,-73.84962,Entire home/apt,200,1,32,2019-06-24,3.02,2,324 +15177242,Cozy room in 2br Cobble Hill apartment,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68342,-73.9912,Private room,90,4,1,2016-10-02,0.03,2,0 +19139234,All your essentials in a beautiful studio apt,23231840,Francisca,Manhattan,Harlem,40.82216,-73.9446,Entire home/apt,101,7,6,2017-12-03,0.28,1,0 +9934696,Super cozy Chic - Brooklyn - Williamsburg,51006349,Medina,Brooklyn,Williamsburg,40.71269,-73.94979000000001,Entire home/apt,175,2,16,2019-06-08,0.37,1,364 +9899499,Beautiful Greenpoint Apartment,10836122,Laurance,Brooklyn,Greenpoint,40.72522,-73.94022,Private room,50,1,1,2015-12-26,0.02,1,0 +19678436,Sunny 1BR - Trendiest location in NYC,1999224,Ro-E,Manhattan,Chinatown,40.71346,-73.99158,Entire home/apt,180,2,1,2017-09-03,0.04,1,0 +17725136,Large room in Bushwick,45387487,Andrew,Brooklyn,Bushwick,40.69705,-73.92585,Private room,45,1,0,,,1,1 +18077050,"Comfortable, spacious Upper West Side Studio",52711374,Cindy,Manhattan,Upper West Side,40.7822,-73.98207,Entire home/apt,90,2,12,2017-11-26,0.44,1,0 +1700471,CHARM Rm HAMILTON HEIGHTS Harlem,8289663,Shane,Manhattan,Harlem,40.81976,-73.94029,Private room,60,3,101,2019-06-10,1.44,1,340 +20017121,Spacious 2 bedroom apartment,82119233,Jenny,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95257,Entire home/apt,135,4,68,2019-06-30,2.97,2,247 +68900,Bright Beautiful Brooklyn,343250,Jason,Brooklyn,Greenpoint,40.731190000000005,-73.95578,Private room,125,3,6,2016-11-13,0.1,1,325 +28810799,Spacious Comfy livingroom Lounge spot in BronxHome,217290804,Robert,Bronx,Morris Park,40.85661,-73.85280999999999,Shared room,40,1,2,2018-10-29,0.23,1,88 +23727326,Spacious brand new apartment 2 bedrooms - 2bath,5832321,Kalani,Queens,Glendale,40.695890000000006,-73.89572,Entire home/apt,100,2,57,2019-07-05,3.68,2,267 +9765011,Cute Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6502,-73.95509,Private room,39,7,6,2018-01-05,0.17,4,278 +820218,"Lovely East Village Apartment, Sept. 2 to 5 Only",337159,Thomas,Manhattan,East Village,40.73131,-73.98609,Entire home/apt,121,2,6,2018-09-05,0.09,1,156 +19670506,Modern Studio on the Upper East Side,134107066,Hayley,Manhattan,Upper East Side,40.777440000000006,-73.95476,Entire home/apt,117,3,8,2018-04-10,0.33,1,0 +34205286,Sonder | Upper East Side | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.7639,-73.96432,Entire home/apt,150,29,0,,,327,220 +4792192,BROOKLYN Authentic artsy LOFT :),16297020,Kasia,Brooklyn,Williamsburg,40.712340000000005,-73.96601,Private room,80,1,0,,,1,0 +6603756,Amazing Bright bedroom in Harlem,22222260,Simone,Manhattan,Harlem,40.818940000000005,-73.93871,Private room,81,4,20,2019-04-26,0.41,2,334 +10636997,One Bedroom Beauty in Bushwick,54917558,Valeria,Brooklyn,Bushwick,40.68678,-73.90629,Entire home/apt,75,2,154,2019-06-29,4.04,1,15 +13642631,Doorman Chelsea One Bedroom- Convenient and Fun!,28115515,Andrew,Manhattan,Chelsea,40.74179,-73.99855,Entire home/apt,150,1,0,,,1,0 +10104123,East Village Bedroom w/Roof Deck,51850937,Joe,Manhattan,East Village,40.73061,-73.98335,Private room,100,2,51,2019-07-02,1.19,3,4 +21390251,Clean 2BR Park Slope Apt w/ Private Outdoor Space,26765262,Derek,Brooklyn,Gowanus,40.66933,-73.99158,Entire home/apt,125,3,70,2019-07-01,3.38,1,99 +2283001,Gorgeous 1 bdrm in Carroll Gardens,10532769,Vanessa,Brooklyn,Carroll Gardens,40.68123,-73.99558,Entire home/apt,180,2,97,2019-07-06,1.83,1,24 +3526122,W Village Apt w/ Private Roof,4254072,Sean,Manhattan,West Village,40.73022,-74.00421,Entire home/apt,249,3,44,2019-06-21,0.74,1,332 +20516112,"Sunny, spacious room in Williamsburg Brooklyn Apt",11418466,Mike,Brooklyn,Williamsburg,40.70994,-73.94866999999999,Private room,89,2,50,2019-06-25,2.35,1,246 +25155346,Private Bedroom in UES New York shared apartment.,4818484,Michael,Manhattan,Upper East Side,40.76996,-73.9539,Private room,70,2,24,2019-06-19,2.32,1,5 +35877681,Get away Private Bedroom in New York City #6,35783912,Pi & Leo,Bronx,Fordham,40.86427,-73.89215,Private room,39,2,1,2019-07-01,1.0,8,175 +34902183,Calming & Bright 1 BR Apt in Upper West Side,263054681,Carmen,Manhattan,Harlem,40.81982,-73.94481,Entire home/apt,93,30,0,,,1,325 +4039789,Harmonious Sanctuary near Yankee Stadium.,20945243,Michael,Bronx,Concourse Village,40.83331,-73.91741999999999,Entire home/apt,90,30,1,2017-05-12,0.04,1,358 +26421624,Cozy Long Island City Studio close to Manhattan,198666761,Izi,Queens,Long Island City,40.75286,-73.93539,Entire home/apt,71,3,32,2019-06-29,2.73,1,77 +17494289,Beautiful duplex in Gramercy,118539035,Pilar,Manhattan,Gramercy,40.73746,-73.98338000000001,Entire home/apt,99,120,2,2017-08-13,0.08,1,167 +8759876,Stylish 1BR apt in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76942,-73.96614,Entire home/apt,140,30,5,2019-04-12,0.15,12,0 +12556300,Lovely flat heart of New-York,15074852,Chloé Et Jean-Philippe,Manhattan,Hell's Kitchen,40.76253,-73.98939,Entire home/apt,300,2,0,,,1,0 +25629624,Minutes to everything in the middle of Manhattan,102649225,Jasmine,Manhattan,Murray Hill,40.74652,-73.97636999999999,Private room,125,1,21,2018-12-23,1.63,1,0 +23454165,"Gabby Suite in the Heights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85197,-73.94074,Private room,75,3,21,2019-06-18,1.47,3,138 +29760452,Cozy Brooklyn room 15min to Manhattan by subway!,209163615,Oriana,Brooklyn,Bedford-Stuyvesant,40.68377,-73.94489,Private room,85,1,1,2019-01-04,0.16,1,12 +23839013,New 2-Bedrooms on Grymes Hill,148130073,Sebastian,Staten Island,Grymes Hill,40.61758,-74.09111999999999,Entire home/apt,110,2,69,2019-06-25,4.47,1,19 +32048047,Artist Loft Bushwick up to 4 guests,65800377,Benny,Brooklyn,Bushwick,40.70053,-73.92314,Private room,150,3,0,,,3,28 +7048398,Columbus Ave Apt 1 block from Park,21323838,Lawrence,Manhattan,Upper West Side,40.77408,-73.98181,Entire home/apt,245,5,17,2019-01-04,0.35,1,346 +2247803,"Landmark Brownstone, Crown Heights",11333699,Clifton,Brooklyn,Crown Heights,40.67112,-73.94536,Entire home/apt,105,2,281,2019-06-30,4.29,1,248 +22667815,Beautiful Private Room in Cobble Hill Brownstone!,22550357,Will,Brooklyn,Cobble Hill,40.6901,-73.99523,Private room,85,10,19,2018-11-24,1.06,1,0 +10962,"Lovely room 2 & garden; Best area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.668690000000005,-73.9878,Private room,89,4,168,2019-06-21,1.41,3,340 +6719207,Home 4 Medical Professionals-Kngbr3,26377263,Stat,Brooklyn,East Flatbush,40.66037,-73.93316,Private room,47,30,0,,,43,311 +26839646,Best Apartment Alphabet City Luxury & Comfort !!,201841679,Monica,Manhattan,East Village,40.72838,-73.97926,Entire home/apt,260,2,52,2019-06-17,4.62,1,141 +6478141,Cheap & Basic Temporary Airbed Room,15743237,Champson,Queens,Elmhurst,40.734,-73.86596,Private room,69,1,14,2015-10-27,0.28,2,0 +17105446,"15 Minutes to Manhattan, Heart of Astoria",2350326,Ero,Queens,Ditmars Steinway,40.77811,-73.91065,Private room,70,1,5,2019-06-27,4.69,2,31 +28544890,Serene Spacious and Sun lit Master 5 mins to metro,214678935,Kin,Brooklyn,Sunset Park,40.64667,-74.01416,Private room,59,1,36,2019-06-23,3.79,3,352 +35304831,COZY 2BR AT TIMES SQUARE - IN HEART OF MANHATTAN,195650078,Angie,Manhattan,Hell's Kitchen,40.75949,-73.98825,Entire home/apt,125,3,2,2019-06-15,2.0,1,219 +10073995,Peaceful Bushwick Pad.,1737876,Gray & Alara,Brooklyn,Bushwick,40.68984,-73.91507,Private room,37,1,0,,,1,0 +13824675,Cozy 1 BR Apt in Brownstone Brooklyn,7248303,Ben,Brooklyn,Cobble Hill,40.68789,-73.99426,Entire home/apt,140,5,8,2018-06-29,0.22,1,0 +6051856,Homey Room w/ Lots of Sunlight!,9828418,Gabriela,Manhattan,Washington Heights,40.84411,-73.93764,Private room,45,2,3,2016-05-07,0.07,1,0 +22777530,Private bedroom in Gorgeous Brooklyn Apartment!,160054295,Cesar,Brooklyn,Crown Heights,40.67582,-73.94054,Private room,47,1,5,2019-01-02,0.53,1,0 +20421016,Comfortable studio by the park!,4296770,Leif,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.9568,Entire home/apt,70,3,13,2018-04-03,0.57,1,0 +30770301,Clean Private Bedroom in the Heart of East Village,222779801,Maira,Manhattan,East Village,40.72963,-73.98662,Private room,75,1,17,2019-07-05,2.49,2,120 +489924,South Slope Private Bedroom,1027283,Kelly,Brooklyn,Sunset Park,40.66221,-73.99743000000001,Private room,50,2,33,2019-06-30,0.39,1,20 +2056307,1 room in HUGE 2Bedroom/1.5 Bath,1584064,Adrienne,Manhattan,Harlem,40.80121,-73.95063,Private room,115,7,1,2015-09-27,0.02,2,0 +11672600,Sunny Brownstone in Park Slope!!!!!,4992559,Drew,Brooklyn,Park Slope,40.67821,-73.97484,Entire home/apt,200,2,12,2016-10-01,0.31,1,0 +35716452,big studio loft with private rooftop,17601262,Enrico,Brooklyn,East Flatbush,40.6509,-73.95108,Entire home/apt,200,3,0,,,2,324 +2392301,Charming Bedroom in Artists Colony,173997,Beth,Brooklyn,Williamsburg,40.7106,-73.95325,Private room,50,3,16,2016-07-11,0.25,2,0 +8370236,Barbara's Home Stay,44107591,Barbara,Brooklyn,Flatbush,40.65216,-73.96119,Private room,55,3,219,2019-07-02,4.73,1,286 +4270499,Cozy One Bedroom Apt - Astoria,22171095,George & Diana,Queens,Astoria,40.76369,-73.92291,Entire home/apt,125,2,112,2018-06-18,1.94,2,0 +22028251,Harlem Master bed and bath,135944525,Tiffany,Manhattan,Harlem,40.81876,-73.9536,Private room,45,1,0,,,1,0 +9975682,QUIET AND COZY ROOM,11069084,Laura,Brooklyn,Flatbush,40.6465,-73.96066,Private room,30,1,0,,,1,0 +6806282,Cozy Room in Charming East Village,4055091,Tina,Manhattan,East Village,40.729490000000006,-73.98012,Private room,80,1,0,,,1,0 +4621213,"Cozy 2 bedroom, near Central Park",23899821,Maria,Manhattan,Upper West Side,40.78604,-73.97363,Entire home/apt,260,2,54,2019-07-01,0.98,1,16 +22951326,Room in a luxury doorman building in Midtown,36786792,Evelina,Manhattan,Murray Hill,40.74658,-73.97782,Private room,70,2,3,2018-01-31,0.17,1,0 +14867152,Cozy Bed Stuy Two Room Studio,32597915,Jason,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93094,Entire home/apt,50,2,4,2016-12-06,0.12,1,0 +35575867,Modern & Charming Lower East Side Apartment,74819532,Julie,Manhattan,Lower East Side,40.71982,-73.98849,Entire home/apt,250,2,0,,,1,170 +23678832,"Stylish, Peaceful Greenpoint Bed & Bath",1420659,Melanie,Brooklyn,Greenpoint,40.72294,-73.94901999999999,Private room,150,5,0,,,1,310 +31388248,"Bohemian Open Loft +Williamsburg/Bushwick close 2 L",234961480,Janette,Brooklyn,Williamsburg,40.70474,-73.94423,Private room,120,1,8,2019-07-01,2.79,1,80 +19064354,Cozy master room (female only),127784473,Zeyu,Manhattan,Roosevelt Island,40.76548,-73.94675,Private room,55,10,1,2017-07-08,0.04,1,0 +31448783,Sleek 1 Bedroom Brownstone Apartment in Brooklyn,5945241,Tomi,Brooklyn,Bedford-Stuyvesant,40.6789,-73.91014,Entire home/apt,80,2,8,2019-07-07,2.12,1,0 +9559239,Stunning 2 story Duplex in SOHO,608275,Helen,Manhattan,Greenwich Village,40.72704,-73.99954,Entire home/apt,300,3,1,2016-01-03,0.02,1,0 +13171746,Large Sunny Bedroom with Empire State Views,31154454,Elliot,Manhattan,Midtown,40.74244,-73.98316,Private room,99,1,180,2019-06-21,4.86,2,2 +13378096,Bushwick 1 Bedroom,16626798,Chelsea,Brooklyn,Bushwick,40.70222,-73.92947,Private room,65,21,0,,,1,0 +20798127,Queen sized bedroom with skyline view - Greenpoint,29516183,Ruben,Brooklyn,Greenpoint,40.73595,-73.95423000000001,Private room,90,5,3,2018-08-22,0.14,1,0 +270345,SUPER CUTE EAST VILLAGE APARTMENT,1415590,Cameron,Manhattan,East Village,40.724540000000005,-73.99150999999999,Entire home/apt,250,3,24,2019-06-27,0.26,1,16 +34517660,2 Queen Bed Spacious Room near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74366,-73.98607,Private room,250,1,0,,,10,361 +13341820,Upscale 1 Bedroom Hell's Kitchen Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76045,-73.9981,Entire home/apt,239,30,1,2017-04-20,0.04,121,365 +33579779,Great Apartment super close to the train.,198666639,Bernard,Brooklyn,Cypress Hills,40.67875,-73.90704000000001,Entire home/apt,160,2,2,2019-06-18,2.0,1,162 +2194038,Two Bedroom Flat,11189753,Sj,Brooklyn,Fort Greene,40.68683,-73.96981,Entire home/apt,285,8,23,2019-06-15,0.36,4,364 +23277442,HABITACION EN BROOKLYN NEW YORK,75633225,Daniel,Brooklyn,Sunset Park,40.64555,-74.00995,Private room,150,2,0,,,1,363 +12761910,3BR Queens (3rd fl)- 20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73854,-73.87406999999999,Private room,289,2,115,2019-06-27,2.99,6,280 +14446717,"1 Bedroom Apt, West 69th St, bwtn BWay & Columbus",30045574,Barry,Manhattan,Upper West Side,40.77445,-73.98002,Entire home/apt,150,30,8,2019-06-28,0.24,1,328 +14108870,Warm and cozy in Brooklyn,1805238,Aleksandra,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.958,Private room,48,1,68,2019-06-25,2.02,2,14 +18240963,Coney Island MCU Park Wi fi Cable Apt****,114736959,Ed,Brooklyn,Coney Island,40.57609,-73.98605,Entire home/apt,110,3,52,2019-07-05,1.95,6,150 +35292625,Room-cabin in Hell's kitchen,137191484,Maria,Manhattan,Hell's Kitchen,40.764790000000005,-73.98666999999999,Private room,86,1,1,2019-06-05,0.88,5,0 +18508470,Adorable Cozy room with lots of light,33434914,Juan,Bronx,Parkchester,40.83117,-73.87566,Private room,43,2,71,2019-07-02,2.71,4,59 +19556174,Open Room in Hell's Kitchen,51356852,Peter,Manhattan,Hell's Kitchen,40.763000000000005,-73.98624000000001,Private room,300,1,0,,,1,0 +6344926,Brooklyn private room,14898658,Chadanut,Brooklyn,Kensington,40.64423,-73.98224,Private room,40,30,43,2019-01-08,0.87,11,99 +29506320,Scandinavian Style 1BR in the Upper East Side,55966543,Mike,Manhattan,Upper East Side,40.78411,-73.95097,Entire home/apt,200,2,7,2019-01-01,0.88,1,0 +31845412,Specious 4-people room in nice surrounding,27974952,Alex,Brooklyn,East Flatbush,40.64434,-73.9504,Shared room,31,30,0,,,7,365 +14608350,Bedroom in the <3 of Astoria close to the city,45986534,Tina,Queens,Astoria,40.76792,-73.91190999999999,Private room,40,4,23,2019-04-23,0.73,1,30 +189732,Family & Friends in New York City,489400,O'Dell,Brooklyn,East New York,40.67497,-73.87305,Entire home/apt,169,3,177,2019-06-29,1.86,1,297 +22259132,Elegant 2 Bedroom Cobble Hill apartment,162456824,Marie,Brooklyn,Cobble Hill,40.68675,-73.9995,Entire home/apt,145,1,67,2019-06-20,3.63,2,146 +16586785,Williamsburg Penthouse w/ Private Roof,3781090,Jamil,Brooklyn,Williamsburg,40.707240000000006,-73.94379,Entire home/apt,100,2,36,2019-05-27,1.19,1,0 +13614923,Gorgeous Zen Home at Crossroads of Nolita and Soho,305207,Lauren,Manhattan,SoHo,40.7205,-73.9986,Entire home/apt,259,2,3,2016-08-01,0.08,1,0 +11850918,Convenient 2BR/2BA - East Village,14363695,Heda,Manhattan,East Village,40.72852,-73.98064000000001,Entire home/apt,275,5,1,2016-04-19,0.03,1,0 +17880254,Spacious New York City Travelers Getaway,9808458,Zain,Bronx,Kingsbridge,40.8709,-73.89945999999999,Shared room,60,2,11,2019-01-01,0.52,4,365 +35606165,Luggage storage only No Beds Available.,267872829,Sonya,Brooklyn,Fort Hamilton,40.618190000000006,-74.03296,Shared room,20,1,1,2019-06-27,1.0,1,353 +27252798,Huge apartment with jacuzzi and backyard,1110299,Loreta,Queens,Ridgewood,40.70108,-73.90222,Entire home/apt,120,2,3,2018-08-27,0.27,1,40 +8547335,BedStuy's Chillest,44992001,SidewalksofRIO,Brooklyn,Bedford-Stuyvesant,40.69562,-73.94734,Private room,54,30,9,2016-10-25,0.2,1,0 +7819704,Quaint Sunny apartment in Bed-stuy,40070423,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.92622,Private room,70,3,5,2016-05-16,0.11,1,0 +13047594,Sunny Room in East Williamsburg!,11107448,Jessica,Brooklyn,Williamsburg,40.71862,-73.94216,Private room,62,7,0,,,2,0 +131154,Cozy and Bright One Bedroom in BK,275563,Lauren,Brooklyn,Greenpoint,40.72473,-73.95199000000001,Entire home/apt,165,2,175,2019-07-07,1.79,1,139 +33069555,Hermoso Cuarto para compartir en familia,248714625,Janneth,Queens,East Elmhurst,40.75985,-73.88233000000001,Shared room,70,1,1,2019-04-26,0.41,1,89 +4053597,Artist's Creative Cozy Studio in Park Slope,5133495,Mary Kathryn,Brooklyn,South Slope,40.66202,-73.98589,Entire home/apt,150,3,8,2019-05-27,0.15,1,0 +26858223,COMFORTABLE PRIVATE ROOM - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69323,-73.94993000000001,Private room,68,30,14,2019-06-13,1.26,6,365 +20327659,Renovated 1-bedroom apartment in Gramercy,127759523,Michael,Manhattan,Gramercy,40.73775,-73.98319000000001,Entire home/apt,179,1,0,,,1,0 +20570202,Cozy Apartment With Private Backyard,37512618,Chukwudike,Brooklyn,East New York,40.6705,-73.87850999999999,Entire home/apt,100,2,6,2019-02-17,0.26,1,0 +32167684,Sunny bedroom in Greenwich Village/SoHo!,1458110,Molly,Manhattan,Greenwich Village,40.72722,-73.99914,Private room,96,3,2,2019-05-26,0.41,2,5 +6104951,2 Bed/2 Bath - Driveway & Backyard!,815619,Rajesh,Brooklyn,East Flatbush,40.64685,-73.95,Entire home/apt,118,30,1,2015-08-25,0.02,1,68 +15782266,Two BDRM Perfect CHTWN Manhattan!,101978485,Karline,Manhattan,Two Bridges,40.71165,-73.9993,Entire home/apt,125,1,59,2019-04-20,1.82,1,88 +35768735,"Large Bright Studio,Sleeps 5 w/2 Queen Beds&Futon",21261408,Jay,Brooklyn,Clinton Hill,40.68991,-73.96132,Private room,130,1,2,2019-07-01,2.0,6,345 +9473837,Cozy Room in Artistic Apartment,13713658,Isabelle,Brooklyn,Williamsburg,40.7161,-73.94264,Private room,80,1,1,2016-01-02,0.02,1,0 +8883074,"Private bdr in Bushwick, Brooklyn",46474221,Faina,Brooklyn,Bushwick,40.70554,-73.91934,Private room,41,7,0,,,1,0 +33994694,"Manhattan 2BR W/ Garden, Laundry, Near Subway",15757322,Devin T.,Manhattan,Washington Heights,40.83611,-73.94162,Entire home/apt,161,2,13,2019-06-22,4.87,2,294 +70095,Private Bedroom in Large NYC Apartment,353965,Mary And Geoff,Manhattan,Inwood,40.86713,-73.92811,Private room,90,2,120,2019-06-30,1.27,1,132 +2919885,"Spacious, Sunny 2BR near subway",7229763,Robert And Zafir,Brooklyn,East Flatbush,40.65267,-73.9485,Entire home/apt,115,7,5,2016-03-24,0.08,1,0 +36315692,"Premium Chelsea 1BR w/ Gym, W/D, Doorman, Sundeck, Cinema, by Blueground",107434423,Blueground,Manhattan,Midtown,40.7453,-73.99063000000001,Entire home/apt,338,30,0,,,232,325 +4211510,Simple Astoria Room 20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.76989,-73.90735,Private room,50,1,127,2019-06-20,2.25,5,52 +6208855,Upper East Side - Private Room,32195844,Jiaying,Manhattan,Upper East Side,40.78428,-73.94872,Private room,85,4,1,2015-05-19,0.02,1,0 +25134311,Carnegie City Apartment,189962349,Camille,Manhattan,East Harlem,40.78589,-73.9487,Entire home/apt,250,2,43,2019-06-23,3.11,1,301 +1847096,Beautiful 1BR in East Village!,3952560,Camille,Manhattan,East Village,40.729690000000005,-73.98151,Entire home/apt,169,5,9,2016-06-05,0.13,1,0 +27133412,Private Room in Williamsburg Apartment,36444228,Selika,Brooklyn,Williamsburg,40.71671,-73.94094,Private room,70,6,1,2018-08-29,0.1,1,287 +28730581,NEAR 5th AVE RENOVATED STUDIO IN BROOKLYN,188212054,Joanna,Brooklyn,Bay Ridge,40.62165,-74.02336,Entire home/apt,245,3,18,2019-06-10,1.94,2,255 +4813832,Cozy room in Prospect Heights,13486673,David,Brooklyn,Prospect Heights,40.67904,-73.97289,Private room,79,13,8,2019-03-13,0.19,3,24 +15178929,Cozy NYC Studio (in Upper Manhattan / East Harlem),53309031,Madison,Manhattan,East Harlem,40.79528,-73.94418,Entire home/apt,93,2,38,2019-06-23,1.28,1,0 +2117705,Refreshingly Peaceful Room in Prime Williamsburg,5243832,Andrew,Brooklyn,Williamsburg,40.71258,-73.96392,Private room,100,5,44,2019-05-26,1.68,1,41 +10015137,"1BR-near to park, subway, cafes!",51433399,Meghan,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.96101,Entire home/apt,80,1,1,2016-01-05,0.02,1,0 +9758735,1 Bedroom Holiday Sublet in Bklyn,411677,Eli,Brooklyn,Flatbush,40.63565,-73.96434,Entire home/apt,70,20,0,,,1,0 +19176070,Cozy Room in Large Corner Apt Next to Lovely Park,20576411,Morgan,Brooklyn,Flatbush,40.653290000000005,-73.96155999999999,Private room,60,2,0,,,1,0 +29391564,Spacious 1 BR Apartment with Times Square view,50822673,Ferdy,Manhattan,Midtown,40.76597,-73.98177,Entire home/apt,180,3,2,2019-07-07,1.36,1,1 +30722858,Cozy Sunnyside room with a classic feel.,137358866,Kazuya,Queens,Sunnyside,40.74925,-73.91332,Private room,41,30,0,,,103,124 +17458077,Studio Apartment in a Doorman Building,2610519,Michael,Manhattan,Flatiron District,40.74252,-73.991,Entire home/apt,250,1,2,2017-03-27,0.07,1,0 +18615964,1 BEDROOM apartment in Brooklyn,52816291,Laetitia,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95121,Entire home/apt,90,3,5,2019-02-19,0.27,1,1 +19737908,Cozy Zen-like Jungle in Bushwick,67271745,Anna,Brooklyn,Bushwick,40.69393,-73.90898,Private room,55,1,1,2017-07-30,0.04,1,0 +15746736,Stylish Williamsburg One Bedroom Apartment,101772343,Liz,Brooklyn,Williamsburg,40.71585,-73.95325,Entire home/apt,136,30,8,2019-04-16,0.3,1,0 +28701957,"Midtown West, very cozy place with your own room, prime location.",216519008,Sam,Manhattan,Hell's Kitchen,40.76382,-73.98902,Private room,97,3,8,2019-06-05,0.86,2,10 +21959523,Cozy and quiet private room,7045635,Nina,Brooklyn,Crown Heights,40.67177,-73.93947,Private room,45,5,1,2018-01-08,0.05,1,0 +4902025,BIG ROOM IN BROOKLYN!! ,5564276,Monica,Brooklyn,Bedford-Stuyvesant,40.68998,-73.95645999999999,Private room,75,1,0,,,1,0 +17840284,Great Washington Heights Private Bedroom in a 4 BR,122028274,Markus,Manhattan,Washington Heights,40.84545,-73.93809,Private room,47,3,4,2018-08-13,0.16,1,0 +846871,"Cozy 1 BR near Central Park, AMNH, The MET & More",3179895,Dee,Manhattan,Upper West Side,40.784290000000006,-73.97815,Private room,131,2,220,2019-06-23,2.85,1,1 +31106126,Entire Luxurious private Studio Near LGA Airport,155691570,Mili,Queens,East Elmhurst,40.75812,-73.87195,Entire home/apt,80,1,36,2019-06-17,5.71,5,150 +32036822,"XL clean room in Manhattan, 1 block from subway!",36323224,Valentina,Manhattan,Washington Heights,40.84669,-73.94028,Private room,55,1,17,2019-07-03,3.31,1,30 +21823574,Quiet and cozy in Queens and close JFK Airport,159088461,Rudy,Queens,Howard Beach,40.66802,-73.84803000000001,Private room,55,2,0,,,1,363 +18439203,Brooklyn Beauty!!,127814176,Erica,Brooklyn,East New York,40.66556,-73.88323000000001,Entire home/apt,115,2,118,2019-07-01,4.47,1,121 +21596520,In Historic Harlem near the Hudson River!,45835291,Shareef,Manhattan,Harlem,40.82397,-73.95453,Private room,55,11,124,2019-07-02,6.1,6,95 +32426202,Modern 2 Bedroom Walk in. 3 min from Subway !,9289171,Chaim,Brooklyn,Crown Heights,40.66916,-73.93182,Entire home/apt,125,2,20,2019-07-07,9.68,1,87 +757007,Zen Holiday Getaway,2124690,Chanelle,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95692,Entire home/apt,175,7,1,2015-05-23,0.02,1,0 +13044964,Stylish and cute girly shared room in Manhattan,5288991,Tanya,Manhattan,Upper East Side,40.7775,-73.95262,Shared room,45,30,20,2019-05-26,0.53,6,258 +16991994,Spectacular one bedroom Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77743,-73.94977,Entire home/apt,140,31,4,2019-04-12,0.23,33,338 +24515198,Sunny bedroom in a designer apartment,185189643,Swann,Queens,Sunnyside,40.7461,-73.91983,Private room,75,3,79,2019-07-03,5.44,1,84 +6705606,Your NYC spot,35103206,Anthony And Laura,Queens,Rego Park,40.7262,-73.8672,Entire home/apt,86,3,3,2017-08-29,0.09,1,0 +4365491,Cozy room in East Village,2814004,Jasmine,Manhattan,East Village,40.72242,-73.98262,Private room,105,2,9,2015-10-18,0.16,2,0 +15436836,Carroll Gardens Apartment,8977158,Viki,Brooklyn,Carroll Gardens,40.68384,-73.99813,Entire home/apt,175,2,129,2019-06-22,3.92,2,206 +4538238,Sunny studio apartment in the heart of Manhattan,3473330,Shira,Manhattan,Kips Bay,40.7401,-73.97994,Entire home/apt,150,2,23,2018-10-28,0.41,1,12 +4549248,Cozy One Bedroom in Williamsburg!,22089583,Cesar,Brooklyn,Williamsburg,40.71901,-73.95618,Entire home/apt,200,3,3,2015-10-22,0.05,1,0 +24734527,West Village 2 Bedroom with Private Roof Deck!,186985990,Alan,Manhattan,West Village,40.73664,-74.00567,Entire home/apt,125,3,38,2019-06-29,2.79,1,100 +19985199,Workspace Room 2 - 2,9864136,Anthony,Brooklyn,Bushwick,40.68507,-73.91329,Private room,35,2,5,2018-09-18,0.21,26,311 +34817032,Fantastic Midtown Elegance,94101463,Jessica,Manhattan,Midtown,40.75316,-73.97099,Entire home/apt,300,3,15,2019-07-06,8.82,1,357 +7798935,Large & very comfortable 2br/2bath by Ditmas Park,33593407,Stefan,Brooklyn,Flatbush,40.63219,-73.95835,Entire home/apt,90,1,3,2016-07-10,0.06,1,0 +27262712,Unique Harlem experience in sunny lofted studio,205358796,Shana,Manhattan,Harlem,40.80765,-73.95484,Entire home/apt,112,3,4,2019-03-30,0.37,1,24 +30274568,Cleo’s Royale II,157141199,Adeola,Manhattan,Inwood,40.86184,-73.92756999999999,Private room,65,5,2,2019-04-28,0.32,2,365 +33161119,LUXURY 2BED 2 BATH/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77424,-73.98827,Entire home/apt,260,30,7,2019-06-17,2.73,25,274 +8742567,Alcove Studio in Heart of Chelsea!,45864201,Lindsay B,Manhattan,Chelsea,40.74043,-73.99913000000001,Entire home/apt,200,1,0,,,1,0 +33420907,Modern Loft Like Spacious Studio - northern Harlem,136028350,James,Manhattan,Harlem,40.82868,-73.94678,Entire home/apt,159,1,5,2019-05-09,1.72,2,44 +23376196,Modern Townhouse Apartment in Brooklyn,3806282,Sunny,Brooklyn,Bedford-Stuyvesant,40.68475,-73.92896999999999,Entire home/apt,115,2,39,2019-06-19,2.41,1,90 +29781238,"Spacious, private room near Empire State Building",3335791,Ben,Manhattan,Kips Bay,40.74406,-73.98003,Private room,99,3,7,2019-05-22,0.93,1,0 +15992078,Best Location! Near Times Sq Javits Ctr Penn Sta,15679125,C.D.,Manhattan,Hell's Kitchen,40.75372,-73.99332,Shared room,99,1,8,2019-05-19,0.26,1,365 +15646864,Williamsburg / Greenpoint 1500 square foot apt,8712217,Tim,Brooklyn,Greenpoint,40.72667,-73.95221,Entire home/apt,200,4,0,,,1,0 +6958652,Brooklyn Room Available [furnished],33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93153000000001,Private room,40,20,42,2019-06-09,1.12,2,257 +7859630,Brooklyn Room Available (furnished),33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92989,Private room,40,20,23,2019-05-13,0.49,2,206 +23612855,"Bookish apt near City College, Columbia University",99256824,Amy,Manhattan,Harlem,40.82197,-73.94948000000001,Entire home/apt,250,30,0,,,1,0 +29629862,Private room in huge Soho apartment,4341365,Sophie,Manhattan,SoHo,40.72243,-74.00027,Private room,80,5,1,2019-03-05,0.24,1,0 +27930328,Cozy and Affordable Room in NYC,20071733,Carolina,Manhattan,East Harlem,40.79329,-73.94725,Private room,73,5,5,2018-11-24,0.47,1,0 +36412461,"Sunny, Cozy, Private Room In The Heart of Bushwick",147515897,Flávia,Brooklyn,Bushwick,40.70366,-73.92728000000001,Private room,84,3,0,,,1,28 +35611637,Beautiful big room. Women only,267912902,Shira,Brooklyn,Borough Park,40.62317,-73.98873,Private room,39,3,0,,,2,179 +10984202,Chic Apt in Doorman Bldg Fashion Wk,23865843,Carlin,Manhattan,Upper West Side,40.78116,-73.9786,Entire home/apt,265,1,0,,,1,0 +10811875,Spacious 2BR apt with deck,768181,Darius,Brooklyn,Williamsburg,40.71377,-73.94091999999999,Entire home/apt,120,1,1,2016-03-01,0.02,1,0 +15175161,Camping in Nolita,91425821,Kristin,Manhattan,Nolita,40.72275,-73.99558,Entire home/apt,124,2,1,2016-09-30,0.03,1,0 +31799118,"3 BDR APT, ONLY 1 SUBWAY STOP TO MANHATTAN, 5 MIN!",217784241,Analia,Brooklyn,Williamsburg,40.71011,-73.96086,Entire home/apt,280,1,12,2019-06-20,3.21,4,250 +33961484,Gorgeous room near Washington Square,15617182,Namaya,Manhattan,Greenwich Village,40.72811,-73.99893,Private room,90,2,4,2019-05-19,1.54,1,146 +24889024,"True sanctuary, historic fort greene/clinton hill",83978022,Ofer,Brooklyn,Clinton Hill,40.69538,-73.9701,Entire home/apt,180,30,0,,,1,0 +18059231,Cozy bedroom near Lincoln Center / UWS,5235811,David,Manhattan,Upper West Side,40.77317,-73.98895,Private room,67,1,0,,,1,0 +25350971,Charming apartment in Greenpoint Historic District,41457105,Justin,Brooklyn,Greenpoint,40.73374,-73.95854,Entire home/apt,125,2,0,,,1,0 +430427,"Very clean, quiet bedroom available",820046,Elaine,Manhattan,Washington Heights,40.83559,-73.94095,Private room,60,2,13,2017-01-31,0.15,1,0 +32225197,Sonder | Stock Exchange | Private 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01023,Entire home/apt,229,2,7,2019-05-17,1.75,327,346 +21724762,Beautiful private room in Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.67668,-73.93997,Private room,60,1,19,2019-06-28,0.94,3,85 +31285648,"1 bedroom in roommates apartment +In Williamsburg",3147732,Ofek,Brooklyn,Williamsburg,40.72011,-73.94487,Private room,45,1,2,2019-02-17,0.4,1,0 +30387328,"Comfy UWS 1BR w/ Gym + Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77804,-73.98409000000001,Entire home/apt,283,30,0,,,232,1 +6678277,Charming Grand Central Two Bedroom Apartment (4R),34954047,Heather,Manhattan,Murray Hill,40.74912,-73.98007,Entire home/apt,145,30,2,2016-05-11,0.05,1,189 +10186192,Only Steps away from LaGuardia arpt,37312959,Maya,Queens,East Elmhurst,40.77026,-73.87561,Private room,45,1,459,2019-07-07,10.72,5,175 +20056328,Beautiful 1 bedroom near Central Park/Times Square,3006848,Joannie,Manhattan,Hell's Kitchen,40.76494,-73.98467,Private room,160,2,2,2017-08-20,0.09,1,0 +17071462,Large comfortable room near Penn Station,3660702,Greg,Manhattan,Chelsea,40.7455,-73.9916,Private room,99,1,136,2019-06-21,4.62,4,61 +20299266,West Village Gem - Renovated 3 Bedroom Apt!,117677214,Rodney,Manhattan,West Village,40.73103,-74.00319,Entire home/apt,325,5,47,2019-06-09,2.01,1,310 +27570463,LUXURY STAYING IN BROOKLYN (Bed-Stuy),10016960,Deniz,Brooklyn,Bedford-Stuyvesant,40.67772,-73.9233,Private room,55,2,18,2019-07-02,1.73,1,310 +23358691,Spacious bright room in 2 bedroom apartment,44951851,Yaakov,Brooklyn,Crown Heights,40.66505,-73.95445,Private room,50,3,1,2018-03-17,0.06,2,0 +21901156,Best Deal! Lovely place in Manhattan! Time Square!,159156636,,Manhattan,Hell's Kitchen,40.75656,-73.99063000000001,Private room,120,1,109,2019-01-01,5.97,3,0 +20555087,Uptown comfy private large room,90153911,Ronny,Manhattan,Harlem,40.822790000000005,-73.95215999999999,Private room,65,2,2,2017-09-15,0.09,1,0 +11575073,Warm and Cozy Room in Hip Iconic Brooklyn!!!,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94266,Private room,50,1,192,2019-05-30,4.72,4,189 +33929652,Private Bedroom In 5BR Apt W 2 Baths Near 3 Trains,242962235,Yuval,Queens,Ridgewood,40.7093,-73.8954,Private room,34,30,0,,,23,252 +25264902,Sunnyside Gardens Retreat,5024128,Ricky,Queens,Sunnyside,40.74689,-73.91651999999999,Private room,70,2,31,2019-06-18,2.4,1,319 +2065101,Sunny Room,7455886,Emily,Queens,Astoria,40.7672,-73.90795,Private room,35,7,0,,,1,0 +7433796,Room Epic View Near Freedom Tower,2134232,Crystal,Manhattan,Tribeca,40.71928,-74.01125,Private room,100,1,15,2017-06-08,0.34,2,0 +31143144,Nice Private Room w/ 2 Beds,232767784,Mayra,Manhattan,Washington Heights,40.834140000000005,-73.9438,Private room,70,3,10,2019-07-05,3.0,1,39 +8941820,Ensuite privacy close to Manhattan,46741696,Manchang,Queens,Woodside,40.74688,-73.90674,Private room,70,3,138,2019-06-20,3.1,1,54 +28805245,Just Peachy: East Village. Come home already!,217251565,Just,Manhattan,East Village,40.7237,-73.98514,Private room,125,1,25,2019-06-30,2.68,1,68 +16625310,Lovely BedStuy apartment w/ young professionals.,6025804,Vero,Brooklyn,Bedford-Stuyvesant,40.6849,-73.9289,Private room,29,1,0,,,1,0 +20053253,Luxurious apartment-private bed & private bathroom,74314960,Cristina,Brooklyn,Bedford-Stuyvesant,40.69182,-73.9436,Private room,120,2,82,2019-06-23,3.52,2,0 +5127131,Cozy one-bedroom in E Village,1946840,Nick,Manhattan,East Village,40.72982,-73.98316,Entire home/apt,185,7,21,2019-06-04,0.4,1,27 +14804661,"Cozy 4 beds, Free Ferry to Manhattan.",92493393,Eddie & Lois,Staten Island,West Brighton,40.63333,-74.11310999999999,Entire home/apt,125,2,96,2019-07-01,2.82,5,362 +32935877,East Village Plant Studio,38352826,Devin,Manhattan,East Village,40.7269,-73.98368,Entire home/apt,128,4,2,2019-07-04,2.0,1,16 +35676024,"Private bedroom with lovely, spacious shared area",177507494,Evan,Brooklyn,Kensington,40.64264,-73.97855,Private room,67,1,0,,,1,31 +30535180,Cozy poet’s room in Central Manhattan,14254368,Jiaoyang,Manhattan,Murray Hill,40.7503,-73.97747,Private room,75,4,0,,,1,87 +33330013,Spacious 2bd apt in the heart of Manhattan,13506708,Guy,Manhattan,East Harlem,40.7854,-73.94981,Entire home/apt,250,2,3,2019-04-21,0.97,1,188 +25069823,Riverside Drive Condo with a View,69866875,Georgina,Manhattan,Harlem,40.83298,-73.94800000000001,Private room,100,7,1,2018-05-15,0.07,1,0 +3363462,Gorgeous Studio Apt Upper East Side,16968641,Tanya,Manhattan,Upper East Side,40.77486,-73.94856999999999,Entire home/apt,185,5,18,2019-05-20,0.3,1,31 +18946376,"Small cute bedroom in Astoria, Queens/LIC",22899212,Carmen,Queens,Ditmars Steinway,40.77204,-73.90868,Private room,35,26,1,2017-09-02,0.04,1,0 +30068066,MANHATTAN! NEW YORK CITY!,151300770,Joe,Manhattan,Upper East Side,40.78006,-73.95045999999999,Private room,150,5,7,2019-06-19,0.96,4,293 +19251255,You'll never find studio with this price(Allyours),134809070,Lilian,Brooklyn,Bedford-Stuyvesant,40.67759,-73.90888000000001,Entire home/apt,63,2,26,2018-03-31,1.08,1,0 +13751992,Spacious and charming living room in Brooklyn ;),16951458,Inna,Brooklyn,Midwood,40.61978,-73.95605,Shared room,50,1,16,2017-08-15,0.46,1,0 +14092217,Skylight Room in 3 bedroom duplex,84779589,Maba,Brooklyn,Crown Heights,40.67059,-73.9337,Private room,60,2,147,2019-07-02,4.1,3,0 +10448095,Private Studio in Beautiful Duplex,11742675,Malik,Manhattan,Upper East Side,40.77686,-73.95084,Private room,65,5,7,2017-10-30,0.19,2,0 +31123490,Modern 1 Bedroom Escape with River Views,65294078,Matt,Manhattan,Hell's Kitchen,40.76792,-73.98453,Entire home/apt,279,1,12,2019-07-02,3.27,1,0 +953951,West Village Large 1BR,4797813,Nicole,Manhattan,West Village,40.73377,-74.00259,Entire home/apt,250,2,56,2019-07-01,0.73,1,134 +35767995,The Clifton Eastern Room,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95333000000001,Private room,75,2,0,,,2,88 +230854,Zen Yankee Stadium Pad 5 Minutes To Manhattan!,12221,Lori,Bronx,Concourse,40.83001,-73.92158,Private room,50,5,235,2019-06-29,2.49,2,271 +33528101,Sunlit Bedroom with Private Terrace - Williamsburg,19643468,Kelvin,Brooklyn,Williamsburg,40.706520000000005,-73.94541,Private room,80,1,2,2019-05-19,0.65,1,0 +21676358,Incredible modern studio with all the amenities,55308025,Paul,Brooklyn,Downtown Brooklyn,40.69339,-73.98581,Entire home/apt,90,3,7,2019-06-23,0.37,1,0 +4616865,Colorful Room in Crown Heights,6028908,Kelly,Brooklyn,Crown Heights,40.67569,-73.95548000000001,Private room,38,10,0,,,1,0 +10808493,This quaint 2 bedroom apart in NYC,6198203,Janice,Brooklyn,East Flatbush,40.66101,-73.9302,Entire home/apt,100,2,29,2019-06-08,2.17,1,318 +6989258,Cozy Gem in Harlem Close to ALL!,7339760,Maritza,Manhattan,East Harlem,40.79243,-73.93952,Entire home/apt,130,2,1,2015-08-13,0.02,1,0 +22016391,Your own Loft/gallery in Bushwick!,43872938,Shir,Brooklyn,Bushwick,40.69264,-73.90485,Private room,49,4,3,2018-04-09,0.17,1,0 +22147414,BEAUTIFUL HUDSON RIVER VIEW,19577205,Neide,Manhattan,Washington Heights,40.8335,-73.9468,Entire home/apt,215,4,2,2019-01-02,0.11,1,0 +34538701,Perfect Harlem home for couples/small families,21334989,Reyna,Manhattan,East Harlem,40.81142,-73.93748000000001,Entire home/apt,120,5,0,,,1,0 +24945253,Brand new beach front house near JFK (2),187383058,John,Queens,Arverne,40.5872,-73.79567,Entire home/apt,350,2,25,2019-07-07,1.83,2,332 +168084,Light-filled East Village Delight,800982,Chris,Manhattan,East Village,40.72578,-73.97879,Entire home/apt,190,3,147,2019-06-30,1.6,1,27 +14936709,Entire 1bdr Manhattan NY,55547933,KaLisa & Christian,Manhattan,Inwood,40.8604,-73.92716,Entire home/apt,85,3,4,2018-07-13,0.18,1,0 +34481124,Charming Cobble Hill Brownstone Apartment,144522384,Amanda,Brooklyn,Carroll Gardens,40.68574,-73.99421,Entire home/apt,250,2,0,,,1,0 +26191770,Modern New York City Penthouse w/ Incredible Views,149328348,Caitie,Manhattan,Financial District,40.70563,-74.01106,Entire home/apt,131,30,2,2019-05-31,0.23,1,0 +12188721,"Cozy room in bushwick, Brooklyn",517866,Jose,Brooklyn,Bushwick,40.69021,-73.91019,Private room,80,3,0,,,1,83 +9995163,Spacious Private Brownstone Apt | 2 Bedroom,12877954,Brian,Brooklyn,Bedford-Stuyvesant,40.68076,-73.93996,Entire home/apt,113,3,174,2019-07-01,4.02,1,63 +28324221,740 sqf large luxury apt w doorman midtown east,875830,Sacha,Manhattan,Midtown,40.75278,-73.97107,Entire home/apt,169,30,5,2019-05-13,0.7,1,280 +6716199,large private bedroom,31765814,Yassine,Queens,Astoria,40.76561,-73.92056,Private room,85,1,3,2019-05-12,0.06,1,0 +26868019,Private Furnishured Room for Rent. (W/M),202070950,Nancy,Manhattan,Washington Heights,40.85333,-73.9305,Private room,100,7,0,,,1,365 +31730525,Spacious 2 beds apt in Hell’s Kitchen 5ppl,237921255,Maria,Manhattan,Hell's Kitchen,40.76246,-73.9953,Entire home/apt,325,1,33,2019-07-03,6.11,1,217 +33990639,Sonder | Stock Exchange | Ideal 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01096,Entire home/apt,188,2,6,2019-06-20,2.65,327,329 +29533923,One stop away from manhattan,91605357,Tina,Brooklyn,Williamsburg,40.7073,-73.95739,Private room,85,1,56,2019-06-26,7.0,2,51 +16085817,"Brand New Modern Luxury Apt, Room A",104835356,Jerry,Brooklyn,Sunset Park,40.65563,-74.00197,Private room,73,1,10,2019-05-16,0.36,3,121 +21914314,PRIVATE 2 BR APT HEART OF MID-TOWN TIMES SQUARE!!,3440811,Marc,Manhattan,Hell's Kitchen,40.76062,-73.99297,Entire home/apt,85,3,28,2019-03-17,1.45,1,66 +32747955,"Charming BDR - 15min Manhattan-4min stn trains N,W",203890641,Vinicius,Queens,Ditmars Steinway,40.77482,-73.90852,Private room,85,3,13,2019-06-24,3.71,2,208 +5671922,Perfect Holiday House in NYC,1434654,Andrew,Queens,Ridgewood,40.7073,-73.91775,Entire home/apt,160,7,3,2016-08-13,0.06,2,15 +34840034,Long Island City for Dreamers,243194565,Greg,Queens,Long Island City,40.74705,-73.9472,Private room,130,5,0,,,1,179 +19506194,East Village Penthouse - Master Bedroom (Loft),16866,Nicholas,Manhattan,East Village,40.72979,-73.983,Private room,149,2,9,2019-06-09,0.37,2,0 +29243499,"Mellow, Stylish Bedroom close to Pratt #1",7305006,Jessica,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95878,Private room,60,6,8,2019-05-24,1.1,2,144 +29452654,Inclusive & clean Time square sunny apartment,22251283,Nir,Manhattan,Hell's Kitchen,40.76388,-73.99306999999999,Entire home/apt,125,30,0,,,4,0 +28369910,Semi Private Bedroom,214190693,Samantha,Bronx,Fordham,40.85536,-73.90241999999999,Shared room,55,1,3,2019-02-23,0.31,1,83 +27024042,Art Chalk wall room,203307016,Israel,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91689000000001,Private room,65,1,44,2019-06-20,3.73,2,75 +12965288,"COZY HOME, BEST LOCAL ACCESS!",11071244,Nick,Queens,Long Island City,40.76591,-73.93434,Private room,80,2,49,2018-09-27,1.29,1,0 +32022820,Small Artist Tenement APT in NOLITA/ Little Italy,866089,Launa,Manhattan,Little Italy,40.7191,-73.99513,Entire home/apt,250,3,0,,,3,0 +20296968,Quiet Hells Kitchen Studio steps from Times Square,28340376,Anna,Manhattan,Hell's Kitchen,40.76125,-73.99299,Entire home/apt,164,2,85,2019-07-01,3.67,1,0 +9833212,Charming UWS Studio Loft,15584022,Alicia,Manhattan,Upper West Side,40.77633,-73.97932,Entire home/apt,80,5,7,2016-04-29,0.16,1,0 +5414471,Cool Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72533,-73.94014,Entire home/apt,129,30,1,2018-05-31,0.07,52,340 +20724736,Comfy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80482,-73.95107,Private room,123,2,54,2018-12-27,2.44,2,0 +9170129,New Apt -2 Blocks CENTRAL PARK Near COLUMBIA UNIV,46973966,Lorena,Manhattan,Harlem,40.79939,-73.9547,Entire home/apt,249,7,107,2019-06-23,2.4,2,249 +26893534,TRUE LOFT LIVING,202303852,Idris,Brooklyn,Williamsburg,40.70528,-73.934,Entire home/apt,250,3,7,2019-03-22,0.71,1,17 +7322088,A Bedroom in a Kosher Appartment,24259346,Johnathan Boev,Queens,Rego Park,40.72644,-73.85477,Private room,39,1,2,2015-09-07,0.04,1,0 +18486868,Sunny 1 bedroom in spacious 2 bedroom apt.,13929469,Jessica,Brooklyn,Crown Heights,40.66364,-73.95725,Private room,60,30,21,2019-05-08,0.81,1,1 +8205572,Cool Chill Space In a 5BR 2.5 bath,10387090,Luis Enrique,Brooklyn,Bushwick,40.68358,-73.90884,Private room,36,20,0,,,5,346 +6311716,1 Bedroom Greenpoint Close To All,32826638,Nadia,Brooklyn,Greenpoint,40.73284,-73.95822,Entire home/apt,135,3,2,2015-08-14,0.04,1,0 +7644505,Contemporary Brooklyn Town House,29999716,Scott,Brooklyn,South Slope,40.66393,-73.98728,Entire home/apt,300,7,0,,,1,0 +1701981,"Modern, Light-Filled Apt in Chelsea/Meatpacking",1120027,Clay,Manhattan,Chelsea,40.74072,-74.00438,Entire home/apt,200,7,11,2019-06-22,1.17,1,11 +6924942,Perfect Spot while visiting NYC,1325961,Chris,Manhattan,East Harlem,40.79721,-73.94328,Entire home/apt,111,3,6,2017-08-25,0.13,2,0 +20811696,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78015,-73.95852,Entire home/apt,225,30,0,,,33,346 +26029571,"Bright, spacious one bedroom in Brooklyn",7193111,Tanya,Brooklyn,Crown Heights,40.676390000000005,-73.94714,Entire home/apt,200,1,15,2019-06-12,1.42,1,2 +5192459,Quiet Room in 4BR UWS Brownstone,10677483,Greg,Manhattan,Upper West Side,40.80173,-73.96625,Private room,70,1,0,,,1,0 +1327940,Huge Gorgeous Park View Apartment!,3290436,Hadar,Brooklyn,Flatbush,40.65335,-73.96257,Entire home/apt,120,3,13,2016-08-27,0.28,2,327 +23612681,Shared Room 1 Stop from Manhattan on the F Train,55724558,Taylor,Queens,Long Island City,40.76006,-73.9408,Private room,55,4,2,2019-06-01,0.65,5,89 +34485745,Midtown Manhattan Stunner - Private room,261632622,Royalton,Manhattan,Theater District,40.75491,-73.98507,Private room,100,1,3,2019-06-16,3.0,9,318 +25616250,"Stylish, spacious, private 1BR apt in Ditmas Park",125396920,Adam,Brooklyn,Flatbush,40.64314,-73.95705,Entire home/apt,75,3,10,2019-01-03,0.84,1,0 +7094539,Tranquil haven in bubbly Brooklyn,2052211,Adriana,Brooklyn,Windsor Terrace,40.6536,-73.97546,Entire home/apt,143,14,2,2016-08-27,0.04,1,10 +4424261,Large 1 BR with backyard on UWS,3447311,Sarah,Manhattan,Upper West Side,40.80188,-73.96808,Entire home/apt,200,2,22,2019-05-21,0.5,1,0 +4545882,Amazing studio/Loft with a backyard,23569951,Kaveh,Manhattan,Upper East Side,40.7811,-73.94566999999999,Entire home/apt,220,3,28,2019-05-23,0.5,1,293 +26518547,U2 comfortable double bed sleeps 2 guests,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85502,Private room,80,1,4,2019-07-01,1.48,7,365 +33631782,Private Bedroom in Williamsburg Apt!,8569221,Andi,Brooklyn,Williamsburg,40.71829,-73.95819,Private room,109,3,3,2019-04-28,1.07,2,97 diff --git a/src/basic_cleaning/conda.yml b/src/basic_cleaning/conda.yml new file mode 100644 index 000000000..c34f7a721 --- /dev/null +++ b/src/basic_cleaning/conda.yml @@ -0,0 +1,9 @@ +name: basic_cleaning +channels: + - conda-forge + - defaults +dependencies: + - pip=23.0.1 + - pandas==1.5.3 + - pip: + - wandb==0.14.0 diff --git a/src/basic_cleaning/run.py b/src/basic_cleaning/run.py new file mode 100644 index 000000000..6a1849402 --- /dev/null +++ b/src/basic_cleaning/run.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python +""" +Performs basic cleaning on the data and save the results in Weights & Biases +""" +import argparse +import logging + +import pandas as pd +import wandb + + +logging.basicConfig(level=logging.INFO, format="%(asctime)-15s %(message)s") +logger = logging.getLogger() + + +def go(args): + + run = wandb.init(job_type="basic_cleaning") + run.config.update(args) + + # Download input artifact. This will also log that this script is using this + # particular version of the artifact + # artifact_local_path = run.use_artifact(args.input_artifact).file() + + ###################### + # YOUR CODE HERE # + ###################### + logger.info("Downloading artifact") + artifact_local_path = run.use_artifact(args.input_artifact).file() + + logger.info("Reading artifact") + df = pd.read_csv(artifact_local_path) + logger.info("Artifact read") + + logger.info("Dropping outliers between %f and %f", args.min_price, args.max_price) + idx = df['price'].between(args.min_price, args.max_price) + df = df[idx].copy() + + logger.info("Convert last_review to datetime") + df['last_review'] = pd.to_datetime(df['last_review']) + + logger.info("Saving locally") + df.to_csv("clean_sample.csv", index=False) + + logger.info("Uploading artifact") + artifact = wandb.Artifact( + args.artifact_name, + type=args.artifact_type, + description=args.artifact_description, + ) + artifact.add_file('clean_sample.csv') + run.log_artifact(artifact) + + +if __name__ == "__main__": + + parser = argparse.ArgumentParser(description="This step cleans the data") + + + parser.add_argument( + "--input_artifact", + type=str, + help="Input artifact", + required=True + ) + + parser.add_argument( + "--artifact_name", + type=str, + help="Name for the output artifact", + required=True + ) + + parser.add_argument( + "--artifact_type", + type=str, + help="Output artifact type.", + required=True + ) + + parser.add_argument( + "--artifact_description", + type=str, + help="A brief description of this artifact", + required=True + ) + + parser.add_argument( + "--min_price", + type=float, + help="Minimum price to filter", + required=True + ) + + parser.add_argument( + "--max_price", + type=float, + help="Maximum price to filter", + required=True + ) + + + args = parser.parse_args() + + go(args) diff --git a/src/eda/EDA.ipynb b/src/eda/EDA.ipynb new file mode 100644 index 000000000..d366363ff --- /dev/null +++ b/src/eda/EDA.ipynb @@ -0,0 +1,127351 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "b715733d", + "metadata": {}, + "outputs": [], + "source": [ + "import wandb\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "cffeea73", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[34m\u001b[1mwandb\u001b[0m: Currently logged in as: \u001b[33madamarnon\u001b[0m. Use \u001b[1m`wandb login --relogin`\u001b[0m to force relogin\n" + ] + }, + { + "data": { + "text/html": [ + "Tracking run with wandb version 0.14.0" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Run data is saved locally in /home/adam/learning/udacity/build-ml-pipeline-for-short-term-rental-prices/src/eda/wandb/run-20230330_161114-723391pe" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Syncing run logical-lion-2 to Weights & Biases (docs)
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View project at https://wandb.ai/adamarnon/nyc_airbnb" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View run at https://wandb.ai/adamarnon/nyc_airbnb/runs/723391pe" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "run = wandb.init(\n", + " project='nyc_airbnb',\n", + " group='eda',\n", + " save_code=True\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "2a8eef6c", + "metadata": {}, + "outputs": [], + "source": [ + "local_path = wandb.use_artifact('sample.csv:latest').file()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "180c5df6", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(local_path)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "14c3cfae", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas_profiling" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "516661aa", + "metadata": {}, + "outputs": [], + "source": [ + "profile = pandas_profiling.ProfileReport(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "260fc9f8", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "e043d98a401b4fb6bf9454598a917323", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Render HTML: 0%| | 0/1 [00:00" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "profile.to_notebook_iframe()" + ] + }, + { + "cell_type": "markdown", + "id": "82bdc787", + "metadata": {}, + "source": [ + "### Drop Outliers" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "4b5e35be", + "metadata": {}, + "outputs": [], + "source": [ + "min_price = 10\n", + "max_price = 350\n", + "idx = df['price'].between(min_price, max_price)\n", + "df = df[idx].copy()\n", + "df['last_review'] = pd.to_datetime(df['last_review'])" + ] + }, + { + "cell_type": "markdown", + "id": "70f2ff0c", + "metadata": {}, + "source": [ + "### Look at the values again" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "ac13b97d", + "metadata": {}, + "outputs": [], + "source": [ + "new_profile = pandas_profiling.ProfileReport(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "bf74d5b2", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "f1ea0d0657964dc4be83d0755922e25b", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Generate report structure: 0%| | 0/1 [00:00" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "new_profile.to_notebook_iframe()" + ] + }, + { + "cell_type": "markdown", + "id": "bb43dbe1", + "metadata": {}, + "source": [ + "### Terminate the run" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "7db31dd2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "Waiting for W&B process to finish... (success)." + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View run logical-lion-2 at: https://wandb.ai/adamarnon/nyc_airbnb/runs/723391pe
Synced 6 W&B file(s), 0 media file(s), 6 artifact file(s) and 1 other file(s)" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Find logs at: ./wandb/run-20230330_161114-723391pe/logs" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "run.finish()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "57810637", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 3da3b9d745c359ffdf948b1ec13a7ab47f045fa5 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 12:19:04 -0700 Subject: [PATCH 03/11] Final Pipeline --- components/test_regression_model/conda.yml | 2 +- config.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/test_regression_model/conda.yml b/components/test_regression_model/conda.yml index 1ab0e0375..b80dfefc3 100644 --- a/components/test_regression_model/conda.yml +++ b/components/test_regression_model/conda.yml @@ -9,4 +9,4 @@ dependencies: - scikit-learn=1.2.2 - pip: - wandb==0.14.0 - - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + - git+https://github.com/LesterFreamon/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/config.yaml b/config.yaml index 1700bdbd9..26d6b02c3 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ main: - components_repository: null + components_repository: "https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices#components" # All the intermediate files will be copied to this directory at the end of the run. # Set this to null if you are running in prod project_name: nyc_airbnb @@ -22,7 +22,7 @@ modeling: stratify_by: "neighbourhood_group" # Maximum number of features to consider for the TFIDF applied to the title of the # insertion (the column called "name") - max_tfidf_features: 5 + max_tfidf_features: 15 # NOTE: you can put here any parameter that is accepted by the constructor of # RandomForestRegressor. This is a subsample, but more could be added: random_forest: From 559bfb636d54986bcb112b15fd7ad8671f7ce033 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 12:37:24 -0700 Subject: [PATCH 04/11] Confining latitude and longtitude --- config.yaml | 4 ++++ src/basic_cleaning/MLproject | 12 +++++++++++- src/basic_cleaning/run.py | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index 26d6b02c3..8ce5cbe72 100644 --- a/config.yaml +++ b/config.yaml @@ -9,6 +9,10 @@ etl: sample: "sample1.csv" min_price: 10 # dollars max_price: 350 # dollars + min_longitude: -74.25 + max_longitude: -73.50 + min_latitude: 40.50 + max_latitude: 41.20 data_check: kl_threshold: 0.2 modeling: diff --git a/src/basic_cleaning/MLproject b/src/basic_cleaning/MLproject index 9ecb6bc6e..a8ee3cd61 100644 --- a/src/basic_cleaning/MLproject +++ b/src/basic_cleaning/MLproject @@ -32,4 +32,14 @@ entry_points: command: >- - python run.py --input_artifact {input_artifact} --artifact_name {artifact_name} --artifact_type {artifact_type} --artifact_description {artifact_description} --min_price {min_price} --max_price {max_price} + python run.py \ + --input_artifact {input_artifact} \ + --artifact_name {artifact_name} \ + --artifact_type {artifact_type} \ + --artifact_description {artifact_description} \ + --min_price {min_price} \ + --max_price {max_price} \ + --min_longitude {min_longitude} \ + --max_longitude {max_longitude} \ + --min_latitude {min_latitude} \ + --max_latitude {max_latitude} diff --git a/src/basic_cleaning/run.py b/src/basic_cleaning/run.py index 6a1849402..6b6828072 100644 --- a/src/basic_cleaning/run.py +++ b/src/basic_cleaning/run.py @@ -38,6 +38,12 @@ def go(args): logger.info("Convert last_review to datetime") df['last_review'] = pd.to_datetime(df['last_review']) + + logger.info("Ensuring that the longitude and latitude are correct") + idx = ( + df['longitude'].between(args.min_longitude, args.max_longitude) & + df['latitude'].between(args.min_latitude, args.max_latitude) + ) logger.info("Saving locally") df.to_csv("clean_sample.csv", index=False) @@ -99,6 +105,34 @@ def go(args): required=True ) + parser.add_argument( + "--min_longitude", + type=float, + help="Minimum longitude to filter", + required=True + ) + + parser.add_argument( + "--max_longitude", + type=float, + help="Maximum longitude to filter", + required=True + ) + + parser.add_argument( + "--min_latitude", + type=float, + help="Minimum latitude to filter", + required=True + ) + + parser.add_argument( + "--max_latitude", + type=float, + help="Maximum latitude to filter", + required=True + ) + args = parser.parse_args() From 4ce04b99c35a5f76754562b9321e44e37b5ae9ff Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 12:43:52 -0700 Subject: [PATCH 05/11] Fixed the main.py file to accept longitude and latitude --- main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.py b/main.py index 704ac6715..74171ee25 100644 --- a/main.py +++ b/main.py @@ -64,6 +64,10 @@ def go(config: DictConfig): "artifact_description": "Data with outliers and null values removed", "min_price": config["etl"]["min_price"], "max_price": config["etl"]["max_price"], + "min_longitude": config["etl"]["min_longitude"], + "max_longitude": config["etl"]["max_longitude"], + "min_latitude": config["etl"]["min_latitude"], + "max_latitude": config["etl"]["max_latitude"] }, ) From 4ef313b2cc1d0e2d30152ad3e6317786649b5db6 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 13:06:22 -0700 Subject: [PATCH 06/11] Fixed the MLproject file in basic cleaning --- src/basic_cleaning/MLproject | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/basic_cleaning/MLproject b/src/basic_cleaning/MLproject index a8ee3cd61..b0307ac06 100644 --- a/src/basic_cleaning/MLproject +++ b/src/basic_cleaning/MLproject @@ -30,6 +30,21 @@ entry_points: description: Maximum price of the rental type: float + min_longitude: + description: Minimum longitude of the rental + type: float + + max_longitude: + description: Maximum longitude of the rental + type: float + + min_latitude: + description: Minimum latitude of the rental + type: float + + max_latitude: + description: Maximum latitude of the rental + type: float command: >- python run.py \ From d026a31c0ab48852ba2935d19581a85641377638 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 13:25:51 -0700 Subject: [PATCH 07/11] Fixed the MLproject file in basic cleaning --- src/basic_cleaning/MLproject | 12 +----------- src/basic_cleaning/run.py | 1 - 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/src/basic_cleaning/MLproject b/src/basic_cleaning/MLproject index b0307ac06..71819c291 100644 --- a/src/basic_cleaning/MLproject +++ b/src/basic_cleaning/MLproject @@ -47,14 +47,4 @@ entry_points: type: float command: >- - python run.py \ - --input_artifact {input_artifact} \ - --artifact_name {artifact_name} \ - --artifact_type {artifact_type} \ - --artifact_description {artifact_description} \ - --min_price {min_price} \ - --max_price {max_price} \ - --min_longitude {min_longitude} \ - --max_longitude {max_longitude} \ - --min_latitude {min_latitude} \ - --max_latitude {max_latitude} + python run.py --input_artifact {input_artifact} --artifact_name {artifact_name} --artifact_type {artifact_type} --artifact_description {artifact_description} --min_price {min_price} --max_price {max_price} --min_longitude {min_longitude} --max_longitude {max_longitude} --min_latitude {min_latitude} --max_latitude {max_latitude} \ No newline at end of file diff --git a/src/basic_cleaning/run.py b/src/basic_cleaning/run.py index 6b6828072..99c9f5f4c 100644 --- a/src/basic_cleaning/run.py +++ b/src/basic_cleaning/run.py @@ -133,7 +133,6 @@ def go(args): required=True ) - args = parser.parse_args() go(args) From a82843157b9183db863cad18e71dc4e30109f5bb Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 13:42:20 -0700 Subject: [PATCH 08/11] Fixed the run.py file ofr basic_cleaning --- src/basic_cleaning/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/basic_cleaning/run.py b/src/basic_cleaning/run.py index 99c9f5f4c..83bcd65aa 100644 --- a/src/basic_cleaning/run.py +++ b/src/basic_cleaning/run.py @@ -44,6 +44,7 @@ def go(args): df['longitude'].between(args.min_longitude, args.max_longitude) & df['latitude'].between(args.min_latitude, args.max_latitude) ) + df = df[idx].copy() logger.info("Saving locally") df.to_csv("clean_sample.csv", index=False) From ae92cba4e027d39f373729207e3ab6b5b17bd6ff Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 14:03:55 -0700 Subject: [PATCH 09/11] Fixed the run.py file in the split component --- main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.py b/main.py index 74171ee25..54dc45b8c 100644 --- a/main.py +++ b/main.py @@ -100,8 +100,7 @@ def go(config: DictConfig): "input": "clean_sample.csv:latest", "test_size": config["modeling"]["test_size"], "random_seed": config["modeling"]["random_seed"], - "stratify_by": config["modeling"]["stratify_by"], - "stratify": config["modeling"]["stratify_by"], + "stratify_by": config["modeling"]["stratify_by"] }, ) From f9c044f4db5e9b94d77880c875b326fcb56ba194 Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 15:22:09 -0700 Subject: [PATCH 10/11] Fixed split component --- components/get_data/conda.yml | 2 +- components/test_regression_model/conda.yml | 2 +- components/train_val_test_split/MLproject | 2 +- components/train_val_test_split/conda.yml | 2 +- components/train_val_test_split/run.py | 8 +++---- config.yaml | 2 +- main.py | 28 ++++++++++++---------- 7 files changed, 25 insertions(+), 21 deletions(-) diff --git a/components/get_data/conda.yml b/components/get_data/conda.yml index 1078e793a..835e1e600 100644 --- a/components/get_data/conda.yml +++ b/components/get_data/conda.yml @@ -8,4 +8,4 @@ dependencies: - mlflow=2.2.2 - pip: - wandb==0.14.0 - - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + #- git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/components/test_regression_model/conda.yml b/components/test_regression_model/conda.yml index b80dfefc3..41f4a88de 100644 --- a/components/test_regression_model/conda.yml +++ b/components/test_regression_model/conda.yml @@ -9,4 +9,4 @@ dependencies: - scikit-learn=1.2.2 - pip: - wandb==0.14.0 - - git+https://github.com/LesterFreamon/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + #- git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components diff --git a/components/train_val_test_split/MLproject b/components/train_val_test_split/MLproject index a1ac11e1e..492702da4 100644 --- a/components/train_val_test_split/MLproject +++ b/components/train_val_test_split/MLproject @@ -23,4 +23,4 @@ entry_points: type: string default: 'none' - command: "python run.py --input {input} --test_size {test_size} --random_seed {random_seed} --stratify_by {stratify_by}" + command: "python run.py --input {input} --test_size {test_size} --random_seed {random_seed} --stratify_by {stratify_by}" \ No newline at end of file diff --git a/components/train_val_test_split/conda.yml b/components/train_val_test_split/conda.yml index 6abcc7fdb..ba6b9d3d6 100644 --- a/components/train_val_test_split/conda.yml +++ b/components/train_val_test_split/conda.yml @@ -9,4 +9,4 @@ dependencies: - scikit-learn=1.2.2 - pip: - wandb==0.14.0 - - git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + - git+https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices.git#egg=wandb-utils&subdirectory=components diff --git a/components/train_val_test_split/run.py b/components/train_val_test_split/run.py index 52709d9fe..b777cc834 100644 --- a/components/train_val_test_split/run.py +++ b/components/train_val_test_split/run.py @@ -53,18 +53,18 @@ def go(args): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Split test and remainder") - parser.add_argument("input", type=str, help="Input artifact to split") + parser.add_argument("--input", type=str, help="Input artifact to split") parser.add_argument( - "test_size", type=float, help="Size of the test split. Fraction of the dataset, or number of items" + "--test_size", type=float, help="Size of the test split. Fraction of the dataset, or number of items" ) parser.add_argument( - "--random_seed", type=int, help="Seed for random number generator", default=42, required=False + "--random_seed", type=int, help="Seed for random number generator", default=42 ) parser.add_argument( - "--stratify_by", type=str, help="Column to use for stratification", default='none', required=False + "--stratify_by", type=str, help="Column to use for stratification", default='none' ) args = parser.parse_args() diff --git a/config.yaml b/config.yaml index 8ce5cbe72..6397e9a0b 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ main: - components_repository: "https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices#components" + #components_repository: "https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices#components" # All the intermediate files will be copied to this directory at the end of the run. # Set this to null if you are running in prod project_name: nyc_airbnb diff --git a/main.py b/main.py index 54dc45b8c..d4a31b94a 100644 --- a/main.py +++ b/main.py @@ -32,13 +32,18 @@ def go(config: DictConfig): steps_par = config['main']['steps'] active_steps = steps_par.split(",") if steps_par != "all" else _steps + root_dir = hydra.utils.get_original_cwd() + components_dir = os.path.join(root_dir, "components") + src_dir = os.path.join(root_dir, "src") + # Move to a temporary directory with tempfile.TemporaryDirectory() as tmp_dir: if "download" in active_steps: # Download file and load in W&B + dir_path = os.path.join(components_dir, "get_data") _ = mlflow.run( - f"{config['main']['components_repository']}/get_data", + dir_path, "main", version='main', parameters={ @@ -53,9 +58,9 @@ def go(config: DictConfig): ################## # Implement here # ################## - context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "basic_cleaning") + dir_path = os.path.join(src_dir, "basic_cleaning") _ = mlflow.run( - context_path, + dir_path, "main", parameters={ "input_artifact": "sample.csv:latest", @@ -75,9 +80,9 @@ def go(config: DictConfig): ################## # Implement here # ################## - context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "data_check") + dir_path = os.path.join(src_dir, "data_check") _ = mlflow.run( - context_path, + dir_path, "main", parameters={ "csv": "clean_sample.csv:latest", @@ -92,9 +97,9 @@ def go(config: DictConfig): ################## # Implement here # ################## - context_path = config["main"]["components_repository"] + "/train_val_test_split" + dir_path = os.path.join(components_dir, "train_val_test_split") _ = mlflow.run( - context_path, + dir_path, "main", parameters={ "input": "clean_sample.csv:latest", @@ -118,9 +123,9 @@ def go(config: DictConfig): # Implement here # ################## - context_path = os.path.join(hydra.utils.get_original_cwd(), "src", "train_random_forest") + dir_path = os.path.join(src_dir, "train_random_forest") _ = mlflow.run( - context_path, + dir_path, "main", parameters={ "trainval_artifact": "trainval_data.csv:latest", @@ -139,10 +144,9 @@ def go(config: DictConfig): ################## # Implement here # ################## - - context_path = config["main"]["components_repository"] + "/test_regression_model" + dir_path = os.path.join(components_dir, "test_regression_model") _ = mlflow.run( - context_path, + dir_path, "main", parameters={ "mlflow_model": "random_forest_export:prod", From 036c098e66deac11770445da317f23093f542c0f Mon Sep 17 00:00:00 2001 From: Adam Arnon Date: Fri, 31 Mar 2023 17:08:20 -0700 Subject: [PATCH 11/11] Fixed split component --- components/get_data/MLproject | 6 +++++- components/get_data/conda.yml | 2 +- components/get_data/run.py | 8 ++++---- components/test_regression_model/MLproject | 3 ++- components/test_regression_model/conda.yml | 2 +- components/train_val_test_split/MLproject | 3 ++- config.yaml | 2 +- main.py | 24 ++++++++-------------- src/basic_cleaning/MLproject | 12 +++++------ src/data_check/MLproject | 3 ++- 10 files changed, 32 insertions(+), 33 deletions(-) diff --git a/components/get_data/MLproject b/components/get_data/MLproject index 41ab6e825..5cbede15a 100644 --- a/components/get_data/MLproject +++ b/components/get_data/MLproject @@ -22,4 +22,8 @@ entry_points: description: A brief description of the output artifact type: string - command: "python run.py {sample} {artifact_name} {artifact_type} {artifact_description}" + command: >- + python run.py --sample {sample} \ + --artifact_name {artifact_name} \ + --artifact_type {artifact_type} \ + --artifact_description {artifact_description} \ No newline at end of file diff --git a/components/get_data/conda.yml b/components/get_data/conda.yml index 835e1e600..8221e7d39 100644 --- a/components/get_data/conda.yml +++ b/components/get_data/conda.yml @@ -8,4 +8,4 @@ dependencies: - mlflow=2.2.2 - pip: - wandb==0.14.0 - #- git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + - git+https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices.git#egg=wandb-utils&subdirectory=components \ No newline at end of file diff --git a/components/get_data/run.py b/components/get_data/run.py index b77d7e537..20a3bb940 100644 --- a/components/get_data/run.py +++ b/components/get_data/run.py @@ -33,14 +33,14 @@ def go(args): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Download URL to a local destination") - parser.add_argument("sample", type=str, help="Name of the sample to download") + parser.add_argument("--sample", type=str, help="Name of the sample to download") - parser.add_argument("artifact_name", type=str, help="Name for the output artifact") + parser.add_argument("--artifact_name", type=str, help="Name for the output artifact") - parser.add_argument("artifact_type", type=str, help="Output artifact type.") + parser.add_argument("--artifact_type", type=str, help="Output artifact type.") parser.add_argument( - "artifact_description", type=str, help="A brief description of this artifact" + "--artifact_description", type=str, help="A brief description of this artifact" ) args = parser.parse_args() diff --git a/components/test_regression_model/MLproject b/components/test_regression_model/MLproject index 8d4cdea31..d51fd7c05 100644 --- a/components/test_regression_model/MLproject +++ b/components/test_regression_model/MLproject @@ -13,4 +13,5 @@ entry_points: description: The test artifact type: string - command: "python run.py --mlflow_model {mlflow_model} --test_dataset {test_dataset}" + command: >- + python run.py --mlflow_model {mlflow_model} --test_dataset {test_dataset} \ No newline at end of file diff --git a/components/test_regression_model/conda.yml b/components/test_regression_model/conda.yml index 41f4a88de..ae9eff5b7 100644 --- a/components/test_regression_model/conda.yml +++ b/components/test_regression_model/conda.yml @@ -9,4 +9,4 @@ dependencies: - scikit-learn=1.2.2 - pip: - wandb==0.14.0 - #- git+https://github.com/udacity/nd0821-c2-build-model-workflow-starter.git#egg=wandb-utils&subdirectory=components + - git+https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices.git#egg=wandb-utils&subdirectory=components diff --git a/components/train_val_test_split/MLproject b/components/train_val_test_split/MLproject index 492702da4..530b7b369 100644 --- a/components/train_val_test_split/MLproject +++ b/components/train_val_test_split/MLproject @@ -23,4 +23,5 @@ entry_points: type: string default: 'none' - command: "python run.py --input {input} --test_size {test_size} --random_seed {random_seed} --stratify_by {stratify_by}" \ No newline at end of file + command: >- + python run.py --input {input} --test_size {test_size} --random_seed {random_seed} --stratify_by {stratify_by} \ No newline at end of file diff --git a/config.yaml b/config.yaml index 6397e9a0b..8ce5cbe72 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ main: - #components_repository: "https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices#components" + components_repository: "https://github.com/LesterFreamon/build-ml-pipeline-for-short-term-rental-prices#components" # All the intermediate files will be copied to this directory at the end of the run. # Set this to null if you are running in prod project_name: nyc_airbnb diff --git a/main.py b/main.py index d4a31b94a..c61f5ffea 100644 --- a/main.py +++ b/main.py @@ -21,7 +21,7 @@ # This automatically reads in the configuration -@hydra.main(config_name='config') +@hydra.main(version_base="1.2", config_path=".", config_name='config') def go(config: DictConfig): # Setup the wandb experiment. All runs will be grouped under this name @@ -32,18 +32,15 @@ def go(config: DictConfig): steps_par = config['main']['steps'] active_steps = steps_par.split(",") if steps_par != "all" else _steps - root_dir = hydra.utils.get_original_cwd() - components_dir = os.path.join(root_dir, "components") - src_dir = os.path.join(root_dir, "src") + # Move to a temporary directory with tempfile.TemporaryDirectory() as tmp_dir: if "download" in active_steps: # Download file and load in W&B - dir_path = os.path.join(components_dir, "get_data") _ = mlflow.run( - dir_path, + f'{config["main"]["components_repository"]}/get_data' "main", version='main', parameters={ @@ -58,9 +55,8 @@ def go(config: DictConfig): ################## # Implement here # ################## - dir_path = os.path.join(src_dir, "basic_cleaning") _ = mlflow.run( - dir_path, + os.path.join(hydra.utils.get_original_cwd(), "src", "basic_cleaning"), "main", parameters={ "input_artifact": "sample.csv:latest", @@ -80,9 +76,8 @@ def go(config: DictConfig): ################## # Implement here # ################## - dir_path = os.path.join(src_dir, "data_check") _ = mlflow.run( - dir_path, + os.path.join(hydra.utils.get_original_cwd(), "src", "data_check"), "main", parameters={ "csv": "clean_sample.csv:latest", @@ -97,9 +92,8 @@ def go(config: DictConfig): ################## # Implement here # ################## - dir_path = os.path.join(components_dir, "train_val_test_split") _ = mlflow.run( - dir_path, + os.path.join(hydra.utils.get_original_cwd(), "components", "train_val_test_split"), "main", parameters={ "input": "clean_sample.csv:latest", @@ -123,9 +117,8 @@ def go(config: DictConfig): # Implement here # ################## - dir_path = os.path.join(src_dir, "train_random_forest") _ = mlflow.run( - dir_path, + os.path.join(hydra.utils.get_original_cwd(), "src", "train_random_forest"), "main", parameters={ "trainval_artifact": "trainval_data.csv:latest", @@ -144,9 +137,8 @@ def go(config: DictConfig): ################## # Implement here # ################## - dir_path = os.path.join(components_dir, "test_regression_model") _ = mlflow.run( - dir_path, + os.path.join(hydra.utils.get_original_cwd(), "components", "test_regression_model"), "main", parameters={ "mlflow_model": "random_forest_export:prod", diff --git a/src/basic_cleaning/MLproject b/src/basic_cleaning/MLproject index 71819c291..186620f97 100644 --- a/src/basic_cleaning/MLproject +++ b/src/basic_cleaning/MLproject @@ -24,27 +24,27 @@ entry_points: min_price: description: Minimum price of the rental - type: float + type: string max_price: description: Maximum price of the rental - type: float + type: string min_longitude: description: Minimum longitude of the rental - type: float + type: string max_longitude: description: Maximum longitude of the rental - type: float + type: string min_latitude: description: Minimum latitude of the rental - type: float + type: string max_latitude: description: Maximum latitude of the rental - type: float + type: string command: >- python run.py --input_artifact {input_artifact} --artifact_name {artifact_name} --artifact_type {artifact_type} --artifact_description {artifact_description} --min_price {min_price} --max_price {max_price} --min_longitude {min_longitude} --max_longitude {max_longitude} --min_latitude {min_latitude} --max_latitude {max_latitude} \ No newline at end of file diff --git a/src/data_check/MLproject b/src/data_check/MLproject index 8874479a0..b6ff2df4a 100644 --- a/src/data_check/MLproject +++ b/src/data_check/MLproject @@ -25,4 +25,5 @@ entry_points: description: Maximum accepted price type: float - command: "pytest . -vv --csv {csv} --ref {ref} --kl_threshold {kl_threshold} --min_price {min_price} --max_price {max_price}" + command: >- + pytest . -vv --csv {csv} --ref {ref} --kl_threshold {kl_threshold} --min_price {min_price} --max_price {max_price}