Primark Locations dataset (June 2026)
490 locations across 16 countries and 431 cities, with 12 fields per row. Available in CSV and ZIP formats.
- Rows
- 490
- Fields
- 12
- Countries
- 16
- Collected
- Jun 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 | opening_hours Premium | Opening Hours |
| 12 | facilities Premium | Facilities |
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 | opening_hours Premium | facilities Premium |
|---|---|---|---|---|---|---|---|---|---|---|---|
| US:144 | Willowbrook Mall -COMING SOON- | US | United States | Houston | Texas | 77070 | 2000 Willowbrook Mall, Houston, TX, 77070 | [29.96000,-95.53916] | — | Mo-Su closed | — |
| US:136 | Katy Mills - Now Open | US | United States | Katy | Texas | 77494 | 5000 Katy Mills Circle, Houston, TX, 77494 | [29.77526,-95.80837] | +1 346 263 3268 | Mo-Th 10:00-20:00; Fr-Sa 10:00-21:00; Su 11:00-19:00 | — |
| US:121 | Walden Galleria Buffalo | US | United States | Cheektowaga | New York | 14225 | 1 Walden Galleria, Buffalo, NY, 14225 | [42.91527,-78.76098] | +1 716 302 2349 | Mo-Th 10:00-20:00; Fr-Sa 10:00-21:00; Su 11:00-18:00 | ["FREE_WIFI_AVAILABLE", "PARKING", "WHEELCHAIR_ACCESS"] |
| US:126 | Smith Haven Mall | US | United States | Saint James | New York | 11755 | 9 Smith Haven Mall, Lake Grove, NY, 11755 | [40.86319,-73.12948] | +1 631 282 8632 | Mo-Th 10:00-20:00; Fr-Sa 10:00-21:00; Su 11:00-19:00 | ["FREE_WIFI_AVAILABLE", "OFFSITE_PARKING_FACILITIES", "WHEELCHAIR_ACCESS"] |
| US:133 | Cielo Vista Mall - NOW OPEN - | US | United States | El Paso | Texas | 79925 | 8401 Gateway Blvd West, El Paso, TX, 79925 | [31.77840,-106.38271] | +1 915 358 0712 | Mo-Th 10:00-20:00; Fr-Sa 10:00-21:00; Su 12:00-18: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/primark?download=csv")
print(df.head())
DuckDB
SELECT country, count(*) AS n
FROM read_csv('https://bizlocationdb.com/locations/primark?download=csv')
GROUP BY 1 ORDER BY n DESC;