Live Demo: Getting Started with MotherDuck and the DuckDB UIRegister Now

Skip to main content

Foursquare

About the dataset

Foursquare Open Source Places (FSQ OS Places) is a global, open-source dataset of over 100 million points of interest (POI), featuring 22 core attributes, updated monthly, and designed to support geospatial applications with a collaborative, AI- and human-powered data curation system.

This database is updated monthly, we host however a snapshot of 2025-01-10.

You have two tables :

  • fsq_os_places (Places) : a global dataset of over 100 million points of interest (POIs) with detailed location, business, and contact information.
  • fsq_os_categories (Categories) : a hierarchical classification of POIs with up to six levels, detailing category names and IDs.

You can attach the foursquare database to your account by running the following command:

ATTACH 'md:_share/foursquare/0cbf467d-03b0-449e-863a-ce17975d2c0b' AS foursquare;

Schema

fsq_os_places - Places Dataset

Column NameTypeDescription
fsq_place_idStringThe unique identifier of a Foursquare POI. Use this ID to view a venue at: foursquare.com/v/{fsq_place_id}ud
nameStringBusiness name of a POI
latitude/longitudeDecimalDecimal coordinates (WGS84 datum) up to 6 decimal places. Derived from third-party sources, user input, and corrections. Default geocode type: front door or rooftop.
addressStringUser-entered street address of the venue
localityStringCity, town, or equivalent where the POI is located
regionStringState, province, or territory. Abbreviations used in US, CA, AU, BR; full names elsewhere
postcodeStringPostal code or equivalent, formatted based on country (e.g., 5-digit US ZIP code)
admin_regionStringAdditional sub-division (e.g., Scotland)
post_townStringTown/place used in postal addressing (may differ from geographic location)
po_boxStringPost Office Box
countryString2-letter ISO Country Code
date_createdDateDate the POI entered the database (not necessarily the opening date)
date_refreshedDateLast date any reference was refreshed via crawl, users, or validation
date_closedDateDate the POI was marked closed in the database (not necessarily actual closure date)
telStringTelephone number with local formatting
websiteStringURL to the POI’s (or chain’s) website
emailStringPrimary contact email address, if available
facebook_idStringPOI's Facebook ID, if available
instagramStringPOI's Instagram handle, if available
twitterStringPOI's Twitter handle, if available
fsq_category_idsArray (String)ID(s) of the most granular category(ies). See the Categories page for details
fsq_category_labelsArray (String)Label(s) of the most granular category(ies). See the Categories page for details
placemaker_urlStringLink to the POI’s review page in PlaceMaker Tools for suggesting edits or reviewing pending changes
geomwkbGeometry of the POI in WKB format for visualization through the vector tiling service
bboxstructAn area defined by two longitudes and two latitudes: latitude is a decimal number between -90.0 and 90.0; longitude is a decimal number between -180.0 and 180.0.
bbox:struct xmin:double ymin:double xmax:double ymax:double

fsq_os_categories - Category Dataset

Column NameTypeDescription
category_idStringUnique identifier of the Foursquare category (BSON format)
category_levelIntegerHierarchy depth of the category (1-6)
category_nameStringName of the most granular category
category_labelStringFull category hierarchy separated by >
level1_category_idStringUnique ID of the first-level category
level1_category_nameStringName of the first-level category
level2_category_idStringUnique ID of the second-level category
level2_category_nameStringName of the second-level category
level3_category_idStringUnique ID of the third-level category
level3_category_nameStringName of the third-level category
level4_category_idStringUnique ID of the fourth-level category
level4_category_nameStringName of the fourth-level category
level5_category_idStringUnique ID of the fifth-level category
level5_category_nameStringName of the fifth-level category
level6_category_idStringUnique ID of the sixth-level category
level6_category_nameStringName of the sixth-level category