v1

latestOpenAPI 3.0.1Licensed under Uberall2026-08-0629353914.0 MB
Locations Data

Get a Location

Get all information about a specific location, including listing statuses

get/locations/{id}

Path parameters

idstring required

The uberall unique id of the location

Response

Location successfully retrieved

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": {
    "location": {
      "openingHours": [
        {
          "dayOfWeek": 1,
          "closed": false,
          "from1": "08:00",
          "to1": "11:00"
        },
        {
          "dayOfWeek": 2,
          "closed": false,
          "from1": "08:00",
          "to1": "11:00",
          "from2": "13:00",
          "to2": "21:00"
        },
        {
          "dayOfWeek": 3,
          "closed": true
        }
      ],
      "specialOpeningHours": [
        {
          "date": "2017-06-29",
          "closed": true
        },
        {
          "date": "2017-06-30",
          "from1": "11:00",
          "to1": "14:00",
          "from2": "16:00",
          "to2": "20:00"
        }
      ],
      "name": "Coffee House Berlin",
      "street": "Friedrichstraße",
      "streetNo": "45A",
      "addressExtra": "Suite 304",
      "zip": "10115",
      "city": "Berlin",
      "province": "Berlin",
      "country": "DE",
      "lat": 52.52,
      "lng": 13.405,
      "addressDisplay": true,
      "phone": "+4912345678",
      "fax": "+4912345678",
      "cellphone": "+4912345678",
      "website": "https://www.example.com",
      "email": "info@example.com",
      "openingHoursNotes": "We never open on bank holidays",
      "paymentOptions": [
        "-cash",
        "credit card",
        "invoice"
      ],
      "serviceAreas": [
        {
          "name": "Berlin, Deutschland",
          "placeId": "ChIJAVkDPzdOqEcRcDteW0YgIQQ"
        }
      ],
      "doctorComData": {
        "doctorCategoriesDetailed": [
          {
            "id": 111,
            "nuccTaxonomyCode": "207RI0011X"
          }
        ]
      },
      "customFields": [
        {
          "name": "foo",
          "value": "bar"
        }
      ],
      "attributes": [
        {
          "valueType": "BOOL, URL, ENUM, REPEATED_ENUM"
        }
      ],
      "businessId": 1234,
      "linkedToLocationGroups": [
        {
          "locations": [
            {
              "id": 1,
              "name": "Location 1",
              "status": "ACTIVE"
            }
          ],
          "users": [
            {
              "id": 1,
              "email": "jan.didschuneit@uberall.com",
              "firstName": "Jan",
              "lastName": "Didschuneit",
              "role": "ADMIN",
              "status": "VERIFIED"
            }
          ]
        }
      ],
      "locatedIn": [
        {
          "placeId": "ChIJAVkDPzdOqEcRcDteW0YgIQQ",
          "relationType": "DEPARTMENT_OF",
          "lat": 52.52,
          "lng": 13.405
        }
      ],
      "moreHours": [
        {
          "hours": [
            {
              "dayOfWeek": 1,
              "from": "08:00",
              "to": "18:00"
            }
          ]
        }
      ],
      "skipFacebookPicturesUpdate": true,
      "contentCollections": {
        "contentLists": [
          {
            "title": "Lunch Menu",
            "items": [
              {
                "category": "Starters, Drinks, Desert, etc."
              }
            ]
          }
        ]
      },
      "services": [
        {
          "currency": "USD"
        }
      ]
    }
  }
}