v1

OpenAPI 3.0.1Licensed under Uberall2026-08-0629353914.0 MB
Store Finder

Search among the locations

Search among the locations of the store finder

get/store-finders/{storeKey}/locations

Path parameters

storeKeystring required

Your store finder key

Query parameters

filterstring[]

Only return those locations that match the given filter

citiesstring[]

List of cites to search for

languagestring

The language the location data should be returned in (only applicable if location translation feature is enabled)

fieldMaskstring[]

The list of fields the response object should contain, in the following format: "fieldMask=name&fieldMask=id"

geoboolean

When true (default), searches by proximity using lat/lng/radius or coordinates. When false, returns all locations according to the provided filters.

latstring

Latitude for geo search center. Defaults to 52.5251165 (Berlin). Range: -90 to 90. Only used when geo=true.

lngstring

Longitude for geo search center. Defaults to 13.3915718 (Berlin). Range: -180 to 180. Only used when geo=true.

coordinatesstring[]

Bounding box: bottomRightLat,bottomRightLng,topLeftLat,topLeftLng. Alternative to lat/lng/radius.

[
  "52.42078412"
]
countriesstring[]

List of countries to search for

locationIdsstring[]

Location ids to search within.

maxinteger

Used for pagination. Maximum number of results per page

offsetinteger

Offset used for pagination. Default: 0

openNowboolean

Return locations that are open now.

provincesstring[]

List of provinces to search for

querystring[]

Search term that needs to be matched.

queryFieldsstring[]

List of fields the term in 'query' is matched against.

radiusstring

Search radius in meters around lat/lng. Only used when geo=true.

zipsstring[]

List of postcodes to search for

Response

Success

status'SUCCESS' | 'PENDING' | 'QUOTA_LIMIT_EXCEED' | 'NOT_AUTHORIZED' | 'FORBIDDEN' | 'BAD_ACCESS_TOKEN' | 'BAD_PRIVATE_KEY' | 'BAD_PUBLIC_KEY' | 'MISSING_PARAMETER' | 'INVALID_PARAMETER' | 'WRONG_PARAMETER_TYPE' | 'CONFLICT' | 'RESOURCE_LOCKED' | 'SERVER_ERROR' | 'ERROR' | 'NOT_FOUND' | 'BAD_REQUEST' | 'USER_ERROR' | 'PARTIAL_ERROR' | 'SERVICE_TEMPORARILY_UNAVAILABLE' required
messagestring

(optional) Holds further information about the response

warningsstring[]

(optional) Holds further warnings

Example response

{
  "response": {
    "locations": [
      {
        "addressExtra": "building, floor, etc.",
        "customItems": [
          {
            "category": "Coffee",
            "unit": "per kg"
          }
        ],
        "menus": [
          {
            "category": "Starters, Drinks, Desert, etc."
          }
        ],
        "nextOpen": {
          "date": "2018-11-16"
        },
        "faqs": [
          {
            "question": "Do you have parking?",
            "answer": "Yes, free valet parking is available."
          }
        ],
        "products": [
          {
            "category": "Coffee",
            "unit": "per kg"
          }
        ],
        "services": [
          {
            "currency": "USD"
          }
        ]
      }
    ]
  }
}