USA Housing Listings
Homes for sale within the United States
@kaggle.austinreese_usa_housing_listings
Homes for sale within the United States
@kaggle.austinreese_usa_housing_listings
Craigslist is the world's largest collection of privately sold housing options, yet it's very difficult to collect all of them in the same place. I built this dataset as a means in by which to perform experimental analysis on the United States states as a whole instead of isolated urban housing markets.
This data is scraped every few months, it contains most all relevant information that Craigslist provides on retail sales
CREATE TABLE housing (
"id" BIGINT,
"url" VARCHAR,
"region" VARCHAR,
"region_url" VARCHAR,
"price" BIGINT,
"type" VARCHAR,
"sqfeet" BIGINT,
"beds" BIGINT,
"baths" DOUBLE,
"cats_allowed" BIGINT,
"dogs_allowed" BIGINT,
"smoking_allowed" BIGINT,
"wheelchair_access" BIGINT,
"electric_vehicle_charge" BIGINT,
"comes_furnished" BIGINT,
"laundry_options" VARCHAR,
"parking_options" VARCHAR,
"image_url" VARCHAR,
"description" VARCHAR,
"lat" DOUBLE,
"long" DOUBLE,
"state" VARCHAR
);Anyone who has the link will be able to view this.