List Maps (Organization)

200 List of map records

object

items

items

name
description
permission
latestState

Currently, cannot be uploaded from the API explorer. Coming soon.

datasets

datasets

id
name
type
description
privacy
permission
isValid
createdAt
updatedAt

metadata

metadata object
id
createdAt
updatedAt

Shell Example

curl --request GET \
     --url https://data-api.foursquare.com/v1/maps/for-organization \
     --header 'accept: application/json'

JSON Response Example

{
  "items": [
    {
      "name": "string",
      "description": "string",
      "permission": "viewer",
      "latestState": "string",
      "datasets": [
        {
          "id": "string",
          "name": "string",
          "type": "managed",
          "description": "string",
          "privacy": "private",
          "permission": "viewer",
          "isValid": true,
          "createdAt": "2026-07-25T03:52:18.059Z",
          "updatedAt": "2026-07-25T03:52:18.059Z",
          "metadata": {
            "contentType": "string",
            "size": 0
          }
        }
      ],
      "id": "string",
      "createdAt": "2026-07-25T03:52:18.059Z",
      "updatedAt": "2026-07-25T03:52:18.059Z"
    }
  ]
}