Lowe's Locations dataset (August 2026)
1,763 locations across 1 countries and 1,368 cities, with 14 fields per row. Available in CSV and ZIP formats.
- Rows
- 1,763
- Fields
- 14
- Countries
- 1
- Collected
- Aug 2026
License
Licensed under CC BY 4.0. Requires attribution. License & attribution guide →
Fields
| # | Column | Field |
|---|---|---|
| 1 | store_id | Store ID |
| 2 | store_name | Store Name |
| 3 | country_code | Country Code |
| 4 | country | Country |
| 5 | city | City |
| 6 | region | Region |
| 7 | zip_code | ZIP Code |
| 8 | address Premium | Address |
| 9 | coordinates | Coordinates |
| 10 | phone_number Premium | Phone Number |
| 11 | pro_desk_phone Premium | Pro Desk Phone |
| 12 | fax_number Premium | Fax Number |
| 13 | store_open_date Premium | Store Open Date |
| 14 | opening_hours Premium | Opening Hours |
Sample rows
The first 5 rows, straight out of the file.
| store_id | store_name | country_code | country | city | region | zip_code | address Premium | coordinates | phone_number Premium | pro_desk_phone Premium | fax_number Premium | store_open_date Premium | opening_hours Premium |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2348 | Central Charlotte Lowe's | US | United States | Charlotte | North Carolina | 28203 | 217 IVERSON WAY | [35.20549,-80.86117] | +1 704 335 5021 | +1 704 335 5050 | +1 704 335 5022 | 2008-10-31 | Mo-Sa 06:00-22:00; Su 08:00-20:00 |
| 2380 | Syracuse Lowe's | US | United States | Syracuse | New York | 13224 | 131 SIMON DRIVE | [43.05722,-76.10042] | +1 315 350 2801 | — | +1 315 350 2802 | 2008-01-23 | Mo-Sa 06:00-22:00; Su 07:00-20:00 |
| 2393 | Plainville Lowe's | US | United States | Plainville | Massachusetts | 02762 | 201 WASHINGTON STREET | [42.02940,-71.30895] | +1 508 809 2912 | +1 508 809 2941 | +1 508 809 2913 | 2008-06-08 | Mo-Sa 06:00-22:00; Su 08:00-20:00 |
| 2423 | W. Colorado Springs Lowe's | US | United States | Colorado Springs | Colorado | 80918 | 4880 N NEVADA AVENUE | [38.90158,-104.81984] | +1 719 799 4470 | +1 719 799 4499 | +1 719 799 4471 | 2010-03-12 | Mo-Sa 06:00-22:00; Su 07:00-21:00 |
| 2311 | Lake ST. Louis Lowe's | US | United States | Lake Saint Louis | Missouri | 63367 | 6302 RONALD REAGAN DRIVE | [38.76747,-90.78638] | +1 636 561 5914 | +1 636 561 6707 | +1 636 561 5915 | 2006-10-15 | Mo-Sa 06:00-22:00; Su 07:00-20:00 |
Get the full dataset (Free)
In the free version, coordinates are rounded to two decimal places (1 km precision) and premium fields are not available.
To get over these limits, check out our paid plans.
Use it directly
Only meant for experimentation. Using it directly in production pipeline is strictly prohibited.
Python
import pandas as pd
df = pd.read_csv("https://bizlocationdb.com/locations/lowes?download=csv")
print(df.head())
DuckDB
SELECT country, count(*) AS n
FROM read_csv('https://bizlocationdb.com/locations/lowes?download=csv')
GROUP BY 1 ORDER BY n DESC;